OffMeshConnection.pkg 678 B

12345678910111213141516171819202122
  1. $#include "Navigation/OffMeshConnection.h"
  2. class OffMeshConnection : public Component
  3. {
  4. void SetEndPoint(Node* node);
  5. void SetRadius(float radius);
  6. void SetBidirectional(bool enabled);
  7. void SetMask(unsigned newMask);
  8. void SetAreaID(unsigned newAreaID);
  9. Node* GetEndPoint() const;
  10. float GetRadius() const;
  11. bool IsBidirectional() const;
  12. unsigned GetMask() const;
  13. unsigned GetAreaID() const;
  14. tolua_property__get_set Node* endPoint;
  15. tolua_property__get_set float radius;
  16. tolua_property__is_set bool bidirectional;
  17. tolua_property__get_set unsigned mask;
  18. tolua_property__get_set unsigned areaID;
  19. };