RotationLoading.js 245 B

123456789101112131415161718192021
  1. var RotationLoading = cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. },
  5. // LIFE-CYCLE CALLBACKS:
  6. // onLoad () {},
  7. start () {
  8. },
  9. update (dt) {
  10. },
  11. });
  12. module.exports = RotationLoading;