addon for remapping inputs
| -rw-r--r-- | .github/icon.png | bin | 0 -> 4968 bytes | |||
| -rw-r--r-- | .github/screen.png | bin | 6990 -> 2766 bytes | |||
| -rw-r--r-- | .github/screen1.png | bin | 0 -> 4076 bytes | |||
| -rw-r--r-- | README.md | 16 | ||||
| -rw-r--r-- | addons/remap/README.md | 16 | ||||
| -rw-r--r-- | addons/remap/package.json | 2 |
6 files changed, 17 insertions, 17 deletions
diff --git a/.github/icon.png b/.github/icon.png Binary files differnew file mode 100644 index 0000000..5b08f6a --- /dev/null +++ b/.github/icon.png diff --git a/.github/screen.png b/.github/screen.png Binary files differindex 253bd8a..7c67f3f 100644 --- a/.github/screen.png +++ b/.github/screen.png diff --git a/.github/screen1.png b/.github/screen1.png Binary files differnew file mode 100644 index 0000000..231b2ac --- /dev/null +++ b/.github/screen1.png @@ -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 diff --git a/addons/remap/README.md b/addons/remap/README.md index 4274e7e..a6f8e55 100644 --- a/addons/remap/README.md +++ b/addons/remap/README.md @@ -1,4 +1,4 @@ -# Input remapping tool +# RemapTools [](https://godotengine.org "Made with godot") <a href='https://ko-fi.com/bendn' title='Buy me a coffee' target='_blank'><img height='28' src='https://storage.ko-fi.com/cdn/brandasset/kofi_button_red.png' alt='Buy me a coffee'> </a> @@ -7,7 +7,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: @@ -15,7 +16,7 @@ Supports: - Xbox - Nintendo switch - Playstation - - Fallback icons for a generic controller. + - Fallback icons for a generic controller - Keyboard - Mouse @@ -26,11 +27,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 diff --git a/addons/remap/package.json b/addons/remap/package.json index cc7057d..1506429 100644 --- a/addons/remap/package.json +++ b/addons/remap/package.json @@ -1,6 +1,6 @@ { "name": "@bendn/remap", - "version": "5.0.2", + "version": "5.0.4", "description": "godot input remapping", "main": "InteractiveActionLabel.gd", "scripts": { |