mirror of
https://github.com/thegatesbrowser/thegates.git
synced 2025-08-24 11:17:26 -04:00
world scene
This commit is contained in:
parent
c6ba0bfd7d
commit
f46e46efd0
9 changed files with 77 additions and 394 deletions
13
app/scripts/ui/menu/help_button.gd
Normal file
13
app/scripts/ui/menu/help_button.gd
Normal file
|
@ -0,0 +1,13 @@
|
|||
extends RoundButton
|
||||
|
||||
@export var url: String
|
||||
|
||||
|
||||
func _ready() -> void:
|
||||
super._ready()
|
||||
|
||||
pressed.connect(open_help_url)
|
||||
|
||||
|
||||
func open_help_url() -> void:
|
||||
OS.shell_open(url)
|
Loading…
Add table
Add a link
Reference in a new issue