Created
May 25, 2011 11:04
-
-
Save AngryAnt/990789 to your computer and use it in GitHub Desktop.
GetCost
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public float GetCost (Agent agent) | |
{ | |
return (To.Position - From.Position).Magnitude * | |
Weight * | |
(customWeightHandler == null ? 1.0f : customWeightHandler (agent, this)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment