connected-spaces-platform.web 4.23.0 → 4.24.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 +5 -3
- package/Debug/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/Debug/ConnectedSpacesPlatform_WASM.wasm.debug.wasm +0 -0
- package/README.md +2 -148
- package/Release/ConnectedSpacesPlatform_WASM.js +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/connectedspacesplatform.d.ts +5 -0
- package/connectedspacesplatform.js +7 -0
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +14 -0
- package/package.json +1 -1
|
@@ -23651,6 +23651,20 @@ export namespace Multiplayer {
|
|
|
23651
23651
|
);
|
|
23652
23652
|
}
|
|
23653
23653
|
|
|
23654
|
+
/**
|
|
23655
|
+
* @description Destroys the client's local view of all currently known entities.
|
|
23656
|
+
* /// They still reside on the server, however they will not be accessible in the client application.
|
|
23657
|
+
*/
|
|
23658
|
+
|
|
23659
|
+
localDestroyAllEntities(): void {
|
|
23660
|
+
Module.ccall(
|
|
23661
|
+
"csp_multiplayer_SpaceEntitySystem_LocalDestroyAllEntities_void",
|
|
23662
|
+
"void",
|
|
23663
|
+
["number"],
|
|
23664
|
+
[this.pointer],
|
|
23665
|
+
);
|
|
23666
|
+
}
|
|
23667
|
+
|
|
23654
23668
|
/**
|
|
23655
23669
|
* @description Sets the selected state of an entity, if the operation is acceptable.
|
|
23656
23670
|
* /// Criteria:
|
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": "4.
|
|
4
|
+
"version": "4.24.0+506",
|
|
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": {
|