ScrollView.js 433 B

1234567891011121314
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {},
  4. start () {
  5. this.node.off(cc.Node.EventType.TOUCH_START, this._onTouchBegan, this, true);
  6. this.node.off(cc.Node.EventType.TOUCH_MOVE, this._onTouchMoved, this, true);
  7. this.node.off(cc.Node.EventType.TOUCH_END, this._onTouchEnded, this, true);
  8. this.node.off(cc.Node.EventType.TOUCH_CANCEL, this._onTouchCancelled, this, true)
  9. },
  10. });