/**
* Author:W
* 重力感应事件
*/
cc.Class({
extends: cc.Component,
properties: {
},
// LIFE-CYCLE CALLBACKS:
onLoad () {
//开启重力感应
cc.systemEvent.setAccelerometerEnabled(true);
cc.systemEvent.on(cc.SystemEvent.EventType.DEVICEMOTION,this.onDeviceMotionEvent,this);
},
onDestroy(){
cc.systemEvent.off(cc.SystemEvent.EventType.DEVICEMOTION,this.onDeviceMotionEvent,this);
},
onDeviceMotionEvent(event){
cc.log("重力感应= event acc.x:"+event.acc.x+" event acc.y:"+event.acc.y);
},
start () {
},
// update (dt) {},
});
重力感应事件
最新推荐文章于 2025-01-10 11:40:07 发布