Map event tile improvements

This commit is contained in:
2025-01-05 06:22:28 +01:00
parent 0142850983
commit b54b825422
5 changed files with 14 additions and 13 deletions

View File

@ -3,7 +3,7 @@ import { useGameStore } from '@/stores/gameStore'
import { defineStore } from 'pinia'
export type TeleportSettings = {
toMapId: number
toMap: Map | null
toPositionX: number
toPositionY: number
toRotation: number
@ -36,7 +36,7 @@ export const useMapEditorStore = defineStore('mapEditor', {
mapEffects: [] as MapEffect[]
},
teleportSettings: {
toMapId: 0,
toMap: null,
toPositionX: 0,
toPositionY: 0,
toRotation: 0