// 绑定键盘事件
// cc.EventTarget.addListener(listener, this.node);
键盘事件推荐用
注册
cc.systemEvent.on(cc.SystemEvent.EventType.KEY_DOWN, this.onKeyDown, this);
反注册
cc.systemEvent.off(cc.SystemEvent.EventType.KEY_DOWN, this.onKeyDown, this);
// 绑定键盘事件
// cc.EventTarget.addListener(listener, this.node);
键盘事件推荐用
注册
cc.systemEvent.on(cc.SystemEvent.EventType.KEY_DOWN, this.onKeyDown, this);
反注册
cc.systemEvent.off(cc.SystemEvent.EventType.KEY_DOWN, this.onKeyDown, this);