@newgameplusinc/odyssey-audio-video-sdk-dev 1.0.47 → 1.0.48
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/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -381,6 +381,8 @@ class OdysseySpatialComms extends EventManager_1.EventManager {
|
|
|
381
381
|
participant.userName = data.userName;
|
|
382
382
|
if (data.userEmail !== undefined)
|
|
383
383
|
participant.userEmail = data.userEmail;
|
|
384
|
+
if (data.currentChannel !== undefined)
|
|
385
|
+
participant.currentChannel = data.currentChannel;
|
|
384
386
|
// Only update spatial audio if NOT in huddle
|
|
385
387
|
const participantChannel = participant.currentChannel;
|
|
386
388
|
const isInHuddle = participantChannel === "odyssey-huddle";
|
package/package.json
CHANGED