1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-25 05:26:40 -05:00

input_common: Add experimental motion to button

This commit is contained in:
german77
2023-05-05 22:48:52 -06:00
parent 2506594c50
commit 9b771bcb8f
2 changed files with 10 additions and 0 deletions

View File

@@ -82,6 +82,9 @@ void MappingFactory::RegisterButton(const MappingData& data) {
new_input.Set("axis", data.index);
new_input.Set("threshold", 0.5f);
break;
case EngineInputType::Motion:
new_input.Set("motion", data.index);
break;
default:
return;
}