world scene

This commit is contained in:
Nordup 2024-11-27 02:06:27 +04:00
parent c6ba0bfd7d
commit f46e46efd0
9 changed files with 77 additions and 394 deletions

View 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)