teleportxr 1.0.31 → 1.0.32

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.
Files changed (2) hide show
  1. package/client/client.js +3 -3
  2. package/package.json +1 -1
package/client/client.js CHANGED
@@ -149,11 +149,11 @@ class Client {
149
149
  type: "SetupCommand",
150
150
  clientID: this.clientID,
151
151
  backgroundMode: this.setupCommand.BackgroundMode_backgroundMode,
152
- backgroundTexture: this.setupCommand.uid_backgroundTexture,
152
+ backgroundTexture: this.setupCommand.uid_backgroundTexture.toString(),
153
153
  drawDistance: this.setupCommand.float32_draw_distance,
154
154
  clientDynamicLighting: {
155
- diffuse_cubemap_texture_uid: this.clientDynamicLighting.uid_diffuse_cubemap_texture_uid,
156
- specular_cubemap_texture_uid: this.clientDynamicLighting.uid_specular_cubemap_texture_uid
155
+ diffuse_cubemap_texture_uid: this.clientDynamicLighting.uid_diffuse_cubemap_texture_uid.toString(),
156
+ specular_cubemap_texture_uid: this.clientDynamicLighting.uid_specular_cubemap_texture_uid.toString()
157
157
  }
158
158
  }, null, 2));
159
159
  console.log("===== END SETUPCOMMAND =====\n");
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "name": "teleportxr",
17
17
  "description": "Teleport Spatial Server on node.js",
18
- "version": "1.0.31",
18
+ "version": "1.0.32",
19
19
  "repository": {
20
20
  "type": "git",
21
21
  "url": "git+https://github.com/simul/teleport-nodejs.git"