connected-spaces-platform.web 6.8.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 {
@@ -3724,9 +3732,8 @@ export namespace Multiplayer {
3724
3732
  UPDATE_FLAGS_COMPONENTS = 16,
3725
3733
  UPDATE_FLAGS_SELECTION_ID = 32,
3726
3734
  UPDATE_FLAGS_THIRD_PARTY_REF = 64,
3727
- UPDATE_FLAGS_THIRD_PARTY_PLATFORM = 128,
3728
- UPDATE_FLAGS_PARENT = 256,
3729
- UPDATE_FLAGS_LOCK_TYPE = 512,
3735
+ UPDATE_FLAGS_PARENT = 128,
3736
+ UPDATE_FLAGS_LOCK_TYPE = 256,
3730
3737
  }
3731
3738
  }
3732
3739
 
@@ -4437,6 +4444,18 @@ export namespace Multiplayer {
4437
4444
  }
4438
4445
  }
4439
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
+
4440
4459
  export namespace Multiplayer {
4441
4460
  /**
4442
4461
  * @description Enumerates the list of properties that can be replicated for a video player component.
@@ -4463,6 +4482,7 @@ export namespace Multiplayer {
4463
4482
  MeshComponentId,
4464
4483
  IsEnabled,
4465
4484
  IsVirtualVisible,
4485
+ StereoVideoType,
4466
4486
  Num,
4467
4487
  }
4468
4488
  }
@@ -25468,41 +25488,6 @@ export namespace Multiplayer {
25468
25488
  return _result;
25469
25489
  }
25470
25490
 
25471
- /**
25472
- * @description Get the third party platform type of this entity.
25473
- * @return A string representing third party platform type set for this entity.
25474
- */
25475
-
25476
- getThirdPartyPlatformType(): Systems.EThirdPartyPlatform {
25477
- let _result = Module.ccall(
25478
- "csp_multiplayer_SpaceEntity_GetThirdPartyPlatformTypeC_EThirdPartyPlatform",
25479
- "number",
25480
- ["number"],
25481
- [this.pointer],
25482
- );
25483
-
25484
- return _result;
25485
- }
25486
-
25487
- /**
25488
- * @description Set third party platform type for this entity.
25489
- * @param inThirdPartyPlatformType - The third party platform type to set.
25490
- * @return Whether a new value was set, may fail if not modifiable, or if a dirty property is already set to this value.
25491
- */
25492
-
25493
- setThirdPartyPlatformType(
25494
- thirdPartyPlatformType: Systems.EThirdPartyPlatform,
25495
- ): boolean {
25496
- let _result = Module.ccall(
25497
- "csp_multiplayer_SpaceEntity_SetThirdPartyPlatformType_bool_EThirdPartyPlatformC",
25498
- "boolean",
25499
- ["number", "number"],
25500
- [this.pointer, thirdPartyPlatformType],
25501
- );
25502
-
25503
- return _result;
25504
- }
25505
-
25506
25491
  /**
25507
25492
  * @description Get the type of the Entity.
25508
25493
  * @return The SpaceEntityType enum value.
@@ -47601,6 +47586,36 @@ export namespace Multiplayer {
47601
47586
  );
47602
47587
  }
47603
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
+
47604
47619
  /**
47605
47620
  * \addtogroup IVisibleComponent
47606
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.8.0+623",
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": {