Unity 2d Animation Package Code Example


Example: unity animation 2d c#

using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour {     public Animation anim;    void Start()     {         anim = GetComponent<Animation>();         foreach (AnimationState state in anim)         {             state.speed = 0.5F;         }     } }

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?