简体   繁体   中英

Aframe. How to make entities appear when click in another entity

I have 2 boxes in A-FRAME (0.9.2), i want to make the second box (red) appear when click on the first (green). At the beginning, the red box is not visible but i want it to appear and disappear when click in the green box.

AFRAME.registerComponent('cajaverde', {
      init: function() {
        this.el.addEventListener("click", (e) => {
          let aparecer = document.querySelector("#cajaroja")
          aparecer.setAttribute("visible", !aparecer.getAttribute("visible"))
        })
      }
    })

And here are my boxes:

      <a-box caja id="cajaroja" color="#b51628" depth=".1" height="1" width="0.9" position="1 2.6 -2" visible="false"></a-box>
      <a-box caja id="cajaverde" color="#44cf67" depth=".1" height="1" width="0.9" position="-0.5 2.6 -2"></a-box>

When i click the green box nothing happens.

I also have the code here

If your component is called cajaverde then you need to use its full name.

Instead of

<a-box caja ... 

There should be

<a-box cajaverde ...

And only on the one which is supposed to be the button.


working glitch here .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM