DynamicNavigationMesh.pkg 488 B

12345678910111213141516
  1. $#include "Navigation/DynamicNavigationMesh.h"
  2. class DynamicNavigationMesh : public NavigationMesh
  3. {
  4. void SetDrawObstacles(bool enable);
  5. void SetMaxLayers(unsigned maxLayers);
  6. void SetMaxObstacles(unsigned maxObstacles);
  7. bool GetDrawObstacles() const;
  8. unsigned GetMaxLayers() const;
  9. unsigned GetMaxObstacles() const;
  10. tolua_property__get_set bool drawObstacles;
  11. tolua_property__get_set int maxObstacles;
  12. tolua_property__get_set unsigned maxLayers;
  13. };