regex.tscn 866 B

1234567891011121314151617181920212223242526272829303132333435
  1. [gd_scene load_steps=2 format=2]
  2. [ext_resource path="res://regex.gd" type="Script" id=1]
  3. [node name="Regex" type="VBoxContainer"]
  4. anchor_right = 1.0
  5. anchor_bottom = 1.0
  6. margin_left = 14.0
  7. margin_top = 20.0
  8. margin_right = -14.0
  9. margin_bottom = -20.0
  10. script = ExtResource( 1 )
  11. __meta__ = {
  12. "_edit_use_anchors_": false
  13. }
  14. [node name="Expression" type="LineEdit" parent="."]
  15. margin_right = 996.0
  16. margin_bottom = 24.0
  17. text = "\"((?:\\\\.|[^\"])*)\""
  18. [node name="Text" type="TextEdit" parent="."]
  19. margin_top = 28.0
  20. margin_right = 996.0
  21. margin_bottom = 328.0
  22. rect_min_size = Vector2( 0, 300 )
  23. [node name="List" type="VBoxContainer" parent="."]
  24. margin_top = 332.0
  25. margin_right = 996.0
  26. margin_bottom = 332.0
  27. [connection signal="text_changed" from="Expression" to="." method="update_expression"]
  28. [connection signal="text_changed" from="Text" to="." method="update_text"]