Creator中坐标怎么转换

            使用了这个 this.node.on('touchmove', function(event) {}移动的时候坐标不对,不是触摸点。这个如何转换坐标?
this.node.on("touchmove", function(event){
    this.setPosition(this.parent.convertToNodeSpaceAR(event.getLocation()));
    event.stopPropagation();
}, this.node);

感谢回复。3q