Skip to content

Commit

Permalink
Fixes for 4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
xorblo-doitus committed Aug 15, 2024
1 parent 73cb817 commit 7a1f0d1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* text=auto eol=lf

# Only include the addons folder when downloading from the Asset Library.
/** export-ignore
/** export-ignore
/addons/ !export-ignore
/addons/complete_settings !export-ignore
/addons/complete_settings/** !export-ignore
2 changes: 1 addition & 1 deletion addons/complete_settings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ You can also just define translations for keys in the main translation file of y

## Godot version

Godot 4.1.1, may not work with 4.0, wont work with 3.x
Godot 4.2.2 & 4.3


## See also :
Expand Down
1 change: 1 addition & 0 deletions addons/complete_settings/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ name="CompleteSettings"
description="Provide scenes and nodes to easily build a setting menu, with audio setttings, keybinds etc..."
author="Patou"
version="1.1"
script=""
6 changes: 3 additions & 3 deletions project.godot
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ complete_settings/auto_initialize=true
config/name="CompleteSettings"
config/tags=PackedStringArray("addon")
run/main_scene="res://test/manual/all.tscn"
config/features=PackedStringArray("4.2", "GL Compatibility")
config/features=PackedStringArray("4.3", "GL Compatibility")
config/icon="res://icon.svg"

[display]
Expand All @@ -33,13 +33,13 @@ enabled=PackedStringArray("res://addons/complete_settings/plugin.cfg")

test1={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":true,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":69,"key_label":0,"unicode":69,"echo":false,"script":null)
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":true,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":69,"key_label":0,"unicode":69,"location":0,"echo":false,"script":null)
, Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":2,"position":Vector2(101, 12),"global_position":Vector2(104, 44),"factor":1.0,"button_index":2,"canceled":false,"pressed":true,"double_click":false,"script":null)
]
}
test2={
"deadzone": 0.5,
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"echo":false,"script":null)
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null)
]
}
test3={
Expand Down

0 comments on commit 7a1f0d1

Please sign in to comment.