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.

ChoiceCircle.tscn 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. [gd_scene load_steps=6 format=2]
  2. [ext_resource path="res://images/end-circle.png" type="Texture" id=1]
  3. [ext_resource path="res://scenes/end-screen/ChoiceCircle.gd" type="Script" id=2]
  4. [ext_resource path="res://fonts/open-sans/OpenSans-Regular.ttf" type="DynamicFontData" id=3]
  5. [ext_resource path="res://scenes/end-screen/HoverControl.tscn" type="PackedScene" id=4]
  6. [sub_resource type="DynamicFont" id=1]
  7. size = 20
  8. font_data = ExtResource( 3 )
  9. [node name="ChoiceCircle" type="Control"]
  10. margin_left = 500.0
  11. margin_top = 500.0
  12. margin_right = 650.0
  13. margin_bottom = 700.0
  14. rect_min_size = Vector2( 150, 200 )
  15. rect_rotation = -0.0875701
  16. script = ExtResource( 2 )
  17. __meta__ = {
  18. "_edit_use_anchors_": false
  19. }
  20. [node name="VBoxContainer" type="VBoxContainer" parent="."]
  21. anchor_right = 1.0
  22. anchor_bottom = 1.0
  23. rect_min_size = Vector2( 150, 200 )
  24. __meta__ = {
  25. "_edit_use_anchors_": false
  26. }
  27. [node name="ChoiceLabel" type="Label" parent="VBoxContainer"]
  28. margin_right = 150.0
  29. margin_bottom = 28.0
  30. custom_fonts/font = SubResource( 1 )
  31. text = "Choix"
  32. align = 1
  33. [node name="TextureRect" type="TextureRect" parent="VBoxContainer"]
  34. margin_top = 32.0
  35. margin_right = 150.0
  36. margin_bottom = 168.0
  37. mouse_default_cursor_shape = 2
  38. size_flags_vertical = 3
  39. texture = ExtResource( 1 )
  40. expand = true
  41. stretch_mode = 6
  42. __meta__ = {
  43. "_edit_use_anchors_": false
  44. }
  45. [node name="DilemmaLabel" type="Label" parent="VBoxContainer"]
  46. margin_top = 172.0
  47. margin_right = 150.0
  48. margin_bottom = 200.0
  49. custom_fonts/font = SubResource( 1 )
  50. text = "Dilemme"
  51. align = 1
  52. [node name="Tween" type="Tween" parent="."]
  53. [node name="HoverControl" parent="." instance=ExtResource( 4 )]