Change name to AxisValueChanged.

This commit is contained in:
Chandler Cox
2023-09-26 10:26:06 -05:00
parent 9b48d1feb8
commit d14dc56b5c
3 changed files with 7 additions and 7 deletions

View File

@@ -98,7 +98,7 @@ Delegate<const Float2&, int32> Input::TouchDown;
Delegate<const Float2&, int32> Input::TouchMove;
Delegate<const Float2&, int32> Input::TouchUp;
Delegate<StringView, const InputActionState&> Input::ActionTriggered;
Delegate<StringView> Input::AxisChanged;
Delegate<StringView> Input::AxisValueChanged;
Array<ActionConfig> Input::ActionMappings;
Array<AxisConfig> Input::AxisMappings;
@@ -1025,7 +1025,7 @@ void InputService::Update()
{
if (Math::NotNearEqual(i->Value.Value, i->Value.PrevKeyValue))
{
Input::AxisChanged(i->Key);
Input::AxisValueChanged(i->Key);
}
}