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.

Condition.tscn 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [gd_scene load_steps=2 format=2]
  2. [ext_resource path="res://addons/EXP-System-Dialog/Dialog Editor/Nodes/Line/ConditionsList/Condition/Condition.gd" type="Script" id=1]
  3. [node name="Condition" type="VBoxContainer"]
  4. margin_right = 228.0
  5. margin_bottom = 50.0
  6. size_flags_horizontal = 3
  7. script = ExtResource( 1 )
  8. __meta__ = {
  9. "_edit_use_anchors_": false
  10. }
  11. [node name="HSeparator2" type="HSeparator" parent="."]
  12. margin_right = 228.0
  13. margin_bottom = 4.0
  14. __meta__ = {
  15. "_edit_use_anchors_": false
  16. }
  17. [node name="ContitionLabel" type="Label" parent="."]
  18. margin_top = 8.0
  19. margin_right = 228.0
  20. margin_bottom = 22.0
  21. text = "Condition #1"
  22. [node name="HBoxContainer2" type="HBoxContainer" parent="."]
  23. margin_top = 26.0
  24. margin_right = 228.0
  25. margin_bottom = 50.0
  26. size_flags_horizontal = 3
  27. [node name="ContitionNameLineEdit" type="LineEdit" parent="HBoxContainer2"]
  28. margin_right = 127.0
  29. margin_bottom = 24.0
  30. size_flags_horizontal = 3
  31. [node name="ContitionValueSpinBox" type="SpinBox" parent="HBoxContainer2"]
  32. margin_left = 131.0
  33. margin_right = 205.0
  34. margin_bottom = 24.0
  35. [node name="ContitionRemoveButton" type="Button" parent="HBoxContainer2"]
  36. margin_left = 209.0
  37. margin_right = 228.0
  38. margin_bottom = 24.0
  39. text = "x"
  40. [connection signal="text_changed" from="HBoxContainer2/ContitionNameLineEdit" to="." method="_on_ContitionNameLineEdit_text_changed"]
  41. [connection signal="value_changed" from="HBoxContainer2/ContitionValueSpinBox" to="." method="_on_ContitionValueSpinBox_value_changed"]
  42. [connection signal="pressed" from="HBoxContainer2/ContitionRemoveButton" to="." method="_on_ContitionRemoveButton_pressed"]