forked from noxious/client
Worked on zone objects, tile tags and searching
This commit is contained in:
@ -85,6 +85,7 @@ const preloadScene = (scene: Phaser.Scene) => {
|
||||
})
|
||||
|
||||
scene.load.image('blank_tile', '/assets/zone/blank_tile.png')
|
||||
scene.load.image('blank_object', '/assets/zone/blank_tile.png')
|
||||
scene.load.image('waypoint', '/assets/waypoint.png')
|
||||
scene.textures.addBase64(
|
||||
'character',
|
||||
|
@ -31,7 +31,7 @@ import { onMounted, ref } from 'vue'
|
||||
import { login, register } from '@/services/authentication'
|
||||
import { useNotificationStore } from '@/stores/notifications'
|
||||
import { useSocketStore } from '@/stores/socket'
|
||||
import {useAssetStore} from '@/stores/assets'
|
||||
import { useAssetStore } from '@/stores/assets'
|
||||
|
||||
const bgm = ref('bgm')
|
||||
if (bgm.value.paused) {
|
||||
@ -50,7 +50,7 @@ onMounted(async () => {
|
||||
/**
|
||||
* Fetch assets from the server
|
||||
*/
|
||||
assetStore.fetchAssets();
|
||||
assetStore.fetchAssets()
|
||||
|
||||
const response = await login('ethereal', 'kanker123')
|
||||
|
||||
|
Reference in New Issue
Block a user