ProgressBar.js 363 B

12345678910111213141516171819
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. ProgressBarNode: {
  5. default: null,
  6. type: cc.Node,
  7. },
  8. },
  9. start () {
  10. this.SetBarLength(1);
  11. },
  12. SetBarLength:function (BarLength) {//BarLength(0~1,float)
  13. this.ProgressBarNode.getComponent(cc.ProgressBar).progress = BarLength;
  14. }
  15. });