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.

Editor.tscn 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. [gd_scene load_steps=2 format=2]
  2. [ext_resource path="res://addons/EXP-System-Dialog/Dialog Editor/Editor/editor.gd" type="Script" id=1]
  3. [node name="WindowDialog" type="WindowDialog"]
  4. anchor_left = 0.5
  5. anchor_top = 0.5
  6. anchor_right = 0.5
  7. anchor_bottom = 0.5
  8. margin_left = -540.0
  9. margin_top = -384.0
  10. margin_right = 540.0
  11. margin_bottom = 384.0
  12. window_title = "Node Editor"
  13. resizable = true
  14. script = ExtResource( 1 )
  15. __meta__ = {
  16. "_edit_use_anchors_": false
  17. }
  18. [node name="VBoxContainer" type="VBoxContainer" parent="."]
  19. anchor_right = 1.0
  20. anchor_bottom = 1.0
  21. margin_left = 13.0
  22. margin_top = 13.0
  23. margin_right = -13.0
  24. margin_bottom = -13.0
  25. __meta__ = {
  26. "_edit_use_anchors_": false
  27. }
  28. [node name="TextEdit" type="TextEdit" parent="VBoxContainer"]
  29. margin_right = 1054.0
  30. margin_bottom = 718.0
  31. size_flags_horizontal = 3
  32. size_flags_vertical = 3
  33. smooth_scrolling = true
  34. __meta__ = {
  35. "_edit_use_anchors_": false
  36. }
  37. [node name="OK_BTN" type="Button" parent="VBoxContainer"]
  38. margin_left = 503.0
  39. margin_top = 722.0
  40. margin_right = 550.0
  41. margin_bottom = 742.0
  42. hint_tooltip = "Close the node editor."
  43. size_flags_horizontal = 4
  44. size_flags_vertical = 0
  45. text = "Close"
  46. [connection signal="text_changed" from="VBoxContainer/TextEdit" to="." method="_on_TextEdit_text_changed"]
  47. [connection signal="pressed" from="VBoxContainer/OK_BTN" to="." method="_on_OK_BTN_pressed"]