connected-spaces-platform.web 6.17.0 → 6.19.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 +2 -2
- package/Debug/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/Debug/ConnectedSpacesPlatform_WASM.wasm.debug.wasm +0 -0
- package/Release/ConnectedSpacesPlatform_WASM.js +1 -1
- package/Release/ConnectedSpacesPlatform_WASM.wasm +0 -0
- package/connectedspacesplatform.d.ts +24 -0
- package/connectedspacesplatform.js +32 -0
- package/connectedspacesplatform.js.map +1 -1
- package/connectedspacesplatform.ts +40 -0
- package/package.json +1 -1
|
Binary file
|
|
@@ -3861,6 +3861,14 @@ export declare namespace Common {
|
|
|
3861
3861
|
* @description Multiplies the Vector2 by a scalar
|
|
3862
3862
|
* @param float - Scalar
|
|
3863
3863
|
*/
|
|
3864
|
+
/**
|
|
3865
|
+
* @description Whether two vectors are equal to one another. Has a .001f accuracy.
|
|
3866
|
+
* @param vector3 - Vector to compare
|
|
3867
|
+
*/
|
|
3868
|
+
/**
|
|
3869
|
+
* @description Whether two vectors are inequal to one another. Has a .001f accuracy.
|
|
3870
|
+
* @param vector3 - Vector to compare
|
|
3871
|
+
*/
|
|
3864
3872
|
delete(): void;
|
|
3865
3873
|
get x(): number;
|
|
3866
3874
|
set x(value: number);
|
|
@@ -3916,6 +3924,14 @@ export declare namespace Common {
|
|
|
3916
3924
|
* @description Multiplies the Vector3 by a scalar
|
|
3917
3925
|
* @param float - Scalar
|
|
3918
3926
|
*/
|
|
3927
|
+
/**
|
|
3928
|
+
* @description Whether two vectors are equal to one another. Has a .001f accuracy.
|
|
3929
|
+
* @param vector3 - Vector to compare
|
|
3930
|
+
*/
|
|
3931
|
+
/**
|
|
3932
|
+
* @description Whether two vectors are inequal to one another. Has a .001f accuracy.
|
|
3933
|
+
* @param vector3 - Vector to compare
|
|
3934
|
+
*/
|
|
3919
3935
|
delete(): void;
|
|
3920
3936
|
get x(): number;
|
|
3921
3937
|
set x(value: number);
|
|
@@ -3979,6 +3995,14 @@ export declare namespace Common {
|
|
|
3979
3995
|
* @description Multiplies the Vector4 by a scalar
|
|
3980
3996
|
* @param float - Scalar
|
|
3981
3997
|
*/
|
|
3998
|
+
/**
|
|
3999
|
+
* @description Whether two vectors are equal to one another. Has a .001f accuracy.
|
|
4000
|
+
* @param vector3 - Vector to compare
|
|
4001
|
+
*/
|
|
4002
|
+
/**
|
|
4003
|
+
* @description Whether two vectors are inequal to one another. Has a .001f accuracy.
|
|
4004
|
+
* @param vector3 - Vector to compare
|
|
4005
|
+
*/
|
|
3982
4006
|
delete(): void;
|
|
3983
4007
|
get x(): number;
|
|
3984
4008
|
set x(value: number);
|
|
@@ -10230,6 +10230,16 @@ export class CSPFoundation {
|
|
|
10230
10230
|
* @param float - Scalar
|
|
10231
10231
|
*/
|
|
10232
10232
|
// operator*
|
|
10233
|
+
/**
|
|
10234
|
+
* @description Whether two vectors are equal to one another. Has a .001f accuracy.
|
|
10235
|
+
* @param vector3 - Vector to compare
|
|
10236
|
+
*/
|
|
10237
|
+
// operator==
|
|
10238
|
+
/**
|
|
10239
|
+
* @description Whether two vectors are inequal to one another. Has a .001f accuracy.
|
|
10240
|
+
* @param vector3 - Vector to compare
|
|
10241
|
+
*/
|
|
10242
|
+
// operator!=
|
|
10233
10243
|
delete() {
|
|
10234
10244
|
if (this.ownsPointer && !this.disposed) {
|
|
10235
10245
|
Module.ccall("csp_common_Vector2_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -10330,6 +10340,16 @@ export class CSPFoundation {
|
|
|
10330
10340
|
* @param float - Scalar
|
|
10331
10341
|
*/
|
|
10332
10342
|
// operator*
|
|
10343
|
+
/**
|
|
10344
|
+
* @description Whether two vectors are equal to one another. Has a .001f accuracy.
|
|
10345
|
+
* @param vector3 - Vector to compare
|
|
10346
|
+
*/
|
|
10347
|
+
// operator==
|
|
10348
|
+
/**
|
|
10349
|
+
* @description Whether two vectors are inequal to one another. Has a .001f accuracy.
|
|
10350
|
+
* @param vector3 - Vector to compare
|
|
10351
|
+
*/
|
|
10352
|
+
// operator!=
|
|
10333
10353
|
delete() {
|
|
10334
10354
|
if (this.ownsPointer && !this.disposed) {
|
|
10335
10355
|
Module.ccall("csp_common_Vector3_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -10449,6 +10469,16 @@ export class CSPFoundation {
|
|
|
10449
10469
|
* @param float - Scalar
|
|
10450
10470
|
*/
|
|
10451
10471
|
// operator*
|
|
10472
|
+
/**
|
|
10473
|
+
* @description Whether two vectors are equal to one another. Has a .001f accuracy.
|
|
10474
|
+
* @param vector3 - Vector to compare
|
|
10475
|
+
*/
|
|
10476
|
+
// operator==
|
|
10477
|
+
/**
|
|
10478
|
+
* @description Whether two vectors are inequal to one another. Has a .001f accuracy.
|
|
10479
|
+
* @param vector3 - Vector to compare
|
|
10480
|
+
*/
|
|
10481
|
+
// operator!=
|
|
10452
10482
|
delete() {
|
|
10453
10483
|
if (this.ownsPointer && !this.disposed) {
|
|
10454
10484
|
Module.ccall("csp_common_Vector4_Dtor", "void", ["number"], [this.pointer]);
|
|
@@ -33018,6 +33048,8 @@ export class CSPFoundation {
|
|
|
33018
33048
|
if (_valueShouldFree)
|
|
33019
33049
|
Module._free(_value);
|
|
33020
33050
|
}
|
|
33051
|
+
// operator==
|
|
33052
|
+
// operator!=
|
|
33021
33053
|
size() {
|
|
33022
33054
|
var _returnValue = Module.ccall(`csp_common_Map_SizeC_size_t_${this.TKeyTypeName}_${this.TValueTypeName}`, "number", ["number"], [this.pointer]);
|
|
33023
33055
|
return _returnValue;
|