spoint 0.1.33 → 0.1.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -63,6 +63,5 @@ export default {
63
63
  { id: 'power-crates', position: [0, 0, 0], app: 'power-crate' },
64
64
  { id: 'interact-box', position: [-100, 3, -100], app: 'interactable' }
65
65
  ],
66
- playerModel: './apps/tps-game/Cleetus.vrm',
67
66
  spawnPoint: [-35, 3, -65]
68
67
  }
package/client/app.js CHANGED
@@ -714,6 +714,10 @@ function initAssets(playerModelUrl) {
714
714
  animAssets = result
715
715
  assetsLoaded = true
716
716
  checkAllLoaded()
717
+ }).catch(err => {
718
+ console.warn('[assets] player model unavailable:', err.message)
719
+ assetsLoaded = true
720
+ checkAllLoaded()
717
721
  })
718
722
  }
719
723
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spoint",
3
- "version": "0.1.33",
3
+ "version": "0.1.34",
4
4
  "description": "Physics and netcode SDK for multiplayer game servers",
5
5
  "type": "module",
6
6
  "main": "src/index.js",