Ejemplo n.º 1
0
 private void Awake()
 {
     player   = GameObject.FindGameObjectWithTag("Player");
     mover    = GetComponent <Mover>();
     source   = GetComponent <ConversationSource>();
     position = GetPosition();
 }
Ejemplo n.º 2
0
 public Conversation Find(int id, ConversationSource source)
 {
     return(FindAll().Where(t => t.Id == id && !t.IsHidden && t.Source == source).FirstOrDefault());
 }