PlayerStates.js 361 B

12345678910111213141516171819
  1. cc.Class({
  2. extends: require("BasePlayerStates"),
  3. properties: {
  4. },
  5. init()
  6. {
  7. this._super();
  8. this.endLineStopPoint = 20+(70/2);
  9. //handrailEndX extend length
  10. this.handrailExtlen = 250;
  11. this.Combo = 0;
  12. this.runningCountArr = [];
  13. this.jumpTimes = 0;
  14. this.runTimes = 0;
  15. }
  16. });