A team game with an emphasis on movement (with no shooting), inspired by Overwatch and Zineth
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.

10 lines
264 B

  1. extends ColorRect
  2. func _ready():
  3. get_node("Hero").connect("item_selected", self, "update_description")
  4. update_description(0)
  5. func update_description(hero):
  6. var description = get_node("Hero").hero_text[hero]
  7. get_node("HeroDescription").set_text(description)