@nodaro/shared 3.1.0 → 3.2.0
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/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/__tests__/scene3d-base-visibility.test.ts +36 -0
- package/src/scene3d-v2.ts +3 -0
package/dist/index.cjs
CHANGED
|
@@ -15379,6 +15379,7 @@ var scene3DEntityV2Schema = zod.z.object({
|
|
|
15379
15379
|
position: vec3Schema.optional(),
|
|
15380
15380
|
rotation: rotationVec3Schema.optional(),
|
|
15381
15381
|
scale: scaleVec3Schema.optional(),
|
|
15382
|
+
visible: zod.z.boolean().optional(),
|
|
15382
15383
|
identityColor: scene3DColorSchema.optional(),
|
|
15383
15384
|
anchors: zod.z.array(scene3DAnchorSchema).max(SCENE3D_V2_LIMITS.maxAnchorsPerEntity).optional(),
|
|
15384
15385
|
capabilities: zod.z.array(scene3DEntityCapabilitySchema).max(SCENE3D_ENTITY_CAPABILITIES.length).optional(),
|