npm run format

This commit is contained in:
2024-09-20 12:35:07 +02:00
parent c1dc600f28
commit b6b0ccb22d
2 changed files with 7 additions and 5 deletions

View File

@ -149,9 +149,12 @@ const createScene = (scene: Phaser.Scene) => {
/**
* Watch for changes in assets and reload them
*/
watch(() => assetStore.assets, async () => {
loadAssets(scene)
})
watch(
() => assetStore.assets,
async () => {
loadAssets(scene)
}
)
}
const loadAssets = (scene: Phaser.Scene) => {