Example #1
0
 // Unity Functions //
 // Start                       //
 // Use this for initialization //
 void Start()
 {
     // Initialise search state as void
     mSearchState = Search_State.VOID;
 }
Example #2
0
 // SetSearchState               //
 // Sets this nodes search state //
 public void SetSearchState( Search_State newState )
 {
     mSearchState = newState;
 }