From a17c15ae96ca9470c647788a56ff37e27d0fa45a Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Mon, 3 Feb 2025 22:11:07 -0600 Subject: [PATCH] Add missing return comments for get methods. --- Source/Engine/Input/Input.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/Engine/Input/Input.h b/Source/Engine/Input/Input.h index a937f4f2e..dec381ca9 100644 --- a/Source/Engine/Input/Input.h +++ b/Source/Engine/Input/Input.h @@ -349,12 +349,14 @@ public: /// Gets the first action configuration by name. /// /// The name of the action config. + /// The first Action configuration with the name. Empty configuration if not found. API_FUNCTION() static ActionConfig GetActionConfigByName(const StringView& name); /// /// Gets all the action configurations by name. /// /// The name of the action config. + /// The Action configurations with the name. API_FUNCTION() static Array GetAllActionConfigsByName(const StringView& name); /// @@ -394,12 +396,14 @@ public: /// Gets the first axis configurations by name. /// /// The name of the axis config. + /// The first Axis configuration with the name. Empty configuration if not found. API_FUNCTION() static AxisConfig GetAxisConfigByName(const StringView& name); /// /// Gets all the axis configurations by name. /// /// The name of the axis config. + /// The axis configurations with the name. API_FUNCTION() static Array GetAllAxisConfigsByName(const StringView& name); /// @@ -432,7 +436,7 @@ public: API_FUNCTION() static void SetAxisConfigByName(const StringView& name, InputAxisType inputType, const GamepadButton positiveButton, const GamepadButton negativeButton, InputGamepadIndex gamepadIndex, bool all = false); /// - /// Sets the axis configuration accessories by name, and type.. + /// Sets the axis configuration accessories by name, and type. /// /// The name of the action config. /// The type to sort by.