Renamed zone > map

This commit is contained in:
2025-01-02 17:31:31 +01:00
parent 736ddddc54
commit 40c87f0ee3
65 changed files with 762 additions and 762 deletions

View File

@ -6,7 +6,7 @@
<Hud />
<Hotkeys />
<Clock />
<Zone />
<Map />
<Chat />
<ExpBar />
@ -21,7 +21,7 @@
import config from '@/application/config'
import 'phaser'
import Effects from '@/components/Effects.vue'
import Zone from '@/components/game/zone/Zone.vue'
import Map from '@/components/game/map/Map.vue'
import CharacterProfile from '@/components/gui/CharacterProfile.vue'
import Chat from '@/components/gui/Chat.vue'
// import Minimap from '@/components/gui/Minimap.vue'
@ -75,7 +75,7 @@ function preloadScene(scene: Phaser.Scene) {
/**
* Load the base assets into the Phaser scene
*/
scene.load.image('blank_tile', '/assets/zone/blank_tile.png')
scene.load.image('blank_tile', '/assets/map/blank_tile.png')
scene.load.image('waypoint', '/assets/waypoint.png')
}