重力感应无效
wx.onAcceAccelerometerChange(function(res){
this.airplaneNode.x+=res.x*110;
this.changeRotation(res.x);
cc.console.log(res.x);
})
在这条函数里面,只执行了打印的语句,其他语句并没有执行,甚至我进行赋值操作也没用。上面我加了wx.startAccelerometer(),也是没有用的,有大佬指导下这是为什么么?加速计这个函数到底咋用