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.

PortraitEntry.tscn 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [gd_scene load_steps=2 format=2]
  2. [ext_resource path="res://addons/dialogic/Editor/CharacterEditor/PortraitEntry.gd" type="Script" id=2]
  3. [node name="PortraitEntry" type="HBoxContainer"]
  4. margin_right = 451.0
  5. margin_bottom = 24.0
  6. script = ExtResource( 2 )
  7. __meta__ = {
  8. "_edit_use_anchors_": false
  9. }
  10. [node name="NameEdit" type="LineEdit" parent="."]
  11. margin_right = 160.0
  12. margin_bottom = 24.0
  13. rect_min_size = Vector2( 160, 0 )
  14. __meta__ = {
  15. "_edit_use_anchors_": false
  16. }
  17. [node name="PathEdit" type="LineEdit" parent="."]
  18. margin_left = 164.0
  19. margin_right = 407.0
  20. margin_bottom = 24.0
  21. rect_min_size = Vector2( 150, 0 )
  22. size_flags_horizontal = 3
  23. editable = false
  24. selecting_enabled = false
  25. [node name="ButtonSelect" type="Button" parent="."]
  26. margin_left = 411.0
  27. margin_right = 435.0
  28. margin_bottom = 24.0
  29. text = "..."
  30. [node name="ButtonDelete" type="Button" parent="."]
  31. margin_left = 439.0
  32. margin_right = 451.0
  33. margin_bottom = 24.0
  34. flat = true
  35. [connection signal="focus_entered" from="NameEdit" to="." method="_on_focus_entered"]
  36. [connection signal="focus_entered" from="PathEdit" to="." method="_on_focus_entered"]
  37. [connection signal="pressed" from="ButtonSelect" to="." method="_on_ButtonSelect_pressed"]
  38. [connection signal="pressed" from="ButtonDelete" to="." method="_on_ButtonDelete_pressed"]