| 1234567891011121314151617181920212223 |
- cc.Class({
- extends: cc.Component,
- properties: {
- },
- start () {
- },
- FallingDown:function()
- {
- var spine = this.getComponent('sp.Skeleton');
- spine.setAnimation(0, 'Idl1_3', false);
- },
- Shake:function()
- {
- var spine = this.getComponent('sp.Skeleton');
- spine.setAnimation(0, 'Idl1_2', false);
- },
- });
|