我正在尝试编写一个检查对象旋转的Aframe组件。但是,我不确定如何编写IF语句检查。
我已经知道旋转属性在集合中返回x,y,z。但是我不确定如何检查。
var rotation = document.querySelector('#checkItem').getAttribute('rotation');
if (rotation === {x: 0, y: 90, z: 00}) {
document.querySelector('#key').setAttribute('visible');
}
在JS中,您必须检查单个属性:
if (rotation.x === 0 && rotation.y === 90 && rotation.z === 0) { ... }