zhuanDongAnim.ts 325 B

12345678910111213141516171819
  1. const {ccclass, property} = cc._decorator;
  2. /**
  3. * 富翁银行背后光环转动效果
  4. */
  5. @ccclass
  6. export default class zhuanDongAnim extends cc.Component {
  7. start () {
  8. }
  9. onEnable(){
  10. this.node.runAction(cc.repeatForever(cc.rotateBy(3,360)))
  11. }
  12. // update (dt) {}
  13. }