From 48f23399fc27a6a65e52f326f0ac988d8cd59bc0 Mon Sep 17 00:00:00 2001 From: Jake Young Date: Fri, 11 Sep 2026 14:05:35 -0400 Subject: [PATCH] Update comment for simple move to include Time.DeltaTime --- Source/Engine/Physics/Colliders/CharacterController.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Engine/Physics/Colliders/CharacterController.h b/Source/Engine/Physics/Colliders/CharacterController.h index 367b87df1..1a8847819 100644 --- a/Source/Engine/Physics/Colliders/CharacterController.h +++ b/Source/Engine/Physics/Colliders/CharacterController.h @@ -209,9 +209,9 @@ public: public: /// - /// Moves the character with the given speed. Gravity is automatically applied. It will slide along colliders. Result collision flags is the summary of collisions that occurred during the Move. + /// Moves the character with the given speed. Gravity is automatically applied. The speed is multipled by Time.DeltaTime internally. It will slide along colliders. Result collision flags is the summary of collisions that occurred during the Move. /// - /// The movement speed (in units/s). + /// The movement speed (in units/s). The speed is multipled by Time.DeltaTime internally. /// The collision flags. It can be used to trigger various character animations. API_FUNCTION() CollisionFlags SimpleMove(const Vector3& speed);