Pathfinding.MonoModifier.Awake C# (CSharp) Method

Awake() public method

public Awake ( ) : void
return void
		public void Awake () {
#if !PhotonImplementation
			seeker = GetComponent<Seeker>();
#endif
			
			if (seeker != null) {
				seeker.RegisterModifier (this);
				//seeker.postProcessOriginalPath += new OnPathDelegate (ApplyOriginal);
				//seeker.postProcessPath += new OnPathDelegate (Apply);
				//seeker.getNextTarget += new GetNextTargetDelegate (GetNextTarget);
			}
		}