From 7c71e1d147432b288a35c3f87b6192b2fd345007 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 2 Nov 2024 20:06:01 +0100 Subject: [PATCH] Recast: add virtual getter for agent slope --- src/naveditor/include/Editor.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/naveditor/include/Editor.h b/src/naveditor/include/Editor.h index b3ca0c6a..964aaf33 100644 --- a/src/naveditor/include/Editor.h +++ b/src/naveditor/include/Editor.h @@ -327,6 +327,7 @@ public: virtual float getAgentRadius() { return m_agentRadius; } virtual float getAgentHeight() { return m_agentHeight; } virtual float getAgentClimb() { return m_agentMaxClimb; } + virtual float getAgentSlope() { return m_agentMaxSlope; } inline float getCellHeight() const { return m_cellHeight; }