Public repository for MUR pre alpha
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.

13 lines
297 B

  1. extends Control
  2. func _ready():
  3. get_name_node().set_text(config.get_value("game","player_name", "Player"))
  4. get_color_node().set_pick_color(config.get_value("game","player_color", Color.black))
  5. func get_name_node():
  6. return find_node("name")
  7. func get_color_node():
  8. return find_node("color")