aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-12-11 13:20:32 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-12-11 13:20:32 +0100
commit6eef90e9ffb1d8fc25161e912bc5d8aa8e4024da (patch)
tree872c0ebff38854c1e0f62e818f800002db8f5ec4 /src
parent405bf73b273c7b9a6574d77b4a034d9588c9af1b (diff)
Added Doxygen
Diffstat (limited to 'src')
-rw-r--r--src/crepe/api/AI.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crepe/api/AI.h b/src/crepe/api/AI.h
index fc28451..f1c8951 100644
--- a/src/crepe/api/AI.h
+++ b/src/crepe/api/AI.h
@@ -117,7 +117,9 @@ private:
//! The AISystem is the only class that should access the flags and path_index variables
friend class AISystem;
+ //! The minimum amount of steps for the path following behavior
static constexpr const int MIN_STEP = 16;
+ //! The radius to step size ratio for the path following behavior
static constexpr const float RADIUS_TO_STEP = 400.0f;
};