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.

CreditsItem.tscn 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [gd_scene load_steps=7 format=2]
  2. [ext_resource path="res://fonts/open-sans/OpenSans-Light.ttf" type="DynamicFontData" id=1]
  3. [ext_resource path="res://fonts/open-sans/OpenSans-Regular.ttf" type="DynamicFontData" id=2]
  4. [ext_resource path="res://scenes/typo/TeamMember.gd" type="Script" id=3]
  5. [ext_resource path="res://scenes/typo/Button.tscn" type="PackedScene" id=4]
  6. [sub_resource type="DynamicFont" id=1]
  7. size = 40
  8. outline_size = 3
  9. outline_color = Color( 0.384314, 0.380392, 0.380392, 1 )
  10. font_data = ExtResource( 2 )
  11. [sub_resource type="DynamicFont" id=2]
  12. size = 40
  13. font_data = ExtResource( 1 )
  14. [node name="TeamMember" type="HBoxContainer"]
  15. anchor_right = 1.0
  16. anchor_bottom = 1.0
  17. script = ExtResource( 3 )
  18. __meta__ = {
  19. "_edit_use_anchors_": false
  20. }
  21. [node name="HBoxContainer" type="VBoxContainer" parent="."]
  22. margin_right = 1920.0
  23. margin_bottom = 1080.0
  24. size_flags_horizontal = 3
  25. [node name="Title" type="Label" parent="HBoxContainer"]
  26. margin_right = 1920.0
  27. margin_bottom = 55.0
  28. custom_fonts/font = SubResource( 1 )
  29. text = "Title"
  30. [node name="Subtitle" type="Label" parent="HBoxContainer"]
  31. margin_top = 59.0
  32. margin_right = 1920.0
  33. margin_bottom = 114.0
  34. custom_fonts/font = SubResource( 2 )
  35. text = "Subtitle"
  36. [node name="LinkButton" parent="." instance=ExtResource( 4 )]
  37. visible = false
  38. margin_left = 1812.0
  39. margin_top = 0.0
  40. margin_right = 1920.0
  41. margin_bottom = 1080.0
  42. text = "Ouvrir"
  43. [connection signal="pressed" from="LinkButton" to="." method="_on_LinkButton_pressed"]