10 lines
156 B
C#
10 lines
156 B
C#
![]() |
using UnityEngine;
|
||
|
|
||
|
public class CostumeAniSpeed : MonoBehaviour
|
||
|
{
|
||
|
private void Start()
|
||
|
{
|
||
|
this.GetComponent<Animation>()["costume"].speed = 0.24f;
|
||
|
}
|
||
|
}
|