Created
November 9, 2018 15:14
-
-
Save trunghieuvn/5c5738e23e67128c0d62b2ffc6a13712 to your computer and use it in GitHub Desktop.
check null
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var anim = this.getComponent(cc.Animation); | |
if(anim != null) | |
{ | |
anim.play(); | |
var anim = this.getComponent(cc.Animation); | |
var animState = anim.play("TigerRun"); | |
// accelerate the playing speed of animation | |
animState.speed = 2; | |
animState.wrapMode = cc.WrapMode.Loop; | |
anim.playAdditive("TigerRun"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment