private static bool IsExcluded(ActorParameter value)
        {
            switch (value)
            {
            case ActorParameter.IsInactive:
            case ActorParameter.UserId:
            {
                return(true);
            }

            default:
                return(false);
            }
        }
예제 #2
0
 void Awake()
 {
     this.CachedTransform = this.transform;
     this.Parameter       = new ActorParameter(this);
 }