2d animation software unity 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;
}
}
}