示例#1
0
 public void Teleport(Point _point, bool _from)
 {
     if (isTeleporterTerminal)
     {
         Debug.LogError("teleportin to: " + _point.X + ", " + _point.Y);
         teleporterScr.Teleport(_point, _from);
     }
     else
     {
         Debug.LogError("i aint portin' nowhere!");
     }
 }