@dcl/sdk 7.0.0-2740047851.commit-db29ac2 → 7.0.0-2781674220.commit-d772e02
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 +7 -0
- package/dist/ecs7/index.js +78 -9
- 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 +7 -0
package/dist/ecs7/index.d.ts
CHANGED
@@ -223,6 +223,7 @@ declare function defineSdkComponents(engine: Pick<IEngine, 'defineComponent'>):
|
|
223
223
|
AudioSource: ComponentDefinition<EcsType<PBAudioSource>>;
|
224
224
|
AvatarAttach: ComponentDefinition<EcsType<PBAvatarAttach>>;
|
225
225
|
AvatarShape: ComponentDefinition<EcsType<PBAvatarShape>>;
|
226
|
+
Billboard: ComponentDefinition<EcsType<PBBillboard>>;
|
226
227
|
BoxShape: ComponentDefinition<EcsType<PBBoxShape>>;
|
227
228
|
CameraModeArea: ComponentDefinition<EcsType<PBCameraModeArea>>;
|
228
229
|
CylinderShape: ComponentDefinition<EcsType<PBCylinderShape>>;
|
@@ -1187,6 +1188,12 @@ declare interface PBAvatarShape {
|
|
1187
1188
|
talking: boolean;
|
1188
1189
|
}
|
1189
1190
|
|
1191
|
+
declare interface PBBillboard {
|
1192
|
+
x: boolean;
|
1193
|
+
y: boolean;
|
1194
|
+
z: boolean;
|
1195
|
+
}
|
1196
|
+
|
1190
1197
|
declare interface PBBoxShape {
|
1191
1198
|
withCollisions: boolean;
|
1192
1199
|
isPointerBlocker: boolean;
|