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.4KB

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