connected-spaces-platform.web 5.8.0 → 5.8.1

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.
@@ -4352,24 +4352,6 @@ export namespace Multiplayer {
4352
4352
  */
4353
4353
  writeString: (value: string) => void;
4354
4354
 
4355
- /**
4356
- * @description Write a vector2 field of the entity.
4357
- * @param value - The value to write.
4358
- */
4359
- writeVector2: (value: Common.Vector2) => void;
4360
-
4361
- /**
4362
- * @description Write a vector3 field of the entity.
4363
- * @param value - The value to write.
4364
- */
4365
- writeVector3: (value: Common.Vector3) => void;
4366
-
4367
- /**
4368
- * @description Write a vector4 field of the entity.
4369
- * @param value - The value to write.
4370
- */
4371
- writeVector4: (value: Common.Vector4) => void;
4372
-
4373
4355
  /**
4374
4356
  * @description Write a null field of the entity.
4375
4357
  */
@@ -25337,7 +25319,7 @@ export namespace Multiplayer {
25337
25319
  /**
25338
25320
  * @description Custom constructor for the SpaceTransform.
25339
25321
  * @param position - The position value for the transform.
25340
- * @param rotation - The rotation value for the transform.
25322
+ * @param rotation - The rotation value for the transform, will be normalized during multiplication operations.
25341
25323
  * @param scale - The scale value for the transform.
25342
25324
  */
25343
25325
  static create_position_rotation_scale(
@@ -25363,10 +25345,16 @@ export namespace Multiplayer {
25363
25345
  */
25364
25346
  // operator==
25365
25347
 
25348
+ /**
25349
+ * @description Inequality operator
25350
+ * @param spaceTransform - Transform
25351
+ */
25352
+ // operator!=
25353
+
25366
25354
  /**
25367
25355
  * @description Multiplication operator
25368
25356
  * @param spaceTransform - Transform
25369
- * NOTE: This mimics the operations of a matrix transform multiplication, but converts the back into a recognisable form.
25357
+ * NOTE: This performs TRS matrix composition, then decomposes back to Pos, Rot, Scale.
25370
25358
  */
25371
25359
  // operator*
25372
25360
 
@@ -30119,7 +30107,7 @@ export namespace Systems {
30119
30107
 
30120
30108
  /**
30121
30109
  * @description Set a callback for handling an event log. Can be used to debug Connected Spaces Platform within a client application.
30122
- * @param inEventCallback - The callback to execute when an evvent log occurs.
30110
+ * @param inEventCallback - The callback to execute when an event log occurs.
30123
30111
  */
30124
30112
  setEventCallback(callback: (arg1: string) => void) {
30125
30113
  var _callback = (_stateObject__: number, arg1) => {
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": "5.8.0+567",
4
+ "version": "5.8.1+569",
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": {