Advertisement
Guest User

obj_node_create

a guest
Feb 12th, 2018
1,323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. radius = 5; //size of the node
  2.  
  3. /*Don't modify*/
  4. gCost = 0; //distance from start node
  5. hCost = 0; //distance to end node
  6. fCost = 0; //gCost + hCost
  7. parent = undefined; //from which node we got to this node
  8. //all of the above are calculated from the script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement