mirror of
https://github.com/Leo501/CocosCreatorTutorial.git
synced 2026-05-19 07:38:26 +08:00
19 lines
330 B
JavaScript
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; |