@dcl/sdk 7.0.0-2637795719.commit-7dd5361 → 7.0.0-2649664321.commit-63b4b53
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 +0 -6
- package/dist/ecs7/index.js +1 -1
- package/dist/ecs7/index.min.js.map +1 -1
- package/dist/ecs7/proto-definitions/BoxShape.proto +1 -2
- package/dist/ecs7/proto-definitions/CylinderShape.proto +1 -2
- package/dist/ecs7/proto-definitions/NFTShape.proto +0 -1
- package/dist/ecs7/proto-definitions/PlaneShape.proto +1 -3
- package/dist/ecs7/proto-definitions/README.md +1 -1
- package/dist/ecs7/proto-definitions/SphereShape.proto +1 -1
- package/dist/ecs7/proto-definitions/TextShape.proto +5 -7
- package/package.json +4 -4
- package/types/ecs7/index.d.ts +0 -6
package/dist/ecs7/index.d.ts
CHANGED
@@ -1151,7 +1151,6 @@ declare interface PBAudioStream {
|
|
1151
1151
|
declare interface PBBoxShape {
|
1152
1152
|
withCollisions: boolean;
|
1153
1153
|
isPointerBlocker: boolean;
|
1154
|
-
/** TODO: should visible be another component? that maybe affects all the entities */
|
1155
1154
|
visible: boolean;
|
1156
1155
|
uvs: number[];
|
1157
1156
|
}
|
@@ -1159,7 +1158,6 @@ declare interface PBBoxShape {
|
|
1159
1158
|
declare interface PBCylinderShape {
|
1160
1159
|
withCollisions: boolean;
|
1161
1160
|
isPointerBlocker: boolean;
|
1162
|
-
/** TODO: should visible be another component? that maybe affects all the entities */
|
1163
1161
|
visible: boolean;
|
1164
1162
|
radiusTop: number;
|
1165
1163
|
radiusBottom: number;
|
@@ -1175,7 +1173,6 @@ declare interface PBGLTFShape {
|
|
1175
1173
|
declare interface PBNFTShape {
|
1176
1174
|
withCollisions: boolean;
|
1177
1175
|
isPointerBlocker: boolean;
|
1178
|
-
/** TODO: should visible be another component? that maybe affects all the entities */
|
1179
1176
|
visible: boolean;
|
1180
1177
|
src: string;
|
1181
1178
|
assetId: string;
|
@@ -1222,9 +1219,7 @@ declare interface PBOnPointerUpResult {
|
|
1222
1219
|
declare interface PBPlaneShape {
|
1223
1220
|
withCollisions: boolean;
|
1224
1221
|
isPointerBlocker: boolean;
|
1225
|
-
/** TODO: should visible be another component? that maybe affects all the entities */
|
1226
1222
|
visible: boolean;
|
1227
|
-
/** TODO: this could be better serialized as u00 v00 u01 v01 u10 v10 u11 v11 for speed */
|
1228
1223
|
uvs: number[];
|
1229
1224
|
}
|
1230
1225
|
|
@@ -1236,7 +1231,6 @@ declare interface PBSphereShape {
|
|
1236
1231
|
|
1237
1232
|
declare interface PBTextShape {
|
1238
1233
|
text: string;
|
1239
|
-
/** this should be removed */
|
1240
1234
|
visible: boolean;
|
1241
1235
|
font: string;
|
1242
1236
|
opacity: number;
|