Added option to set rotation on teleport tiles
This commit is contained in:
@ -6,6 +6,7 @@ type TeleportSettings = {
|
||||
toZoneId: number
|
||||
toPositionX: number
|
||||
toPositionY: number
|
||||
toRotation: number
|
||||
}
|
||||
|
||||
export const useZoneEditorStore = defineStore('zoneEditor', {
|
||||
@ -36,7 +37,8 @@ export const useZoneEditorStore = defineStore('zoneEditor', {
|
||||
teleportSettings: {
|
||||
toZoneId: 0,
|
||||
toPositionX: 0,
|
||||
toPositionY: 0
|
||||
toPositionY: 0,
|
||||
toRotation: 0
|
||||
}
|
||||
}),
|
||||
actions: {
|
||||
|
Reference in New Issue
Block a user