diff --git a/src/hub.html b/src/hub.html index 3438ab9a046581e9e5f940e25a98ede7ff88bb91..e188ce44ec55f4131c8af1988fa2265c4e05f612 100644 --- a/src/hub.html +++ b/src/hub.html @@ -101,7 +101,7 @@ <a-entity class="model" gltf-model-plus="inflate: true"> <template data-name="RootScene"> - <a-entity ik-controller hand-pose__left hand-pose__right animation-mixer space-invader-mesh="meshSelector: .Bot_Skinned"></a-entity> + <a-entity ik-controller hand-pose__left hand-pose__right animation-mixer space-invader-mesh="meshName: Bot_Skinned"></a-entity> </template> <template data-name="Neck"> @@ -117,13 +117,12 @@ </template> <template data-name="Chest"> - <a-entity> - <a-entity personal-space-invader="radius: 0.2; useMaterial: true;" bone-visibility> </a-entity> - <a-entity billboard> - <a-entity mixin="rounded-text-button" block-button visible-while-frozen ui-class-while-frozen position="0 0 .35"> </a-entity> - <a-entity visible-while-frozen text="value:Block; width:2.5; align:center;" position="0 0 0.36"></a-entity> - </a-entity> + <a-entity personal-space-invader="radius: 0.2; useMaterial: true;" bone-visibility> + <a-entity billboard> + <a-entity mixin="rounded-text-button" block-button visible-while-frozen ui-class-while-frozen position="0 0 .35"> </a-entity> + <a-entity visible-while-frozen text="value:Block; width:2.5; align:center;" position="0 0 0.36"></a-entity> </a-entity> + </a-entity> </template> <template data-name="Head"> @@ -143,11 +142,6 @@ </a-entity> </template> - <!-- needs to exist for the benefit of the personal space calculator --> - <template data-name="Bot_Skinned"> - <a-entity></a-entity> - </template> - <template data-name="LeftHand"> <a-entity personal-space-invader="radius: 0.1" bone-visibility></a-entity> </template> @@ -404,7 +398,7 @@ <a-entity bone-visibility></a-entity> </template> - </a-entity> + </a-entity> </a-entity> <!-- Environment --> diff --git a/src/systems/personal-space-bubble.js b/src/systems/personal-space-bubble.js index 238c0b63f70c06502350b83dd354cbb256c755bf..23da15b839cd8130757587b2f717be154b243806 100644 --- a/src/systems/personal-space-bubble.js +++ b/src/systems/personal-space-bubble.js @@ -120,10 +120,10 @@ function createSphereGizmo(radius) { */ AFRAME.registerComponent("space-invader-mesh", { schema: { - meshSelector: { type: "string" } + meshName: { type: "string" } }, - init() { - this.targetMesh = this.el.querySelector(this.data.meshSelector).object3DMap.skinnedmesh; + update() { + this.targetMesh = this.el.object3D.getObjectByName(this.data.meshName); } });