updates to navmesh

- 2 new navmesh operators, reset and clear navmesh data.
- rename operators to be more consistent with existing names.
- some minor edits to draw function, was getting the custom data for every index when it already had the array.
This commit is contained in:
2011-10-10 07:21:42 +00:00
parent 70cd4b77bb
commit 2de1bd7dc5
5 changed files with 132 additions and 44 deletions

View File

@@ -258,9 +258,11 @@ void MESH_OT_edgering_select(struct wmOperatorType *ot);
void MESH_OT_loopcut(struct wmOperatorType *ot);
/* ******************* mesh_navmesh.c */
void MESH_OT_create_navmesh(struct wmOperatorType *ot);
void MESH_OT_assign_navpolygon(struct wmOperatorType *ot);
void MESH_OT_assign_new_navpolygon(struct wmOperatorType *ot);
void MESH_OT_navmesh_make(struct wmOperatorType *ot);
void MESH_OT_navmesh_face_copy(struct wmOperatorType *ot);
void MESH_OT_navmesh_face_add(struct wmOperatorType *ot);
void MESH_OT_navmesh_reset(struct wmOperatorType *ot);
void MESH_OT_navmesh_clear(struct wmOperatorType *ot);
#endif // MESH_INTERN_H