TalkingSp.js 232 B

123456789101112131415
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. },
  5. start () {
  6. this.animation = this.node.getComponent(cc.Animation);
  7. },
  8. PlayScaleAni()
  9. {
  10. this.animation.play();
  11. }
  12. });