aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api')
-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;
};