connected-spaces-platform.web 6.9.0 → 6.9.1

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.
@@ -841,6 +841,14 @@ function csp_multiplayer_VideoPlayerSourceTypeFactory(
841
841
  ProxyClassFactories["csp_multiplayer_VideoPlayerSourceType"] =
842
842
  csp_multiplayer_VideoPlayerSourceTypeFactory;
843
843
 
844
+ function csp_multiplayer_StereoVideoTypeFactory(
845
+ nativePointer: NativePointer,
846
+ ): Multiplayer.StereoVideoType {
847
+ return nativePointer.pointer as Multiplayer.StereoVideoType;
848
+ }
849
+ ProxyClassFactories["csp_multiplayer_StereoVideoType"] =
850
+ csp_multiplayer_StereoVideoTypeFactory;
851
+
844
852
  function csp_multiplayer_VideoPlayerPropertyKeysFactory(
845
853
  nativePointer: NativePointer,
846
854
  ): Multiplayer.VideoPlayerPropertyKeys {
@@ -4436,6 +4444,18 @@ export namespace Multiplayer {
4436
4444
  }
4437
4445
  }
4438
4446
 
4447
+ export namespace Multiplayer {
4448
+ /**
4449
+ * @description Enumerates the type of stereo the video player supports.
4450
+ */
4451
+ export enum StereoVideoType {
4452
+ None = 0,
4453
+ SideBySide,
4454
+ TopBottom,
4455
+ Num,
4456
+ }
4457
+ }
4458
+
4439
4459
  export namespace Multiplayer {
4440
4460
  /**
4441
4461
  * @description Enumerates the list of properties that can be replicated for a video player component.
@@ -4462,6 +4482,7 @@ export namespace Multiplayer {
4462
4482
  MeshComponentId,
4463
4483
  IsEnabled,
4464
4484
  IsVirtualVisible,
4485
+ StereoVideoType,
4465
4486
  Num,
4466
4487
  }
4467
4488
  }
@@ -47565,6 +47586,36 @@ export namespace Multiplayer {
47565
47586
  );
47566
47587
  }
47567
47588
 
47589
+ /**
47590
+ * @description Gets the type of stereo the video of this component uses.
47591
+ * @return The type of stereo used by this video.
47592
+ */
47593
+
47594
+ getStereoVideoType(): Multiplayer.StereoVideoType {
47595
+ let _result = Module.ccall(
47596
+ "csp_multiplayer_VideoPlayerSpaceComponent_GetStereoVideoTypeC_StereoVideoType",
47597
+ "number",
47598
+ ["number"],
47599
+ [this.pointer],
47600
+ );
47601
+
47602
+ return _result;
47603
+ }
47604
+
47605
+ /**
47606
+ * @description Sets the type of stereo the video of this component uses.
47607
+ * @param value - The type of stereo used by this video.
47608
+ */
47609
+
47610
+ setStereoVideoType(value: Multiplayer.StereoVideoType): void {
47611
+ Module.ccall(
47612
+ "csp_multiplayer_VideoPlayerSpaceComponent_SetStereoVideoType_void_StereoVideoType",
47613
+ "void",
47614
+ ["number", "number"],
47615
+ [this.pointer, value],
47616
+ );
47617
+ }
47618
+
47568
47619
  /**
47569
47620
  * \addtogroup IVisibleComponent
47570
47621
  @{
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "connected-spaces-platform.web",
3
3
  "displayName": "connected-spaces-platform.web",
4
- "version": "6.9.0+625",
4
+ "version": "6.9.1+626",
5
5
  "description": "This package provides the binaries required to interface with the Connected Spaces Platform API.",
6
6
  "license": "Apache-2.0",
7
7
  "dependencies": {