addon for remapping inputs
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1,4 +1,4 @@ -# Input remapping tool +# RemapTools [](https://godotengine.org "Made with godot") [](https://www.npmjs.com/package/@bendn/remap) @@ -8,7 +8,8 @@ A tool that allows the remapping of `InputMap` actions in godot4. ## Features -[](_blank "Some themage required") +[](_blank "Key, Mouse support")<br> +[](_blank "Gamepad support") Supports: @@ -16,7 +17,7 @@ Supports: - Xbox - Nintendo switch - Playstation - - Fallback icons for a generic controller. + - Fallback icons for a generic controller - Keyboard - Mouse @@ -27,11 +28,10 @@ Supports: ## Usage ```gdscript -const RemapButton = preload("res://addons/remap/RemapButton.gd") -var label = RemapButton.new() -label.action = "ui_left" -label._name = "left" -add_child(label) +var button = RemapButton.new() +button.action = "ui_left" +button._name = "left" +add_child(button) ``` ## Installation |