我想获得相对mouseX和mouseY位置进行一些动态重力定位。
我注意到事件只能应用于节点。
this.scene.addUIEvent('click');
console.log('scene', this.scene);
this.scene.addComponent({
onReceive: function(e, payload) {
console.log(e, payload)
if (e == "mousemove") {
var pos = payload.node.getPosition()
anchor.x = pos[0];
anchor.y = pos[1];
}
}
});
是否可以在Famous坐标系中获得鼠标位置?没有它在一个节点上?