是否可以为Aframe中的UI元素设置固定位置。当用户在环境中导航时,元素是否固定在同一位置?例如,我要为此元素设置固定位置
<a-entity text="value: Hello World;"></a-entity>
让您的实体成为照相机的子代:
<a-camera><a-entity text="value: Hello World;" position="0 0 1"></a-entity></a-camera>
Example to illustrate