mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-19 08:53:46 +00:00
Updated dialogic
This commit is contained in:
parent
1d11462073
commit
cbb82512ee
483 changed files with 5743 additions and 2177 deletions
|
|
@ -0,0 +1 @@
|
|||
uid://ddof34f216ceq
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
@tool
|
||||
extends DialogicSettingsPage
|
||||
|
||||
## Settings tab that holds dialogic editor settings.
|
||||
|
||||
const _SETTING_IMAGE_PREVIEW_HEIGHT = "image_preview_height"
|
||||
const _SETTING_EVENT_BLOCK_MARGIN = "event_block_margin"
|
||||
const _SETTING_SHOW_EVENT_NAMES = "show_event_names"
|
||||
|
||||
const _SETTING_EVENT_COLOR_PALETTE = "color_palette"
|
||||
const _SETTING_EVENT_SECTION_ODER = "event_section_order"
|
||||
|
||||
var do_timeline_editor_refresh_on_close := false
|
||||
|
||||
func _get_title() -> String:
|
||||
return "Editor"
|
||||
|
||||
|
||||
func _get_priority() -> int:
|
||||
return 98
|
||||
|
||||
|
||||
func _refresh() -> void:
|
||||
do_timeline_editor_refresh_on_close = false
|
||||
%ImagePreviewHeight.value = DialogicUtil.get_editor_setting(_SETTING_IMAGE_PREVIEW_HEIGHT, 100)
|
||||
%EventBlockMargin.value = DialogicUtil.get_editor_setting(_SETTING_EVENT_BLOCK_MARGIN, 0)
|
||||
%ShowEventNames.set_pressed_no_signal(DialogicUtil.get_editor_setting(_SETTING_SHOW_EVENT_NAMES, false))
|
||||
|
||||
update_color_palette()
|
||||
reload_section_list()
|
||||
|
||||
|
||||
func _ready() -> void:
|
||||
%ResetColorsButton.icon = get_theme_icon("Reload", "EditorIcons")
|
||||
%ResetColorsButton.pressed.connect(_on_reset_colors_button)
|
||||
|
||||
%ImagePreviewHeight.value_changed.connect(_on_ImagePreviewHeight_value_changed)
|
||||
%EventBlockMargin.value_changed.connect(_on_EventBlockMargin_value_changed)
|
||||
%ShowEventNames.toggled.connect(_on_ShowEventNames_toggled)
|
||||
|
||||
|
||||
func _about_to_close():
|
||||
if do_timeline_editor_refresh_on_close:
|
||||
refresh_visual_timeline_editor()
|
||||
|
||||
|
||||
func refresh_visual_timeline_editor() -> void:
|
||||
var timeline_node: DialogicEditor = settings_editor.editors_manager.editors["Timeline"]["node"]
|
||||
timeline_node.get_node("%VisualEditor").load_event_buttons()
|
||||
|
||||
# If the visual editor is open, close and reopen the timeline to have the colors reloaded.
|
||||
if timeline_node.get_node("%VisualEditor").visible:
|
||||
|
||||
var current_timeline := timeline_node.current_resource
|
||||
settings_editor.editors_manager.clear_editor(timeline_node)
|
||||
|
||||
settings_editor.editors_manager.edit_resource(current_timeline, true, true)
|
||||
|
||||
|
||||
|
||||
#region SECTION ORDER
|
||||
################################################################################
|
||||
|
||||
func reload_section_list():
|
||||
%SectionList.clear()
|
||||
%SectionList.create_item()
|
||||
var cached_events := DialogicResourceUtil.get_event_cache()
|
||||
var sections := []
|
||||
var section_order: Array = DialogicUtil.get_editor_setting(_SETTING_EVENT_SECTION_ODER, ['Main', 'Logic', 'Flow', 'Audio', 'Visuals','Other', 'Helper'])
|
||||
for ev in cached_events:
|
||||
if !ev.event_category in sections:
|
||||
sections.append(ev.event_category)
|
||||
var item: TreeItem = %SectionList.create_item(null)
|
||||
item.set_text(0, ev.event_category)
|
||||
item.add_button(0, get_theme_icon("ArrowUp", "EditorIcons"))
|
||||
item.add_button(0, get_theme_icon("ArrowDown", "EditorIcons"))
|
||||
if ev.event_category in section_order:
|
||||
|
||||
item.move_before(item.get_parent().get_child(min(section_order.find(ev.event_category),item.get_parent().get_child_count()-1)))
|
||||
|
||||
%SectionList.get_root().get_child(0).set_button_disabled(0, 0, true)
|
||||
%SectionList.get_root().get_child(-1).set_button_disabled(0, 1, true)
|
||||
|
||||
|
||||
func _on_section_list_button_clicked(item:TreeItem, column, id, mouse_button_index):
|
||||
if id == 0:
|
||||
item.move_before(item.get_parent().get_child(item.get_index()-1))
|
||||
else:
|
||||
item.move_after(item.get_parent().get_child(item.get_index()+1))
|
||||
|
||||
for child in %SectionList.get_root().get_children():
|
||||
child.set_button_disabled(0, 0, false)
|
||||
child.set_button_disabled(0, 1, false)
|
||||
|
||||
%SectionList.get_root().get_child(0).set_button_disabled(0, 0, true)
|
||||
%SectionList.get_root().get_child(-1).set_button_disabled(0, 1, true)
|
||||
|
||||
var sections := []
|
||||
for child in %SectionList.get_root().get_children():
|
||||
sections.append(child.get_text(0))
|
||||
|
||||
DialogicUtil.set_editor_setting(_SETTING_EVENT_SECTION_ODER, sections)
|
||||
do_timeline_editor_refresh_on_close = true
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
#region COLOR PALETTE
|
||||
################################################################################
|
||||
|
||||
## Completely reloads the color palette buttons
|
||||
func update_color_palette() -> void:
|
||||
for child in %Colors.get_children():
|
||||
child.queue_free()
|
||||
for color in DialogicUtil.get_color_palette():
|
||||
var button := ColorPickerButton.new()
|
||||
button.custom_minimum_size = Vector2(50 ,50) * DialogicUtil.get_editor_scale()
|
||||
%Colors.add_child(button)
|
||||
button.color = DialogicUtil.get_color(color)
|
||||
button.popup_closed.connect(_on_palette_color_popup_closed)
|
||||
|
||||
|
||||
func _on_palette_color_popup_closed() -> void:
|
||||
var new_palette := {}
|
||||
for i in %Colors.get_children():
|
||||
new_palette["Color"+str(i.get_index()+1)] = i.color
|
||||
DialogicUtil.set_editor_setting(_SETTING_EVENT_COLOR_PALETTE, new_palette)
|
||||
|
||||
do_timeline_editor_refresh_on_close = true
|
||||
|
||||
|
||||
func _on_reset_colors_button() -> void:
|
||||
DialogicUtil.set_editor_setting(_SETTING_EVENT_COLOR_PALETTE, null)
|
||||
update_color_palette()
|
||||
|
||||
do_timeline_editor_refresh_on_close = true
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
|
||||
func _on_ImagePreviewHeight_value_changed(value:float) -> void:
|
||||
DialogicUtil.set_editor_setting(_SETTING_IMAGE_PREVIEW_HEIGHT, value)
|
||||
|
||||
|
||||
func _on_EventBlockMargin_value_changed(value:float) -> void:
|
||||
DialogicUtil.set_editor_setting(_SETTING_EVENT_BLOCK_MARGIN, value)
|
||||
do_timeline_editor_refresh_on_close = true
|
||||
|
||||
|
||||
func _on_ShowEventNames_toggled(toggled:bool) -> void:
|
||||
DialogicUtil.set_editor_setting(_SETTING_SHOW_EVENT_NAMES, toggled)
|
||||
do_timeline_editor_refresh_on_close = true
|
||||
|
|
@ -0,0 +1 @@
|
|||
uid://3akc4p71r5rn
|
||||
|
|
@ -0,0 +1,161 @@
|
|||
[gd_scene load_steps=5 format=3 uid="uid://dbdmosh6v536s"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://3akc4p71r5rn" path="res://addons/dialogic/Editor/Settings/CoreSettingsPages/settings_editor.gd" id="1_kdw7t"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbpkta2tjsqim" path="res://addons/dialogic/Editor/Common/hint_tooltip_icon.tscn" id="2_ey6hj"]
|
||||
|
||||
[sub_resource type="Image" id="Image_1n4qk"]
|
||||
data = {
|
||||
"data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 93, 93, 41, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0),
|
||||
"format": "RGBA8",
|
||||
"height": 16,
|
||||
"mipmaps": false,
|
||||
"width": 16
|
||||
}
|
||||
|
||||
[sub_resource type="ImageTexture" id="ImageTexture_dfv70"]
|
||||
image = SubResource("Image_1n4qk")
|
||||
|
||||
[node name="EditorSettingsPage" type="VBoxContainer"]
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
script = ExtResource("1_kdw7t")
|
||||
|
||||
[node name="PaletteTitle" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="SectionPaletteTitle" type="Label" parent="PaletteTitle"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"DialogicSettingsSection"
|
||||
text = "Color Palette"
|
||||
|
||||
[node name="HintTooltip" parent="PaletteTitle" instance=ExtResource("2_ey6hj")]
|
||||
layout_mode = 2
|
||||
tooltip_text = "These colors are used for the events."
|
||||
texture = null
|
||||
hint_text = "These colors are used for the events."
|
||||
|
||||
[node name="ResetColorsButton" type="Button" parent="PaletteTitle"]
|
||||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 0
|
||||
tooltip_text = "Reset Colors to default"
|
||||
icon = SubResource("ImageTexture_dfv70")
|
||||
flat = true
|
||||
|
||||
[node name="ScrollContainer" type="ScrollContainer" parent="."]
|
||||
layout_mode = 2
|
||||
horizontal_scroll_mode = 3
|
||||
vertical_scroll_mode = 0
|
||||
|
||||
[node name="Colors" type="HBoxContainer" parent="ScrollContainer"]
|
||||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
|
||||
[node name="HSeparator" type="HSeparator" parent="."]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
|
||||
[node name="TimelineTitle" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="SectionTimelineTitle" type="Label" parent="TimelineTitle"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"DialogicSettingsSection"
|
||||
text = "Visual Events"
|
||||
|
||||
[node name="HintTooltip" parent="TimelineTitle" instance=ExtResource("2_ey6hj")]
|
||||
layout_mode = 2
|
||||
texture = null
|
||||
hint_text = "These settings affect the visual timeline editor."
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="Label" type="Label" parent="HBoxContainer"]
|
||||
layout_mode = 2
|
||||
text = "Image preview height"
|
||||
|
||||
[node name="HintTooltip" parent="HBoxContainer" instance=ExtResource("2_ey6hj")]
|
||||
layout_mode = 2
|
||||
texture = null
|
||||
hint_text = "If set to 0, image previews will be disabled."
|
||||
|
||||
[node name="ImagePreviewHeight" type="SpinBox" parent="HBoxContainer"]
|
||||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
rounded = true
|
||||
allow_greater = true
|
||||
update_on_text_changed = true
|
||||
suffix = "px"
|
||||
select_all_on_focus = true
|
||||
|
||||
[node name="HBoxContainer2" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="Label" type="Label" parent="HBoxContainer2"]
|
||||
layout_mode = 2
|
||||
text = "Event block bottom margin"
|
||||
|
||||
[node name="HintTooltip" parent="HBoxContainer2" instance=ExtResource("2_ey6hj")]
|
||||
layout_mode = 2
|
||||
texture = null
|
||||
hint_text = "This adds extra space at the bottom of event blocks."
|
||||
|
||||
[node name="EventBlockMargin" type="SpinBox" parent="HBoxContainer2"]
|
||||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
rounded = true
|
||||
allow_greater = true
|
||||
update_on_text_changed = true
|
||||
suffix = "px"
|
||||
select_all_on_focus = true
|
||||
|
||||
[node name="HBoxContainer3" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="Label" type="Label" parent="HBoxContainer3"]
|
||||
layout_mode = 2
|
||||
text = "Show event names"
|
||||
|
||||
[node name="HintTooltip" parent="HBoxContainer3" instance=ExtResource("2_ey6hj")]
|
||||
layout_mode = 2
|
||||
texture = null
|
||||
hint_text = "Enabling this prepends the event name at the beginning of event blocks."
|
||||
|
||||
[node name="ShowEventNames" type="CheckButton" parent="HBoxContainer3"]
|
||||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
|
||||
[node name="HSeparator5" type="HSeparator" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="HBoxContainer4" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="SectionSections" type="Label" parent="HBoxContainer4"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"DialogicSettingsSection"
|
||||
text = "Section Order"
|
||||
|
||||
[node name="HintTooltip" parent="HBoxContainer4" instance=ExtResource("2_ey6hj")]
|
||||
layout_mode = 2
|
||||
tooltip_text = "You can change the order of the event sections here. "
|
||||
texture = null
|
||||
hint_text = "You can change the order of the event sections here. "
|
||||
|
||||
[node name="SectionList" type="Tree" parent="."]
|
||||
unique_name_in_owner = true
|
||||
custom_minimum_size = Vector2(150, 150)
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
theme_override_constants/button_margin = 0
|
||||
allow_reselect = true
|
||||
allow_rmb_select = true
|
||||
hide_folding = true
|
||||
hide_root = true
|
||||
drop_mode_flags = 1
|
||||
|
||||
[connection signal="button_clicked" from="SectionList" to="." method="_on_section_list_button_clicked"]
|
||||
|
|
@ -22,9 +22,6 @@ func _ready() -> void:
|
|||
%ExtensionsFolderPicker.value_changed.connect(_on_ExtensionsFolder_value_changed)
|
||||
%PhysicsTimerButton.toggled.connect(_on_physics_timer_button_toggled)
|
||||
|
||||
# Colors
|
||||
%ResetColorsButton.icon = get_theme_icon("Reload", "EditorIcons")
|
||||
%ResetColorsButton.button_up.connect(_on_reset_colors_button)
|
||||
|
||||
# Extension creator
|
||||
%ExtensionCreator.hide()
|
||||
|
|
@ -35,76 +32,6 @@ func _refresh() -> void:
|
|||
%LayoutNodeEndBehaviour.select(ProjectSettings.get_setting('dialogic/layout/end_behaviour', 0))
|
||||
%ExtensionsFolderPicker.set_value(ProjectSettings.get_setting('dialogic/extensions_folder', 'res://addons/dialogic_additions'))
|
||||
|
||||
update_color_palette()
|
||||
|
||||
%SectionList.clear()
|
||||
%SectionList.create_item()
|
||||
var cached_events := DialogicResourceUtil.get_event_cache()
|
||||
var sections := []
|
||||
var section_order: Array = DialogicUtil.get_editor_setting('event_section_order', ['Main', 'Logic', 'Flow', 'Audio', 'Visuals','Other', 'Helper'])
|
||||
for ev in cached_events:
|
||||
if !ev.event_category in sections:
|
||||
sections.append(ev.event_category)
|
||||
var item: TreeItem = %SectionList.create_item(null)
|
||||
item.set_text(0, ev.event_category)
|
||||
item.add_button(0, get_theme_icon("ArrowUp", "EditorIcons"))
|
||||
item.add_button(0, get_theme_icon("ArrowDown", "EditorIcons"))
|
||||
if ev.event_category in section_order:
|
||||
|
||||
item.move_before(item.get_parent().get_child(min(section_order.find(ev.event_category),item.get_parent().get_child_count()-1)))
|
||||
|
||||
%SectionList.get_root().get_child(0).set_button_disabled(0, 0, true)
|
||||
%SectionList.get_root().get_child(-1).set_button_disabled(0, 1, true)
|
||||
|
||||
|
||||
func _on_section_list_button_clicked(item:TreeItem, column, id, mouse_button_index):
|
||||
if id == 0:
|
||||
item.move_before(item.get_parent().get_child(item.get_index()-1))
|
||||
else:
|
||||
item.move_after(item.get_parent().get_child(item.get_index()+1))
|
||||
|
||||
for child in %SectionList.get_root().get_children():
|
||||
child.set_button_disabled(0, 0, false)
|
||||
child.set_button_disabled(0, 1, false)
|
||||
|
||||
%SectionList.get_root().get_child(0).set_button_disabled(0, 0, true)
|
||||
%SectionList.get_root().get_child(-1).set_button_disabled(0, 1, true)
|
||||
|
||||
var sections := []
|
||||
for child in %SectionList.get_root().get_children():
|
||||
sections.append(child.get_text(0))
|
||||
|
||||
DialogicUtil.set_editor_setting('event_section_order', sections)
|
||||
force_event_button_list_reload()
|
||||
|
||||
|
||||
func force_event_button_list_reload() -> void:
|
||||
find_parent('EditorsManager').editors['Timeline'].node.get_node('%VisualEditor').load_event_buttons()
|
||||
|
||||
|
||||
func update_color_palette() -> void:
|
||||
# Color Palette
|
||||
for child in %Colors.get_children():
|
||||
child.queue_free()
|
||||
for color in DialogicUtil.get_color_palette():
|
||||
var button := ColorPickerButton.new()
|
||||
button.custom_minimum_size = Vector2(50 ,50) * DialogicUtil.get_editor_scale()
|
||||
%Colors.add_child(button)
|
||||
button.color = DialogicUtil.get_color(color)
|
||||
button.color_changed.connect(_on_color_change)
|
||||
|
||||
|
||||
func _on_color_change(color:Color) -> void:
|
||||
var new_palette := {}
|
||||
for i in %Colors.get_children():
|
||||
new_palette['Color'+str(i.get_index()+1)] = i.color
|
||||
DialogicUtil.set_editor_setting('color_palette', new_palette)
|
||||
|
||||
|
||||
|
||||
func _on_reset_colors_button() -> void:
|
||||
DialogicUtil.set_editor_setting('color_palette', null)
|
||||
update_color_palette()
|
||||
|
||||
|
||||
func _on_physics_timer_button_toggled(is_toggled: bool) -> void:
|
||||
|
|
@ -242,6 +169,9 @@ func load_game_state(load_flag:=LoadFlags.FULL_LOAD) -> void:
|
|||
force_event_button_list_reload()
|
||||
|
||||
|
||||
func force_event_button_list_reload() -> void:
|
||||
find_parent('EditorsManager').editors['Timeline'].node.get_node('%VisualEditor').load_event_buttons()
|
||||
|
||||
|
||||
func _on_reload_pressed() -> void:
|
||||
DialogicUtil._update_autoload_subsystem_access()
|
||||
|
|
@ -0,0 +1 @@
|
|||
uid://chb81lvjh47jr
|
||||
|
|
@ -1,21 +1,11 @@
|
|||
[gd_scene load_steps=6 format=3 uid="uid://b873ho41sklv8"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://b3clj6o1qcpvn" path="res://addons/dialogic/Editor/Settings/settings_general.gd" id="2"]
|
||||
[ext_resource type="Script" uid="uid://chb81lvjh47jr" path="res://addons/dialogic/Editor/Settings/CoreSettingsPages/settings_general.gd" id="2"]
|
||||
[ext_resource type="Script" uid="uid://bo0dfmsyky1mm" path="res://addons/dialogic/Editor/Settings/CoreSettingsPages/settings_tools.gd" id="2_3xeuv"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbpkta2tjsqim" path="res://addons/dialogic/Editor/Common/hint_tooltip_icon.tscn" id="2_kqhx5"]
|
||||
[ext_resource type="Script" uid="uid://vg4wbm0n64ws" path="res://addons/dialogic/Editor/Settings/CoreSettingsPages/tool_resave.gd" id="3_dbfvv"]
|
||||
[ext_resource type="PackedScene" uid="uid://7mvxuaulctcq" path="res://addons/dialogic/Editor/Events/Fields/field_file.tscn" id="3_i7rug"]
|
||||
|
||||
[sub_resource type="Image" id="Image_ssidd"]
|
||||
data = {
|
||||
"data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 93, 93, 41, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0),
|
||||
"format": "RGBA8",
|
||||
"height": 16,
|
||||
"mipmaps": false,
|
||||
"width": 16
|
||||
}
|
||||
|
||||
[sub_resource type="ImageTexture" id="ImageTexture_4wgbv"]
|
||||
image = SubResource("Image_ssidd")
|
||||
|
||||
[node name="General" type="VBoxContainer"]
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
|
|
@ -24,55 +14,49 @@ grow_horizontal = 2
|
|||
grow_vertical = 2
|
||||
script = ExtResource("2")
|
||||
|
||||
[node name="PaletteTitle" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="SectionPaletteTitle" type="Label" parent="PaletteTitle"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"DialogicSettingsSection"
|
||||
text = "Color Palette"
|
||||
|
||||
[node name="HintTooltip" parent="PaletteTitle" instance=ExtResource("2_kqhx5")]
|
||||
layout_mode = 2
|
||||
tooltip_text = "These colors are used for the events."
|
||||
texture = SubResource("ImageTexture_4wgbv")
|
||||
hint_text = "These colors are used for the events."
|
||||
|
||||
[node name="ResetColorsButton" type="Button" parent="PaletteTitle"]
|
||||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 0
|
||||
tooltip_text = "Reset Colors to default"
|
||||
icon = SubResource("ImageTexture_4wgbv")
|
||||
flat = true
|
||||
|
||||
[node name="ScrollContainer" type="ScrollContainer" parent="."]
|
||||
layout_mode = 2
|
||||
horizontal_scroll_mode = 3
|
||||
vertical_scroll_mode = 0
|
||||
|
||||
[node name="Colors" type="HBoxContainer" parent="ScrollContainer"]
|
||||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
|
||||
[node name="HSeparator" type="HSeparator" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="HBoxContainer2" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="SectionBehaviourTitle" type="Label" parent="HBoxContainer2"]
|
||||
[node name="SectionToolsTitle" type="Label" parent="HBoxContainer2"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"DialogicSettingsSection"
|
||||
text = "Tools"
|
||||
|
||||
[node name="Tools" type="Node" parent="."]
|
||||
script = ExtResource("2_3xeuv")
|
||||
|
||||
[node name="ResaveTool" type="Node" parent="Tools"]
|
||||
script = ExtResource("3_dbfvv")
|
||||
|
||||
[node name="ToolButtons" type="VBoxContainer" parent="."]
|
||||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
|
||||
[node name="ToolProgress" type="ProgressBar" parent="."]
|
||||
unique_name_in_owner = true
|
||||
visible = false
|
||||
layout_mode = 2
|
||||
max_value = 1.0
|
||||
value = 1.0
|
||||
|
||||
[node name="HSeparator5" type="HSeparator" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="HBoxContainer5" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="SectionBehaviourTitle" type="Label" parent="HBoxContainer5"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"DialogicSettingsSection"
|
||||
text = "Layout Node Behaviour"
|
||||
|
||||
[node name="HintTooltip" parent="HBoxContainer2" instance=ExtResource("2_kqhx5")]
|
||||
[node name="HintTooltip" parent="HBoxContainer5" instance=ExtResource("2_kqhx5")]
|
||||
layout_mode = 2
|
||||
tooltip_text = "The layout scene configured in the Layout editor is automatically
|
||||
instanced when calling Dialogic.start(). Depending on your game,
|
||||
you might want it to be deleted after the dialogue, be hidden
|
||||
(as reinstancing often is wasting resources) or kept visible. "
|
||||
texture = SubResource("ImageTexture_4wgbv")
|
||||
texture = null
|
||||
hint_text = "The layout scene configured in the Layout editor is automatically
|
||||
instanced when calling Dialogic.start(). Depending on your game,
|
||||
you might want it to be deleted after the dialogue, be hidden
|
||||
|
|
@ -88,11 +72,10 @@ text = "On timeline end"
|
|||
[node name="LayoutNodeEndBehaviour" type="OptionButton" parent="HBoxContainer3"]
|
||||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
item_count = 3
|
||||
selected = 0
|
||||
fit_to_longest_item = false
|
||||
item_count = 3
|
||||
popup/item_0/text = "Delete Layout Node"
|
||||
popup/item_0/id = 0
|
||||
popup/item_1/text = "Hide Layout Node"
|
||||
popup/item_1/id = 1
|
||||
popup/item_2/text = "Keep Layout Node"
|
||||
|
|
@ -121,7 +104,7 @@ layout_mode = 2
|
|||
tooltip_text = "Configure where dialogic looks for custom modules.
|
||||
|
||||
You will have to restart the project to see the change take action."
|
||||
texture = SubResource("ImageTexture_4wgbv")
|
||||
texture = null
|
||||
hint_text = "Configure where dialogic looks for custom modules.
|
||||
|
||||
You will have to restart the project to see the change take action."
|
||||
|
|
@ -144,7 +127,6 @@ layout_mode = 2
|
|||
size_flags_horizontal = 3
|
||||
placeholder = "res://addons/dialogic_additions/Events"
|
||||
file_mode = 2
|
||||
resource_icon = SubResource("ImageTexture_4wgbv")
|
||||
|
||||
[node name="VSeparator" type="VSeparator" parent="HBoxContainer6"]
|
||||
layout_mode = 2
|
||||
|
|
@ -169,7 +151,7 @@ text = "Extension Creator "
|
|||
[node name="HintTooltip" parent="HBoxContainer6/ExtensionsPanel/VBox/HBoxContainer6" instance=ExtResource("2_kqhx5")]
|
||||
layout_mode = 2
|
||||
tooltip_text = "Use the Exension Creator to quickly setup custom modules!"
|
||||
texture = SubResource("ImageTexture_4wgbv")
|
||||
texture = null
|
||||
hint_text = "Use the Exension Creator to quickly setup custom modules!"
|
||||
|
||||
[node name="CreateExtensionButton" type="Button" parent="HBoxContainer6/ExtensionsPanel/VBox"]
|
||||
|
|
@ -203,10 +185,9 @@ text = "Setup mode:"
|
|||
[node name="ExtensionMode" type="OptionButton" parent="HBoxContainer6/ExtensionsPanel/VBox/ExtensionCreator/ExtensionCreatorOptions"]
|
||||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
item_count = 4
|
||||
selected = 0
|
||||
item_count = 4
|
||||
popup/item_0/text = "Event only"
|
||||
popup/item_0/id = 0
|
||||
popup/item_1/text = "Event+Subsystem"
|
||||
popup/item_1/id = 1
|
||||
popup/item_2/text = "Subsystem only"
|
||||
|
|
@ -233,7 +214,7 @@ text = "Timer processing"
|
|||
[node name="HintTooltip" parent="HBoxContainer7" instance=ExtResource("2_kqhx5")]
|
||||
layout_mode = 2
|
||||
tooltip_text = "Change whether dialogics timers process in physics_process (frame-rate independent) or process."
|
||||
texture = SubResource("ImageTexture_4wgbv")
|
||||
texture = null
|
||||
hint_text = "Change whether dialogics timers process in physics_process (frame-rate independent) or process."
|
||||
|
||||
[node name="HBoxContainer4" type="HBoxContainer" parent="."]
|
||||
|
|
@ -247,37 +228,7 @@ text = "Process timers in physics_process"
|
|||
unique_name_in_owner = true
|
||||
layout_mode = 2
|
||||
|
||||
[node name="HSeparator5" type="HSeparator" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="SectionSections" type="Label" parent="HBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"DialogicSettingsSection"
|
||||
text = "Section Order"
|
||||
|
||||
[node name="HintTooltip" parent="HBoxContainer" instance=ExtResource("2_kqhx5")]
|
||||
layout_mode = 2
|
||||
tooltip_text = "You can change the order of the event sections here. "
|
||||
texture = SubResource("ImageTexture_4wgbv")
|
||||
hint_text = "You can change the order of the event sections here. "
|
||||
|
||||
[node name="SectionList" type="Tree" parent="."]
|
||||
unique_name_in_owner = true
|
||||
custom_minimum_size = Vector2(150, 150)
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
theme_override_constants/button_margin = 0
|
||||
allow_reselect = true
|
||||
allow_rmb_select = true
|
||||
hide_folding = true
|
||||
hide_root = true
|
||||
drop_mode_flags = 1
|
||||
|
||||
[connection signal="item_selected" from="HBoxContainer3/LayoutNodeEndBehaviour" to="." method="_on_layout_node_end_behaviour_item_selected"]
|
||||
[connection signal="pressed" from="HBoxContainer6/HBoxContainer4/HBoxContainer5/Reload" to="." method="_on_reload_pressed"]
|
||||
[connection signal="pressed" from="HBoxContainer6/ExtensionsPanel/VBox/CreateExtensionButton" to="." method="_on_create_extension_button_pressed"]
|
||||
[connection signal="pressed" from="HBoxContainer6/ExtensionsPanel/VBox/ExtensionCreator/SubmitExtensionButton" to="." method="_on_submit_extension_button_pressed"]
|
||||
[connection signal="button_clicked" from="SectionList" to="." method="_on_section_list_button_clicked"]
|
||||
|
|
@ -440,4 +440,3 @@ func _on_event_default_value_changed(prop:String, value:Variant) -> void:
|
|||
|
||||
func _on_event_default_bool_toggled(value:bool, prop:String) -> void:
|
||||
set_event_default_override(prop, value)
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
uid://bcu347pvraog6
|
||||
|
|
@ -1,8 +1,8 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://o7ljiritpgap"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://cpjf8y5xw834m" path="res://addons/dialogic/Editor/Settings/settings_modules.gd" id="1_l2hk0"]
|
||||
[ext_resource type="Script" uid="uid://bcu347pvraog6" path="res://addons/dialogic/Editor/Settings/CoreSettingsPages/settings_modules.gd" id="1_l2hk0"]
|
||||
|
||||
[sub_resource type="Image" id="Image_edthq"]
|
||||
[sub_resource type="Image" id="Image_1yyxk"]
|
||||
data = {
|
||||
"data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 93, 93, 41, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0),
|
||||
"format": "RGBA8",
|
||||
|
|
@ -12,9 +12,9 @@ data = {
|
|||
}
|
||||
|
||||
[sub_resource type="ImageTexture" id="ImageTexture_lce2m"]
|
||||
image = SubResource("Image_edthq")
|
||||
image = SubResource("Image_1yyxk")
|
||||
|
||||
[sub_resource type="Image" id="Image_ub3c3"]
|
||||
[sub_resource type="Image" id="Image_bclq7"]
|
||||
data = {
|
||||
"data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 128, 128, 4, 255, 128, 128, 4, 255, 128, 128, 4, 255, 128, 128, 4, 255, 128, 128, 4, 255, 128, 128, 4, 255, 128, 128, 4, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 131, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 131, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 131, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 252, 255, 93, 93, 252, 255, 93, 93, 252, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 128, 128, 4, 255, 128, 128, 4, 255, 128, 128, 4, 255, 128, 128, 4, 255, 128, 128, 4, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 231, 255, 93, 93, 55, 255, 97, 97, 58, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 93, 93, 41, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 97, 97, 42, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 98, 98, 47, 255, 97, 97, 42, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 93, 93, 233, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 94, 94, 46, 255, 93, 93, 236, 255, 93, 93, 233, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 252, 255, 93, 93, 252, 255, 93, 93, 252, 255, 93, 93, 252, 255, 93, 93, 252, 255, 93, 93, 252, 255, 93, 93, 252, 255, 93, 93, 252, 255, 93, 93, 252, 255, 93, 93, 252, 255, 93, 93, 252, 255, 93, 93, 252, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0),
|
||||
"format": "RGBA8",
|
||||
|
|
@ -24,7 +24,7 @@ data = {
|
|||
}
|
||||
|
||||
[sub_resource type="ImageTexture" id="ImageTexture_137g7"]
|
||||
image = SubResource("Image_ub3c3")
|
||||
image = SubResource("Image_bclq7")
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_315cl"]
|
||||
content_margin_left = 4.0
|
||||
|
|
@ -0,0 +1,80 @@
|
|||
@tool
|
||||
extends Node
|
||||
|
||||
var tool_thread : Thread
|
||||
var tool_progress := 1.0
|
||||
var tool_progress_mutex : Mutex
|
||||
signal tool_finished_signal
|
||||
|
||||
|
||||
func _ready() -> void:
|
||||
for button in %ToolButtons.get_children():
|
||||
button.queue_free()
|
||||
|
||||
for i in get_children():
|
||||
var button := Button.new()
|
||||
button.text = i.button_text
|
||||
button.tooltip_text = i.tooltip
|
||||
button.pressed.connect(execute_tool.bind(i.method))
|
||||
%ToolButtons.add_child(button)
|
||||
|
||||
|
||||
func execute_tool(method:Callable) -> void:
|
||||
for button in %ToolButtons.get_children():
|
||||
button.disabled = true
|
||||
|
||||
var prev_timeline := close_active_timeline()
|
||||
await get_tree().process_frame
|
||||
if tool_thread and tool_thread.is_alive():
|
||||
tool_thread.wait_to_finish()
|
||||
|
||||
tool_thread = Thread.new()
|
||||
tool_progress_mutex = Mutex.new()
|
||||
tool_thread.start(method)
|
||||
|
||||
await tool_finished_signal
|
||||
silently_open_timeline(prev_timeline)
|
||||
for button in %ToolButtons.get_children():
|
||||
button.disabled = false
|
||||
|
||||
|
||||
func _process(_delta: float) -> void:
|
||||
if (tool_thread and tool_thread.is_alive()) or %ToolProgress.value < 1:
|
||||
if tool_progress_mutex: tool_progress_mutex.lock()
|
||||
%ToolProgress.value = tool_progress
|
||||
if tool_progress_mutex: tool_progress_mutex.unlock()
|
||||
%ToolProgress.show()
|
||||
if %ToolProgress.value == 1:
|
||||
tool_finished_signal.emit()
|
||||
%ToolProgress.hide()
|
||||
|
||||
|
||||
func _exit_tree() -> void:
|
||||
if tool_thread:
|
||||
tool_thread.wait_to_finish()
|
||||
|
||||
|
||||
|
||||
#region HELPERS
|
||||
|
||||
## Closes the current timeline in the Dialogic Editor and returns the timeline
|
||||
## as a resource.
|
||||
## If no timeline has been opened, returns null.
|
||||
func close_active_timeline() -> Resource:
|
||||
var timeline_node: DialogicEditor = get_parent().settings_editor.editors_manager.editors['Timeline']['node']
|
||||
# We will close this timeline to ensure it will properly update.
|
||||
# By saving this reference, we can open it again.
|
||||
var current_timeline := timeline_node.current_resource
|
||||
# Clean the current editor, this will also close the timeline.
|
||||
get_parent().settings_editor.editors_manager.clear_editor(timeline_node, true)
|
||||
|
||||
return current_timeline
|
||||
|
||||
|
||||
## Opens the timeline resource into the Dialogic Editor.
|
||||
## If the timeline is null, does nothing.
|
||||
func silently_open_timeline(timeline_to_open: Resource) -> void:
|
||||
if timeline_to_open != null:
|
||||
get_parent().settings_editor.editors_manager.edit_resource(timeline_to_open, true, true)
|
||||
|
||||
#endregion
|
||||
|
|
@ -0,0 +1 @@
|
|||
uid://bo0dfmsyky1mm
|
||||
|
|
@ -8,7 +8,6 @@ enum TranslationModes {PER_PROJECT, PER_TIMELINE, NONE}
|
|||
enum SaveLocationModes {INSIDE_TRANSLATION_FOLDER, NEXT_TO_TIMELINE, NONE}
|
||||
|
||||
var loading := false
|
||||
@onready var settings_editor: Control = find_parent('Settings')
|
||||
|
||||
## The default CSV filename that contains the translations for character
|
||||
## properties.
|
||||
|
|
@ -36,10 +35,10 @@ func _is_feature_tab() -> bool:
|
|||
|
||||
func _ready() -> void:
|
||||
%TransEnabled.toggled.connect(store_changes)
|
||||
%OrigLocale.get_suggestions_func = get_locales
|
||||
%OrigLocale.suggestions_func = get_locales
|
||||
%OrigLocale.resource_icon = get_theme_icon("Translation", "EditorIcons")
|
||||
%OrigLocale.value_changed.connect(store_changes)
|
||||
%TestingLocale.get_suggestions_func = get_locales
|
||||
%TestingLocale.suggestions_func = get_locales
|
||||
%TestingLocale.resource_icon = get_theme_icon("Translation", "EditorIcons")
|
||||
%TestingLocale.value_changed.connect(store_changes)
|
||||
%TransFolderPicker.value_changed.connect(store_changes)
|
||||
|
|
@ -0,0 +1 @@
|
|||
uid://b0bm772xo8n2j
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://chpb1mj03xjxv"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://3cf5qeqgf0a0" path="res://addons/dialogic/Editor/Settings/settings_translation.gd" id="1_dvmyi"]
|
||||
[ext_resource type="Script" uid="uid://b0bm772xo8n2j" path="res://addons/dialogic/Editor/Settings/CoreSettingsPages/settings_translation.gd" id="1_dvmyi"]
|
||||
[ext_resource type="PackedScene" uid="uid://dbpkta2tjsqim" path="res://addons/dialogic/Editor/Common/hint_tooltip_icon.tscn" id="2_k2lou"]
|
||||
[ext_resource type="PackedScene" uid="uid://dpwhshre1n4t6" path="res://addons/dialogic/Editor/Events/Fields/field_options_dynamic.tscn" id="3_dq4j2"]
|
||||
[ext_resource type="PackedScene" uid="uid://7mvxuaulctcq" path="res://addons/dialogic/Editor/Events/Fields/field_file.tscn" id="4_kvsma"]
|
||||
|
||||
[sub_resource type="Image" id="Image_4ypqi"]
|
||||
[sub_resource type="Image" id="Image_4jaem"]
|
||||
data = {
|
||||
"data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 94, 94, 127, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 231, 255, 94, 94, 54, 255, 94, 94, 57, 255, 93, 93, 233, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 93, 93, 41, 255, 255, 255, 0, 255, 255, 255, 0, 255, 97, 97, 42, 255, 93, 93, 233, 255, 93, 93, 232, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 44, 255, 255, 255, 0, 255, 97, 97, 42, 255, 97, 97, 42, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 96, 96, 45, 255, 93, 93, 235, 255, 94, 94, 234, 255, 95, 95, 43, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 93, 93, 235, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 233, 255, 95, 95, 59, 255, 96, 96, 61, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 93, 93, 255, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0),
|
||||
"format": "RGBA8",
|
||||
|
|
@ -15,7 +15,7 @@ data = {
|
|||
}
|
||||
|
||||
[sub_resource type="ImageTexture" id="ImageTexture_xbph7"]
|
||||
image = SubResource("Image_4ypqi")
|
||||
image = SubResource("Image_4jaem")
|
||||
|
||||
[node name="Translations" type="VBoxContainer"]
|
||||
anchors_preset = 15
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
@tool
|
||||
extends Node
|
||||
|
||||
@onready var ToolUtil := get_parent()
|
||||
|
||||
var button_text := "Resave all timelines"
|
||||
var tooltip := "Opens and resaves all timelines. This can be useful if an update introduced a syntax change."
|
||||
var method := resave_tool
|
||||
|
||||
|
||||
func resave_tool() -> void:
|
||||
ToolUtil.tool_progress_mutex.lock()
|
||||
ToolUtil.tool_progress = 0
|
||||
ToolUtil.tool_progress_mutex.unlock()
|
||||
|
||||
var index := 0
|
||||
var timelines := DialogicResourceUtil.get_timeline_directory()
|
||||
for timeline_identifier in timelines:
|
||||
var timeline := DialogicResourceUtil.get_timeline_resource(timeline_identifier)
|
||||
await timeline.process()
|
||||
timeline.set_meta("timeline_not_saved", true)
|
||||
ResourceSaver.save(timeline)
|
||||
|
||||
ToolUtil.tool_progress_mutex.lock()
|
||||
ToolUtil.tool_progress = 1.0/len(timelines)*index
|
||||
ToolUtil.tool_progress_mutex.unlock()
|
||||
|
||||
index += 1
|
||||
|
||||
ToolUtil.tool_progress_mutex.lock()
|
||||
ToolUtil.tool_progress = 1
|
||||
ToolUtil.tool_progress_mutex.unlock()
|
||||
|
|
@ -0,0 +1 @@
|
|||
uid://vg4wbm0n64ws
|
||||
|
|
@ -1 +1 @@
|
|||
uid://p5sl8ccpekpq
|
||||
uid://dhl3w5a4mujud
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
uid://cwqw4smlpi6kx
|
||||
|
|
@ -24,9 +24,10 @@ func _ready() -> void:
|
|||
if get_parent() is SubViewport:
|
||||
return
|
||||
|
||||
register_settings_section("res://addons/dialogic/Editor/Settings/settings_general.tscn")
|
||||
register_settings_section("res://addons/dialogic/Editor/Settings/settings_translation.tscn")
|
||||
register_settings_section("res://addons/dialogic/Editor/Settings/settings_modules.tscn")
|
||||
register_settings_section("res://addons/dialogic/Editor/Settings/CoreSettingsPages/settings_general.tscn")
|
||||
register_settings_section("res://addons/dialogic/Editor/Settings/CoreSettingsPages/settings_editor.tscn")
|
||||
register_settings_section("res://addons/dialogic/Editor/Settings/CoreSettingsPages/settings_translation.tscn")
|
||||
register_settings_section("res://addons/dialogic/Editor/Settings/CoreSettingsPages/settings_modules.tscn")
|
||||
|
||||
for indexer in DialogicUtil.get_indexers():
|
||||
for settings_page in indexer._get_settings_pages():
|
||||
|
|
@ -166,4 +167,3 @@ func refresh() -> void:
|
|||
for child in %SettingsContent.get_children():
|
||||
if child.get_meta('section').has_method('_refresh'):
|
||||
child.get_meta('section')._refresh()
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
uid://dyjdv0hsuj2th
|
||||
uid://c1virlyy8gl7
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[gd_scene load_steps=2 format=3 uid="uid://dganirw26brfb"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://dyjdv0hsuj2th" path="res://addons/dialogic/Editor/Settings/settings_editor.gd" id="1"]
|
||||
[ext_resource type="Script" uid="uid://c1virlyy8gl7" path="res://addons/dialogic/Editor/Settings/settings_editor.gd" id="1"]
|
||||
|
||||
[node name="Settings" type="HSplitContainer"]
|
||||
anchors_preset = 15
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
uid://b3clj6o1qcpvn
|
||||
|
|
@ -1 +0,0 @@
|
|||
uid://cpjf8y5xw834m
|
||||
|
|
@ -3,6 +3,7 @@ extends Control
|
|||
class_name DialogicSettingsPage
|
||||
|
||||
@export_multiline var short_info := ""
|
||||
@onready var settings_editor: Control = find_parent('Settings')
|
||||
|
||||
## Called to get the title of the page
|
||||
func _get_title() -> String:
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
uid://kqjgculyl34h
|
||||
uid://be8xcha2jwdur
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
uid://3cf5qeqgf0a0
|
||||
Loading…
Add table
Add a link
Reference in a new issue