connected-spaces-platform.web 6.8.0 → 6.9.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 +3 -7
- 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 +2 -14
- package/connectedspacesplatform.js +2 -20
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +2 -38
- package/package.json +1 -1
|
@@ -3724,9 +3724,8 @@ export namespace Multiplayer {
|
|
|
3724
3724
|
UPDATE_FLAGS_COMPONENTS = 16,
|
|
3725
3725
|
UPDATE_FLAGS_SELECTION_ID = 32,
|
|
3726
3726
|
UPDATE_FLAGS_THIRD_PARTY_REF = 64,
|
|
3727
|
-
|
|
3728
|
-
|
|
3729
|
-
UPDATE_FLAGS_LOCK_TYPE = 512,
|
|
3727
|
+
UPDATE_FLAGS_PARENT = 128,
|
|
3728
|
+
UPDATE_FLAGS_LOCK_TYPE = 256,
|
|
3730
3729
|
}
|
|
3731
3730
|
}
|
|
3732
3731
|
|
|
@@ -25468,41 +25467,6 @@ export namespace Multiplayer {
|
|
|
25468
25467
|
return _result;
|
|
25469
25468
|
}
|
|
25470
25469
|
|
|
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
25470
|
/**
|
|
25507
25471
|
* @description Get the type of the Entity.
|
|
25508
25472
|
* @return The SpaceEntityType enum value.
|
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.
|
|
4
|
+
"version": "6.9.0+625",
|
|
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": {
|