From cf8e2be01cef501bca9df92fee87240345de1939 Mon Sep 17 00:00:00 2001 From: Joyless <65855333+Joy-less@users.noreply.github.com> Date: Thu, 9 Apr 2026 01:20:24 +0100 Subject: [PATCH] Improve `MoveToward` doc --- modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs | 2 +- modules/mono/glue/GodotSharp/GodotSharp/Core/Vector3.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs index 6b32efbe09..0642bbc966 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector2.cs @@ -514,7 +514,7 @@ namespace Godot } /// - /// Moves this vector toward by the fixed amount. + /// Returns a new vector moved toward by the fixed amount. Will not go past the final value. /// /// The vector to move towards. /// The amount to move towards by. diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector3.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector3.cs index 033b225a0c..8f3956f41e 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector3.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Vector3.cs @@ -525,7 +525,7 @@ namespace Godot } /// - /// Moves this vector toward by the fixed amount. + /// Returns a new vector moved toward by the fixed amount. Will not go past the final value. /// /// The vector to move towards. /// The amount to move towards by.