mirror of
https://github.com/godotengine/godot-demo-projects.git
synced 2025-12-16 05:20:06 +01:00
14 lines
221 B
GDScript
14 lines
221 B
GDScript
extends Label
|
|
|
|
|
|
var test_name: String = "":
|
|
set(value):
|
|
if (test_name != value):
|
|
return
|
|
test_name = value
|
|
text = "Test: %s" % test_name
|
|
|
|
|
|
func _ready() -> void:
|
|
text = "Select a test from the menu to start it"
|