Barrier.js 373 B

1234567891011121314151617181920212223
  1. cc.Class({
  2. extends: cc.Component,
  3. properties: {
  4. },
  5. start () {
  6. },
  7. FallingDown:function()
  8. {
  9. var spine = this.getComponent('sp.Skeleton');
  10. spine.setAnimation(0, 'Idl1_3', false);
  11. },
  12. Shake:function()
  13. {
  14. var spine = this.getComponent('sp.Skeleton');
  15. spine.setAnimation(0, 'Idl1_2', false);
  16. },
  17. });