No Description
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.

TeamMember.gd 333B

123456789101112131415161718
  1. tool
  2. extends HBoxContainer
  3. export(String) var title: String = ""
  4. export(String) var subtile: String = ""
  5. export(String) var link: String = ""
  6. func _ready():
  7. $HBoxContainer/Title.text = title
  8. $HBoxContainer/Subtitle.text = subtile
  9. if not link.empty():
  10. $LinkButton.show()
  11. func _on_LinkButton_pressed():
  12. OS.shell_open(link)