Я не могу изменить или отключить триггер ui-modal = "trigger: click"
Я пробовал много событий, таких как wheel или dblclick, но, похоже, ничего не работает
<head> <title>My A-Frame Scene</title> <script src="https://aframe.io/releases/0.2.0/aframe.min.js"></script> <script src="https://rawgit.com/IdeaSpaceVR/aframe-ui-modal-component/master/dist/aframe-ui-modal-component.min.js"></script> </head> <body> <a-scene> <a-entity position="0 1.8 5"> <a-entity camera look-controls></a-entity> </a-entity> <a-entity ui-modal="trigger: click" visible="false"> <a-plane width="3" height="1" color="red" position="0 -1.2 0"></a-plane> <a-plane width="3" height="1" color="green" position="0 0 0"></a-plane> <a-plane width="3" height="1" color="blue" position="0 1.2 0"></a-plane> </a-entity> <a-sky src="images/sky.jpg"></a-sky> </a-scene> </body>