Files
CocosCreatorTutorial/RollingNumber/assets/script/RollingModel.js
2020-03-26 18:35:00 +08:00

19 lines
330 B
JavaScript

class RollingModel {
constructor() {
this.direction = 0;
this.time = 0;
this.curIndex = 0;
this.items = [];
this.posStart = null;
this.borderUp = null;
this.borderDown = null;
this.borderLeft = null;
this.borderRight = null;
this.rollNumbers = [];
}
}
module.exports = RollingModel;