teleportxr 1.0.70 → 1.0.71
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.
- package/client/client.js +2 -2
- package/package.json +1 -1
package/client/client.js
CHANGED
|
@@ -544,7 +544,7 @@ class Client {
|
|
|
544
544
|
return;
|
|
545
545
|
}
|
|
546
546
|
const sendSuccess = this.webRtcConnection.sendGeometry(view2);
|
|
547
|
-
console.log("Sending node "+uid+" "+node.name+" to Client "+this.clientID+", size: "+nodeSize+" bytes — "+
|
|
547
|
+
console.log("[T+"+this.elapsedMsSinceStart()+"ms, conn+"+this.elapsedMsSinceConnected()+"ms] Sending node "+uid+" "+node.name+" to Client "+this.clientID+", size: "+nodeSize+" bytes — "+
|
|
548
548
|
(sendSuccess ? "OK" : "FAILED"));
|
|
549
549
|
if(sendSuccess)
|
|
550
550
|
this.geometryService.EncodedResource(uid);
|
|
@@ -573,7 +573,7 @@ class Client {
|
|
|
573
573
|
return;
|
|
574
574
|
}
|
|
575
575
|
const sendSuccess = this.webRtcConnection.sendGeometry(view2);
|
|
576
|
-
console.log("Sending resource "+uid+" "+resource.url+" to Client "+this.clientID+", size: "+resourceSize+" bytes — "+
|
|
576
|
+
console.log("[T+"+this.elapsedMsSinceStart()+"ms, conn+"+this.elapsedMsSinceConnected()+"ms] Sending resource "+uid+" "+resource.url+" to Client "+this.clientID+", size: "+resourceSize+" bytes — "+
|
|
577
577
|
(sendSuccess ? "OK" : "FAILED"));
|
|
578
578
|
if(sendSuccess)
|
|
579
579
|
this.geometryService.EncodedResource(uid);
|
package/package.json
CHANGED