@dcl/sdk 7.0.0-2827081203.commit-fe0fe32 → 7.0.0-2875155444.commit-bb5e498
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/dist/ecs7/index.d.ts +225 -103
- package/dist/ecs7/index.js +5013 -4951
- package/dist/ecs7/index.min.js +1 -1
- package/dist/ecs7/index.min.js.map +1 -1
- package/package.json +4 -4
- package/types/ecs7/index.d.ts +223 -101
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/sdk",
|
3
|
-
"version": "7.0.0-
|
3
|
+
"version": "7.0.0-2875155444.commit-bb5e498",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/src/index.js",
|
6
6
|
"typings": "dist/index.d.ts",
|
@@ -27,8 +27,8 @@
|
|
27
27
|
"src/cli/**/*.js"
|
28
28
|
],
|
29
29
|
"dependencies": {
|
30
|
-
"@dcl/amd": "6.11.
|
31
|
-
"@dcl/build-ecs": "6.11.
|
30
|
+
"@dcl/amd": "6.11.5-2875155444.commit-bb5e498",
|
31
|
+
"@dcl/build-ecs": "6.11.5-2875155444.commit-bb5e498",
|
32
32
|
"@dcl/kernel": "1.0.0-2638443584.commit-696a74b",
|
33
33
|
"@dcl/posix": "^1.0.4",
|
34
34
|
"@dcl/schemas": "4.8.0",
|
@@ -38,5 +38,5 @@
|
|
38
38
|
"ignore": "^5.1.8"
|
39
39
|
},
|
40
40
|
"minCliVersion": "3.10.2",
|
41
|
-
"commit": "
|
41
|
+
"commit": "bb5e49883f95974248e9fb5c77c97ddc2f1f14bb"
|
42
42
|
}
|
package/types/ecs7/index.d.ts
CHANGED
@@ -16,10 +16,11 @@ declare const enum ActionButton {
|
|
16
16
|
UNRECOGNIZED = -1
|
17
17
|
}
|
18
18
|
|
19
|
-
/**
|
20
|
-
|
21
|
-
|
22
|
-
|
19
|
+
/** @public */
|
20
|
+
declare const Animator: ComponentDefinition<ISchema<PBAnimator>>;
|
21
|
+
|
22
|
+
/** @public */
|
23
|
+
declare const AudioSource: ComponentDefinition<ISchema<PBAudioSource>>;
|
23
24
|
|
24
25
|
declare const enum AvatarAnchorPoint {
|
25
26
|
POSITION = 0,
|
@@ -29,11 +30,29 @@ declare const enum AvatarAnchorPoint {
|
|
29
30
|
UNRECOGNIZED = -1
|
30
31
|
}
|
31
32
|
|
33
|
+
/** @public */
|
34
|
+
declare const AvatarAttach: ComponentDefinition<ISchema<PBAvatarAttach>>;
|
35
|
+
|
36
|
+
/** @public */
|
37
|
+
declare const AvatarShape: ComponentDefinition<ISchema<PBAvatarShape>>;
|
38
|
+
|
39
|
+
/** @public */
|
40
|
+
declare const Billboard: ComponentDefinition<ISchema<PBBillboard>>;
|
41
|
+
|
42
|
+
/** @public */
|
43
|
+
declare const BoxShape: ComponentDefinition<ISchema<PBBoxShape>>;
|
44
|
+
|
32
45
|
/**
|
33
46
|
* @public
|
34
47
|
*/
|
35
48
|
declare type ByteBuffer = ReturnType<typeof createByteBuffer>;
|
36
49
|
|
50
|
+
/** @public */
|
51
|
+
declare const CameraMode: ComponentDefinition<ISchema<PBCameraMode>>;
|
52
|
+
|
53
|
+
/** @public */
|
54
|
+
declare const CameraModeArea: ComponentDefinition<ISchema<PBCameraModeArea>>;
|
55
|
+
|
37
56
|
declare const enum CameraModeValue {
|
38
57
|
FIRST_PERSON = 0,
|
39
58
|
THIRD_PERSON = 1,
|
@@ -49,7 +68,7 @@ declare interface Color3 {
|
|
49
68
|
/**
|
50
69
|
* @public
|
51
70
|
*/
|
52
|
-
declare type ComponentDefinition<T extends
|
71
|
+
declare type ComponentDefinition<T extends ISchema = ISchema<any>> = {
|
53
72
|
_id: number;
|
54
73
|
has(entity: Entity): boolean;
|
55
74
|
getFrom(entity: Entity): DeepReadonly<ComponentType<T>>;
|
@@ -68,17 +87,80 @@ declare type ComponentDefinition<T extends EcsType = EcsType<any>> = {
|
|
68
87
|
isDirty(entity: Entity): boolean;
|
69
88
|
};
|
70
89
|
|
90
|
+
/** @public */
|
91
|
+
declare namespace Components {
|
92
|
+
/** @public */
|
93
|
+
const Transform: ComponentDefinition<ISchema< {
|
94
|
+
position: {
|
95
|
+
x: number;
|
96
|
+
y: number;
|
97
|
+
z: number;
|
98
|
+
};
|
99
|
+
rotation: {
|
100
|
+
x: number;
|
101
|
+
y: number;
|
102
|
+
z: number;
|
103
|
+
w: number;
|
104
|
+
};
|
105
|
+
scale: {
|
106
|
+
x: number;
|
107
|
+
y: number;
|
108
|
+
/** @public */
|
109
|
+
z: number;
|
110
|
+
};
|
111
|
+
parent?: Entity | undefined;
|
112
|
+
}>>;
|
113
|
+
/** @public */
|
114
|
+
const Animator: ComponentDefinition<ISchema<PBAnimator>>;
|
115
|
+
/** @public */
|
116
|
+
const AudioSource: ComponentDefinition<ISchema<PBAudioSource>>;
|
117
|
+
/** @public */
|
118
|
+
const AvatarAttach: ComponentDefinition<ISchema<PBAvatarAttach>>;
|
119
|
+
/** @public */
|
120
|
+
const AvatarShape: ComponentDefinition<ISchema<PBAvatarShape>>;
|
121
|
+
/** @public */
|
122
|
+
const Billboard: ComponentDefinition<ISchema<PBBillboard>>;
|
123
|
+
/** @public */
|
124
|
+
const BoxShape: ComponentDefinition<ISchema<PBBoxShape>>;
|
125
|
+
/** @public */
|
126
|
+
const CameraMode: ComponentDefinition<ISchema<PBCameraMode>>;
|
127
|
+
/** @public */
|
128
|
+
const CameraModeArea: ComponentDefinition<ISchema<PBCameraModeArea>>;
|
129
|
+
/** @public */
|
130
|
+
const CylinderShape: ComponentDefinition<ISchema<PBCylinderShape>>;
|
131
|
+
/** @public */
|
132
|
+
const GLTFShape: ComponentDefinition<ISchema<PBGLTFShape>>;
|
133
|
+
/** @public */
|
134
|
+
const NFTShape: ComponentDefinition<ISchema<PBNFTShape>>;
|
135
|
+
/** @public */
|
136
|
+
const OnPointerDown: ComponentDefinition<ISchema<PBOnPointerDown>>;
|
137
|
+
/** @public */
|
138
|
+
const OnPointerDownResult: ComponentDefinition<ISchema<PBOnPointerDownResult>>;
|
139
|
+
/** @public */
|
140
|
+
const OnPointerUp: ComponentDefinition<ISchema<PBOnPointerUp>>;
|
141
|
+
/** @public */
|
142
|
+
const OnPointerUpResult: ComponentDefinition<ISchema<PBOnPointerUpResult>>;
|
143
|
+
/** @public */
|
144
|
+
const PlaneShape: ComponentDefinition<ISchema<PBPlaneShape>>;
|
145
|
+
/** @public */
|
146
|
+
const PointerLock: ComponentDefinition<ISchema<PBPointerLock>>;
|
147
|
+
/** @public */
|
148
|
+
const SphereShape: ComponentDefinition<ISchema<PBSphereShape>>;
|
149
|
+
/** @public */
|
150
|
+
const TextShape: ComponentDefinition<ISchema<PBTextShape>>;
|
151
|
+
}
|
152
|
+
|
71
153
|
/**
|
72
154
|
* @public
|
73
155
|
*/
|
74
|
-
declare type
|
156
|
+
declare type ComponentSchema<T extends [ComponentDefinition, ...ComponentDefinition[]]> = {
|
75
157
|
[K in keyof T]: T[K] extends ComponentDefinition ? ReturnType<T[K]['mutable']> : never;
|
76
158
|
};
|
77
159
|
|
78
160
|
/**
|
79
161
|
* @public
|
80
162
|
*/
|
81
|
-
declare type ComponentType<T extends
|
163
|
+
declare type ComponentType<T extends ISchema> = EcsResult<T>;
|
82
164
|
|
83
165
|
/**
|
84
166
|
* ByteBuffer is a wrapper of DataView which also adds a read and write offset.
|
@@ -218,6 +300,9 @@ declare interface CreateByteBufferOptions {
|
|
218
300
|
initialCapacity?: number;
|
219
301
|
}
|
220
302
|
|
303
|
+
/** @public */
|
304
|
+
declare const CylinderShape: ComponentDefinition<ISchema<PBCylinderShape>>;
|
305
|
+
|
221
306
|
/**
|
222
307
|
* Make each field readonly deeply
|
223
308
|
* @public
|
@@ -226,27 +311,45 @@ declare type DeepReadonly<T> = {
|
|
226
311
|
readonly [P in keyof T]: DeepReadonly<T[P]>;
|
227
312
|
};
|
228
313
|
|
229
|
-
declare function
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
314
|
+
declare function defineLibraryComponents({ defineComponent }: Pick<IEngine, 'defineComponent'>): {
|
315
|
+
Transform: ComponentDefinition<ISchema< {
|
316
|
+
position: {
|
317
|
+
x: number;
|
318
|
+
y: number;
|
319
|
+
z: number;
|
320
|
+
};
|
321
|
+
rotation: {
|
322
|
+
x: number;
|
323
|
+
y: number;
|
324
|
+
z: number;
|
325
|
+
w: number;
|
326
|
+
};
|
327
|
+
scale: {
|
328
|
+
x: number;
|
329
|
+
y: number;
|
330
|
+
z: number;
|
331
|
+
};
|
332
|
+
parent?: Entity | undefined;
|
333
|
+
}>>;
|
334
|
+
Animator: ComponentDefinition<ISchema<PBAnimator>>;
|
335
|
+
AudioSource: ComponentDefinition<ISchema<PBAudioSource>>;
|
336
|
+
AvatarAttach: ComponentDefinition<ISchema<PBAvatarAttach>>;
|
337
|
+
AvatarShape: ComponentDefinition<ISchema<PBAvatarShape>>;
|
338
|
+
Billboard: ComponentDefinition<ISchema<PBBillboard>>;
|
339
|
+
BoxShape: ComponentDefinition<ISchema<PBBoxShape>>;
|
340
|
+
CameraMode: ComponentDefinition<ISchema<PBCameraMode>>;
|
341
|
+
CameraModeArea: ComponentDefinition<ISchema<PBCameraModeArea>>;
|
342
|
+
CylinderShape: ComponentDefinition<ISchema<PBCylinderShape>>;
|
343
|
+
GLTFShape: ComponentDefinition<ISchema<PBGLTFShape>>;
|
344
|
+
NFTShape: ComponentDefinition<ISchema<PBNFTShape>>;
|
345
|
+
OnPointerDown: ComponentDefinition<ISchema<PBOnPointerDown>>;
|
346
|
+
OnPointerDownResult: ComponentDefinition<ISchema<PBOnPointerDownResult>>;
|
347
|
+
OnPointerUp: ComponentDefinition<ISchema<PBOnPointerUp>>;
|
348
|
+
OnPointerUpResult: ComponentDefinition<ISchema<PBOnPointerUpResult>>;
|
349
|
+
PlaneShape: ComponentDefinition<ISchema<PBPlaneShape>>;
|
350
|
+
PointerLock: ComponentDefinition<ISchema<PBPointerLock>>;
|
351
|
+
SphereShape: ComponentDefinition<ISchema<PBSphereShape>>;
|
352
|
+
TextShape: ComponentDefinition<ISchema<PBTextShape>>;
|
250
353
|
};
|
251
354
|
|
252
355
|
/**
|
@@ -261,26 +364,7 @@ declare type double = number;
|
|
261
364
|
/**
|
262
365
|
* @public
|
263
366
|
*/
|
264
|
-
declare
|
265
|
-
|
266
|
-
/**
|
267
|
-
* @public
|
268
|
-
*/
|
269
|
-
declare type EcsResult<T extends EcsType> = T extends EcsType ? ReturnType<T['deserialize']> : never;
|
270
|
-
|
271
|
-
/**
|
272
|
-
* @public
|
273
|
-
*/
|
274
|
-
declare const EcsString: EcsType<string>;
|
275
|
-
|
276
|
-
/**
|
277
|
-
* @public
|
278
|
-
*/
|
279
|
-
declare type EcsType<T = any> = {
|
280
|
-
serialize(value: T, builder: ByteBuffer): void;
|
281
|
-
deserialize(reader: ByteBuffer): T;
|
282
|
-
create(): T;
|
283
|
-
};
|
367
|
+
declare type EcsResult<T extends ISchema> = T extends ISchema ? ReturnType<T['deserialize']> : never;
|
284
368
|
|
285
369
|
/**
|
286
370
|
* @public
|
@@ -302,11 +386,6 @@ declare type Entity = number & {
|
|
302
386
|
|
303
387
|
declare const entitySymbol: unique symbol;
|
304
388
|
|
305
|
-
/**
|
306
|
-
* @public
|
307
|
-
*/
|
308
|
-
declare function Enum<T>(type: EcsType<any>): EcsType<T>;
|
309
|
-
|
310
389
|
/**
|
311
390
|
* Constant used to define the minimal number value in Babylon.js
|
312
391
|
* @public
|
@@ -318,26 +397,19 @@ declare type ExcludeUndefined<T> = {
|
|
318
397
|
[P in keyof T]: undefined extends T[P] ? never : P;
|
319
398
|
}[keyof T];
|
320
399
|
|
321
|
-
/**
|
322
|
-
* @public
|
323
|
-
*/
|
324
|
-
declare const FlatString: EcsType<string>;
|
325
|
-
|
326
400
|
/** @public */
|
327
401
|
declare type float = number;
|
328
402
|
|
329
|
-
/**
|
330
|
-
|
331
|
-
|
332
|
-
|
403
|
+
/** @public */
|
404
|
+
declare type FloatArray = number[];
|
405
|
+
|
406
|
+
/** @public */
|
407
|
+
declare const GLTFShape: ComponentDefinition<ISchema<PBGLTFShape>>;
|
333
408
|
|
334
409
|
/**
|
335
410
|
* @public
|
336
411
|
*/
|
337
|
-
declare
|
338
|
-
|
339
|
-
/** @public */
|
340
|
-
declare type FloatArray = number[];
|
412
|
+
declare function IArray<T>(type: ISchema<T>): ISchema<Array<T>>;
|
341
413
|
|
342
414
|
/**
|
343
415
|
* @public
|
@@ -348,10 +420,10 @@ declare type IEngine = {
|
|
348
420
|
removeEntity(entity: Entity): void;
|
349
421
|
addSystem(system: Update, priority?: number, name?: string): void;
|
350
422
|
removeSystem(selector: string | Update): boolean;
|
351
|
-
defineComponent<T extends
|
352
|
-
mutableGroupOf<T extends [ComponentDefinition, ...ComponentDefinition[]]>(...components: T): Iterable<[Entity, ...
|
353
|
-
groupOf<T extends [ComponentDefinition, ...ComponentDefinition[]]>(...components: T): Iterable<[Entity, ...DeepReadonly<
|
354
|
-
getComponent<T extends
|
423
|
+
defineComponent<T extends ISchema>(componentId: number, spec: T): ComponentDefinition<T>;
|
424
|
+
mutableGroupOf<T extends [ComponentDefinition, ...ComponentDefinition[]]>(...components: T): Iterable<[Entity, ...ComponentSchema<T>]>;
|
425
|
+
groupOf<T extends [ComponentDefinition, ...ComponentDefinition[]]>(...components: T): Iterable<[Entity, ...DeepReadonly<ComponentSchema<T>>]>;
|
426
|
+
getComponent<T extends ISchema>(componentId: number): ComponentDefinition<T>;
|
355
427
|
update(dt: number): void;
|
356
428
|
baseComponents: SdkComponents;
|
357
429
|
};
|
@@ -363,30 +435,34 @@ declare type IEngineParams = {
|
|
363
435
|
transports?: Transport[];
|
364
436
|
};
|
365
437
|
|
366
|
-
/** Include property keys from T where the property is assignable to U */
|
367
|
-
declare type IncludeUndefined<T> = {
|
368
|
-
[P in keyof T]: undefined extends T[P] ? P : never;
|
369
|
-
}[keyof T];
|
370
|
-
|
371
438
|
/**
|
372
439
|
* @public
|
373
440
|
*/
|
374
|
-
declare
|
441
|
+
declare function IEnum<T>(type: ISchema<any>): ISchema<T>;
|
375
442
|
|
376
443
|
/**
|
377
444
|
* @public
|
378
445
|
*/
|
379
|
-
declare
|
446
|
+
declare function IMap<T extends Spec>(spec: T): ISchema<Result<T>>;
|
447
|
+
|
448
|
+
/** Include property keys from T where the property is assignable to U */
|
449
|
+
declare type IncludeUndefined<T> = {
|
450
|
+
[P in keyof T]: undefined extends T[P] ? P : never;
|
451
|
+
}[keyof T];
|
380
452
|
|
381
453
|
/**
|
382
454
|
* @public
|
383
455
|
*/
|
384
|
-
declare
|
456
|
+
declare function IOptional<T>(spec: ISchema<T>): ISchema<T | undefined>;
|
385
457
|
|
386
458
|
/**
|
387
459
|
* @public
|
388
460
|
*/
|
389
|
-
declare
|
461
|
+
declare type ISchema<T = any> = {
|
462
|
+
serialize(value: T, builder: ByteBuffer): void;
|
463
|
+
deserialize(reader: ByteBuffer): T;
|
464
|
+
create(): T;
|
465
|
+
};
|
390
466
|
|
391
467
|
/**
|
392
468
|
* Interface for the size containing width and height
|
@@ -403,11 +479,6 @@ declare interface ISize {
|
|
403
479
|
height: number;
|
404
480
|
}
|
405
481
|
|
406
|
-
/**
|
407
|
-
* @public
|
408
|
-
*/
|
409
|
-
declare function MapType<T extends Spec>(spec: T): EcsType<Result<T>>;
|
410
|
-
|
411
482
|
/**
|
412
483
|
* Class used to store matrix data (4x4)
|
413
484
|
* @public
|
@@ -1127,6 +1198,9 @@ declare namespace Matrix {
|
|
1127
1198
|
function toggleProjectionMatrixHandInPlace(self: MutableMatrix): void;
|
1128
1199
|
}
|
1129
1200
|
|
1201
|
+
/** @public */
|
1202
|
+
declare const NFTShape: ComponentDefinition<ISchema<PBNFTShape>>;
|
1203
|
+
|
1130
1204
|
/** @public */
|
1131
1205
|
declare type Nullable<T> = T | null;
|
1132
1206
|
|
@@ -1138,10 +1212,17 @@ declare type OnlyOptionalUndefinedTypes<T> = {
|
|
1138
1212
|
[K in IncludeUndefined<T>]?: T[K];
|
1139
1213
|
};
|
1140
1214
|
|
1141
|
-
/**
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1215
|
+
/** @public */
|
1216
|
+
declare const OnPointerDown: ComponentDefinition<ISchema<PBOnPointerDown>>;
|
1217
|
+
|
1218
|
+
/** @public */
|
1219
|
+
declare const OnPointerDownResult: ComponentDefinition<ISchema<PBOnPointerDownResult>>;
|
1220
|
+
|
1221
|
+
/** @public */
|
1222
|
+
declare const OnPointerUp: ComponentDefinition<ISchema<PBOnPointerUp>>;
|
1223
|
+
|
1224
|
+
/** @public */
|
1225
|
+
declare const OnPointerUpResult: ComponentDefinition<ISchema<PBOnPointerUpResult>>;
|
1145
1226
|
|
1146
1227
|
/**
|
1147
1228
|
* Defines potential orientation for back face culling
|
@@ -1480,6 +1561,12 @@ declare namespace Plane {
|
|
1480
1561
|
function signedDistanceTo(plane: ReadonlyPlane, point: Vector3.ReadonlyVector3): number;
|
1481
1562
|
}
|
1482
1563
|
|
1564
|
+
/** @public */
|
1565
|
+
declare const PlaneShape: ComponentDefinition<ISchema<PBPlaneShape>>;
|
1566
|
+
|
1567
|
+
/** @public */
|
1568
|
+
declare const PointerLock: ComponentDefinition<ISchema<PBPointerLock>>;
|
1569
|
+
|
1483
1570
|
/**
|
1484
1571
|
* @public
|
1485
1572
|
*/
|
@@ -1664,13 +1751,33 @@ declare type ReceiveMessage = {
|
|
1664
1751
|
* @public
|
1665
1752
|
*/
|
1666
1753
|
declare type Result<T extends Spec> = ToOptional<{
|
1667
|
-
[K in keyof T]: T[K] extends
|
1754
|
+
[K in keyof T]: T[K] extends ISchema ? ReturnType<T[K]['deserialize']> : T[K] extends Spec ? Result<T[K]> : never;
|
1668
1755
|
}>;
|
1669
1756
|
|
1670
1757
|
/**
|
1671
1758
|
* @public
|
1672
1759
|
*/
|
1673
|
-
declare
|
1760
|
+
declare namespace Schemas {
|
1761
|
+
export type SchemaType = ISchema;
|
1762
|
+
const Boolean: ISchema<boolean>;
|
1763
|
+
const String: ISchema<string>;
|
1764
|
+
const Float: ISchema<number>;
|
1765
|
+
const Double: ISchema<number>;
|
1766
|
+
const Byte: ISchema<number>;
|
1767
|
+
const Short: ISchema<number>;
|
1768
|
+
const Int: ISchema<number>;
|
1769
|
+
const Int64: ISchema<number>;
|
1770
|
+
const Number: ISchema<number>;
|
1771
|
+
const Enum: typeof IEnum;
|
1772
|
+
const Array: typeof IArray;
|
1773
|
+
const Map: typeof IMap;
|
1774
|
+
const Optional: typeof IOptional;
|
1775
|
+
}
|
1776
|
+
|
1777
|
+
/**
|
1778
|
+
* @public
|
1779
|
+
*/
|
1780
|
+
declare type SdkComponents = ReturnType<typeof defineLibraryComponents>;
|
1674
1781
|
|
1675
1782
|
/**
|
1676
1783
|
* Defines supported spaces
|
@@ -1689,9 +1796,15 @@ declare enum Space {
|
|
1689
1796
|
* @public
|
1690
1797
|
*/
|
1691
1798
|
declare interface Spec {
|
1692
|
-
[key: string]:
|
1799
|
+
[key: string]: ISchema;
|
1693
1800
|
}
|
1694
1801
|
|
1802
|
+
/** @public */
|
1803
|
+
declare const SphereShape: ComponentDefinition<ISchema<PBSphereShape>>;
|
1804
|
+
|
1805
|
+
/** @public */
|
1806
|
+
declare const TextShape: ComponentDefinition<ISchema<PBTextShape>>;
|
1807
|
+
|
1695
1808
|
/**
|
1696
1809
|
* Constant used to convert a value to gamma space
|
1697
1810
|
* @public
|
@@ -1706,17 +1819,26 @@ declare const ToLinearSpace = 2.2;
|
|
1706
1819
|
|
1707
1820
|
declare type ToOptional<T> = OnlyOptionalUndefinedTypes<T> & OnlyNonUndefinedTypes<T>;
|
1708
1821
|
|
1709
|
-
/**
|
1710
|
-
|
1711
|
-
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
1715
|
-
scale: Vector3.MutableVector3;
|
1716
|
-
parent?: Entity;
|
1822
|
+
/** @public */
|
1823
|
+
declare const Transform: ComponentDefinition<ISchema< {
|
1824
|
+
position: {
|
1825
|
+
x: number;
|
1826
|
+
y: number;
|
1827
|
+
z: number;
|
1717
1828
|
};
|
1718
|
-
|
1719
|
-
|
1829
|
+
rotation: {
|
1830
|
+
x: number;
|
1831
|
+
y: number;
|
1832
|
+
z: number;
|
1833
|
+
w: number;
|
1834
|
+
};
|
1835
|
+
scale: {
|
1836
|
+
x: number;
|
1837
|
+
y: number;
|
1838
|
+
z: number;
|
1839
|
+
};
|
1840
|
+
parent?: Entity | undefined;
|
1841
|
+
}>>;
|
1720
1842
|
|
1721
1843
|
declare type Transport = {
|
1722
1844
|
type: string;
|