teleportxr 1.0.87 → 1.0.88
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,7 +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 ",
|
|
129
|
+
console.log("Unstreaming node ", uid," for client ", this.clientID);
|
|
130
130
|
}
|
|
131
131
|
StreamOrUnstream(resourceMap, uid, diff) {
|
|
132
132
|
// exclude "undefined"
|
|
@@ -431,7 +431,6 @@ class WebRtcConnection extends EventEmitter
|
|
|
431
431
|
|
|
432
432
|
this.videoDataChannel = this.createDataChannel("video",20);
|
|
433
433
|
this.tagDataChannel = this.createDataChannel("video_tags",40);
|
|
434
|
-
this.audioToClientDataChannel = this.createDataChannel("audio_server_to_client",60);
|
|
435
434
|
this.geometryDataChannel = this.createDataChannel("geometry_unframed",80);
|
|
436
435
|
this.reliableDataChannel = this.createDataChannel("reliable",100);
|
|
437
436
|
this.unreliableDataChannel = this.createDataChannel("unreliable",120,false);
|
|
@@ -585,7 +584,6 @@ class WebRtcConnection extends EventEmitter
|
|
|
585
584
|
{
|
|
586
585
|
//.videoDataChannel = .("video",20);
|
|
587
586
|
//.tagDataChannel = .("video_tags",40);
|
|
588
|
-
//.audioToClientDataChannel = .("audio_server_to_client",60);
|
|
589
587
|
//.geometryDataChannel =l("geometry_unframed",80);
|
|
590
588
|
//.reliableDataChannel =l("reliable",100);
|
|
591
589
|
//.unreliableDataChannelnel("unreliable",120,false);
|
package/package.json
CHANGED