mirror of
https://github.com/Relintai/pandemonium_demo_projects.git
synced 2024-12-23 14:06:50 +01:00
14 lines
205 B
GDScript3
14 lines
205 B
GDScript3
|
extends Label
|
||
|
|
||
|
|
||
|
var test_name setget _set_test_name
|
||
|
|
||
|
|
||
|
func _ready():
|
||
|
set_text("Select a test from the menu to start it")
|
||
|
|
||
|
|
||
|
func _set_test_name(value):
|
||
|
test_name = value
|
||
|
set_text("Test: %s" % test_name)
|