Unity—string转换为Enum枚举类型 ringstring枚举 123456789public class Anim : MonoBehaviour { public AnimType animType; private void Start() { animType = (AnimType)System.Enum.Parse(typeof(AnimType), transform.name); } }