Ejemplo n.º 1
0
 public void Use()
 {
     if (locked)
     {
         inUse = true;
         StartCoroutine(UseCoroutine());
     }
     else
     {
         pageManager.CreateText("The keypad appears to have stopped working.");
     }
 }
Ejemplo n.º 2
0
    // Update is called once per frame



    TextLine CreateText(string message)
    {
        return(pageManager.CreateText(message));
    }