UIScrollView.js 401 B

12345678910111213141516171819
  1. cc.Class({
  2. extends: cc.ScrollView,
  3. properties: {
  4. scrollSpeed:{default:0.2,tooltip:"滑动速度"},
  5. },
  6. onLoad : function(){
  7. },
  8. start () {
  9. },
  10. _handleMoveLogic (touch) {
  11. let that = this;
  12. let deltaMove = touch.getDelta();
  13. that._processDeltaMove(deltaMove.mul(this.scrollSpeed));
  14. }
  15. // update (dt) {},
  16. });