Inheritance: UnityEngine.ScriptableObject, JSONAble
示例#1
0
        public override IsoUnityType getIsoUnityType(object c)
        {
            IsoUnityType r = null;

            foreach (IsoUnityType t in types)
            {
                if (t.canHandle(c))
                {
                    r       = t.clone();
                    r.Value = c;
                    break;
                }
            }
            return(r);
        }
示例#2
0
 public override void Destroy(IsoUnityType i)
 {
     IsoUnityType.DestroyImmediate(i);
 }
示例#3
0
 public override void Destroy(IsoUnityType i)
 {
     IsoUnityType.DestroyImmediate(i);
 }
示例#4
0
 public abstract void Destroy(IsoUnityType i);
示例#5
0
 public abstract void Destroy(IsoUnityType i);