connected-spaces-platform.web 6.1.0 → 6.2.0
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/Debug/ConnectedSpacesPlatform_WASM.js +75 -33
- package/Debug/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/Debug/ConnectedSpacesPlatform_WASM.wasm.debug.wasm +0 -0
- package/README.md +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.js +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/connectedspacesplatform.d.ts +229 -73
- package/connectedspacesplatform.js +272 -154
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +581 -264
- package/package.json +1 -1
|
@@ -855,21 +855,6 @@ function csp_systems_ResultBaseFactory(nativePointer) {
|
|
|
855
855
|
return new Systems.ResultBase(nativePointer);
|
|
856
856
|
}
|
|
857
857
|
ProxyClassFactories["csp_systems_ResultBase"] = csp_systems_ResultBaseFactory;
|
|
858
|
-
function csp_systems_IAnalyticsProviderFactory(nativePointer) {
|
|
859
|
-
return new Systems.IAnalyticsProvider(nativePointer);
|
|
860
|
-
}
|
|
861
|
-
ProxyClassFactories["csp_systems_IAnalyticsProvider"] =
|
|
862
|
-
csp_systems_IAnalyticsProviderFactory;
|
|
863
|
-
function csp_systems_AnalyticsSystemFactory(nativePointer) {
|
|
864
|
-
return new Systems.AnalyticsSystem(nativePointer);
|
|
865
|
-
}
|
|
866
|
-
ProxyClassFactories["csp_systems_AnalyticsSystem"] =
|
|
867
|
-
csp_systems_AnalyticsSystemFactory;
|
|
868
|
-
function csp_systems_AnalyticsEventFactory(nativePointer) {
|
|
869
|
-
return new Systems.AnalyticsEvent(nativePointer);
|
|
870
|
-
}
|
|
871
|
-
ProxyClassFactories["csp_systems_AnalyticsEvent"] =
|
|
872
|
-
csp_systems_AnalyticsEventFactory;
|
|
873
858
|
function csp_systems_AssetFactory(nativePointer) {
|
|
874
859
|
return new Systems.Asset(nativePointer);
|
|
875
860
|
}
|
|
@@ -2405,7 +2390,10 @@ export var Systems;
|
|
|
2405
2390
|
AnimatedModelPropertyKeys[AnimatedModelPropertyKeys["ThirdPartyComponentRef"] = 12] = "ThirdPartyComponentRef";
|
|
2406
2391
|
AnimatedModelPropertyKeys[AnimatedModelPropertyKeys["IsShadowCaster"] = 13] = "IsShadowCaster";
|
|
2407
2392
|
AnimatedModelPropertyKeys[AnimatedModelPropertyKeys["MaterialOverrides"] = 14] = "MaterialOverrides";
|
|
2408
|
-
AnimatedModelPropertyKeys[AnimatedModelPropertyKeys["
|
|
2393
|
+
AnimatedModelPropertyKeys[AnimatedModelPropertyKeys["IsVirtualVisible"] = 15] = "IsVirtualVisible";
|
|
2394
|
+
AnimatedModelPropertyKeys[AnimatedModelPropertyKeys["ShowAsHoldoutInAR"] = 16] = "ShowAsHoldoutInAR";
|
|
2395
|
+
AnimatedModelPropertyKeys[AnimatedModelPropertyKeys["ShowAsHoldoutInVirtual"] = 17] = "ShowAsHoldoutInVirtual";
|
|
2396
|
+
AnimatedModelPropertyKeys[AnimatedModelPropertyKeys["Num"] = 18] = "Num";
|
|
2409
2397
|
})(AnimatedModelPropertyKeys = Multiplayer.AnimatedModelPropertyKeys || (Multiplayer.AnimatedModelPropertyKeys = {}));
|
|
2410
2398
|
})(Multiplayer || (Multiplayer = {}));
|
|
2411
2399
|
(function (Multiplayer) {
|
|
@@ -2485,7 +2473,8 @@ export var Systems;
|
|
|
2485
2473
|
AvatarComponentPropertyKeys[AvatarComponentPropertyKeys["LocomotionModel"] = 14] = "LocomotionModel";
|
|
2486
2474
|
AvatarComponentPropertyKeys[AvatarComponentPropertyKeys["IsVisible"] = 15] = "IsVisible";
|
|
2487
2475
|
AvatarComponentPropertyKeys[AvatarComponentPropertyKeys["IsARVisible"] = 16] = "IsARVisible";
|
|
2488
|
-
AvatarComponentPropertyKeys[AvatarComponentPropertyKeys["
|
|
2476
|
+
AvatarComponentPropertyKeys[AvatarComponentPropertyKeys["IsVirtualVisible"] = 17] = "IsVirtualVisible";
|
|
2477
|
+
AvatarComponentPropertyKeys[AvatarComponentPropertyKeys["Num"] = 18] = "Num";
|
|
2489
2478
|
})(AvatarComponentPropertyKeys = Multiplayer.AvatarComponentPropertyKeys || (Multiplayer.AvatarComponentPropertyKeys = {}));
|
|
2490
2479
|
})(Multiplayer || (Multiplayer = {}));
|
|
2491
2480
|
(function (Multiplayer) {
|
|
@@ -2512,7 +2501,8 @@ export var Systems;
|
|
|
2512
2501
|
ButtonPropertyKeys[ButtonPropertyKeys["IsVisible"] = 7] = "IsVisible";
|
|
2513
2502
|
ButtonPropertyKeys[ButtonPropertyKeys["IsEnabled"] = 8] = "IsEnabled";
|
|
2514
2503
|
ButtonPropertyKeys[ButtonPropertyKeys["IsARVisible"] = 9] = "IsARVisible";
|
|
2515
|
-
ButtonPropertyKeys[ButtonPropertyKeys["
|
|
2504
|
+
ButtonPropertyKeys[ButtonPropertyKeys["IsVirtualVisible"] = 10] = "IsVirtualVisible";
|
|
2505
|
+
ButtonPropertyKeys[ButtonPropertyKeys["Num"] = 11] = "Num";
|
|
2516
2506
|
})(ButtonPropertyKeys = Multiplayer.ButtonPropertyKeys || (Multiplayer.ButtonPropertyKeys = {}));
|
|
2517
2507
|
})(Multiplayer || (Multiplayer = {}));
|
|
2518
2508
|
(function (Multiplayer) {
|
|
@@ -2643,7 +2633,8 @@ export var Systems;
|
|
|
2643
2633
|
ExternalLinkPropertyKeys[ExternalLinkPropertyKeys["IsEnabled"] = 6] = "IsEnabled";
|
|
2644
2634
|
ExternalLinkPropertyKeys[ExternalLinkPropertyKeys["IsVisible"] = 7] = "IsVisible";
|
|
2645
2635
|
ExternalLinkPropertyKeys[ExternalLinkPropertyKeys["IsARVisible"] = 8] = "IsARVisible";
|
|
2646
|
-
ExternalLinkPropertyKeys[ExternalLinkPropertyKeys["
|
|
2636
|
+
ExternalLinkPropertyKeys[ExternalLinkPropertyKeys["IsVirtualVisible"] = 9] = "IsVirtualVisible";
|
|
2637
|
+
ExternalLinkPropertyKeys[ExternalLinkPropertyKeys["Num"] = 10] = "Num";
|
|
2647
2638
|
})(ExternalLinkPropertyKeys = Multiplayer.ExternalLinkPropertyKeys || (Multiplayer.ExternalLinkPropertyKeys = {}));
|
|
2648
2639
|
})(Multiplayer || (Multiplayer = {}));
|
|
2649
2640
|
(function (Multiplayer) {
|
|
@@ -2660,7 +2651,8 @@ export var Systems;
|
|
|
2660
2651
|
FiducialMarkerPropertyKeys[FiducialMarkerPropertyKeys["Scale"] = 5] = "Scale";
|
|
2661
2652
|
FiducialMarkerPropertyKeys[FiducialMarkerPropertyKeys["IsVisible"] = 6] = "IsVisible";
|
|
2662
2653
|
FiducialMarkerPropertyKeys[FiducialMarkerPropertyKeys["IsARVisible"] = 7] = "IsARVisible";
|
|
2663
|
-
FiducialMarkerPropertyKeys[FiducialMarkerPropertyKeys["
|
|
2654
|
+
FiducialMarkerPropertyKeys[FiducialMarkerPropertyKeys["IsVirtualVisible"] = 8] = "IsVirtualVisible";
|
|
2655
|
+
FiducialMarkerPropertyKeys[FiducialMarkerPropertyKeys["Num"] = 9] = "Num";
|
|
2664
2656
|
})(FiducialMarkerPropertyKeys = Multiplayer.FiducialMarkerPropertyKeys || (Multiplayer.FiducialMarkerPropertyKeys = {}));
|
|
2665
2657
|
})(Multiplayer || (Multiplayer = {}));
|
|
2666
2658
|
(function (Multiplayer) {
|
|
@@ -2683,7 +2675,8 @@ export var Systems;
|
|
|
2683
2675
|
FogPropertyKeys[FogPropertyKeys["IsVisible"] = 11] = "IsVisible";
|
|
2684
2676
|
FogPropertyKeys[FogPropertyKeys["IsARVisible"] = 12] = "IsARVisible";
|
|
2685
2677
|
FogPropertyKeys[FogPropertyKeys["ThirdPartyComponentRef"] = 13] = "ThirdPartyComponentRef";
|
|
2686
|
-
FogPropertyKeys[FogPropertyKeys["
|
|
2678
|
+
FogPropertyKeys[FogPropertyKeys["IsVirtualVisible"] = 14] = "IsVirtualVisible";
|
|
2679
|
+
FogPropertyKeys[FogPropertyKeys["Num"] = 15] = "Num";
|
|
2687
2680
|
})(FogPropertyKeys = Multiplayer.FogPropertyKeys || (Multiplayer.FogPropertyKeys = {}));
|
|
2688
2681
|
})(Multiplayer || (Multiplayer = {}));
|
|
2689
2682
|
(function (Multiplayer) {
|
|
@@ -2713,7 +2706,8 @@ export var Systems;
|
|
|
2713
2706
|
GaussianSplatPropertyKeys[GaussianSplatPropertyKeys["IsARVisible"] = 7] = "IsARVisible";
|
|
2714
2707
|
GaussianSplatPropertyKeys[GaussianSplatPropertyKeys["IsShadowCaster"] = 8] = "IsShadowCaster";
|
|
2715
2708
|
GaussianSplatPropertyKeys[GaussianSplatPropertyKeys["Tint"] = 9] = "Tint";
|
|
2716
|
-
GaussianSplatPropertyKeys[GaussianSplatPropertyKeys["
|
|
2709
|
+
GaussianSplatPropertyKeys[GaussianSplatPropertyKeys["IsVirtualVisible"] = 10] = "IsVirtualVisible";
|
|
2710
|
+
GaussianSplatPropertyKeys[GaussianSplatPropertyKeys["Num"] = 11] = "Num";
|
|
2717
2711
|
})(GaussianSplatPropertyKeys = Multiplayer.GaussianSplatPropertyKeys || (Multiplayer.GaussianSplatPropertyKeys = {}));
|
|
2718
2712
|
})(Multiplayer || (Multiplayer = {}));
|
|
2719
2713
|
(function (Multiplayer) {
|
|
@@ -2729,7 +2723,8 @@ export var Systems;
|
|
|
2729
2723
|
HotspotPropertyKeys[HotspotPropertyKeys["IsSpawnPoint"] = 4] = "IsSpawnPoint";
|
|
2730
2724
|
HotspotPropertyKeys[HotspotPropertyKeys["IsVisible"] = 5] = "IsVisible";
|
|
2731
2725
|
HotspotPropertyKeys[HotspotPropertyKeys["IsARVisible"] = 6] = "IsARVisible";
|
|
2732
|
-
HotspotPropertyKeys[HotspotPropertyKeys["
|
|
2726
|
+
HotspotPropertyKeys[HotspotPropertyKeys["IsVirtualVisible"] = 7] = "IsVirtualVisible";
|
|
2727
|
+
HotspotPropertyKeys[HotspotPropertyKeys["Num"] = 8] = "Num";
|
|
2733
2728
|
})(HotspotPropertyKeys = Multiplayer.HotspotPropertyKeys || (Multiplayer.HotspotPropertyKeys = {}));
|
|
2734
2729
|
})(Multiplayer || (Multiplayer = {}));
|
|
2735
2730
|
(function (Multiplayer) {
|
|
@@ -2749,7 +2744,8 @@ export var Systems;
|
|
|
2749
2744
|
ImagePropertyKeys[ImagePropertyKeys["DisplayMode"] = 8] = "DisplayMode";
|
|
2750
2745
|
ImagePropertyKeys[ImagePropertyKeys["IsARVisible"] = 9] = "IsARVisible";
|
|
2751
2746
|
ImagePropertyKeys[ImagePropertyKeys["IsEmissive"] = 10] = "IsEmissive";
|
|
2752
|
-
ImagePropertyKeys[ImagePropertyKeys["
|
|
2747
|
+
ImagePropertyKeys[ImagePropertyKeys["IsVirtualVisible"] = 11] = "IsVirtualVisible";
|
|
2748
|
+
ImagePropertyKeys[ImagePropertyKeys["Num"] = 12] = "Num";
|
|
2753
2749
|
})(ImagePropertyKeys = Multiplayer.ImagePropertyKeys || (Multiplayer.ImagePropertyKeys = {}));
|
|
2754
2750
|
})(Multiplayer || (Multiplayer = {}));
|
|
2755
2751
|
(function (Multiplayer) {
|
|
@@ -2820,7 +2816,8 @@ export var Systems;
|
|
|
2820
2816
|
LightPropertyKeys[LightPropertyKeys["IsARVisible"] = 13] = "IsARVisible";
|
|
2821
2817
|
LightPropertyKeys[LightPropertyKeys["ThirdPartyComponentRef"] = 14] = "ThirdPartyComponentRef";
|
|
2822
2818
|
LightPropertyKeys[LightPropertyKeys["LightShadowType"] = 15] = "LightShadowType";
|
|
2823
|
-
LightPropertyKeys[LightPropertyKeys["
|
|
2819
|
+
LightPropertyKeys[LightPropertyKeys["IsVirtualVisible"] = 16] = "IsVirtualVisible";
|
|
2820
|
+
LightPropertyKeys[LightPropertyKeys["Num"] = 17] = "Num";
|
|
2824
2821
|
})(LightPropertyKeys = Multiplayer.LightPropertyKeys || (Multiplayer.LightPropertyKeys = {}));
|
|
2825
2822
|
})(Multiplayer || (Multiplayer = {}));
|
|
2826
2823
|
(function (Multiplayer) {
|
|
@@ -2883,7 +2880,8 @@ export var Systems;
|
|
|
2883
2880
|
ScreenSharingPropertyKeys[ScreenSharingPropertyKeys["DefaultImageCollectionId"] = 7] = "DefaultImageCollectionId";
|
|
2884
2881
|
ScreenSharingPropertyKeys[ScreenSharingPropertyKeys["DefaultImageAssetId"] = 8] = "DefaultImageAssetId";
|
|
2885
2882
|
ScreenSharingPropertyKeys[ScreenSharingPropertyKeys["AttenuationRadius"] = 9] = "AttenuationRadius";
|
|
2886
|
-
ScreenSharingPropertyKeys[ScreenSharingPropertyKeys["
|
|
2883
|
+
ScreenSharingPropertyKeys[ScreenSharingPropertyKeys["IsVirtualVisible"] = 10] = "IsVirtualVisible";
|
|
2884
|
+
ScreenSharingPropertyKeys[ScreenSharingPropertyKeys["Num"] = 11] = "Num";
|
|
2887
2885
|
})(ScreenSharingPropertyKeys = Multiplayer.ScreenSharingPropertyKeys || (Multiplayer.ScreenSharingPropertyKeys = {}));
|
|
2888
2886
|
})(Multiplayer || (Multiplayer = {}));
|
|
2889
2887
|
(function (Multiplayer) {
|
|
@@ -2936,7 +2934,10 @@ export var Systems;
|
|
|
2936
2934
|
StaticModelPropertyKeys[StaticModelPropertyKeys["ThirdPartyComponentRef"] = 8] = "ThirdPartyComponentRef";
|
|
2937
2935
|
StaticModelPropertyKeys[StaticModelPropertyKeys["IsShadowCaster"] = 9] = "IsShadowCaster";
|
|
2938
2936
|
StaticModelPropertyKeys[StaticModelPropertyKeys["MaterialOverrides"] = 10] = "MaterialOverrides";
|
|
2939
|
-
StaticModelPropertyKeys[StaticModelPropertyKeys["
|
|
2937
|
+
StaticModelPropertyKeys[StaticModelPropertyKeys["IsVirtualVisible"] = 11] = "IsVirtualVisible";
|
|
2938
|
+
StaticModelPropertyKeys[StaticModelPropertyKeys["ShowAsHoldoutInAR"] = 12] = "ShowAsHoldoutInAR";
|
|
2939
|
+
StaticModelPropertyKeys[StaticModelPropertyKeys["ShowAsHoldoutInVirtual"] = 13] = "ShowAsHoldoutInVirtual";
|
|
2940
|
+
StaticModelPropertyKeys[StaticModelPropertyKeys["Num"] = 14] = "Num";
|
|
2940
2941
|
})(StaticModelPropertyKeys = Multiplayer.StaticModelPropertyKeys || (Multiplayer.StaticModelPropertyKeys = {}));
|
|
2941
2942
|
})(Multiplayer || (Multiplayer = {}));
|
|
2942
2943
|
(function (Multiplayer) {
|
|
@@ -2957,7 +2958,8 @@ export var Systems;
|
|
|
2957
2958
|
TextPropertyKeys[TextPropertyKeys["BillboardMode"] = 9] = "BillboardMode";
|
|
2958
2959
|
TextPropertyKeys[TextPropertyKeys["IsVisible"] = 10] = "IsVisible";
|
|
2959
2960
|
TextPropertyKeys[TextPropertyKeys["IsARVisible"] = 11] = "IsARVisible";
|
|
2960
|
-
TextPropertyKeys[TextPropertyKeys["
|
|
2961
|
+
TextPropertyKeys[TextPropertyKeys["IsVirtualVisible"] = 12] = "IsVirtualVisible";
|
|
2962
|
+
TextPropertyKeys[TextPropertyKeys["Num"] = 13] = "Num";
|
|
2961
2963
|
})(TextPropertyKeys = Multiplayer.TextPropertyKeys || (Multiplayer.TextPropertyKeys = {}));
|
|
2962
2964
|
})(Multiplayer || (Multiplayer = {}));
|
|
2963
2965
|
(function (Multiplayer) {
|
|
@@ -3021,7 +3023,8 @@ export var Systems;
|
|
|
3021
3023
|
VideoPlayerPropertyKeys[VideoPlayerPropertyKeys["IsARVisible"] = 17] = "IsARVisible";
|
|
3022
3024
|
VideoPlayerPropertyKeys[VideoPlayerPropertyKeys["MeshComponentId"] = 18] = "MeshComponentId";
|
|
3023
3025
|
VideoPlayerPropertyKeys[VideoPlayerPropertyKeys["IsEnabled"] = 19] = "IsEnabled";
|
|
3024
|
-
VideoPlayerPropertyKeys[VideoPlayerPropertyKeys["
|
|
3026
|
+
VideoPlayerPropertyKeys[VideoPlayerPropertyKeys["IsVirtualVisible"] = 20] = "IsVirtualVisible";
|
|
3027
|
+
VideoPlayerPropertyKeys[VideoPlayerPropertyKeys["Num"] = 21] = "Num";
|
|
3025
3028
|
})(VideoPlayerPropertyKeys = Multiplayer.VideoPlayerPropertyKeys || (Multiplayer.VideoPlayerPropertyKeys = {}));
|
|
3026
3029
|
})(Multiplayer || (Multiplayer = {}));
|
|
3027
3030
|
(function (Multiplayer) {
|
|
@@ -12469,17 +12472,6 @@ export class CSPFoundation {
|
|
|
12469
12472
|
Module._free(_ret);
|
|
12470
12473
|
return _nPtr;
|
|
12471
12474
|
}
|
|
12472
|
-
/**
|
|
12473
|
-
* @description Retrieves the Analytics system.
|
|
12474
|
-
* @return Pointer to the analytics system class
|
|
12475
|
-
*/
|
|
12476
|
-
getAnalyticsSystem() {
|
|
12477
|
-
var _ret = Module._malloc(8);
|
|
12478
|
-
Module.ccall("csp_systems_SystemsManager_GetAnalyticsSystem_AnalyticsSystemP", "void", ["number", "number"], [_ret, this.pointer]);
|
|
12479
|
-
var _nPtr = new Systems.AnalyticsSystem(getNativePointer(_ret));
|
|
12480
|
-
Module._free(_ret);
|
|
12481
|
-
return _nPtr;
|
|
12482
|
-
}
|
|
12483
12475
|
/**
|
|
12484
12476
|
* @description Retrieves the Maintenance system.
|
|
12485
12477
|
* @return Pointer to the maintenance system class
|
|
@@ -12655,120 +12647,6 @@ export class CSPFoundation {
|
|
|
12655
12647
|
}
|
|
12656
12648
|
Systems.ResultBase = ResultBase;
|
|
12657
12649
|
})(Systems || (Systems = {}));
|
|
12658
|
-
(function (Systems) {
|
|
12659
|
-
/**
|
|
12660
|
-
@ingroup Analytics System
|
|
12661
|
-
* @description Interface for an Analytics Provider
|
|
12662
|
-
*/
|
|
12663
|
-
class IAnalyticsProvider extends NativeClassWrapper {
|
|
12664
|
-
/** @internal */
|
|
12665
|
-
constructor(pointer) {
|
|
12666
|
-
super(pointer);
|
|
12667
|
-
}
|
|
12668
|
-
delete() {
|
|
12669
|
-
if (this.ownsPointer && !this.disposed) {
|
|
12670
|
-
Module.ccall("csp_systems_IAnalyticsProvider_Dtor", "void", ["number"], [this.pointer]);
|
|
12671
|
-
this.disposed = true;
|
|
12672
|
-
}
|
|
12673
|
-
}
|
|
12674
|
-
}
|
|
12675
|
-
Systems.IAnalyticsProvider = IAnalyticsProvider;
|
|
12676
|
-
})(Systems || (Systems = {}));
|
|
12677
|
-
(function (Systems) {
|
|
12678
|
-
/**
|
|
12679
|
-
@ingroup Analytics System
|
|
12680
|
-
* @description Public facing system that allows interfacing with an analytics provider.
|
|
12681
|
-
* Offers methods for sending events to the provider
|
|
12682
|
-
* Events are added to a queue to be processewd on a different thread
|
|
12683
|
-
* If events are unable to be send to the provider, then they will be held in the queue
|
|
12684
|
-
*/
|
|
12685
|
-
class AnalyticsSystem extends NativeClassWrapper {
|
|
12686
|
-
/** @internal */
|
|
12687
|
-
constructor(pointer) {
|
|
12688
|
-
super(pointer);
|
|
12689
|
-
}
|
|
12690
|
-
/**
|
|
12691
|
-
* @description Send an event
|
|
12692
|
-
* @param event - AnalyticsEvent
|
|
12693
|
-
*/
|
|
12694
|
-
log(event) {
|
|
12695
|
-
Module.ccall("csp_systems_AnalyticsSystem_Log_void_AnalyticsEventP", "void", ["number", "number"], [this.pointer, event.pointer]);
|
|
12696
|
-
}
|
|
12697
|
-
}
|
|
12698
|
-
Systems.AnalyticsSystem = AnalyticsSystem;
|
|
12699
|
-
})(Systems || (Systems = {}));
|
|
12700
|
-
(function (Systems) {
|
|
12701
|
-
class AnalyticsEvent extends NativeClassWrapper {
|
|
12702
|
-
/** @internal */
|
|
12703
|
-
constructor(pointer) {
|
|
12704
|
-
super(pointer);
|
|
12705
|
-
}
|
|
12706
|
-
addInt(key, value) {
|
|
12707
|
-
assert(value >= Limits.INT64_MIN);
|
|
12708
|
-
assert(value <= Limits.INT64_MAX);
|
|
12709
|
-
Module.ccall("csp_systems_AnalyticsEvent_AddInt_void_String_int64_t", "void", ["number", "string", "bigint"], [this.pointer, key, value]);
|
|
12710
|
-
}
|
|
12711
|
-
addString(key, value) {
|
|
12712
|
-
Module.ccall("csp_systems_AnalyticsEvent_AddString_void_String_StringRC", "void", ["number", "string", "string"], [this.pointer, key, value]);
|
|
12713
|
-
}
|
|
12714
|
-
addFloat(key, value) {
|
|
12715
|
-
assert(value >= Limits.FLOAT_MIN);
|
|
12716
|
-
assert(value <= Limits.FLOAT_MAX);
|
|
12717
|
-
Module.ccall("csp_systems_AnalyticsEvent_AddFloat_void_String_float", "void", ["number", "string", "number"], [this.pointer, key, value]);
|
|
12718
|
-
}
|
|
12719
|
-
addBool(key, value) {
|
|
12720
|
-
Module.ccall("csp_systems_AnalyticsEvent_AddBool_void_String_bool", "void", ["number", "string", "boolean"], [this.pointer, key, value]);
|
|
12721
|
-
}
|
|
12722
|
-
getInt(key) {
|
|
12723
|
-
let _result = Module.ccall("csp_systems_AnalyticsEvent_GetIntC_int64_t_String", "bigint", ["number", "string"], [this.pointer, key]);
|
|
12724
|
-
return _result;
|
|
12725
|
-
}
|
|
12726
|
-
getString(key) {
|
|
12727
|
-
let _result = Module.ccall("csp_systems_AnalyticsEvent_GetStringC_StringRC_String", "number", ["number", "string"], [this.pointer, key]);
|
|
12728
|
-
const _resultString = Module.UTF8ToString(_result);
|
|
12729
|
-
free(_result);
|
|
12730
|
-
_result = _resultString;
|
|
12731
|
-
return _result;
|
|
12732
|
-
}
|
|
12733
|
-
getFloat(key) {
|
|
12734
|
-
let _result = Module.ccall("csp_systems_AnalyticsEvent_GetFloatC_float_String", "number", ["number", "string"], [this.pointer, key]);
|
|
12735
|
-
return _result;
|
|
12736
|
-
}
|
|
12737
|
-
getBool(key) {
|
|
12738
|
-
let _result = Module.ccall("csp_systems_AnalyticsEvent_GetBoolC_bool_String", "boolean", ["number", "string"], [this.pointer, key]);
|
|
12739
|
-
return _result;
|
|
12740
|
-
}
|
|
12741
|
-
getTag() {
|
|
12742
|
-
let _result = Module.ccall("csp_systems_AnalyticsEvent_GetTagC_StringRC", "number", ["number"], [this.pointer]);
|
|
12743
|
-
const _resultString = Module.UTF8ToString(_result);
|
|
12744
|
-
free(_result);
|
|
12745
|
-
_result = _resultString;
|
|
12746
|
-
return _result;
|
|
12747
|
-
}
|
|
12748
|
-
delete() {
|
|
12749
|
-
if (this.ownsPointer && !this.disposed) {
|
|
12750
|
-
Module.ccall("csp_systems_AnalyticsEvent_Dtor", "void", ["number"], [this.pointer]);
|
|
12751
|
-
this.disposed = true;
|
|
12752
|
-
}
|
|
12753
|
-
}
|
|
12754
|
-
}
|
|
12755
|
-
Systems.AnalyticsEvent = AnalyticsEvent;
|
|
12756
|
-
})(Systems || (Systems = {}));
|
|
12757
|
-
(function (Systems) {
|
|
12758
|
-
class AnalyticsEventInitialiser {
|
|
12759
|
-
static initialise(tag) {
|
|
12760
|
-
var _ret = Module._malloc(8);
|
|
12761
|
-
Module.ccall("csp_systems_AnalyticsEventInitialiser_Initialise_AnalyticsEventP_StringC", "void", ["number", "string"], [_ret, tag]);
|
|
12762
|
-
var _nPtr = new Systems.AnalyticsEvent(getNativePointer(_ret));
|
|
12763
|
-
Module._free(_ret);
|
|
12764
|
-
return _nPtr;
|
|
12765
|
-
}
|
|
12766
|
-
static deInitialise(event) {
|
|
12767
|
-
Module.ccall("csp_systems_AnalyticsEventInitialiser_DeInitialise_void_AnalyticsEventP", "void", ["number"], [event.pointer]);
|
|
12768
|
-
}
|
|
12769
|
-
}
|
|
12770
|
-
Systems.AnalyticsEventInitialiser = AnalyticsEventInitialiser;
|
|
12771
|
-
})(Systems || (Systems = {}));
|
|
12772
12650
|
(function (Systems) {
|
|
12773
12651
|
/**
|
|
12774
12652
|
@ingroup Asset System
|
|
@@ -16681,6 +16559,19 @@ export class CSPFoundation {
|
|
|
16681
16559
|
Module.ccall("csp_multiplayer_AnimatedModelSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
16682
16560
|
}
|
|
16683
16561
|
/**
|
|
16562
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
16563
|
+
*/
|
|
16564
|
+
getIsVirtualVisible() {
|
|
16565
|
+
let _result = Module.ccall("csp_multiplayer_AnimatedModelSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
16566
|
+
return _result;
|
|
16567
|
+
}
|
|
16568
|
+
/**
|
|
16569
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
16570
|
+
*/
|
|
16571
|
+
setIsVirtualVisible(value) {
|
|
16572
|
+
Module.ccall("csp_multiplayer_AnimatedModelSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
16573
|
+
}
|
|
16574
|
+
/**
|
|
16684
16575
|
@}
|
|
16685
16576
|
* \addtogroup IThirdPartyComponentRef
|
|
16686
16577
|
@{
|
|
@@ -16715,6 +16606,35 @@ export class CSPFoundation {
|
|
|
16715
16606
|
setIsShadowCaster(value) {
|
|
16716
16607
|
Module.ccall("csp_multiplayer_AnimatedModelSpaceComponent_SetIsShadowCaster_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
16717
16608
|
}
|
|
16609
|
+
/**
|
|
16610
|
+
@}
|
|
16611
|
+
* \addtogroup IRenderBehaviourComponent
|
|
16612
|
+
@{
|
|
16613
|
+
@copydoc IRenderBehaviourComponent::GetShowAsHoldoutInAR()
|
|
16614
|
+
*/
|
|
16615
|
+
getShowAsHoldoutInAR() {
|
|
16616
|
+
let _result = Module.ccall("csp_multiplayer_AnimatedModelSpaceComponent_GetShowAsHoldoutInARC_bool", "boolean", ["number"], [this.pointer]);
|
|
16617
|
+
return _result;
|
|
16618
|
+
}
|
|
16619
|
+
/**
|
|
16620
|
+
@copydoc IRenderBehaviourComponent::SetShowAsHoldoutInAR()
|
|
16621
|
+
*/
|
|
16622
|
+
setShowAsHoldoutInAR(value) {
|
|
16623
|
+
Module.ccall("csp_multiplayer_AnimatedModelSpaceComponent_SetShowAsHoldoutInAR_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
16624
|
+
}
|
|
16625
|
+
/**
|
|
16626
|
+
@copydoc IRenderBehaviourComponent::GetShowAsHoldoutInVirtual()
|
|
16627
|
+
*/
|
|
16628
|
+
getShowAsHoldoutInVirtual() {
|
|
16629
|
+
let _result = Module.ccall("csp_multiplayer_AnimatedModelSpaceComponent_GetShowAsHoldoutInVirtualC_bool", "boolean", ["number"], [this.pointer]);
|
|
16630
|
+
return _result;
|
|
16631
|
+
}
|
|
16632
|
+
/**
|
|
16633
|
+
@copydoc IRenderBehaviourComponent::SetShowAsHoldoutInVirtual()
|
|
16634
|
+
*/
|
|
16635
|
+
setShowAsHoldoutInVirtual(value) {
|
|
16636
|
+
Module.ccall("csp_multiplayer_AnimatedModelSpaceComponent_SetShowAsHoldoutInVirtual_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
16637
|
+
}
|
|
16718
16638
|
delete() {
|
|
16719
16639
|
if (this.ownsPointer && !this.disposed) {
|
|
16720
16640
|
Module.ccall("csp_multiplayer_AnimatedModelSpaceComponent_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -17319,6 +17239,19 @@ export class CSPFoundation {
|
|
|
17319
17239
|
setIsARVisible(value) {
|
|
17320
17240
|
Module.ccall("csp_multiplayer_AvatarSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
17321
17241
|
}
|
|
17242
|
+
/**
|
|
17243
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
17244
|
+
*/
|
|
17245
|
+
getIsVirtualVisible() {
|
|
17246
|
+
let _result = Module.ccall("csp_multiplayer_AvatarSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
17247
|
+
return _result;
|
|
17248
|
+
}
|
|
17249
|
+
/**
|
|
17250
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
17251
|
+
*/
|
|
17252
|
+
setIsVirtualVisible(value) {
|
|
17253
|
+
Module.ccall("csp_multiplayer_AvatarSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
17254
|
+
}
|
|
17322
17255
|
delete() {
|
|
17323
17256
|
if (this.ownsPointer && !this.disposed) {
|
|
17324
17257
|
Module.ccall("csp_multiplayer_AvatarSpaceComponent_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -17521,6 +17454,19 @@ export class CSPFoundation {
|
|
|
17521
17454
|
setIsARVisible(value) {
|
|
17522
17455
|
Module.ccall("csp_multiplayer_ButtonSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
17523
17456
|
}
|
|
17457
|
+
/**
|
|
17458
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
17459
|
+
*/
|
|
17460
|
+
getIsVirtualVisible() {
|
|
17461
|
+
let _result = Module.ccall("csp_multiplayer_ButtonSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
17462
|
+
return _result;
|
|
17463
|
+
}
|
|
17464
|
+
/**
|
|
17465
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
17466
|
+
*/
|
|
17467
|
+
setIsVirtualVisible(value) {
|
|
17468
|
+
Module.ccall("csp_multiplayer_ButtonSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
17469
|
+
}
|
|
17524
17470
|
delete() {
|
|
17525
17471
|
if (this.ownsPointer && !this.disposed) {
|
|
17526
17472
|
Module.ccall("csp_multiplayer_ButtonSpaceComponent_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -19116,6 +19062,19 @@ export class CSPFoundation {
|
|
|
19116
19062
|
setIsARVisible(value) {
|
|
19117
19063
|
Module.ccall("csp_multiplayer_ExternalLinkSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
19118
19064
|
}
|
|
19065
|
+
/**
|
|
19066
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
19067
|
+
*/
|
|
19068
|
+
getIsVirtualVisible() {
|
|
19069
|
+
let _result = Module.ccall("csp_multiplayer_ExternalLinkSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
19070
|
+
return _result;
|
|
19071
|
+
}
|
|
19072
|
+
/**
|
|
19073
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
19074
|
+
*/
|
|
19075
|
+
setIsVirtualVisible(value) {
|
|
19076
|
+
Module.ccall("csp_multiplayer_ExternalLinkSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
19077
|
+
}
|
|
19119
19078
|
delete() {
|
|
19120
19079
|
if (this.ownsPointer && !this.disposed) {
|
|
19121
19080
|
Module.ccall("csp_multiplayer_ExternalLinkSpaceComponent_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -19306,6 +19265,19 @@ export class CSPFoundation {
|
|
|
19306
19265
|
setIsARVisible(value) {
|
|
19307
19266
|
Module.ccall("csp_multiplayer_FiducialMarkerSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
19308
19267
|
}
|
|
19268
|
+
/**
|
|
19269
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
19270
|
+
*/
|
|
19271
|
+
getIsVirtualVisible() {
|
|
19272
|
+
let _result = Module.ccall("csp_multiplayer_FiducialMarkerSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
19273
|
+
return _result;
|
|
19274
|
+
}
|
|
19275
|
+
/**
|
|
19276
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
19277
|
+
*/
|
|
19278
|
+
setIsVirtualVisible(value) {
|
|
19279
|
+
Module.ccall("csp_multiplayer_FiducialMarkerSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
19280
|
+
}
|
|
19309
19281
|
delete() {
|
|
19310
19282
|
if (this.ownsPointer && !this.disposed) {
|
|
19311
19283
|
Module.ccall("csp_multiplayer_FiducialMarkerSpaceComponent_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -19583,6 +19555,19 @@ export class CSPFoundation {
|
|
|
19583
19555
|
Module.ccall("csp_multiplayer_FogSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
19584
19556
|
}
|
|
19585
19557
|
/**
|
|
19558
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
19559
|
+
*/
|
|
19560
|
+
getIsVirtualVisible() {
|
|
19561
|
+
let _result = Module.ccall("csp_multiplayer_FogSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
19562
|
+
return _result;
|
|
19563
|
+
}
|
|
19564
|
+
/**
|
|
19565
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
19566
|
+
*/
|
|
19567
|
+
setIsVirtualVisible(value) {
|
|
19568
|
+
Module.ccall("csp_multiplayer_FogSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
19569
|
+
}
|
|
19570
|
+
/**
|
|
19586
19571
|
@}
|
|
19587
19572
|
* \addtogroup IThirdPartyComponentRef
|
|
19588
19573
|
@{
|
|
@@ -19774,6 +19759,19 @@ export class CSPFoundation {
|
|
|
19774
19759
|
Module.ccall("csp_multiplayer_GaussianSplatSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
19775
19760
|
}
|
|
19776
19761
|
/**
|
|
19762
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
19763
|
+
*/
|
|
19764
|
+
getIsVirtualVisible() {
|
|
19765
|
+
let _result = Module.ccall("csp_multiplayer_GaussianSplatSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
19766
|
+
return _result;
|
|
19767
|
+
}
|
|
19768
|
+
/**
|
|
19769
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
19770
|
+
*/
|
|
19771
|
+
setIsVirtualVisible(value) {
|
|
19772
|
+
Module.ccall("csp_multiplayer_GaussianSplatSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
19773
|
+
}
|
|
19774
|
+
/**
|
|
19777
19775
|
@}
|
|
19778
19776
|
* \addtogroup IShadowCasterComponent
|
|
19779
19777
|
@{
|
|
@@ -19976,6 +19974,19 @@ export class CSPFoundation {
|
|
|
19976
19974
|
setIsARVisible(value) {
|
|
19977
19975
|
Module.ccall("csp_multiplayer_HotspotSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
19978
19976
|
}
|
|
19977
|
+
/**
|
|
19978
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
19979
|
+
*/
|
|
19980
|
+
getIsVirtualVisible() {
|
|
19981
|
+
let _result = Module.ccall("csp_multiplayer_HotspotSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
19982
|
+
return _result;
|
|
19983
|
+
}
|
|
19984
|
+
/**
|
|
19985
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
19986
|
+
*/
|
|
19987
|
+
setIsVirtualVisible(value) {
|
|
19988
|
+
Module.ccall("csp_multiplayer_HotspotSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
19989
|
+
}
|
|
19979
19990
|
delete() {
|
|
19980
19991
|
if (this.ownsPointer && !this.disposed) {
|
|
19981
19992
|
Module.ccall("csp_multiplayer_HotspotSpaceComponent_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -20211,6 +20222,19 @@ export class CSPFoundation {
|
|
|
20211
20222
|
setIsARVisible(value) {
|
|
20212
20223
|
Module.ccall("csp_multiplayer_ImageSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
20213
20224
|
}
|
|
20225
|
+
/**
|
|
20226
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
20227
|
+
*/
|
|
20228
|
+
getIsVirtualVisible() {
|
|
20229
|
+
let _result = Module.ccall("csp_multiplayer_ImageSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
20230
|
+
return _result;
|
|
20231
|
+
}
|
|
20232
|
+
/**
|
|
20233
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
20234
|
+
*/
|
|
20235
|
+
setIsVirtualVisible(value) {
|
|
20236
|
+
Module.ccall("csp_multiplayer_ImageSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
20237
|
+
}
|
|
20214
20238
|
delete() {
|
|
20215
20239
|
if (this.ownsPointer && !this.disposed) {
|
|
20216
20240
|
Module.ccall("csp_multiplayer_ImageSpaceComponent_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -20479,6 +20503,19 @@ export class CSPFoundation {
|
|
|
20479
20503
|
Module.ccall("csp_multiplayer_LightSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
20480
20504
|
}
|
|
20481
20505
|
/**
|
|
20506
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
20507
|
+
*/
|
|
20508
|
+
getIsVirtualVisible() {
|
|
20509
|
+
let _result = Module.ccall("csp_multiplayer_LightSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
20510
|
+
return _result;
|
|
20511
|
+
}
|
|
20512
|
+
/**
|
|
20513
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
20514
|
+
*/
|
|
20515
|
+
setIsVirtualVisible(value) {
|
|
20516
|
+
Module.ccall("csp_multiplayer_LightSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
20517
|
+
}
|
|
20518
|
+
/**
|
|
20482
20519
|
@}
|
|
20483
20520
|
* \addtogroup IThirdPartyComponentRef
|
|
20484
20521
|
@{
|
|
@@ -20980,6 +21017,19 @@ export class CSPFoundation {
|
|
|
20980
21017
|
Module.ccall("csp_multiplayer_ScreenSharingSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
20981
21018
|
}
|
|
20982
21019
|
/**
|
|
21020
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
21021
|
+
*/
|
|
21022
|
+
getIsVirtualVisible() {
|
|
21023
|
+
let _result = Module.ccall("csp_multiplayer_ScreenSharingSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
21024
|
+
return _result;
|
|
21025
|
+
}
|
|
21026
|
+
/**
|
|
21027
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
21028
|
+
*/
|
|
21029
|
+
setIsVirtualVisible(value) {
|
|
21030
|
+
Module.ccall("csp_multiplayer_ScreenSharingSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
21031
|
+
}
|
|
21032
|
+
/**
|
|
20983
21033
|
@}
|
|
20984
21034
|
* \addtogroup IShadowCasterComponent
|
|
20985
21035
|
@{
|
|
@@ -21340,6 +21390,19 @@ export class CSPFoundation {
|
|
|
21340
21390
|
Module.ccall("csp_multiplayer_StaticModelSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
21341
21391
|
}
|
|
21342
21392
|
/**
|
|
21393
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
21394
|
+
*/
|
|
21395
|
+
getIsVirtualVisible() {
|
|
21396
|
+
let _result = Module.ccall("csp_multiplayer_StaticModelSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
21397
|
+
return _result;
|
|
21398
|
+
}
|
|
21399
|
+
/**
|
|
21400
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
21401
|
+
*/
|
|
21402
|
+
setIsVirtualVisible(value) {
|
|
21403
|
+
Module.ccall("csp_multiplayer_StaticModelSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
21404
|
+
}
|
|
21405
|
+
/**
|
|
21343
21406
|
@}
|
|
21344
21407
|
* \addtogroup IThirdPartyComponentRef
|
|
21345
21408
|
@{
|
|
@@ -21374,6 +21437,35 @@ export class CSPFoundation {
|
|
|
21374
21437
|
setIsShadowCaster(value) {
|
|
21375
21438
|
Module.ccall("csp_multiplayer_StaticModelSpaceComponent_SetIsShadowCaster_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
21376
21439
|
}
|
|
21440
|
+
/**
|
|
21441
|
+
@}
|
|
21442
|
+
* \addtogroup IRenderBehaviourComponent
|
|
21443
|
+
@{
|
|
21444
|
+
@copydoc IRenderBehaviourComponent::GetShowAsHoldoutInAR()
|
|
21445
|
+
*/
|
|
21446
|
+
getShowAsHoldoutInAR() {
|
|
21447
|
+
let _result = Module.ccall("csp_multiplayer_StaticModelSpaceComponent_GetShowAsHoldoutInARC_bool", "boolean", ["number"], [this.pointer]);
|
|
21448
|
+
return _result;
|
|
21449
|
+
}
|
|
21450
|
+
/**
|
|
21451
|
+
@copydoc IRenderBehaviourComponent::SetShowAsHoldoutInAR()
|
|
21452
|
+
*/
|
|
21453
|
+
setShowAsHoldoutInAR(value) {
|
|
21454
|
+
Module.ccall("csp_multiplayer_StaticModelSpaceComponent_SetShowAsHoldoutInAR_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
21455
|
+
}
|
|
21456
|
+
/**
|
|
21457
|
+
@copydoc IRenderBehaviourComponent::GetShowAsHoldoutInVirtual()
|
|
21458
|
+
*/
|
|
21459
|
+
getShowAsHoldoutInVirtual() {
|
|
21460
|
+
let _result = Module.ccall("csp_multiplayer_StaticModelSpaceComponent_GetShowAsHoldoutInVirtualC_bool", "boolean", ["number"], [this.pointer]);
|
|
21461
|
+
return _result;
|
|
21462
|
+
}
|
|
21463
|
+
/**
|
|
21464
|
+
@copydoc IRenderBehaviourComponent::SetShowAsHoldoutInVirtual()
|
|
21465
|
+
*/
|
|
21466
|
+
setShowAsHoldoutInVirtual(value) {
|
|
21467
|
+
Module.ccall("csp_multiplayer_StaticModelSpaceComponent_SetShowAsHoldoutInVirtual_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
21468
|
+
}
|
|
21377
21469
|
delete() {
|
|
21378
21470
|
if (this.ownsPointer && !this.disposed) {
|
|
21379
21471
|
Module.ccall("csp_multiplayer_StaticModelSpaceComponent_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -21620,6 +21712,19 @@ export class CSPFoundation {
|
|
|
21620
21712
|
setIsARVisible(value) {
|
|
21621
21713
|
Module.ccall("csp_multiplayer_TextSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
21622
21714
|
}
|
|
21715
|
+
/**
|
|
21716
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
21717
|
+
*/
|
|
21718
|
+
getIsVirtualVisible() {
|
|
21719
|
+
let _result = Module.ccall("csp_multiplayer_TextSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
21720
|
+
return _result;
|
|
21721
|
+
}
|
|
21722
|
+
/**
|
|
21723
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
21724
|
+
*/
|
|
21725
|
+
setIsVirtualVisible(value) {
|
|
21726
|
+
Module.ccall("csp_multiplayer_TextSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
21727
|
+
}
|
|
21623
21728
|
delete() {
|
|
21624
21729
|
if (this.ownsPointer && !this.disposed) {
|
|
21625
21730
|
Module.ccall("csp_multiplayer_TextSpaceComponent_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -21974,6 +22079,19 @@ export class CSPFoundation {
|
|
|
21974
22079
|
Module.ccall("csp_multiplayer_VideoPlayerSpaceComponent_SetIsARVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
21975
22080
|
}
|
|
21976
22081
|
/**
|
|
22082
|
+
@copydoc IVisibleComponent::GetIsVirtualVisible()
|
|
22083
|
+
*/
|
|
22084
|
+
getIsVirtualVisible() {
|
|
22085
|
+
let _result = Module.ccall("csp_multiplayer_VideoPlayerSpaceComponent_GetIsVirtualVisibleC_bool", "boolean", ["number"], [this.pointer]);
|
|
22086
|
+
return _result;
|
|
22087
|
+
}
|
|
22088
|
+
/**
|
|
22089
|
+
@copydoc IVisibleComponent::SetIsVirtualVisible()
|
|
22090
|
+
*/
|
|
22091
|
+
setIsVirtualVisible(value) {
|
|
22092
|
+
Module.ccall("csp_multiplayer_VideoPlayerSpaceComponent_SetIsVirtualVisible_void_bool", "void", ["number", "boolean"], [this.pointer, value]);
|
|
22093
|
+
}
|
|
22094
|
+
/**
|
|
21977
22095
|
@}
|
|
21978
22096
|
* \addtogroup IEnableableComponent
|
|
21979
22097
|
@{
|