Lifechip.js 166 B

123456789101112
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. anim: cc.Animation
  5. },
  6. play: function () {
  7. this.anim.play('lifeChange');
  8. },
  9. });