regex.tscn 785 B

12345678910111213141516171819202122232425262728
  1. [gd_scene load_steps=2 format=2]
  2. [ext_resource path="res://regex.gd" type="Script" id=1]
  3. [node name="VBoxContainer" type="VBoxContainer"]
  4. anchor_right = 1.0
  5. anchor_bottom = 1.0
  6. script = ExtResource( 1 )
  7. [node name="Expression" type="LineEdit" parent="."]
  8. margin_right = 1024.0
  9. margin_bottom = 24.0
  10. text = "\"((?:\\\\.|[^\"])*)\""
  11. [node name="Text" type="TextEdit" parent="."]
  12. margin_top = 28.0
  13. margin_right = 1024.0
  14. margin_bottom = 328.0
  15. rect_min_size = Vector2( 0, 300 )
  16. mouse_default_cursor_shape = 0
  17. [node name="List" type="VBoxContainer" parent="."]
  18. margin_top = 332.0
  19. margin_right = 1024.0
  20. margin_bottom = 332.0
  21. [connection signal="text_changed" from="Expression" to="." method="update_expression"]
  22. [connection signal="text_changed" from="Text" to="." method="update_text"]