using System.Collections; using System.Collections.Generic; using UnityEditor; using UnityEngine; public class SlowerAnimation : MonoBehaviour { public float animSpeed; private Animation anim; void Start() { anim = GetComponent(); anim["Take 001"].speed = animSpeed; } }