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

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy