Ejemplo n.º 1
0
 //Sets a random time when a search should take place
 void BeginSearch()
 {
     searchWaitTime = 0f;
     status         = GenericStatus.Searching;
 }
Ejemplo n.º 2
0
 protected override void ResetBehaviours()
 {
     base.ResetBehaviours();
     status         = GenericStatus.None;
     searchWaitTime = 0f;
 }
Ejemplo n.º 3
0
 internal static MangaStatus ToMangaStatus(this GenericStatus @this) => (MangaStatus)@this;
Ejemplo n.º 4
0
 void BeginAttack(GameObject target)
 {
     status = GenericStatus.Attacking;
     FollowTarget(target.transform);
 }
Ejemplo n.º 5
0
 internal static AnimeStatus ToAnimeStatus(this GenericStatus @this) => (AnimeStatus)@this;