Pathfinding.TileHandlerHelper.Update C# (CSharp) Method

Update() private method

private Update ( ) : void
return void
		void Update () {
			
			if (updateInterval == -1 || Time.realtimeSinceStartup - lastUpdateTime < updateInterval || handler == null) {
				return;
			}
			
			ForceUpdate ();
		}