Skip to content

Instantly share code, notes, and snippets.

@AngryAnt
Created May 25, 2011 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AngryAnt/990789 to your computer and use it in GitHub Desktop.
Save AngryAnt/990789 to your computer and use it in GitHub Desktop.
GetCost
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