teleportxr 1.0.84 → 1.0.85
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.
|
@@ -126,6 +126,7 @@ class GeometryService {
|
|
|
126
126
|
// MAY not be in this set:
|
|
127
127
|
this.streamedNodes.delete(uid);
|
|
128
128
|
// TODO: now reduce the counts for all the dependent resources.
|
|
129
|
+
console.log("Unstreaming node ", node_uid," for client ", this.clientID);
|
|
129
130
|
}
|
|
130
131
|
StreamOrUnstream(resourceMap, uid, diff) {
|
|
131
132
|
// exclude "undefined"
|
|
@@ -256,11 +257,11 @@ class GeometryService {
|
|
|
256
257
|
|
|
257
258
|
var node = this.scene.GetNode(node_uid);
|
|
258
259
|
if(diff>0 && !already_present)
|
|
259
|
-
console.log("Adding node ", node.name, " for client ", this.clientID);
|
|
260
|
+
console.log("Adding node ", node.name," (", node_uid,") for client ", this.clientID);
|
|
260
261
|
else if(diff<0 && already_present)
|
|
261
|
-
console.log("Removing node ", node.name, " for client ", this.clientID);
|
|
262
|
+
console.log("Removing node ", node.name," (", node_uid,") for client ", this.clientID);
|
|
262
263
|
else
|
|
263
|
-
console.log("Changing node ", node.name, " count from ", old_count, " to ", old_count+diff, " for client ", this.clientID);
|
|
264
|
+
console.log("Changing node ", node.name," (", node_uid,") count from ", old_count, " to ", old_count+diff, " for client ", this.clientID);
|
|
264
265
|
this.streamedNodes.set(node_uid, old_count + diff);
|
|
265
266
|
var meshResources = [];
|
|
266
267
|
node.components.forEach((component) => {
|
package/package.json
CHANGED