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
|
Binary file
|
|
@@ -435,9 +435,8 @@ export declare namespace Multiplayer {
|
|
|
435
435
|
UPDATE_FLAGS_COMPONENTS = 16,
|
|
436
436
|
UPDATE_FLAGS_SELECTION_ID = 32,
|
|
437
437
|
UPDATE_FLAGS_THIRD_PARTY_REF = 64,
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
UPDATE_FLAGS_LOCK_TYPE = 512
|
|
438
|
+
UPDATE_FLAGS_PARENT = 128,
|
|
439
|
+
UPDATE_FLAGS_LOCK_TYPE = 256
|
|
441
440
|
}
|
|
442
441
|
}
|
|
443
442
|
export declare namespace Multiplayer {
|
|
@@ -4479,17 +4478,6 @@ export declare namespace Multiplayer {
|
|
|
4479
4478
|
* @return Whether a new value was set, may fail if not modifiable, or if a dirty property is already set to this value.
|
|
4480
4479
|
*/
|
|
4481
4480
|
setThirdPartyRef(thirdPartyRef: string): boolean;
|
|
4482
|
-
/**
|
|
4483
|
-
* @description Get the third party platform type of this entity.
|
|
4484
|
-
* @return A string representing third party platform type set for this entity.
|
|
4485
|
-
*/
|
|
4486
|
-
getThirdPartyPlatformType(): Systems.EThirdPartyPlatform;
|
|
4487
|
-
/**
|
|
4488
|
-
* @description Set third party platform type for this entity.
|
|
4489
|
-
* @param inThirdPartyPlatformType - The third party platform type to set.
|
|
4490
|
-
* @return Whether a new value was set, may fail if not modifiable, or if a dirty property is already set to this value.
|
|
4491
|
-
*/
|
|
4492
|
-
setThirdPartyPlatformType(thirdPartyPlatformType: Systems.EThirdPartyPlatform): boolean;
|
|
4493
4481
|
/**
|
|
4494
4482
|
* @description Get the type of the Entity.
|
|
4495
4483
|
* @return The SpaceEntityType enum value.
|
|
@@ -2368,9 +2368,8 @@ export var Systems;
|
|
|
2368
2368
|
SpaceEntityUpdateFlags[SpaceEntityUpdateFlags["UPDATE_FLAGS_COMPONENTS"] = 16] = "UPDATE_FLAGS_COMPONENTS";
|
|
2369
2369
|
SpaceEntityUpdateFlags[SpaceEntityUpdateFlags["UPDATE_FLAGS_SELECTION_ID"] = 32] = "UPDATE_FLAGS_SELECTION_ID";
|
|
2370
2370
|
SpaceEntityUpdateFlags[SpaceEntityUpdateFlags["UPDATE_FLAGS_THIRD_PARTY_REF"] = 64] = "UPDATE_FLAGS_THIRD_PARTY_REF";
|
|
2371
|
-
SpaceEntityUpdateFlags[SpaceEntityUpdateFlags["
|
|
2372
|
-
SpaceEntityUpdateFlags[SpaceEntityUpdateFlags["
|
|
2373
|
-
SpaceEntityUpdateFlags[SpaceEntityUpdateFlags["UPDATE_FLAGS_LOCK_TYPE"] = 512] = "UPDATE_FLAGS_LOCK_TYPE";
|
|
2371
|
+
SpaceEntityUpdateFlags[SpaceEntityUpdateFlags["UPDATE_FLAGS_PARENT"] = 128] = "UPDATE_FLAGS_PARENT";
|
|
2372
|
+
SpaceEntityUpdateFlags[SpaceEntityUpdateFlags["UPDATE_FLAGS_LOCK_TYPE"] = 256] = "UPDATE_FLAGS_LOCK_TYPE";
|
|
2374
2373
|
})(SpaceEntityUpdateFlags = Multiplayer.SpaceEntityUpdateFlags || (Multiplayer.SpaceEntityUpdateFlags = {}));
|
|
2375
2374
|
})(Multiplayer || (Multiplayer = {}));
|
|
2376
2375
|
(function (Multiplayer) {
|
|
@@ -11497,23 +11496,6 @@ export class CSPFoundation {
|
|
|
11497
11496
|
let _result = Module.ccall("csp_multiplayer_SpaceEntity_SetThirdPartyRef_bool_StringRC", "boolean", ["number", "string"], [this.pointer, thirdPartyRef]);
|
|
11498
11497
|
return _result;
|
|
11499
11498
|
}
|
|
11500
|
-
/**
|
|
11501
|
-
* @description Get the third party platform type of this entity.
|
|
11502
|
-
* @return A string representing third party platform type set for this entity.
|
|
11503
|
-
*/
|
|
11504
|
-
getThirdPartyPlatformType() {
|
|
11505
|
-
let _result = Module.ccall("csp_multiplayer_SpaceEntity_GetThirdPartyPlatformTypeC_EThirdPartyPlatform", "number", ["number"], [this.pointer]);
|
|
11506
|
-
return _result;
|
|
11507
|
-
}
|
|
11508
|
-
/**
|
|
11509
|
-
* @description Set third party platform type for this entity.
|
|
11510
|
-
* @param inThirdPartyPlatformType - The third party platform type to set.
|
|
11511
|
-
* @return Whether a new value was set, may fail if not modifiable, or if a dirty property is already set to this value.
|
|
11512
|
-
*/
|
|
11513
|
-
setThirdPartyPlatformType(thirdPartyPlatformType) {
|
|
11514
|
-
let _result = Module.ccall("csp_multiplayer_SpaceEntity_SetThirdPartyPlatformType_bool_EThirdPartyPlatformC", "boolean", ["number", "number"], [this.pointer, thirdPartyPlatformType]);
|
|
11515
|
-
return _result;
|
|
11516
|
-
}
|
|
11517
11499
|
/**
|
|
11518
11500
|
* @description Get the type of the Entity.
|
|
11519
11501
|
* @return The SpaceEntityType enum value.
|