diff options
author | tpart <tpart120@proton.me> | 2024-07-02 00:21:55 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-07-02 00:22:02 +0200 |
commit | 359ddd27fc86241cebd99851118c11bad31fcf9f (patch) | |
tree | 23a54633066038c8989a826ea6cff6ac85eb795b /client/player/onscreen_controls/controls.gd | |
parent | a57c833665172c83eb449f739073ac36238377c9 (diff) | |
download | hurrycurry-359ddd27fc86241cebd99851118c11bad31fcf9f.tar hurrycurry-359ddd27fc86241cebd99851118c11bad31fcf9f.tar.bz2 hurrycurry-359ddd27fc86241cebd99851118c11bad31fcf9f.tar.zst |
Fix on-screen buttons crashing; Make buttons slightly transparent
Diffstat (limited to 'client/player/onscreen_controls/controls.gd')
-rw-r--r-- | client/player/onscreen_controls/controls.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/player/onscreen_controls/controls.gd b/client/player/onscreen_controls/controls.gd index 395f6665..be7fe67e 100644 --- a/client/player/onscreen_controls/controls.gd +++ b/client/player/onscreen_controls/controls.gd @@ -16,8 +16,8 @@ extends CanvasLayer @onready var buttons = $Buttons -@onready var boost = $Control/Boost -@onready var interact = $Control/Interact +@onready var boost = $Buttons/Boost +@onready var interact = $Buttons/Interact @onready var modulate_color = $MovementStick.pressed_color func _ready(): |