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
|
Binary file
|
|
@@ -4175,6 +4175,11 @@ export declare namespace Multiplayer {
|
|
|
4175
4175
|
* It is highly advised not to call this function unless you know what you are doing.
|
|
4176
4176
|
*/
|
|
4177
4177
|
retrieveAllEntities(): void;
|
|
4178
|
+
/**
|
|
4179
|
+
* @description Destroys the client's local view of all currently known entities.
|
|
4180
|
+
* /// They still reside on the server, however they will not be accessible in the client application.
|
|
4181
|
+
*/
|
|
4182
|
+
localDestroyAllEntities(): void;
|
|
4178
4183
|
/**
|
|
4179
4184
|
* @description Sets the selected state of an entity, if the operation is acceptable.
|
|
4180
4185
|
* /// Criteria:
|
|
@@ -10249,6 +10249,13 @@ export class CSPFoundation {
|
|
|
10249
10249
|
retrieveAllEntities() {
|
|
10250
10250
|
Module.ccall("csp_multiplayer_SpaceEntitySystem_RetrieveAllEntities_void", "void", ["number"], [this.pointer]);
|
|
10251
10251
|
}
|
|
10252
|
+
/**
|
|
10253
|
+
* @description Destroys the client's local view of all currently known entities.
|
|
10254
|
+
* /// They still reside on the server, however they will not be accessible in the client application.
|
|
10255
|
+
*/
|
|
10256
|
+
localDestroyAllEntities() {
|
|
10257
|
+
Module.ccall("csp_multiplayer_SpaceEntitySystem_LocalDestroyAllEntities_void", "void", ["number"], [this.pointer]);
|
|
10258
|
+
}
|
|
10252
10259
|
/**
|
|
10253
10260
|
* @description Sets the selected state of an entity, if the operation is acceptable.
|
|
10254
10261
|
* /// Criteria:
|