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
Post a Comment