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.

Dialog_Editor.tscn 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. [gd_scene load_steps=2 format=2]
  2. [ext_resource path="res://addons/EXP-System-Dialog/Dialog Editor/dialog_editor.gd" type="Script" id=1]
  3. [node name="Dialog_Editor" type="Control"]
  4. anchor_right = 1.0
  5. anchor_bottom = 1.0
  6. rect_min_size = Vector2( 0, 256 )
  7. script = ExtResource( 1 )
  8. __meta__ = {
  9. "_edit_use_anchors_": false
  10. }
  11. [node name="VBoxContainer" type="VBoxContainer" parent="."]
  12. anchor_right = 1.0
  13. anchor_bottom = 1.0
  14. __meta__ = {
  15. "_edit_use_anchors_": false
  16. }
  17. [node name="VBoxContainer" type="HBoxContainer" parent="VBoxContainer"]
  18. margin_right = 1024.0
  19. margin_bottom = 20.0
  20. [node name="Close_BTN" type="Button" parent="VBoxContainer/VBoxContainer"]
  21. margin_right = 47.0
  22. margin_bottom = 20.0
  23. hint_tooltip = "Close the Dialog Editor."
  24. text = "Close"
  25. [node name="Back_BTN" type="Button" parent="VBoxContainer/VBoxContainer"]
  26. margin_left = 51.0
  27. margin_right = 93.0
  28. margin_bottom = 20.0
  29. hint_tooltip = "Return to the Story Editor."
  30. text = "Back"
  31. [node name="VSeparator" type="VSeparator" parent="VBoxContainer/VBoxContainer"]
  32. margin_left = 97.0
  33. margin_right = 101.0
  34. margin_bottom = 20.0
  35. [node name="Add_Node_BTN" type="Button" parent="VBoxContainer/VBoxContainer"]
  36. margin_left = 105.0
  37. margin_right = 180.0
  38. margin_bottom = 20.0
  39. hint_tooltip = "Add a new node to the graph."
  40. text = "Add Node"
  41. [node name="VSeparator2" type="VSeparator" parent="VBoxContainer/VBoxContainer"]
  42. margin_left = 184.0
  43. margin_right = 188.0
  44. margin_bottom = 20.0
  45. [node name="Human_Readable_LBL" type="Label" parent="VBoxContainer/VBoxContainer"]
  46. margin_left = 192.0
  47. margin_top = 3.0
  48. margin_right = 378.0
  49. margin_bottom = 17.0
  50. text = "Human Readable Description"
  51. [node name="GraphEdit" type="GraphEdit" parent="VBoxContainer"]
  52. margin_top = 24.0
  53. margin_right = 1024.0
  54. margin_bottom = 600.0
  55. size_flags_horizontal = 3
  56. size_flags_vertical = 3
  57. right_disconnects = true
  58. __meta__ = {
  59. "_edit_use_anchors_": false
  60. }
  61. [connection signal="pressed" from="VBoxContainer/VBoxContainer/Close_BTN" to="." method="_on_Close_BTN_pressed"]
  62. [connection signal="pressed" from="VBoxContainer/VBoxContainer/Back_BTN" to="." method="_on_Back_BTN_pressed"]
  63. [connection signal="pressed" from="VBoxContainer/VBoxContainer/Add_Node_BTN" to="." method="_on_Add_Node_BTN_pressed"]
  64. [connection signal="connection_request" from="VBoxContainer/GraphEdit" to="." method="_on_GraphEdit_connection_request"]
  65. [connection signal="disconnection_request" from="VBoxContainer/GraphEdit" to="." method="_on_GraphEdit_disconnection_request"]