added basic WA.camera commands
This commit is contained in:
parent
99ffb7b450
commit
5f26a39a5d
9 changed files with 112 additions and 4 deletions
|
@ -1070,6 +1070,29 @@ ${escapedMessage}
|
|||
})
|
||||
);
|
||||
|
||||
this.iframeSubscriptionList.push(
|
||||
iframeListener.cameraSetPositionStream.subscribe((cameraSetPositionEvent) => {
|
||||
// this.cameraManager.enterFocusMode({ ...cameraSetPositionEvent }, undefined, cameraSetPositionEvent.smooth ? 1000 : 0);
|
||||
console.log("camera set position");
|
||||
})
|
||||
);
|
||||
|
||||
this.iframeSubscriptionList.push(
|
||||
iframeListener.cameraFocusOnStream.subscribe((cameraFocusOnEvent) => {
|
||||
this.cameraManager.enterFocusMode(
|
||||
{ ...cameraFocusOnEvent },
|
||||
undefined,
|
||||
cameraFocusOnEvent.smooth ? 1000 : 0
|
||||
);
|
||||
})
|
||||
);
|
||||
|
||||
this.iframeSubscriptionList.push(
|
||||
iframeListener.cameraFollowPlayerStream.subscribe((cameraFollowPlayerEvent) => {
|
||||
this.cameraManager.leaveFocusMode(this.CurrentPlayer, cameraFollowPlayerEvent.smooth ? 1000 : 0);
|
||||
})
|
||||
);
|
||||
|
||||
this.iframeSubscriptionList.push(
|
||||
iframeListener.playSoundStream.subscribe((playSoundEvent) => {
|
||||
const url = new URL(playSoundEvent.url, this.MapUrlFile);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue