@dcl/sdk 7.0.0-2906812801.commit-277a94d → 7.0.0-2910409620.commit-f5c436b
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 +18 -0
- package/dist/ecs7/index.js +144 -54
- 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 +18 -0
package/dist/ecs7/index.d.ts
CHANGED
@@ -33,6 +33,15 @@ declare const enum AvatarAnchorPoint {
|
|
33
33
|
/** @public */
|
34
34
|
export declare const AvatarAttach: ComponentDefinition<ISchema<PBAvatarAttach>>;
|
35
35
|
|
36
|
+
declare const enum AvatarModifier {
|
37
|
+
HIDE_AVATARS = 0,
|
38
|
+
DISABLE_PASSPORTS = 1,
|
39
|
+
UNRECOGNIZED = -1
|
40
|
+
}
|
41
|
+
|
42
|
+
/** @public */
|
43
|
+
export declare const AvatarModifierArea: ComponentDefinition<ISchema<PBAvatarModifierArea>>;
|
44
|
+
|
36
45
|
/** @public */
|
37
46
|
export declare const AvatarShape: ComponentDefinition<ISchema<PBAvatarShape>>;
|
38
47
|
|
@@ -221,6 +230,8 @@ export declare namespace Components {
|
|
221
230
|
/** @public */
|
222
231
|
const AvatarAttach: ComponentDefinition<ISchema<PBAvatarAttach>>;
|
223
232
|
/** @public */
|
233
|
+
const AvatarModifierArea: ComponentDefinition<ISchema<PBAvatarModifierArea>>;
|
234
|
+
/** @public */
|
224
235
|
const AvatarShape: ComponentDefinition<ISchema<PBAvatarShape>>;
|
225
236
|
/** @public */
|
226
237
|
const Billboard: ComponentDefinition<ISchema<PBBillboard>>;
|
@@ -440,6 +451,7 @@ declare function defineLibraryComponents({ defineComponentFromSchema }: Pick<IEn
|
|
440
451
|
Animator: ComponentDefinition<ISchema<PBAnimator>>;
|
441
452
|
AudioSource: ComponentDefinition<ISchema<PBAudioSource>>;
|
442
453
|
AvatarAttach: ComponentDefinition<ISchema<PBAvatarAttach>>;
|
454
|
+
AvatarModifierArea: ComponentDefinition<ISchema<PBAvatarModifierArea>>;
|
443
455
|
AvatarShape: ComponentDefinition<ISchema<PBAvatarShape>>;
|
444
456
|
Billboard: ComponentDefinition<ISchema<PBBillboard>>;
|
445
457
|
BoxShape: ComponentDefinition<ISchema<PBBoxShape>>;
|
@@ -1470,6 +1482,12 @@ declare interface PBAvatarAttach {
|
|
1470
1482
|
anchorPointId: AvatarAnchorPoint;
|
1471
1483
|
}
|
1472
1484
|
|
1485
|
+
declare interface PBAvatarModifierArea {
|
1486
|
+
area: Vector3_2 | undefined;
|
1487
|
+
excludeIds: string[];
|
1488
|
+
modifiers: AvatarModifier[];
|
1489
|
+
}
|
1490
|
+
|
1473
1491
|
declare interface PBAvatarShape {
|
1474
1492
|
id: string;
|
1475
1493
|
name?: string | undefined;
|