You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
297 B
14 lines
297 B
extends Control
|
|
|
|
|
|
func _ready():
|
|
get_name_node().set_text(config.get_value("game","player_name", "Player"))
|
|
get_color_node().set_pick_color(config.get_value("game","player_color", Color.black))
|
|
|
|
|
|
func get_name_node():
|
|
return find_node("name")
|
|
|
|
|
|
func get_color_node():
|
|
return find_node("color")
|