1
0
forked from noxious/client

POC working new caching method - moved controllers folder, renamed assets to textures, fixed HTTP bug, formatted code

This commit is contained in:
2025-01-07 03:59:02 +01:00
parent 41f82897a8
commit 6e30a8530a
9 changed files with 315 additions and 1346 deletions

View File

@ -33,6 +33,7 @@ import Menu from '@/components/gui/Menu.vue'
import { useGameStore } from '@/stores/gameStore'
import AwaitLoaderPlugin from 'phaser3-rex-plugins/plugins/awaitloader-plugin'
import { Game, Scene } from 'phavuer'
import { onBeforeUnmount } from 'vue'
const gameStore = useGameStore()
@ -80,4 +81,8 @@ function preloadScene(scene: Phaser.Scene) {
}
function createScene(scene: Phaser.Scene) {}
onBeforeUnmount(() => {
})
</script>