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.

Infobox.tscn 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. [gd_scene load_steps=3 format=2]
  2. [ext_resource path="res://addons/EXP-System-Dialog/Dialog Editor/Nodes/Line/Infobox/Infobox.gd" type="Script" id=1]
  3. [ext_resource path="res://addons/EXP-System-Dialog/Dialog Editor/Nodes/Line/ConditionsList/ConditionsList.tscn" type="PackedScene" id=2]
  4. [node name="Infobox" type="VBoxContainer"]
  5. margin_top = 28.0
  6. margin_right = 238.0
  7. margin_bottom = 112.0
  8. script = ExtResource( 1 )
  9. __meta__ = {
  10. "_edit_use_anchors_": false
  11. }
  12. [node name="HBoxContainer" type="HBoxContainer" parent="."]
  13. margin_right = 238.0
  14. margin_bottom = 112.0
  15. [node name="VBoxContainer" type="VBoxContainer" parent="HBoxContainer"]
  16. margin_right = 215.0
  17. margin_bottom = 112.0
  18. size_flags_horizontal = 3
  19. [node name="HSeparator" type="HSeparator" parent="HBoxContainer/VBoxContainer"]
  20. margin_right = 215.0
  21. margin_bottom = 4.0
  22. [node name="Label" type="Label" parent="HBoxContainer/VBoxContainer"]
  23. margin_top = 8.0
  24. margin_right = 215.0
  25. margin_bottom = 22.0
  26. text = "Infobox"
  27. align = 1
  28. [node name="TextEdit" type="TextEdit" parent="HBoxContainer/VBoxContainer"]
  29. margin_top = 26.0
  30. margin_right = 215.0
  31. margin_bottom = 76.0
  32. rect_min_size = Vector2( 0, 50 )
  33. size_flags_horizontal = 3
  34. [node name="ConditionsList" parent="HBoxContainer/VBoxContainer" instance=ExtResource( 2 )]
  35. margin_left = 0.0
  36. margin_top = 80.0
  37. margin_right = 215.0
  38. margin_bottom = 104.0
  39. [node name="HSeparator2" type="HSeparator" parent="HBoxContainer/VBoxContainer"]
  40. margin_top = 108.0
  41. margin_right = 215.0
  42. margin_bottom = 112.0
  43. [node name="RemoveInfoboxButton" type="Button" parent="HBoxContainer"]
  44. margin_left = 219.0
  45. margin_right = 238.0
  46. margin_bottom = 112.0
  47. text = "x"
  48. [node name="CreateButton" type="Button" parent="."]
  49. margin_top = 116.0
  50. margin_right = 238.0
  51. margin_bottom = 136.0
  52. text = "Create Infobox"
  53. [connection signal="text_changed" from="HBoxContainer/VBoxContainer/TextEdit" to="." method="_on_TextEdit_text_changed"]
  54. [connection signal="conditions_changed" from="HBoxContainer/VBoxContainer/ConditionsList" to="." method="_on_ConditionsList_conditions_changed"]
  55. [connection signal="pressed" from="HBoxContainer/RemoveInfoboxButton" to="." method="_on_RemoveInfoboxButton_pressed"]
  56. [connection signal="pressed" from="CreateButton" to="." method="_on_CreateButton_pressed"]