2025-05-18 01:04:31 +08:00

10 lines
156 B
C#

using UnityEngine;
public class CostumeAniSpeed : MonoBehaviour
{
private void Start()
{
this.GetComponent<Animation>()["costume"].speed = 0.24f;
}
}