Exemplo n.º 1
0
 public void SetArea(PlatformArea a)
 {
     this.Area = a;
 }
Exemplo n.º 2
0
 // Runs on startup, retrieves the rigidbody and area components.
 public override void Initialize()
 {
     m_AgentRb = GetComponent <Rigidbody>();
     m_MyArea  = area.GetComponent <PlatformArea>();
 }
Exemplo n.º 3
0
 public MapToAreaPointer(PlatformArea n, SquareType t, int r)
 {
     area             = n;
     type             = t;
     rangeToNextAbove = r;
 }