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.

AudioBlock.tscn 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. [gd_scene load_steps=8 format=2]
  2. [ext_resource path="res://addons/dialogic/Editor/Pieces/AudioBlock.gd" type="Script" id=1]
  3. [ext_resource path="res://addons/dialogic/Editor/Pieces/Common/Spacer.tscn" type="PackedScene" id=2]
  4. [ext_resource path="res://addons/dialogic/Images/Events/audio-event.svg" type="Texture" id=3]
  5. [ext_resource path="res://addons/dialogic/Editor/Pieces/Common/PieceExtraSettings.tscn" type="PackedScene" id=4]
  6. [ext_resource path="res://addons/dialogic/Images/play.svg" type="Texture" id=5]
  7. [ext_resource path="res://addons/dialogic/Images/Remove.svg" type="Texture" id=7]
  8. [sub_resource type="StyleBoxFlat" id=1]
  9. content_margin_left = 16.0
  10. content_margin_right = 6.0
  11. content_margin_top = 6.0
  12. content_margin_bottom = 6.0
  13. bg_color = Color( 0.160784, 0.423529, 0.309804, 0.447059 )
  14. border_width_left = 2
  15. border_width_top = 2
  16. border_width_right = 2
  17. border_width_bottom = 2
  18. border_color = Color( 0.12549, 0.12549, 0.12549, 1 )
  19. corner_radius_top_left = 6
  20. corner_radius_top_right = 6
  21. corner_radius_bottom_right = 6
  22. corner_radius_bottom_left = 6
  23. [node name="AudioBlock" type="HBoxContainer"]
  24. margin_right = 1798.0
  25. margin_bottom = 42.0
  26. size_flags_horizontal = 3
  27. size_flags_vertical = 9
  28. script = ExtResource( 1 )
  29. __meta__ = {
  30. "_edit_use_anchors_": false
  31. }
  32. [node name="Indent" type="Control" parent="."]
  33. visible = false
  34. margin_left = 6.0
  35. margin_top = 6.0
  36. margin_right = 1792.0
  37. margin_bottom = 36.0
  38. [node name="PanelContainer" type="PanelContainer" parent="."]
  39. margin_right = 1798.0
  40. margin_bottom = 42.0
  41. mouse_filter = 1
  42. size_flags_horizontal = 3
  43. custom_styles/panel = SubResource( 1 )
  44. [node name="VBoxContainer" type="VBoxContainer" parent="PanelContainer"]
  45. margin_left = 16.0
  46. margin_top = 6.0
  47. margin_right = 1792.0
  48. margin_bottom = 36.0
  49. size_flags_horizontal = 3
  50. [node name="Header" type="HBoxContainer" parent="PanelContainer/VBoxContainer"]
  51. margin_right = 1776.0
  52. margin_bottom = 28.0
  53. [node name="TextureRect" type="TextureRect" parent="PanelContainer/VBoxContainer/Header"]
  54. margin_right = 22.0
  55. margin_bottom = 28.0
  56. texture = ExtResource( 3 )
  57. stretch_mode = 6
  58. [node name="Title" type="Label" parent="PanelContainer/VBoxContainer/Header"]
  59. margin_left = 26.0
  60. margin_top = 7.0
  61. margin_right = 83.0
  62. margin_bottom = 21.0
  63. text = " Audio "
  64. [node name="Name" type="Label" parent="PanelContainer/VBoxContainer/Header"]
  65. margin_left = 87.0
  66. margin_top = 7.0
  67. margin_right = 352.0
  68. margin_bottom = 21.0
  69. text = "No sound (will stop previous audio event)"
  70. [node name="ButtonAudio" type="Button" parent="PanelContainer/VBoxContainer/Header"]
  71. margin_left = 356.0
  72. margin_right = 380.0
  73. margin_bottom = 28.0
  74. text = "..."
  75. [node name="ButtonClear" type="Button" parent="PanelContainer/VBoxContainer/Header"]
  76. margin_left = 384.0
  77. margin_right = 412.0
  78. margin_bottom = 28.0
  79. disabled = true
  80. icon = ExtResource( 7 )
  81. [node name="ButtonPreviewPlay" type="Button" parent="PanelContainer/VBoxContainer/Header"]
  82. margin_left = 416.0
  83. margin_right = 450.0
  84. margin_bottom = 28.0
  85. disabled = true
  86. icon = ExtResource( 5 )
  87. [node name="Preview" type="Label" parent="PanelContainer/VBoxContainer/Header"]
  88. visible = false
  89. margin_left = 103.0
  90. margin_top = 8.0
  91. margin_right = 131.0
  92. margin_bottom = 22.0
  93. custom_colors/font_color = Color( 1, 1, 1, 0.513726 )
  94. text = " ..."
  95. [node name="Spacer" parent="PanelContainer/VBoxContainer/Header" instance=ExtResource( 2 )]
  96. margin_left = 454.0
  97. margin_right = 1735.0
  98. margin_bottom = 28.0
  99. [node name="OptionButton" parent="PanelContainer/VBoxContainer/Header" instance=ExtResource( 4 )]
  100. margin_left = 1739.0
  101. margin_right = 1776.0
  102. margin_bottom = 28.0
  103. items = [ "Move Up", null, 0, false, false, 0, 0, null, "", false, "Move Down", null, 0, false, false, 1, 0, null, "", false, "", null, 0, false, false, 2, 0, null, "", true, "Remove", null, 0, false, false, 3, 0, null, "", false ]
  104. [node name="AudioPreview" type="AudioStreamPlayer" parent="PanelContainer"]
  105. [connection signal="pressed" from="PanelContainer/VBoxContainer/Header/ButtonAudio" to="." method="_on_ButtonAudio_pressed"]
  106. [connection signal="pressed" from="PanelContainer/VBoxContainer/Header/ButtonClear" to="." method="_on_ButtonClear_pressed"]
  107. [connection signal="pressed" from="PanelContainer/VBoxContainer/Header/ButtonPreviewPlay" to="." method="_on_ButtonPreviewPlay_pressed"]
  108. [connection signal="finished" from="PanelContainer/AudioPreview" to="." method="_on_AudioPreview_finished"]