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

extends ColorRect
func _ready():
get_node("Hero").connect("item_selected", self, "update_description")
update_description(0)
func update_description(hero):
var description = get_node("Hero").hero_text[hero]
get_node("HeroDescription").set_text(description)