diff --git a/.github/workflows/generation_testing.yml b/.github/workflows/generation_testing.yml index 4584707a0..bd0302520 100644 --- a/.github/workflows/generation_testing.yml +++ b/.github/workflows/generation_testing.yml @@ -28,9 +28,9 @@ jobs: with: lfs: true # run tests by using the gdUnit4-action with Godot version 4.2.1 and the latest GdUnit4 release - - uses: MikeSchulze/gdUnit4-action@v1.2.2 + - uses: godot-gdunit-labs/gdUnit4-action@v1.3.0 with: - godot-version: '4.5' + godot-version: '4.6' paths: | res://testing/generation timeout: 5 diff --git a/.github/workflows/nodes_testing.yml b/.github/workflows/nodes_testing.yml index 2aa2d4e90..8589925b0 100644 --- a/.github/workflows/nodes_testing.yml +++ b/.github/workflows/nodes_testing.yml @@ -28,9 +28,9 @@ jobs: with: lfs: true # run tests by using the gdUnit4-action with Godot version 4.2.1 and the latest GdUnit4 release - - uses: MikeSchulze/gdUnit4-action@v1.2.2 + - uses: godot-gdunit-labs/gdUnit4-action@v1.3.0 with: - godot-version: '4.5' + godot-version: '4.6' paths: | res://testing/graph_nodes timeout: 5 diff --git a/.github/workflows/other_testing.yml b/.github/workflows/other_testing.yml index 549606fd2..ae4f19be6 100644 --- a/.github/workflows/other_testing.yml +++ b/.github/workflows/other_testing.yml @@ -28,9 +28,9 @@ jobs: with: lfs: true # run tests by using the gdUnit4-action with Godot version 4.2.1 and the latest GdUnit4 release - - uses: MikeSchulze/gdUnit4-action@v1.2.2 + - uses: godot-gdunit-labs/gdUnit4-action@v1.3.0 with: - godot-version: '4.5' + godot-version: '4.6' paths: | res://testing/other timeout: 5 diff --git a/.github/workflows/renderers_testing.yml b/.github/workflows/renderers_testing.yml index a7721118c..19fc7a0fc 100644 --- a/.github/workflows/renderers_testing.yml +++ b/.github/workflows/renderers_testing.yml @@ -28,9 +28,9 @@ jobs: with: lfs: true # run tests by using the gdUnit4-action with Godot version 4.2.1 and the latest GdUnit4 release - - uses: MikeSchulze/gdUnit4-action@v1.2.2 + - uses: godot-gdunit-labs/gdUnit4-action@v1.3.0 with: - godot-version: '4.5' + godot-version: '4.6' paths: | res://testing/rendering timeout: 5 diff --git a/addons/gaea/editor/graph_editor/graph_edit.gd b/addons/gaea/editor/graph_editor/graph_edit.gd index 237e0164c..889618196 100644 --- a/addons/gaea/editor/graph_editor/graph_edit.gd +++ b/addons/gaea/editor/graph_editor/graph_edit.gd @@ -26,12 +26,6 @@ var is_loading = false ## Reference to the output node var _output_node: GaeaOutputGraphNode -## Reference to the window popout separator -var _window_popout_separator: VSeparator - -## Reference to the window popout button -var _window_popout_button: Button - var _back_icon: Texture2D var _forward_icon: Texture2D @@ -195,31 +189,6 @@ func _add_toolbar_buttons() -> void: about_button.pressed.connect(main_editor.about_popup_request.emit) container.add_child(about_button) - _window_popout_separator = VSeparator.new() - container.add_child(_window_popout_separator) - - _window_popout_button = Button.new() - _window_popout_button.theme_type_variation = &"FlatButton" - _window_popout_button.icon = EditorInterface.get_base_control().get_theme_icon(&"MakeFloating", &"EditorIcons") - _window_popout_button.pressed.connect(main_editor.panel_popout_request.emit) - container.add_child(_window_popout_button) - - if not EditorInterface.is_multi_window_enabled(): - _window_popout_button.disabled = true - _window_popout_button.tooltip_text = _get_multiwindow_support_tooltip_text() - - -func _get_multiwindow_support_tooltip_text() -> String: - # Adapted from https://github.com/godotengine/godot/blob/a8598cd8e261716fa3addb6f10bb57c03a061be9/editor/editor_node.cpp#L4725-L4737 - var prefix: String = "Multi-window support is not available because" - if EditorInterface.get_editor_settings().get_setting("interface/editor/single_window_mode"): - return tr(prefix + " Interface > Editor > Single Window Mode is enabled in the editor settings.") - if not EditorInterface.get_editor_settings().get_setting("interface/multi_window/enable"): - return tr(prefix + " Interface > Multi Window > Enable is disabled in the editor settings.") - if DisplayServer.has_feature(DisplayServer.FEATURE_SUBWINDOWS): - return tr(prefix + " the `--single-window` command line argument was used to start the editor.") - return tr(prefix + " the current platform doesn't support multiple windows.") - func _add_node_button_pressed() -> void: main_editor.popup_create_node_request.emit() @@ -790,12 +759,6 @@ func _on_edited_script_changed(script: Script): #endregion #region Utils and misc -@warning_ignore("shadowed_variable_base_class") -func set_window_popout_button_visible(visible: bool) -> void: - _window_popout_button.visible = visible - _window_popout_separator.visible = visible - - ## This function converts a local position to a grid position based on the current zoom level and scroll offset. ## It also applies snapping if enabled in the GraphEdit. func local_to_grid( diff --git a/addons/gaea/editor/graph_editor/main_editor.gd b/addons/gaea/editor/graph_editor/main_editor.gd index 52259bcf7..b2c358608 100644 --- a/addons/gaea/editor/graph_editor/main_editor.gd +++ b/addons/gaea/editor/graph_editor/main_editor.gd @@ -10,8 +10,6 @@ signal popup_create_node_and_connect_node_request(node: GaeaGraphNode, type: Gae signal popup_node_context_menu_at_mouse_request(selected_nodes: Array) signal popup_link_context_menu_at_mouse_request(connection: Dictionary) -@warning_ignore("unused_signal") -signal panel_popout_request() signal node_selected_for_creation(resource: GaeaNodeResource) signal special_node_selected_for_creation(id: StringName) diff --git a/addons/gaea/editor/panel/panel.gd b/addons/gaea/editor/panel/panel.gd index d22621063..2a3d7efea 100644 --- a/addons/gaea/editor/panel/panel.gd +++ b/addons/gaea/editor/panel/panel.gd @@ -17,48 +17,3 @@ static func instantiate() -> Node: func _ready() -> void: if is_part_of_edited_scene(): return - - main_editor.panel_popout_request.connect(_on_panel_popout_request) - - -#region Popout Panel Window -func _on_panel_popout_request() -> void: - graph_edit.set_window_popout_button_visible(false) - var window: Window = Window.new() - window.min_size = get_combined_minimum_size() - window.size = size - window.title = "Gaea - Godot Engine" - window.close_requested.connect(_on_window_close_requested.bind(get_parent(), window)) - - var margin_container: MarginContainer = MarginContainer.new() - margin_container.set_anchors_preset(Control.PRESET_FULL_RECT) - var panel: Panel = Panel.new() - panel.add_theme_stylebox_override( - &"panel", - EditorInterface.get_base_control().get_theme_stylebox(&"PanelForeground", &"EditorStyles") - ) - panel.set_anchors_preset(Control.PRESET_FULL_RECT) - panel.mouse_filter = Control.MOUSE_FILTER_IGNORE - panel.z_index -= 1 - window.add_child(margin_container) - margin_container.add_sibling(panel) - - var margin: int = get_theme_constant(&"base_margin", &"Editor") - margin_container.add_theme_constant_override(&"margin_top", margin) - margin_container.add_theme_constant_override(&"margin_bottom", margin) - margin_container.add_theme_constant_override(&"margin_left", margin) - margin_container.add_theme_constant_override(&"margin_right", margin) - - window.position = global_position as Vector2i + DisplayServer.window_get_position() - - reparent(margin_container, false) - - EditorInterface.get_base_control().add_child(window) - window.popup() - - -func _on_window_close_requested(original_parent: Control, window: Window) -> void: - graph_edit.set_window_popout_button_visible(true) - reparent(original_parent, false) - window.queue_free() -#endregion diff --git a/addons/gaea/editor/panel/panel.tscn b/addons/gaea/editor/panel/panel.tscn index 4cf5e6cfa..cf57642bc 100644 --- a/addons/gaea/editor/panel/panel.tscn +++ b/addons/gaea/editor/panel/panel.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=14 format=3 uid="uid://dngytsjlmkfg7"] +[gd_scene format=3 uid="uid://dngytsjlmkfg7"] [ext_resource type="Script" uid="uid://dpbmowgfmnxe5" path="res://addons/gaea/editor/panel/panel.gd" id="1_afcqa"] [ext_resource type="Script" uid="uid://bedt1m4gyyvyv" path="res://addons/gaea/editor/graph_editor/graph_edit.gd" id="2_cdav6"] @@ -15,7 +15,7 @@ [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_dhpru"] -[node name="GaeaPanel" type="HSplitContainer" node_paths=PackedStringArray("main_editor", "graph_edit", "file_list", "preview_panel")] +[node name="GaeaPanel" type="HSplitContainer" unique_id=2064820390 node_paths=PackedStringArray("main_editor", "graph_edit", "file_list", "preview_panel")] custom_minimum_size = Vector2(0, 256) anchors_preset = 15 anchor_right = 1.0 @@ -28,7 +28,7 @@ graph_edit = NodePath("MainEditor/GraphEdit") file_list = NodePath("FileSystemContainer") preview_panel = NodePath("MainEditor/PreviewPanel") -[node name="FileSystemContainer" type="VBoxContainer" parent="." node_paths=PackedStringArray("graph_edit", "main_editor", "menu_bar", "file_list", "context_menu", "file_dialog")] +[node name="FileSystemContainer" type="VBoxContainer" parent="." unique_id=1256614628 node_paths=PackedStringArray("graph_edit", "main_editor", "menu_bar", "file_list", "context_menu", "file_dialog")] clip_contents = true custom_minimum_size = Vector2(200, 0) layout_mode = 2 @@ -40,34 +40,35 @@ file_list = NodePath("FileList") context_menu = NodePath("FileList/ContextMenu") file_dialog = NodePath("FileDialog") -[node name="MenuBar" type="MenuBar" parent="FileSystemContainer"] +[node name="MenuBar" type="MenuBar" parent="FileSystemContainer" unique_id=715932684] layout_mode = 2 theme_type_variation = &"FlatButton" script = ExtResource("2_ce5k6") -[node name="File" type="PopupMenu" parent="FileSystemContainer/MenuBar"] +[node name="File" type="PopupMenu" parent="FileSystemContainer/MenuBar" unique_id=1123094324] oversampling_override = 1.0 -[node name="RecentFiles" type="PopupMenu" parent="FileSystemContainer/MenuBar/File"] +[node name="RecentFiles" type="PopupMenu" parent="FileSystemContainer/MenuBar/File" unique_id=2123746125] -[node name="FileList" type="ItemList" parent="FileSystemContainer"] +[node name="FileList" type="ItemList" parent="FileSystemContainer" unique_id=572815294] layout_mode = 2 size_flags_vertical = 3 allow_reselect = true allow_rmb_select = true -[node name="ContextMenu" type="PopupMenu" parent="FileSystemContainer/FileList"] +[node name="ContextMenu" type="PopupMenu" parent="FileSystemContainer/FileList" unique_id=193406563] script = ExtResource("3_gbl2m") -[node name="FileDialog" type="FileDialog" parent="FileSystemContainer"] +[node name="FileDialog" type="FileDialog" parent="FileSystemContainer" unique_id=64284388] title = "Save Graph As..." size = Vector2i(960, 540) mode_overrides_title = false filters = PackedStringArray("*.tres;Resource Files") -[node name="MainEditor" type="HSplitContainer" parent="." node_paths=PackedStringArray("gaea_panel", "graph_edit", "preview_panel", "about_window", "create_node_popup", "node_context_menu", "link_context_menu")] +[node name="MainEditor" type="HSplitContainer" parent="." unique_id=281306861 node_paths=PackedStringArray("gaea_panel", "graph_edit", "preview_panel", "about_window", "create_node_popup", "node_context_menu", "link_context_menu")] layout_mode = 2 size_flags_vertical = 3 +split_offsets = PackedInt32Array(1000000) split_offset = 1000000 script = ExtResource("4_gbl2m") gaea_panel = NodePath("..") @@ -78,7 +79,7 @@ create_node_popup = NodePath("CreateNodePopup") node_context_menu = NodePath("NodeContextMenu") link_context_menu = NodePath("LinkContextMenu") -[node name="GraphEdit" type="GraphEdit" parent="MainEditor" node_paths=PackedStringArray("main_editor", "bottom_note_label")] +[node name="GraphEdit" type="GraphEdit" parent="MainEditor" unique_id=1851286872 node_paths=PackedStringArray("main_editor", "bottom_note_label")] visible = false custom_minimum_size = Vector2(50, 50) layout_mode = 2 @@ -92,7 +93,7 @@ script = ExtResource("2_cdav6") main_editor = NodePath("..") bottom_note_label = NodePath("Margin/BottomNote") -[node name="Margin" type="MarginContainer" parent="MainEditor/GraphEdit"] +[node name="Margin" type="MarginContainer" parent="MainEditor/GraphEdit" unique_id=1656500259] z_index = 50 layout_mode = 1 anchors_preset = 12 @@ -106,7 +107,7 @@ theme_override_constants/margin_top = 5 theme_override_constants/margin_right = 12 theme_override_constants/margin_bottom = 12 -[node name="BottomNote" type="RichTextLabel" parent="MainEditor/GraphEdit/Margin"] +[node name="BottomNote" type="RichTextLabel" parent="MainEditor/GraphEdit/Margin" unique_id=565858195] layout_mode = 2 mouse_filter = 1 theme_override_styles/normal = SubResource("StyleBoxEmpty_dhpru") @@ -117,17 +118,17 @@ text = "(0,0)" fit_content = true metadata/_edit_use_anchors_ = true -[node name="PreviewPanel" parent="MainEditor" node_paths=PackedStringArray("main_editor") instance=ExtResource("7_eht7w")] +[node name="PreviewPanel" parent="MainEditor" unique_id=1696155757 node_paths=PackedStringArray("main_editor") instance=ExtResource("7_eht7w")] visible = false layout_mode = 2 main_editor = NodePath("..") -[node name="AboutWindow" parent="MainEditor" node_paths=PackedStringArray("main_editor") instance=ExtResource("9_affj1")] +[node name="AboutWindow" parent="MainEditor" unique_id=1381481976 node_paths=PackedStringArray("main_editor") instance=ExtResource("9_affj1")] visible = false exclusive = true main_editor = NodePath("..") -[node name="CreateNodePopup" type="Window" parent="MainEditor" node_paths=PackedStringArray("main_editor", "create_node_panel", "search_bar", "tool_button", "tool_popup", "create_node_tree", "description_label", "cancel_button")] +[node name="CreateNodePopup" type="Window" parent="MainEditor" unique_id=1067088746 node_paths=PackedStringArray("main_editor", "create_node_panel", "search_bar", "tool_button", "tool_popup", "create_node_tree", "description_label", "cancel_button")] oversampling_override = 1.0 title = "Create Node" position = Vector2i(0, 36) @@ -147,7 +148,7 @@ create_node_tree = NodePath("MainContentContainer/VBox/CreateNodeTree") description_label = NodePath("MainContentContainer/VBox/PanelContainer/DescriptionLabel") cancel_button = NodePath("MainContentContainer/VBox/HBoxContainer/CancelButton") -[node name="BackgroundContainer" type="MarginContainer" parent="MainEditor/CreateNodePopup"] +[node name="BackgroundContainer" type="MarginContainer" parent="MainEditor/CreateNodePopup" unique_id=209392749] anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 @@ -158,13 +159,13 @@ theme_override_constants/margin_top = -10 theme_override_constants/margin_right = -10 theme_override_constants/margin_bottom = -10 -[node name="CreateNodePanel" type="Panel" parent="MainEditor/CreateNodePopup/BackgroundContainer"] +[node name="CreateNodePanel" type="Panel" parent="MainEditor/CreateNodePopup/BackgroundContainer" unique_id=1055353904] layout_mode = 2 size_flags_horizontal = 3 size_flags_vertical = 3 mouse_filter = 2 -[node name="MainContentContainer" type="MarginContainer" parent="MainEditor/CreateNodePopup"] +[node name="MainContentContainer" type="MarginContainer" parent="MainEditor/CreateNodePopup" unique_id=845240805] anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 @@ -177,26 +178,26 @@ theme_override_constants/margin_top = 10 theme_override_constants/margin_right = 10 theme_override_constants/margin_bottom = 10 -[node name="VBox" type="VBoxContainer" parent="MainEditor/CreateNodePopup/MainContentContainer"] +[node name="VBox" type="VBoxContainer" parent="MainEditor/CreateNodePopup/MainContentContainer" unique_id=997740263] layout_mode = 2 -[node name="SearchContainer" type="HBoxContainer" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox"] +[node name="SearchContainer" type="HBoxContainer" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox" unique_id=60564894] layout_mode = 2 -[node name="SearchBar" type="LineEdit" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/SearchContainer"] +[node name="SearchBar" type="LineEdit" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/SearchContainer" unique_id=1106872869] layout_mode = 2 size_flags_horizontal = 3 placeholder_text = "Search (Ctrl+Tab to cycle)" clear_button_enabled = true -[node name="ToolButton" type="Button" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/SearchContainer"] +[node name="ToolButton" type="Button" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/SearchContainer" unique_id=645631497] custom_minimum_size = Vector2(32, 32) layout_mode = 2 focus_mode = 0 theme_type_variation = &"FlatButton" icon_alignment = 1 -[node name="ToolPopup" type="PopupMenu" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/SearchContainer/ToolButton"] +[node name="ToolPopup" type="PopupMenu" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/SearchContainer/ToolButton" unique_id=27215874] oversampling_override = 1.0 position = Vector2i(255, 80) size = Vector2i(108, 62) @@ -208,7 +209,7 @@ item_1/id = 1 item_2/text = "Reload Tree" item_2/id = 2 -[node name="CreateNodeTree" type="Tree" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox" node_paths=PackedStringArray("main_editor", "description_label")] +[node name="CreateNodeTree" type="Tree" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox" unique_id=721948596 node_paths=PackedStringArray("main_editor", "description_label")] layout_mode = 2 size_flags_vertical = 3 hide_root = true @@ -216,35 +217,35 @@ script = ExtResource("2_vpeaa") main_editor = NodePath("../../../..") description_label = NodePath("../PanelContainer/DescriptionLabel") -[node name="Label" type="Label" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox"] +[node name="Label" type="Label" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox" unique_id=843932292] layout_mode = 2 text = "Description" -[node name="PanelContainer" type="PanelContainer" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox"] +[node name="PanelContainer" type="PanelContainer" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox" unique_id=500361894] layout_mode = 2 -[node name="DescriptionLabel" type="RichTextLabel" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/PanelContainer"] +[node name="DescriptionLabel" type="RichTextLabel" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/PanelContainer" unique_id=977071873] custom_minimum_size = Vector2(0, 96) layout_mode = 2 bbcode_enabled = true text = "Description of the selected node goes here" autowrap_mode = 2 -[node name="HBoxContainer" type="HBoxContainer" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox"] +[node name="HBoxContainer" type="HBoxContainer" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox" unique_id=1669264921] layout_mode = 2 size_flags_vertical = 0 -[node name="CreateButton" type="Button" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/HBoxContainer"] +[node name="CreateButton" type="Button" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/HBoxContainer" unique_id=1475496811] layout_mode = 2 size_flags_horizontal = 3 text = "Create" -[node name="CancelButton" type="Button" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/HBoxContainer"] +[node name="CancelButton" type="Button" parent="MainEditor/CreateNodePopup/MainContentContainer/VBox/HBoxContainer" unique_id=1551973345] layout_mode = 2 size_flags_horizontal = 3 text = "Cancel" -[node name="NodeContextMenu" type="PopupMenu" parent="MainEditor" node_paths=PackedStringArray("main_editor", "graph_edit")] +[node name="NodeContextMenu" type="PopupMenu" parent="MainEditor" unique_id=802440902 node_paths=PackedStringArray("main_editor", "graph_edit")] oversampling_override = 1.0 size = Vector2i(100, 124) item_count = 6 @@ -265,7 +266,7 @@ script = ExtResource("4_vtsfx") main_editor = NodePath("..") graph_edit = NodePath("../GraphEdit") -[node name="LinkContextMenu" type="PopupMenu" parent="MainEditor" node_paths=PackedStringArray("main_editor")] +[node name="LinkContextMenu" type="PopupMenu" parent="MainEditor" unique_id=566265106 node_paths=PackedStringArray("main_editor")] oversampling_override = 1.0 size = Vector2i(106, 100) item_count = 1 diff --git a/addons/gaea/gaea.gd b/addons/gaea/gaea.gd index 5975c0dfa..c60bd978b 100644 --- a/addons/gaea/gaea.gd +++ b/addons/gaea/gaea.gd @@ -5,45 +5,48 @@ extends EditorPlugin const InspectorPlugin = preload("uid://bpg2cpobusnnl") -var _container: MarginContainer var _panel: GaeaPanel -var _panel_button: Button +var _dock: EditorDock var _editor_selection: EditorSelection var _inspector_plugin: EditorInspectorPlugin var _custom_project_settings: GaeaProjectSettings func _enter_tree() -> void: - if Engine.is_editor_hint(): - _editor_selection = EditorInterface.get_selection() - _editor_selection.selection_changed.connect(_on_selection_changed) + _editor_selection = EditorInterface.get_selection() + _editor_selection.selection_changed.connect(_on_selection_changed) + + _panel = GaeaPanel.instantiate() + _panel.plugin = self + + _dock = EditorDock.new() + _dock.available_layouts = EditorDock.DOCK_LAYOUT_FLOATING | EditorDock.DOCK_LAYOUT_HORIZONTAL + _dock.title = "Gaea" + _dock.default_slot = EditorDock.DOCK_SLOT_BOTTOM + _dock.add_child(_panel) + add_dock(_dock) - _container = MarginContainer.new() - _panel = GaeaPanel.instantiate() - _panel.plugin = self - _container.add_child(_panel) - _panel_button = add_control_to_bottom_panel(_container, "Gaea") - _panel_button.show() - _inspector_plugin = InspectorPlugin.new(_panel) - add_inspector_plugin(_inspector_plugin) + _inspector_plugin = InspectorPlugin.new(_panel) + add_inspector_plugin(_inspector_plugin) - GaeaEditorSettings.new().add_settings() - _custom_project_settings = GaeaProjectSettings.new() - _custom_project_settings.add_settings() + GaeaEditorSettings.new().add_settings() + _custom_project_settings = GaeaProjectSettings.new() + _custom_project_settings.add_settings() - resource_saved.connect(_on_resource_saved) + resource_saved.connect(_on_resource_saved) - EditorInterface.get_file_system_dock().resource_removed.connect(_on_resource_removed) - EditorInterface.get_file_system_dock().file_removed.connect(_on_file_removed) + EditorInterface.get_file_system_dock().resource_removed.connect(_on_resource_removed) + EditorInterface.get_file_system_dock().file_removed.connect(_on_file_removed) func _exit_tree() -> void: if Engine.is_editor_hint(): _panel.graph_edit.unpopulate() remove_inspector_plugin(_inspector_plugin) - remove_control_from_bottom_panel(_container) - _container.queue_free() + remove_dock(_dock) + _dock.queue_free() + _dock = null func _disable_plugin() -> void: @@ -90,7 +93,7 @@ func _edit(object: Object) -> void: if object.resource_path.is_empty(): return - make_bottom_panel_item_visible(_container) + _dock.make_visible() if _panel.graph_edit.graph == object: return diff --git a/addons/gaea/resources/gaea_graph.gd b/addons/gaea/resources/gaea_graph.gd index 202c3e574..3ae1f242f 100644 --- a/addons/gaea/resources/gaea_graph.gd +++ b/addons/gaea/resources/gaea_graph.gd @@ -66,7 +66,7 @@ const CURRENT_SAVE_VERSION := 5 @export_flags("Execute", "Traverse", "Data", "Arguments", "Threading") var logging: int = Log.NONE @export_group("") -@export_group("Preview generation settings", "preview_") +@export_group("Preview Generation Settings", "preview_") ## Control how cells are displayed relative to the coordinate system. @export var preview_coordinate_format: PreviewCoordinateFormat = PreviewCoordinateFormat.PERSPECTIVE_3D diff --git a/addons/gaea_documentation_toolkit/documentation_toolkit.tscn b/addons/gaea_documentation_toolkit/documentation_toolkit.tscn index 33e8f5f2b..16eb894a7 100644 --- a/addons/gaea_documentation_toolkit/documentation_toolkit.tscn +++ b/addons/gaea_documentation_toolkit/documentation_toolkit.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=4 format=3 uid="uid://bxanwt5o3b0ng"] +[gd_scene format=3 uid="uid://bxanwt5o3b0ng"] [ext_resource type="Script" uid="uid://darqwls1ewij0" path="res://addons/gaea_documentation_toolkit/documentation_toolkit.gd" id="1_lxb1e"] [ext_resource type="Script" uid="uid://obmksa6ngu1s" path="res://addons/gaea_documentation_toolkit/tree.gd" id="2_8ok20"] @@ -8,7 +8,8 @@ font_names = PackedStringArray("Consolas", "Monospace") subpixel_positioning = 0 keep_rounding_remainders = false -[node name="DocumentationToolkit" type="Control"] +[node name="DocumentationToolkit" type="Control" unique_id=1633651677] +custom_minimum_size = Vector2(0, 128) layout_mode = 3 anchors_preset = 15 anchor_right = 1.0 @@ -17,7 +18,7 @@ grow_horizontal = 2 grow_vertical = 2 script = ExtResource("1_lxb1e") -[node name="HBoxContainer" type="HSplitContainer" parent="."] +[node name="HBoxContainer" type="HSplitContainer" parent="." unique_id=1744461141] layout_mode = 1 anchors_preset = 15 anchor_right = 1.0 @@ -25,41 +26,41 @@ anchor_bottom = 1.0 grow_horizontal = 2 grow_vertical = 2 -[node name="TreeContainer" type="VBoxContainer" parent="HBoxContainer"] +[node name="TreeContainer" type="VBoxContainer" parent="HBoxContainer" unique_id=515664750] custom_minimum_size = Vector2(200, 0) layout_mode = 2 -[node name="SearchBar" type="LineEdit" parent="HBoxContainer/TreeContainer"] +[node name="SearchBar" type="LineEdit" parent="HBoxContainer/TreeContainer" unique_id=1200599534] layout_mode = 2 placeholder_text = "Search..." -[node name="Tree" type="Tree" parent="HBoxContainer/TreeContainer"] +[node name="Tree" type="Tree" parent="HBoxContainer/TreeContainer" unique_id=1446740897] unique_name_in_owner = true custom_minimum_size = Vector2(192, 0) layout_mode = 2 size_flags_vertical = 3 script = ExtResource("2_8ok20") -[node name="HBoxContainer" type="HBoxContainer" parent="HBoxContainer/TreeContainer"] +[node name="HBoxContainer" type="HBoxContainer" parent="HBoxContainer/TreeContainer" unique_id=2112535570] layout_mode = 2 -[node name="OpenFolderButton" type="Button" parent="HBoxContainer/TreeContainer/HBoxContainer"] +[node name="OpenFolderButton" type="Button" parent="HBoxContainer/TreeContainer/HBoxContainer" unique_id=1158338676] unique_name_in_owner = true custom_minimum_size = Vector2(31, 0) layout_mode = 2 tooltip_text = "Open target folder..." -[node name="ExportAllButton" type="Button" parent="HBoxContainer/TreeContainer/HBoxContainer"] +[node name="ExportAllButton" type="Button" parent="HBoxContainer/TreeContainer/HBoxContainer" unique_id=205747794] layout_mode = 2 size_flags_horizontal = 3 text = "Export All" -[node name="RightContainer" type="Control" parent="HBoxContainer"] +[node name="RightContainer" type="Control" parent="HBoxContainer" unique_id=9088164] custom_minimum_size = Vector2(200, 0) layout_mode = 2 size_flags_horizontal = 3 -[node name="SubViewportContainer" type="SubViewportContainer" parent="HBoxContainer/RightContainer"] +[node name="SubViewportContainer" type="SubViewportContainer" parent="HBoxContainer/RightContainer" unique_id=414675997] z_index = -4096 z_as_relative = false layout_mode = 1 @@ -70,14 +71,14 @@ grow_horizontal = 2 grow_vertical = 2 size_flags_horizontal = 3 -[node name="SubViewport" type="SubViewport" parent="HBoxContainer/RightContainer/SubViewportContainer"] +[node name="SubViewport" type="SubViewport" parent="HBoxContainer/RightContainer/SubViewportContainer" unique_id=989321962] unique_name_in_owner = true transparent_bg = true handle_input_locally = false size = Vector2i(2, 2) render_target_update_mode = 4 -[node name="Panel" type="Panel" parent="HBoxContainer/RightContainer"] +[node name="Panel" type="Panel" parent="HBoxContainer/RightContainer" unique_id=1631485179] layout_mode = 1 anchors_preset = 15 anchor_right = 1.0 @@ -86,7 +87,7 @@ grow_horizontal = 2 grow_vertical = 2 size_flags_horizontal = 3 -[node name="Markdown" type="RichTextLabel" parent="HBoxContainer/RightContainer/Panel"] +[node name="Markdown" type="RichTextLabel" parent="HBoxContainer/RightContainer/Panel" unique_id=1995849860] unique_name_in_owner = true layout_mode = 1 anchors_preset = 15 @@ -100,7 +101,7 @@ autowrap_trim_flags = 0 context_menu_enabled = true selection_enabled = true -[node name="ConfirmationDialog" type="ConfirmationDialog" parent="."] +[node name="ConfirmationDialog" type="ConfirmationDialog" parent="." unique_id=880913801] dialog_text = "This will create images for every node in the tree, are you sure you want to?" [connection signal="text_changed" from="HBoxContainer/TreeContainer/SearchBar" to="HBoxContainer/TreeContainer/Tree" method="_on_search_bar_text_changed"] diff --git a/addons/gaea_documentation_toolkit/plugin.gd b/addons/gaea_documentation_toolkit/plugin.gd index 4671e7c2e..93a36e219 100644 --- a/addons/gaea_documentation_toolkit/plugin.gd +++ b/addons/gaea_documentation_toolkit/plugin.gd @@ -3,13 +3,20 @@ extends EditorPlugin const DocumentationToolkit = preload("uid://bxanwt5o3b0ng") -var _panel: Control +var _dock: EditorDock func _enter_tree() -> void: - _panel = DocumentationToolkit.instantiate() - add_control_to_bottom_panel(_panel, "Gaea Documentation Toolkit") + _dock = EditorDock.new() + _dock.available_layouts = EditorDock.DOCK_LAYOUT_FLOATING | EditorDock.DOCK_LAYOUT_HORIZONTAL + _dock.title = "Gaea Documentation Toolkit" + _dock.default_slot = EditorDock.DOCK_SLOT_BOTTOM + + _dock.add_child(DocumentationToolkit.instantiate()) + add_dock(_dock) func _exit_tree() -> void: - remove_control_from_bottom_panel(_panel) + remove_dock(_dock) + _dock.queue_free() + _dock = null diff --git a/addons/gdUnit4/bin/GdUnitCmdTool.gd.uid b/addons/gdUnit4/bin/GdUnitCmdTool.gd.uid index db2a9e0c9..f00956e8c 100644 --- a/addons/gdUnit4/bin/GdUnitCmdTool.gd.uid +++ b/addons/gdUnit4/bin/GdUnitCmdTool.gd.uid @@ -1 +1 @@ -uid://mo7di6ee8kn3 +uid://c3koukq2yjrya diff --git a/addons/gdUnit4/bin/GdUnitCopyLog.gd.uid b/addons/gdUnit4/bin/GdUnitCopyLog.gd.uid index 6bf9433f2..0061ac90c 100644 --- a/addons/gdUnit4/bin/GdUnitCopyLog.gd.uid +++ b/addons/gdUnit4/bin/GdUnitCopyLog.gd.uid @@ -1 +1 @@ -uid://cerl61lmmoi1s +uid://b8u146yft41xw diff --git a/addons/gdUnit4/plugin.gd.uid b/addons/gdUnit4/plugin.gd.uid index 19f6ea1a5..3378cdc1c 100644 --- a/addons/gdUnit4/plugin.gd.uid +++ b/addons/gdUnit4/plugin.gd.uid @@ -1 +1 @@ -uid://cspm3u5bi2b6o +uid://c1g1smk5mqj66 diff --git a/addons/gdUnit4/src/Comparator.gd.uid b/addons/gdUnit4/src/Comparator.gd.uid index bac6e5baa..fe9677dea 100644 --- a/addons/gdUnit4/src/Comparator.gd.uid +++ b/addons/gdUnit4/src/Comparator.gd.uid @@ -1 +1 @@ -uid://bmv537leymbod +uid://vkhv748ebrea diff --git a/addons/gdUnit4/src/Fuzzers.gd.uid b/addons/gdUnit4/src/Fuzzers.gd.uid index 8086c4f23..67eef28ac 100644 --- a/addons/gdUnit4/src/Fuzzers.gd.uid +++ b/addons/gdUnit4/src/Fuzzers.gd.uid @@ -1 +1 @@ -uid://cg2eehd82olfq +uid://cfly7sapghtyy diff --git a/addons/gdUnit4/src/GdUnitArrayAssert.gd.uid b/addons/gdUnit4/src/GdUnitArrayAssert.gd.uid index 4bdedd0f4..6d11d2ac6 100644 --- a/addons/gdUnit4/src/GdUnitArrayAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitArrayAssert.gd.uid @@ -1 +1 @@ -uid://k8kpup8bvv44 +uid://l4q2ytjfi45o diff --git a/addons/gdUnit4/src/GdUnitAssert.gd.uid b/addons/gdUnit4/src/GdUnitAssert.gd.uid index f3063be17..7914360a7 100644 --- a/addons/gdUnit4/src/GdUnitAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitAssert.gd.uid @@ -1 +1 @@ -uid://b2ndvwiermke +uid://c44ay4jd5fh7o diff --git a/addons/gdUnit4/src/GdUnitAwaiter.gd.uid b/addons/gdUnit4/src/GdUnitAwaiter.gd.uid index 66d6e2d91..4470f57c4 100644 --- a/addons/gdUnit4/src/GdUnitAwaiter.gd.uid +++ b/addons/gdUnit4/src/GdUnitAwaiter.gd.uid @@ -1 +1 @@ -uid://cxa2yf0wk3udn +uid://chu72j58amvjf diff --git a/addons/gdUnit4/src/GdUnitBoolAssert.gd.uid b/addons/gdUnit4/src/GdUnitBoolAssert.gd.uid index 719467f31..5ae5c5489 100644 --- a/addons/gdUnit4/src/GdUnitBoolAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitBoolAssert.gd.uid @@ -1 +1 @@ -uid://c70aqpcyamtv1 +uid://bnxdb44rp0y7l diff --git a/addons/gdUnit4/src/GdUnitConstants.gd.uid b/addons/gdUnit4/src/GdUnitConstants.gd.uid index 31c87ff05..4515bc8eb 100644 --- a/addons/gdUnit4/src/GdUnitConstants.gd.uid +++ b/addons/gdUnit4/src/GdUnitConstants.gd.uid @@ -1 +1 @@ -uid://c550fyv3s0x5m +uid://cnna0057i7r8x diff --git a/addons/gdUnit4/src/GdUnitDictionaryAssert.gd.uid b/addons/gdUnit4/src/GdUnitDictionaryAssert.gd.uid index 0d482d2dd..f708d47ce 100644 --- a/addons/gdUnit4/src/GdUnitDictionaryAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitDictionaryAssert.gd.uid @@ -1 +1 @@ -uid://dqbbr3ny3vwre +uid://cdktwcq2nandc diff --git a/addons/gdUnit4/src/GdUnitFailureAssert.gd.uid b/addons/gdUnit4/src/GdUnitFailureAssert.gd.uid index ae00f178e..9cbd3a418 100644 --- a/addons/gdUnit4/src/GdUnitFailureAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitFailureAssert.gd.uid @@ -1 +1 @@ -uid://dv8ksd8uijymd +uid://c8a5g1yaec6np diff --git a/addons/gdUnit4/src/GdUnitFileAssert.gd.uid b/addons/gdUnit4/src/GdUnitFileAssert.gd.uid index f4e3a4c9a..686c92818 100644 --- a/addons/gdUnit4/src/GdUnitFileAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitFileAssert.gd.uid @@ -1 +1 @@ -uid://b50p5e40653ny +uid://ci4b5ymek7wq1 diff --git a/addons/gdUnit4/src/GdUnitFloatAssert.gd.uid b/addons/gdUnit4/src/GdUnitFloatAssert.gd.uid index 119be166e..1933915d3 100644 --- a/addons/gdUnit4/src/GdUnitFloatAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitFloatAssert.gd.uid @@ -1 +1 @@ -uid://br7ucxfkd54hr +uid://ckowd50tx0tli diff --git a/addons/gdUnit4/src/GdUnitFuncAssert.gd.uid b/addons/gdUnit4/src/GdUnitFuncAssert.gd.uid index 6a59c93d3..c5a2e8a98 100644 --- a/addons/gdUnit4/src/GdUnitFuncAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitFuncAssert.gd.uid @@ -1 +1 @@ -uid://335smiuo3scl +uid://bfaxgl5f0rep diff --git a/addons/gdUnit4/src/GdUnitGodotErrorAssert.gd.uid b/addons/gdUnit4/src/GdUnitGodotErrorAssert.gd.uid index dac5e84a4..e74e796be 100644 --- a/addons/gdUnit4/src/GdUnitGodotErrorAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitGodotErrorAssert.gd.uid @@ -1 +1 @@ -uid://bw1otqoxlfpg6 +uid://gkbu8o3xhm7h diff --git a/addons/gdUnit4/src/GdUnitIntAssert.gd.uid b/addons/gdUnit4/src/GdUnitIntAssert.gd.uid index 05c44725d..a9328ffec 100644 --- a/addons/gdUnit4/src/GdUnitIntAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitIntAssert.gd.uid @@ -1 +1 @@ -uid://dupw6n7in47yf +uid://lpoljnh6cvkt diff --git a/addons/gdUnit4/src/GdUnitObjectAssert.gd.uid b/addons/gdUnit4/src/GdUnitObjectAssert.gd.uid index f6987fe48..aa7f889a6 100644 --- a/addons/gdUnit4/src/GdUnitObjectAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitObjectAssert.gd.uid @@ -1 +1 @@ -uid://6ekndqwqqftl +uid://be2o7f8td0brt diff --git a/addons/gdUnit4/src/GdUnitResultAssert.gd.uid b/addons/gdUnit4/src/GdUnitResultAssert.gd.uid index 17c909740..bad45f333 100644 --- a/addons/gdUnit4/src/GdUnitResultAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitResultAssert.gd.uid @@ -1 +1 @@ -uid://dln78w3h6qh3y +uid://b5k5a747ipx4d diff --git a/addons/gdUnit4/src/GdUnitSceneRunner.gd.uid b/addons/gdUnit4/src/GdUnitSceneRunner.gd.uid index 37df523e7..04bb0c9ff 100644 --- a/addons/gdUnit4/src/GdUnitSceneRunner.gd.uid +++ b/addons/gdUnit4/src/GdUnitSceneRunner.gd.uid @@ -1 +1 @@ -uid://bfl2wbls2jtai +uid://bqt68vp680fg1 diff --git a/addons/gdUnit4/src/GdUnitSignalAssert.gd.uid b/addons/gdUnit4/src/GdUnitSignalAssert.gd.uid index ad2f5bcfd..97f0ae7d3 100644 --- a/addons/gdUnit4/src/GdUnitSignalAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitSignalAssert.gd.uid @@ -1 +1 @@ -uid://b2un0gxddciyd +uid://b0wok2s84ao2x diff --git a/addons/gdUnit4/src/GdUnitStringAssert.gd.uid b/addons/gdUnit4/src/GdUnitStringAssert.gd.uid index 0c0b3dcb8..d8958fa4b 100644 --- a/addons/gdUnit4/src/GdUnitStringAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitStringAssert.gd.uid @@ -1 +1 @@ -uid://degjfpvihfd8t +uid://iyikryjwynmh diff --git a/addons/gdUnit4/src/GdUnitTestSuite.gd.uid b/addons/gdUnit4/src/GdUnitTestSuite.gd.uid index 82337c722..359a79a3a 100644 --- a/addons/gdUnit4/src/GdUnitTestSuite.gd.uid +++ b/addons/gdUnit4/src/GdUnitTestSuite.gd.uid @@ -1 +1 @@ -uid://di7exsfg8g6yp +uid://caeoswwfk34y8 diff --git a/addons/gdUnit4/src/GdUnitTuple.gd.uid b/addons/gdUnit4/src/GdUnitTuple.gd.uid index d329ab8c0..40c36e67b 100644 --- a/addons/gdUnit4/src/GdUnitTuple.gd.uid +++ b/addons/gdUnit4/src/GdUnitTuple.gd.uid @@ -1 +1 @@ -uid://cu73b70lc354g +uid://d4m3mjgjudnlh diff --git a/addons/gdUnit4/src/GdUnitValueExtractor.gd.uid b/addons/gdUnit4/src/GdUnitValueExtractor.gd.uid index 553b305c6..a52ff590c 100644 --- a/addons/gdUnit4/src/GdUnitValueExtractor.gd.uid +++ b/addons/gdUnit4/src/GdUnitValueExtractor.gd.uid @@ -1 +1 @@ -uid://c3vi2h4tcqqoi +uid://d2d2f78j64mod diff --git a/addons/gdUnit4/src/GdUnitVectorAssert.gd.uid b/addons/gdUnit4/src/GdUnitVectorAssert.gd.uid index df70e9c40..a7a1975a9 100644 --- a/addons/gdUnit4/src/GdUnitVectorAssert.gd.uid +++ b/addons/gdUnit4/src/GdUnitVectorAssert.gd.uid @@ -1 +1 @@ -uid://lypklrlh0anq +uid://dckpf7khkf5qw diff --git a/addons/gdUnit4/src/asserts/CallBackValueProvider.gd.uid b/addons/gdUnit4/src/asserts/CallBackValueProvider.gd.uid index 46b004d85..ac5d20904 100644 --- a/addons/gdUnit4/src/asserts/CallBackValueProvider.gd.uid +++ b/addons/gdUnit4/src/asserts/CallBackValueProvider.gd.uid @@ -1 +1 @@ -uid://blaurpdsxt244 +uid://5uecxe40mfjo diff --git a/addons/gdUnit4/src/asserts/DefaultValueProvider.gd.uid b/addons/gdUnit4/src/asserts/DefaultValueProvider.gd.uid index e32d5c8d3..9b64f8355 100644 --- a/addons/gdUnit4/src/asserts/DefaultValueProvider.gd.uid +++ b/addons/gdUnit4/src/asserts/DefaultValueProvider.gd.uid @@ -1 +1 @@ -uid://bkoe72jym4p8t +uid://c8r5xdxxnehuy diff --git a/addons/gdUnit4/src/asserts/GdAssertMessages.gd.uid b/addons/gdUnit4/src/asserts/GdAssertMessages.gd.uid index ff5f8a9e1..611279d2e 100644 --- a/addons/gdUnit4/src/asserts/GdAssertMessages.gd.uid +++ b/addons/gdUnit4/src/asserts/GdAssertMessages.gd.uid @@ -1 +1 @@ -uid://bvnol8hapckn7 +uid://dpltqtbmh64gg diff --git a/addons/gdUnit4/src/asserts/GdAssertReports.gd.uid b/addons/gdUnit4/src/asserts/GdAssertReports.gd.uid index 9ede063f7..b21cc8636 100644 --- a/addons/gdUnit4/src/asserts/GdAssertReports.gd.uid +++ b/addons/gdUnit4/src/asserts/GdAssertReports.gd.uid @@ -1 +1 @@ -uid://biyvs5pitjndq +uid://cgc320age5w71 diff --git a/addons/gdUnit4/src/asserts/GdUnitArrayAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitArrayAssertImpl.gd.uid index 1b709db3f..69b24ca08 100644 --- a/addons/gdUnit4/src/asserts/GdUnitArrayAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitArrayAssertImpl.gd.uid @@ -1 +1 @@ -uid://dhcpbsylc1lrf +uid://damenctxcdli2 diff --git a/addons/gdUnit4/src/asserts/GdUnitAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitAssertImpl.gd.uid index 6ab74e55d..278e1206a 100644 --- a/addons/gdUnit4/src/asserts/GdUnitAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitAssertImpl.gd.uid @@ -1 +1 @@ -uid://c15k88a5ytm2f +uid://dkst74wixdhfs diff --git a/addons/gdUnit4/src/asserts/GdUnitAssertions.gd.uid b/addons/gdUnit4/src/asserts/GdUnitAssertions.gd.uid index 50e9c3070..2aaf6bab6 100644 --- a/addons/gdUnit4/src/asserts/GdUnitAssertions.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitAssertions.gd.uid @@ -1 +1 @@ -uid://c5ppwbnpd7vxw +uid://rpvepjejsqx7 diff --git a/addons/gdUnit4/src/asserts/GdUnitBoolAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitBoolAssertImpl.gd.uid index 26eb00ece..4778cf2fd 100644 --- a/addons/gdUnit4/src/asserts/GdUnitBoolAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitBoolAssertImpl.gd.uid @@ -1 +1 @@ -uid://da5kirr7cxusr +uid://cjrgocu0r0v2h diff --git a/addons/gdUnit4/src/asserts/GdUnitDictionaryAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitDictionaryAssertImpl.gd.uid index aecf0f89f..be4256292 100644 --- a/addons/gdUnit4/src/asserts/GdUnitDictionaryAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitDictionaryAssertImpl.gd.uid @@ -1 +1 @@ -uid://bw3dnh3svs6as +uid://kwmnkp2hiqb7 diff --git a/addons/gdUnit4/src/asserts/GdUnitFailureAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitFailureAssertImpl.gd.uid index 6ce078525..f83f7e1cc 100644 --- a/addons/gdUnit4/src/asserts/GdUnitFailureAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitFailureAssertImpl.gd.uid @@ -1 +1 @@ -uid://cwwkf0px6scya +uid://dm2xeck4s3dsb diff --git a/addons/gdUnit4/src/asserts/GdUnitFileAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitFileAssertImpl.gd.uid index 9c05c0b68..5b5215eeb 100644 --- a/addons/gdUnit4/src/asserts/GdUnitFileAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitFileAssertImpl.gd.uid @@ -1 +1 @@ -uid://ch020x3wckafm +uid://bxsqocbgcutmb diff --git a/addons/gdUnit4/src/asserts/GdUnitFloatAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitFloatAssertImpl.gd.uid index 50a28f03d..3319f914a 100644 --- a/addons/gdUnit4/src/asserts/GdUnitFloatAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitFloatAssertImpl.gd.uid @@ -1 +1 @@ -uid://dlqxlbanaulsb +uid://ckieq0nue8cdu diff --git a/addons/gdUnit4/src/asserts/GdUnitFuncAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitFuncAssertImpl.gd.uid index 0e4f2fddb..c66a70af8 100644 --- a/addons/gdUnit4/src/asserts/GdUnitFuncAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitFuncAssertImpl.gd.uid @@ -1 +1 @@ -uid://cs3fed48xbwl3 +uid://cx4juxfyrp0mb diff --git a/addons/gdUnit4/src/asserts/GdUnitGodotErrorAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitGodotErrorAssertImpl.gd.uid index 7d96a8cc0..8558bfbe7 100644 --- a/addons/gdUnit4/src/asserts/GdUnitGodotErrorAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitGodotErrorAssertImpl.gd.uid @@ -1 +1 @@ -uid://f2xhs7bp6xsi +uid://oip4e8idmk4u diff --git a/addons/gdUnit4/src/asserts/GdUnitIntAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitIntAssertImpl.gd.uid index 61632a5ed..155230ed8 100644 --- a/addons/gdUnit4/src/asserts/GdUnitIntAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitIntAssertImpl.gd.uid @@ -1 +1 @@ -uid://dmrkpwmfc1ymw +uid://dvccfgpjdcorc diff --git a/addons/gdUnit4/src/asserts/GdUnitObjectAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitObjectAssertImpl.gd.uid index 54b15989f..92afbb9be 100644 --- a/addons/gdUnit4/src/asserts/GdUnitObjectAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitObjectAssertImpl.gd.uid @@ -1 +1 @@ -uid://cwi3wove5nxc4 +uid://qq3aox8ppddl diff --git a/addons/gdUnit4/src/asserts/GdUnitResultAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitResultAssertImpl.gd.uid index a8700cf91..e45ae6b3d 100644 --- a/addons/gdUnit4/src/asserts/GdUnitResultAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitResultAssertImpl.gd.uid @@ -1 +1 @@ -uid://dllbn8hvue6xk +uid://tm065l7wc0ru diff --git a/addons/gdUnit4/src/asserts/GdUnitSignalAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitSignalAssertImpl.gd.uid index f539c461c..5bccd92a2 100644 --- a/addons/gdUnit4/src/asserts/GdUnitSignalAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitSignalAssertImpl.gd.uid @@ -1 +1 @@ -uid://dlyx66ibp87nm +uid://iy8nwt5sul1s diff --git a/addons/gdUnit4/src/asserts/GdUnitStringAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitStringAssertImpl.gd.uid index f7ac12892..8422614a5 100644 --- a/addons/gdUnit4/src/asserts/GdUnitStringAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitStringAssertImpl.gd.uid @@ -1 +1 @@ -uid://8fimpq6h0yan +uid://hr4uuj053ept diff --git a/addons/gdUnit4/src/asserts/GdUnitVectorAssertImpl.gd.uid b/addons/gdUnit4/src/asserts/GdUnitVectorAssertImpl.gd.uid index f7df8348e..750c48583 100644 --- a/addons/gdUnit4/src/asserts/GdUnitVectorAssertImpl.gd.uid +++ b/addons/gdUnit4/src/asserts/GdUnitVectorAssertImpl.gd.uid @@ -1 +1 @@ -uid://m1sv4ft6p0ug +uid://6p631qsf3iht diff --git a/addons/gdUnit4/src/asserts/ValueProvider.gd.uid b/addons/gdUnit4/src/asserts/ValueProvider.gd.uid index a6b49cd6e..8214ef8e4 100644 --- a/addons/gdUnit4/src/asserts/ValueProvider.gd.uid +++ b/addons/gdUnit4/src/asserts/ValueProvider.gd.uid @@ -1 +1 @@ -uid://cs1d2ankb1u0p +uid://vunas73a305b diff --git a/addons/gdUnit4/src/cmd/CmdArgumentParser.gd.uid b/addons/gdUnit4/src/cmd/CmdArgumentParser.gd.uid index 4c25e5575..c7acca672 100644 --- a/addons/gdUnit4/src/cmd/CmdArgumentParser.gd.uid +++ b/addons/gdUnit4/src/cmd/CmdArgumentParser.gd.uid @@ -1 +1 @@ -uid://0iphvbrelq1d +uid://cfbdd4vjxemgi diff --git a/addons/gdUnit4/src/cmd/CmdCommand.gd.uid b/addons/gdUnit4/src/cmd/CmdCommand.gd.uid index 4ac0b0d29..3ba093f47 100644 --- a/addons/gdUnit4/src/cmd/CmdCommand.gd.uid +++ b/addons/gdUnit4/src/cmd/CmdCommand.gd.uid @@ -1 +1 @@ -uid://cjp3umbneagvs +uid://cqgk21o0t3mr8 diff --git a/addons/gdUnit4/src/cmd/CmdCommandHandler.gd.uid b/addons/gdUnit4/src/cmd/CmdCommandHandler.gd.uid index d99bdf076..b65f509ee 100644 --- a/addons/gdUnit4/src/cmd/CmdCommandHandler.gd.uid +++ b/addons/gdUnit4/src/cmd/CmdCommandHandler.gd.uid @@ -1 +1 @@ -uid://b5d6dyb4obgp5 +uid://6gum318f67wq diff --git a/addons/gdUnit4/src/cmd/CmdOption.gd.uid b/addons/gdUnit4/src/cmd/CmdOption.gd.uid index 2ae7ffff9..6082f2392 100644 --- a/addons/gdUnit4/src/cmd/CmdOption.gd.uid +++ b/addons/gdUnit4/src/cmd/CmdOption.gd.uid @@ -1 +1 @@ -uid://cshr2tmrsgybj +uid://cx5vos4l5v641 diff --git a/addons/gdUnit4/src/cmd/CmdOptions.gd.uid b/addons/gdUnit4/src/cmd/CmdOptions.gd.uid index 965278545..1a46eb519 100644 --- a/addons/gdUnit4/src/cmd/CmdOptions.gd.uid +++ b/addons/gdUnit4/src/cmd/CmdOptions.gd.uid @@ -1 +1 @@ -uid://eri8hd2yla78 +uid://cutjtt2k4jl4b diff --git a/addons/gdUnit4/src/core/GdArrayTools.gd.uid b/addons/gdUnit4/src/core/GdArrayTools.gd.uid index 27dde531e..059422142 100644 --- a/addons/gdUnit4/src/core/GdArrayTools.gd.uid +++ b/addons/gdUnit4/src/core/GdArrayTools.gd.uid @@ -1 +1 @@ -uid://dno0co478t0un +uid://cc05prv4fkhck diff --git a/addons/gdUnit4/src/core/GdDiffTool.gd.uid b/addons/gdUnit4/src/core/GdDiffTool.gd.uid index 45881289e..5f228400b 100644 --- a/addons/gdUnit4/src/core/GdDiffTool.gd.uid +++ b/addons/gdUnit4/src/core/GdDiffTool.gd.uid @@ -1 +1 @@ -uid://scbqdoniah7d +uid://ci2ah0xus033r diff --git a/addons/gdUnit4/src/core/GdObjects.gd.uid b/addons/gdUnit4/src/core/GdObjects.gd.uid index 222928707..20bb3319d 100644 --- a/addons/gdUnit4/src/core/GdObjects.gd.uid +++ b/addons/gdUnit4/src/core/GdObjects.gd.uid @@ -1 +1 @@ -uid://dmswdq31gokl2 +uid://4xabw5a6jdif diff --git a/addons/gdUnit4/src/core/GdUnit4Version.gd.uid b/addons/gdUnit4/src/core/GdUnit4Version.gd.uid index edf9ccc26..0dbf0fae8 100644 --- a/addons/gdUnit4/src/core/GdUnit4Version.gd.uid +++ b/addons/gdUnit4/src/core/GdUnit4Version.gd.uid @@ -1 +1 @@ -uid://e5j6or0ewlba +uid://jg5xxy5w5xj8 diff --git a/addons/gdUnit4/src/core/GdUnitFileAccess.gd.uid b/addons/gdUnit4/src/core/GdUnitFileAccess.gd.uid index e3641168f..7aedc28c8 100644 --- a/addons/gdUnit4/src/core/GdUnitFileAccess.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitFileAccess.gd.uid @@ -1 +1 @@ -uid://d01a2e5c8wtis +uid://ckpfv53mtygk diff --git a/addons/gdUnit4/src/core/GdUnitProperty.gd.uid b/addons/gdUnit4/src/core/GdUnitProperty.gd.uid index c3ed01a27..e1082266f 100644 --- a/addons/gdUnit4/src/core/GdUnitProperty.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitProperty.gd.uid @@ -1 +1 @@ -uid://0jt1o4pf4wbs +uid://dmvqun5gs80y diff --git a/addons/gdUnit4/src/core/GdUnitResult.gd.uid b/addons/gdUnit4/src/core/GdUnitResult.gd.uid index 189e8d559..08db62f06 100644 --- a/addons/gdUnit4/src/core/GdUnitResult.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitResult.gd.uid @@ -1 +1 @@ -uid://hxrxfwl1lpob +uid://dtqlwj47n5j78 diff --git a/addons/gdUnit4/src/core/GdUnitRunnerConfig.gd.uid b/addons/gdUnit4/src/core/GdUnitRunnerConfig.gd.uid index 7e36bf313..0190c8574 100644 --- a/addons/gdUnit4/src/core/GdUnitRunnerConfig.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitRunnerConfig.gd.uid @@ -1 +1 @@ -uid://c7m4h6gq5yewm +uid://c1uyxmvp5j86e diff --git a/addons/gdUnit4/src/core/GdUnitSceneRunnerImpl.gd.uid b/addons/gdUnit4/src/core/GdUnitSceneRunnerImpl.gd.uid index a5b990003..0c9cf433d 100644 --- a/addons/gdUnit4/src/core/GdUnitSceneRunnerImpl.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitSceneRunnerImpl.gd.uid @@ -1 +1 @@ -uid://cnjgm6n8ug03f +uid://bgs6qgoeyixsy diff --git a/addons/gdUnit4/src/core/GdUnitSettings.gd.uid b/addons/gdUnit4/src/core/GdUnitSettings.gd.uid index ab4846f0f..13d02a6f9 100644 --- a/addons/gdUnit4/src/core/GdUnitSettings.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitSettings.gd.uid @@ -1 +1 @@ -uid://0vnvtvpqtxga +uid://3y00rn63iusw diff --git a/addons/gdUnit4/src/core/GdUnitSignalAwaiter.gd.uid b/addons/gdUnit4/src/core/GdUnitSignalAwaiter.gd.uid index 5bcbb4b93..bbbfc50a0 100644 --- a/addons/gdUnit4/src/core/GdUnitSignalAwaiter.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitSignalAwaiter.gd.uid @@ -1 +1 @@ -uid://bxwy7ffqiq5mo +uid://dfxm7vecbydxr diff --git a/addons/gdUnit4/src/core/GdUnitSignalCollector.gd.uid b/addons/gdUnit4/src/core/GdUnitSignalCollector.gd.uid index cfc0b7dc8..117e35e99 100644 --- a/addons/gdUnit4/src/core/GdUnitSignalCollector.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitSignalCollector.gd.uid @@ -1 +1 @@ -uid://cvva0x77fdbjx +uid://4q0w5yqlwvog diff --git a/addons/gdUnit4/src/core/GdUnitSignals.gd.uid b/addons/gdUnit4/src/core/GdUnitSignals.gd.uid index f93b78e39..2a15b26e8 100644 --- a/addons/gdUnit4/src/core/GdUnitSignals.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitSignals.gd.uid @@ -1 +1 @@ -uid://b6mok6on6lfb4 +uid://cw4op7smm27a2 diff --git a/addons/gdUnit4/src/core/GdUnitSingleton.gd.uid b/addons/gdUnit4/src/core/GdUnitSingleton.gd.uid index 75852498e..782d5ac41 100644 --- a/addons/gdUnit4/src/core/GdUnitSingleton.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitSingleton.gd.uid @@ -1 +1 @@ -uid://cnjeotpivhspj +uid://rq1tuamojbpi diff --git a/addons/gdUnit4/src/core/GdUnitTestResourceLoader.gd.uid b/addons/gdUnit4/src/core/GdUnitTestResourceLoader.gd.uid index 398fcd98b..41a69624c 100644 --- a/addons/gdUnit4/src/core/GdUnitTestResourceLoader.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitTestResourceLoader.gd.uid @@ -1 +1 @@ -uid://dlc0yja3t4wd4 +uid://bkissu3rntf7p diff --git a/addons/gdUnit4/src/core/GdUnitTestSuiteBuilder.gd.uid b/addons/gdUnit4/src/core/GdUnitTestSuiteBuilder.gd.uid index 2d3a697c5..0b38ea6e9 100644 --- a/addons/gdUnit4/src/core/GdUnitTestSuiteBuilder.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitTestSuiteBuilder.gd.uid @@ -1 +1 @@ -uid://bstc643smq3vy +uid://ddiugm07pp7py diff --git a/addons/gdUnit4/src/core/GdUnitTestSuiteScanner.gd.uid b/addons/gdUnit4/src/core/GdUnitTestSuiteScanner.gd.uid index ffbebbc10..d24f8b2e7 100644 --- a/addons/gdUnit4/src/core/GdUnitTestSuiteScanner.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitTestSuiteScanner.gd.uid @@ -1 +1 @@ -uid://u00nuhu4a3br +uid://bqavd1sl08hf2 diff --git a/addons/gdUnit4/src/core/GdUnitTools.gd.uid b/addons/gdUnit4/src/core/GdUnitTools.gd.uid index aff1d7146..c24702b42 100644 --- a/addons/gdUnit4/src/core/GdUnitTools.gd.uid +++ b/addons/gdUnit4/src/core/GdUnitTools.gd.uid @@ -1 +1 @@ -uid://bwnl16op425rr +uid://dj8lvm8e3f6y7 diff --git a/addons/gdUnit4/src/core/GodotVersionFixures.gd.uid b/addons/gdUnit4/src/core/GodotVersionFixures.gd.uid index 856dbe0be..8600e45b4 100644 --- a/addons/gdUnit4/src/core/GodotVersionFixures.gd.uid +++ b/addons/gdUnit4/src/core/GodotVersionFixures.gd.uid @@ -1 +1 @@ -uid://cob88c64gyjrp +uid://de1o6jgv15mal diff --git a/addons/gdUnit4/src/core/LocalTime.gd.uid b/addons/gdUnit4/src/core/LocalTime.gd.uid index 4dada219f..3cbb4ce2b 100644 --- a/addons/gdUnit4/src/core/LocalTime.gd.uid +++ b/addons/gdUnit4/src/core/LocalTime.gd.uid @@ -1 +1 @@ -uid://btx1w6j8mp1uq +uid://cxbag2rrb6sas diff --git a/addons/gdUnit4/src/core/_TestCase.gd.uid b/addons/gdUnit4/src/core/_TestCase.gd.uid index 7d52e9e08..b595a6726 100644 --- a/addons/gdUnit4/src/core/_TestCase.gd.uid +++ b/addons/gdUnit4/src/core/_TestCase.gd.uid @@ -1 +1 @@ -uid://dg65hriumtbqy +uid://cutxf700do88e diff --git a/addons/gdUnit4/src/core/assets/touch-button.png.import b/addons/gdUnit4/src/core/assets/touch-button.png.import index a4d77d214..387260248 100644 --- a/addons/gdUnit4/src/core/assets/touch-button.png.import +++ b/addons/gdUnit4/src/core/assets/touch-button.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://fan1mib7nve4" +uid="uid://cjr1r0avxoo61" path="res://.godot/imported/touch-button.png-2fff40c8520d8e97a57db1b2b043f641.ctex" metadata={ "has_editor_variant": true, diff --git a/addons/gdUnit4/src/core/attributes/TestCaseAttribute.gd.uid b/addons/gdUnit4/src/core/attributes/TestCaseAttribute.gd.uid index e7981e67c..89be298a5 100644 --- a/addons/gdUnit4/src/core/attributes/TestCaseAttribute.gd.uid +++ b/addons/gdUnit4/src/core/attributes/TestCaseAttribute.gd.uid @@ -1 +1 @@ -uid://cct0oodpr0gf4 +uid://c8sdpaj6w2w44 diff --git a/addons/gdUnit4/src/core/command/GdUnitCommandHandler.gd.uid b/addons/gdUnit4/src/core/command/GdUnitCommandHandler.gd.uid index fb86bc1aa..387712b1f 100644 --- a/addons/gdUnit4/src/core/command/GdUnitCommandHandler.gd.uid +++ b/addons/gdUnit4/src/core/command/GdUnitCommandHandler.gd.uid @@ -1 +1 @@ -uid://baeh60k2wmuiq +uid://br44471rn4vpq diff --git a/addons/gdUnit4/src/core/command/GdUnitShortcut.gd.uid b/addons/gdUnit4/src/core/command/GdUnitShortcut.gd.uid index aa4e5b7a5..edf35858d 100644 --- a/addons/gdUnit4/src/core/command/GdUnitShortcut.gd.uid +++ b/addons/gdUnit4/src/core/command/GdUnitShortcut.gd.uid @@ -1 +1 @@ -uid://dsqfdq3bwdnjc +uid://bmvpy4lh3r2rm diff --git a/addons/gdUnit4/src/core/discovery/GdUnitGUID.gd.uid b/addons/gdUnit4/src/core/discovery/GdUnitGUID.gd.uid index 70625c885..baf2d9851 100644 --- a/addons/gdUnit4/src/core/discovery/GdUnitGUID.gd.uid +++ b/addons/gdUnit4/src/core/discovery/GdUnitGUID.gd.uid @@ -1 +1 @@ -uid://dmfrj55lb14en +uid://c04otwsdp0jfq diff --git a/addons/gdUnit4/src/core/discovery/GdUnitTestCase.gd.uid b/addons/gdUnit4/src/core/discovery/GdUnitTestCase.gd.uid index 5e0857872..115eae3f8 100644 --- a/addons/gdUnit4/src/core/discovery/GdUnitTestCase.gd.uid +++ b/addons/gdUnit4/src/core/discovery/GdUnitTestCase.gd.uid @@ -1 +1 @@ -uid://cpgy8jiwu3e7c +uid://5gucmi3wki7b diff --git a/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverGuard.gd.uid b/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverGuard.gd.uid index 409c15a33..f172679d8 100644 --- a/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverGuard.gd.uid +++ b/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverGuard.gd.uid @@ -1 +1 @@ -uid://inyks1kobjfn +uid://cibgny8njk4jt diff --git a/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverSink.gd.uid b/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverSink.gd.uid index 57ad89271..1748151dd 100644 --- a/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverSink.gd.uid +++ b/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverSink.gd.uid @@ -1 +1 @@ -uid://b0eau438kg7ur +uid://284qmj6f1ivw diff --git a/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverer.gd.uid b/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverer.gd.uid index 9d4fdeabc..4686c6b98 100644 --- a/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverer.gd.uid +++ b/addons/gdUnit4/src/core/discovery/GdUnitTestDiscoverer.gd.uid @@ -1 +1 @@ -uid://bxratteckahtg +uid://drbnojkmrbtol diff --git a/addons/gdUnit4/src/core/event/GdUnitEvent.gd.uid b/addons/gdUnit4/src/core/event/GdUnitEvent.gd.uid index 56de6d27a..619283a6e 100644 --- a/addons/gdUnit4/src/core/event/GdUnitEvent.gd.uid +++ b/addons/gdUnit4/src/core/event/GdUnitEvent.gd.uid @@ -1 +1 @@ -uid://br0iceqyi5ry5 +uid://cxrugrjlffn4a diff --git a/addons/gdUnit4/src/core/event/GdUnitEventInit.gd.uid b/addons/gdUnit4/src/core/event/GdUnitEventInit.gd.uid index e9da32593..7625a38fd 100644 --- a/addons/gdUnit4/src/core/event/GdUnitEventInit.gd.uid +++ b/addons/gdUnit4/src/core/event/GdUnitEventInit.gd.uid @@ -1 +1 @@ -uid://bqqisongkk2kc +uid://bctb0e67tnhut diff --git a/addons/gdUnit4/src/core/event/GdUnitEventStop.gd.uid b/addons/gdUnit4/src/core/event/GdUnitEventStop.gd.uid index 3b213deb2..e934b114e 100644 --- a/addons/gdUnit4/src/core/event/GdUnitEventStop.gd.uid +++ b/addons/gdUnit4/src/core/event/GdUnitEventStop.gd.uid @@ -1 +1 @@ -uid://bktjk2ddwekwx +uid://dhhbas2bmm41b diff --git a/addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverEnd.gd.uid b/addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverEnd.gd.uid index 49b96fc51..da23a6444 100644 --- a/addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverEnd.gd.uid +++ b/addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverEnd.gd.uid @@ -1 +1 @@ -uid://w3b2rnth41vo +uid://i2ru7yoaep24 diff --git a/addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverStart.gd.uid b/addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverStart.gd.uid index 601f73138..5d7b77e95 100644 --- a/addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverStart.gd.uid +++ b/addons/gdUnit4/src/core/event/GdUnitEventTestDiscoverStart.gd.uid @@ -1 +1 @@ -uid://dxsdywha1ka1d +uid://bqedxy6divfja diff --git a/addons/gdUnit4/src/core/event/GdUnitSessionClose.gd.uid b/addons/gdUnit4/src/core/event/GdUnitSessionClose.gd.uid index 5b5578692..589ea4aed 100644 --- a/addons/gdUnit4/src/core/event/GdUnitSessionClose.gd.uid +++ b/addons/gdUnit4/src/core/event/GdUnitSessionClose.gd.uid @@ -1 +1 @@ -uid://brbq7ypnyskfp +uid://cneongrfdgnh3 diff --git a/addons/gdUnit4/src/core/event/GdUnitSessionStart.gd.uid b/addons/gdUnit4/src/core/event/GdUnitSessionStart.gd.uid index 41d0eb5ef..328c491b1 100644 --- a/addons/gdUnit4/src/core/event/GdUnitSessionStart.gd.uid +++ b/addons/gdUnit4/src/core/event/GdUnitSessionStart.gd.uid @@ -1 +1 @@ -uid://b4qh8cli0y2uw +uid://bgdkymengb7yf diff --git a/addons/gdUnit4/src/core/execution/GdUnitExecutionContext.gd.uid b/addons/gdUnit4/src/core/execution/GdUnitExecutionContext.gd.uid index 3cccab1f5..e23a0cb67 100644 --- a/addons/gdUnit4/src/core/execution/GdUnitExecutionContext.gd.uid +++ b/addons/gdUnit4/src/core/execution/GdUnitExecutionContext.gd.uid @@ -1 +1 @@ -uid://qv513mtngs3y +uid://d3qxgun5gen7w diff --git a/addons/gdUnit4/src/core/execution/GdUnitMemoryObserver.gd.uid b/addons/gdUnit4/src/core/execution/GdUnitMemoryObserver.gd.uid index e8095a8b2..46a69fff8 100644 --- a/addons/gdUnit4/src/core/execution/GdUnitMemoryObserver.gd.uid +++ b/addons/gdUnit4/src/core/execution/GdUnitMemoryObserver.gd.uid @@ -1 +1 @@ -uid://lsef5ouqbnck +uid://dk3xpnc3ie5t8 diff --git a/addons/gdUnit4/src/core/execution/GdUnitTestReportCollector.gd.uid b/addons/gdUnit4/src/core/execution/GdUnitTestReportCollector.gd.uid index 86c5741c0..86ea9c081 100644 --- a/addons/gdUnit4/src/core/execution/GdUnitTestReportCollector.gd.uid +++ b/addons/gdUnit4/src/core/execution/GdUnitTestReportCollector.gd.uid @@ -1 +1 @@ -uid://b36x88dl43lx6 +uid://cba54fbji8slk diff --git a/addons/gdUnit4/src/core/execution/GdUnitTestSuiteExecutor.gd.uid b/addons/gdUnit4/src/core/execution/GdUnitTestSuiteExecutor.gd.uid index 7bf82f0db..c8c18499d 100644 --- a/addons/gdUnit4/src/core/execution/GdUnitTestSuiteExecutor.gd.uid +++ b/addons/gdUnit4/src/core/execution/GdUnitTestSuiteExecutor.gd.uid @@ -1 +1 @@ -uid://cvciorgmwpa2x +uid://bf8ah7ivos7ud diff --git a/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseAfterStage.gd.uid b/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseAfterStage.gd.uid index 369586e68..37b7acd46 100644 --- a/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseAfterStage.gd.uid +++ b/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseAfterStage.gd.uid @@ -1 +1 @@ -uid://uhde1ww7um8q +uid://c4q8grl6ccbcp diff --git a/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseBeforeStage.gd.uid b/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseBeforeStage.gd.uid index 64e12f71e..8f9dadfc2 100644 --- a/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseBeforeStage.gd.uid +++ b/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseBeforeStage.gd.uid @@ -1 +1 @@ -uid://dpyb1ft32gsw1 +uid://dchw77snbylnx diff --git a/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseExecutionStage.gd.uid b/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseExecutionStage.gd.uid index 174d4919c..09da99afe 100644 --- a/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseExecutionStage.gd.uid +++ b/addons/gdUnit4/src/core/execution/stages/GdUnitTestCaseExecutionStage.gd.uid @@ -1 +1 @@ -uid://crf78q6hji7hq +uid://cnfsjklpwkvbc diff --git a/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteAfterStage.gd.uid b/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteAfterStage.gd.uid index 28b399e55..d0607c5d0 100644 --- a/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteAfterStage.gd.uid +++ b/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteAfterStage.gd.uid @@ -1 +1 @@ -uid://kxk4x3wljnih +uid://ibx0ddttateh diff --git a/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteBeforeStage.gd.uid b/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteBeforeStage.gd.uid index a77e1c631..4f82cd858 100644 --- a/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteBeforeStage.gd.uid +++ b/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteBeforeStage.gd.uid @@ -1 +1 @@ -uid://dv3phth2efvfc +uid://cfaqwqfeen42v diff --git a/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteExecutionStage.gd.uid b/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteExecutionStage.gd.uid index 47c9cd99b..b8118122d 100644 --- a/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteExecutionStage.gd.uid +++ b/addons/gdUnit4/src/core/execution/stages/GdUnitTestSuiteExecutionStage.gd.uid @@ -1 +1 @@ -uid://dchxp8nflst8k +uid://csgm2t0ho8qs8 diff --git a/addons/gdUnit4/src/core/execution/stages/IGdUnitExecutionStage.gd.uid b/addons/gdUnit4/src/core/execution/stages/IGdUnitExecutionStage.gd.uid index 6d6a280c9..b3ec79be4 100644 --- a/addons/gdUnit4/src/core/execution/stages/IGdUnitExecutionStage.gd.uid +++ b/addons/gdUnit4/src/core/execution/stages/IGdUnitExecutionStage.gd.uid @@ -1 +1 @@ -uid://7v5ydqrbuuou +uid://bm8gwgtwjkos5 diff --git a/addons/gdUnit4/src/core/execution/stages/fuzzed/GdUnitTestCaseFuzzedExecutionStage.gd.uid b/addons/gdUnit4/src/core/execution/stages/fuzzed/GdUnitTestCaseFuzzedExecutionStage.gd.uid index 3cc4f2958..9f1d29595 100644 --- a/addons/gdUnit4/src/core/execution/stages/fuzzed/GdUnitTestCaseFuzzedExecutionStage.gd.uid +++ b/addons/gdUnit4/src/core/execution/stages/fuzzed/GdUnitTestCaseFuzzedExecutionStage.gd.uid @@ -1 +1 @@ -uid://b1dt23y5i33b7 +uid://bktg2w0lui5iw diff --git a/addons/gdUnit4/src/core/execution/stages/fuzzed/GdUnitTestCaseFuzzedTestStage.gd.uid b/addons/gdUnit4/src/core/execution/stages/fuzzed/GdUnitTestCaseFuzzedTestStage.gd.uid index 09e46274d..96b109ae7 100644 --- a/addons/gdUnit4/src/core/execution/stages/fuzzed/GdUnitTestCaseFuzzedTestStage.gd.uid +++ b/addons/gdUnit4/src/core/execution/stages/fuzzed/GdUnitTestCaseFuzzedTestStage.gd.uid @@ -1 +1 @@ -uid://btpxl8lraky4s +uid://bpjspygfwunks diff --git a/addons/gdUnit4/src/core/execution/stages/single/GdUnitTestCaseSingleExecutionStage.gd.uid b/addons/gdUnit4/src/core/execution/stages/single/GdUnitTestCaseSingleExecutionStage.gd.uid index 8903afb1b..f5341a71f 100644 --- a/addons/gdUnit4/src/core/execution/stages/single/GdUnitTestCaseSingleExecutionStage.gd.uid +++ b/addons/gdUnit4/src/core/execution/stages/single/GdUnitTestCaseSingleExecutionStage.gd.uid @@ -1 +1 @@ -uid://dsq37duh4y0td +uid://bw4q8gsjp3cb5 diff --git a/addons/gdUnit4/src/core/execution/stages/single/GdUnitTestCaseSingleTestStage.gd.uid b/addons/gdUnit4/src/core/execution/stages/single/GdUnitTestCaseSingleTestStage.gd.uid index 86f6cde52..c2f5d6d87 100644 --- a/addons/gdUnit4/src/core/execution/stages/single/GdUnitTestCaseSingleTestStage.gd.uid +++ b/addons/gdUnit4/src/core/execution/stages/single/GdUnitTestCaseSingleTestStage.gd.uid @@ -1 +1 @@ -uid://d5ax3n414kiw +uid://csn7dxnev760s diff --git a/addons/gdUnit4/src/core/hooks/GdUnitBaseReporterTestSessionHook.gd.uid b/addons/gdUnit4/src/core/hooks/GdUnitBaseReporterTestSessionHook.gd.uid index efc94d4b4..e0cebbc12 100644 --- a/addons/gdUnit4/src/core/hooks/GdUnitBaseReporterTestSessionHook.gd.uid +++ b/addons/gdUnit4/src/core/hooks/GdUnitBaseReporterTestSessionHook.gd.uid @@ -1 +1 @@ -uid://bw5twxinroxwo +uid://boxswvykt48c8 diff --git a/addons/gdUnit4/src/core/hooks/GdUnitHtmlReporterTestSessionHook.gd.uid b/addons/gdUnit4/src/core/hooks/GdUnitHtmlReporterTestSessionHook.gd.uid index 68e9f5e50..eb148ff1f 100644 --- a/addons/gdUnit4/src/core/hooks/GdUnitHtmlReporterTestSessionHook.gd.uid +++ b/addons/gdUnit4/src/core/hooks/GdUnitHtmlReporterTestSessionHook.gd.uid @@ -1 +1 @@ -uid://odywidfmmlx2 +uid://c5hfi58pblf4d diff --git a/addons/gdUnit4/src/core/hooks/GdUnitTestSessionHook.gd.uid b/addons/gdUnit4/src/core/hooks/GdUnitTestSessionHook.gd.uid index 2a699ab34..5faf7e6c6 100644 --- a/addons/gdUnit4/src/core/hooks/GdUnitTestSessionHook.gd.uid +++ b/addons/gdUnit4/src/core/hooks/GdUnitTestSessionHook.gd.uid @@ -1 +1 @@ -uid://3gv7plkad15l +uid://dxev80vsd85yu diff --git a/addons/gdUnit4/src/core/hooks/GdUnitTestSessionHookService.gd.uid b/addons/gdUnit4/src/core/hooks/GdUnitTestSessionHookService.gd.uid index be5dc5a81..51ddc6410 100644 --- a/addons/gdUnit4/src/core/hooks/GdUnitTestSessionHookService.gd.uid +++ b/addons/gdUnit4/src/core/hooks/GdUnitTestSessionHookService.gd.uid @@ -1 +1 @@ -uid://bw0o6t63h4g5f +uid://b3wv73784pjl8 diff --git a/addons/gdUnit4/src/core/hooks/GdUnitXMLReporterTestSessionHook.gd.uid b/addons/gdUnit4/src/core/hooks/GdUnitXMLReporterTestSessionHook.gd.uid index ebaf14b68..a2508c02b 100644 --- a/addons/gdUnit4/src/core/hooks/GdUnitXMLReporterTestSessionHook.gd.uid +++ b/addons/gdUnit4/src/core/hooks/GdUnitXMLReporterTestSessionHook.gd.uid @@ -1 +1 @@ -uid://c7rhjxxlq73he +uid://cikx43cky2k88 diff --git a/addons/gdUnit4/src/core/parse/GdClassDescriptor.gd.uid b/addons/gdUnit4/src/core/parse/GdClassDescriptor.gd.uid index d012180ef..e01f3c4d8 100644 --- a/addons/gdUnit4/src/core/parse/GdClassDescriptor.gd.uid +++ b/addons/gdUnit4/src/core/parse/GdClassDescriptor.gd.uid @@ -1 +1 @@ -uid://b2qvx47x7our5 +uid://cuiw1yv7ywd52 diff --git a/addons/gdUnit4/src/core/parse/GdDefaultValueDecoder.gd.uid b/addons/gdUnit4/src/core/parse/GdDefaultValueDecoder.gd.uid index a4c5be3de..84030dc7e 100644 --- a/addons/gdUnit4/src/core/parse/GdDefaultValueDecoder.gd.uid +++ b/addons/gdUnit4/src/core/parse/GdDefaultValueDecoder.gd.uid @@ -1 +1 @@ -uid://bb3hkpcu5ff5i +uid://dq1sepdfv5quk diff --git a/addons/gdUnit4/src/core/parse/GdFunctionArgument.gd.uid b/addons/gdUnit4/src/core/parse/GdFunctionArgument.gd.uid index 109773ed0..137a22740 100644 --- a/addons/gdUnit4/src/core/parse/GdFunctionArgument.gd.uid +++ b/addons/gdUnit4/src/core/parse/GdFunctionArgument.gd.uid @@ -1 +1 @@ -uid://gvmj0g1fave7 +uid://b466ieqdosw7d diff --git a/addons/gdUnit4/src/core/parse/GdFunctionDescriptor.gd.uid b/addons/gdUnit4/src/core/parse/GdFunctionDescriptor.gd.uid index 8737ee318..7e73d71cb 100644 --- a/addons/gdUnit4/src/core/parse/GdFunctionDescriptor.gd.uid +++ b/addons/gdUnit4/src/core/parse/GdFunctionDescriptor.gd.uid @@ -1 +1 @@ -uid://d1q3crbrxfdb0 +uid://cmj5vegbxc6uf diff --git a/addons/gdUnit4/src/core/parse/GdFunctionParameterSetResolver.gd.uid b/addons/gdUnit4/src/core/parse/GdFunctionParameterSetResolver.gd.uid index 2294c5e30..df7c3c19b 100644 --- a/addons/gdUnit4/src/core/parse/GdFunctionParameterSetResolver.gd.uid +++ b/addons/gdUnit4/src/core/parse/GdFunctionParameterSetResolver.gd.uid @@ -1 +1 @@ -uid://hl83fmpb1tdg +uid://c5vypk26b4l2x diff --git a/addons/gdUnit4/src/core/parse/GdScriptParser.gd.uid b/addons/gdUnit4/src/core/parse/GdScriptParser.gd.uid index 268d29800..69523b8d4 100644 --- a/addons/gdUnit4/src/core/parse/GdScriptParser.gd.uid +++ b/addons/gdUnit4/src/core/parse/GdScriptParser.gd.uid @@ -1 +1 @@ -uid://c07jokotgbhwa +uid://ds5qds8yuy7lj diff --git a/addons/gdUnit4/src/core/parse/GdUnitExpressionRunner.gd.uid b/addons/gdUnit4/src/core/parse/GdUnitExpressionRunner.gd.uid index 9658214f5..23f5d0100 100644 --- a/addons/gdUnit4/src/core/parse/GdUnitExpressionRunner.gd.uid +++ b/addons/gdUnit4/src/core/parse/GdUnitExpressionRunner.gd.uid @@ -1 +1 @@ -uid://huk0lqlcbfak +uid://bo70c3osk0ojx diff --git a/addons/gdUnit4/src/core/parse/GdUnitTestParameterSetResolver.gd.uid b/addons/gdUnit4/src/core/parse/GdUnitTestParameterSetResolver.gd.uid index 903153879..9f07024f1 100644 --- a/addons/gdUnit4/src/core/parse/GdUnitTestParameterSetResolver.gd.uid +++ b/addons/gdUnit4/src/core/parse/GdUnitTestParameterSetResolver.gd.uid @@ -1 +1 @@ -uid://b342o6mret6ap +uid://bvour23fuj5q5 diff --git a/addons/gdUnit4/src/core/report/GdUnitReport.gd.uid b/addons/gdUnit4/src/core/report/GdUnitReport.gd.uid index c65a1bd37..cce32b8da 100644 --- a/addons/gdUnit4/src/core/report/GdUnitReport.gd.uid +++ b/addons/gdUnit4/src/core/report/GdUnitReport.gd.uid @@ -1 +1 @@ -uid://b4w7uh4i66ni7 +uid://bt8yqeex433xj diff --git a/addons/gdUnit4/src/core/runners/GdUnitTestCIRunner.gd.uid b/addons/gdUnit4/src/core/runners/GdUnitTestCIRunner.gd.uid index b41fcde16..08c792b8a 100644 --- a/addons/gdUnit4/src/core/runners/GdUnitTestCIRunner.gd.uid +++ b/addons/gdUnit4/src/core/runners/GdUnitTestCIRunner.gd.uid @@ -1 +1 @@ -uid://cwiqnuw35uo53 +uid://brxfbyosunjv5 diff --git a/addons/gdUnit4/src/core/runners/GdUnitTestRunner.gd.uid b/addons/gdUnit4/src/core/runners/GdUnitTestRunner.gd.uid index 29483af53..2fef84189 100644 --- a/addons/gdUnit4/src/core/runners/GdUnitTestRunner.gd.uid +++ b/addons/gdUnit4/src/core/runners/GdUnitTestRunner.gd.uid @@ -1 +1 @@ -uid://byto3ojldygnn +uid://cqgukbcek7r06 diff --git a/addons/gdUnit4/src/core/runners/GdUnitTestSession.gd.uid b/addons/gdUnit4/src/core/runners/GdUnitTestSession.gd.uid index ed680cfc6..327f6449c 100644 --- a/addons/gdUnit4/src/core/runners/GdUnitTestSession.gd.uid +++ b/addons/gdUnit4/src/core/runners/GdUnitTestSession.gd.uid @@ -1 +1 @@ -uid://2u2leirqt5wa +uid://bgakpbp4nb3s6 diff --git a/addons/gdUnit4/src/core/runners/GdUnitTestSessionRunner.gd.uid b/addons/gdUnit4/src/core/runners/GdUnitTestSessionRunner.gd.uid index 8dff9d670..67fa604ff 100644 --- a/addons/gdUnit4/src/core/runners/GdUnitTestSessionRunner.gd.uid +++ b/addons/gdUnit4/src/core/runners/GdUnitTestSessionRunner.gd.uid @@ -1 +1 @@ -uid://cgdmjb8ekx2ce +uid://cf5hpcri718br diff --git a/addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteDefaultTemplate.gd.uid b/addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteDefaultTemplate.gd.uid index 414f9f1a3..1adfdf493 100644 --- a/addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteDefaultTemplate.gd.uid +++ b/addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteDefaultTemplate.gd.uid @@ -1 +1 @@ -uid://blf64n0jx2yr8 +uid://fyous6lt5vty diff --git a/addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteTemplate.gd.uid b/addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteTemplate.gd.uid index 7dc2605b2..d56df9839 100644 --- a/addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteTemplate.gd.uid +++ b/addons/gdUnit4/src/core/templates/test_suite/GdUnitTestSuiteTemplate.gd.uid @@ -1 +1 @@ -uid://b5bu62fltu58 +uid://cyjoce5m3nnhg diff --git a/addons/gdUnit4/src/core/thread/GdUnitThreadContext.gd.uid b/addons/gdUnit4/src/core/thread/GdUnitThreadContext.gd.uid index cd4bb2fd0..c79f58b53 100644 --- a/addons/gdUnit4/src/core/thread/GdUnitThreadContext.gd.uid +++ b/addons/gdUnit4/src/core/thread/GdUnitThreadContext.gd.uid @@ -1 +1 @@ -uid://b226v6xtfd3ls +uid://2gfglouiefta diff --git a/addons/gdUnit4/src/core/thread/GdUnitThreadManager.gd.uid b/addons/gdUnit4/src/core/thread/GdUnitThreadManager.gd.uid index bb238398d..ee66c68fa 100644 --- a/addons/gdUnit4/src/core/thread/GdUnitThreadManager.gd.uid +++ b/addons/gdUnit4/src/core/thread/GdUnitThreadManager.gd.uid @@ -1 +1 @@ -uid://cxielw0yl5iat +uid://bexonnirtvnmx diff --git a/addons/gdUnit4/src/core/writers/GdUnitCSIMessageWriter.gd.uid b/addons/gdUnit4/src/core/writers/GdUnitCSIMessageWriter.gd.uid index d535bc6fe..ae60f679a 100644 --- a/addons/gdUnit4/src/core/writers/GdUnitCSIMessageWriter.gd.uid +++ b/addons/gdUnit4/src/core/writers/GdUnitCSIMessageWriter.gd.uid @@ -1 +1 @@ -uid://douiftoh2q5k1 +uid://cp5vdtcr48wu8 diff --git a/addons/gdUnit4/src/core/writers/GdUnitMessageWriter.gd.uid b/addons/gdUnit4/src/core/writers/GdUnitMessageWriter.gd.uid index 7ceeeb8c1..1c03d51a9 100644 --- a/addons/gdUnit4/src/core/writers/GdUnitMessageWriter.gd.uid +++ b/addons/gdUnit4/src/core/writers/GdUnitMessageWriter.gd.uid @@ -1 +1 @@ -uid://dwt858q1u78s8 +uid://defbdcagwqmq4 diff --git a/addons/gdUnit4/src/core/writers/GdUnitRichTextMessageWriter.gd.uid b/addons/gdUnit4/src/core/writers/GdUnitRichTextMessageWriter.gd.uid index 7e4f1fbb6..cd5303e89 100644 --- a/addons/gdUnit4/src/core/writers/GdUnitRichTextMessageWriter.gd.uid +++ b/addons/gdUnit4/src/core/writers/GdUnitRichTextMessageWriter.gd.uid @@ -1 +1 @@ -uid://dc8x0hiu1vooi +uid://dfpi78f5vn6sh diff --git a/addons/gdUnit4/src/dotnet/GdUnit4CSharpApiLoader.gd.uid b/addons/gdUnit4/src/dotnet/GdUnit4CSharpApiLoader.gd.uid index 9ecba5e90..dce65e95d 100644 --- a/addons/gdUnit4/src/dotnet/GdUnit4CSharpApiLoader.gd.uid +++ b/addons/gdUnit4/src/dotnet/GdUnit4CSharpApiLoader.gd.uid @@ -1 +1 @@ -uid://b81s8g8ja4icp +uid://dx0iscjnagds6 diff --git a/addons/gdUnit4/src/doubler/CallableDoubler.gd.uid b/addons/gdUnit4/src/doubler/CallableDoubler.gd.uid index 42cbd0f31..31c371e74 100644 --- a/addons/gdUnit4/src/doubler/CallableDoubler.gd.uid +++ b/addons/gdUnit4/src/doubler/CallableDoubler.gd.uid @@ -1 +1 @@ -uid://b05ncsgbtgwgp +uid://qq6hr77sxpc8 diff --git a/addons/gdUnit4/src/doubler/GdFunctionDoubler.gd.uid b/addons/gdUnit4/src/doubler/GdFunctionDoubler.gd.uid index 59ef6067c..f53d98680 100644 --- a/addons/gdUnit4/src/doubler/GdFunctionDoubler.gd.uid +++ b/addons/gdUnit4/src/doubler/GdFunctionDoubler.gd.uid @@ -1 +1 @@ -uid://dkrr3uihvistd +uid://cqqiay08xc4xv diff --git a/addons/gdUnit4/src/doubler/GdUnitClassDoubler.gd.uid b/addons/gdUnit4/src/doubler/GdUnitClassDoubler.gd.uid index 177748eaa..f871feefd 100644 --- a/addons/gdUnit4/src/doubler/GdUnitClassDoubler.gd.uid +++ b/addons/gdUnit4/src/doubler/GdUnitClassDoubler.gd.uid @@ -1 +1 @@ -uid://dt6vg0bdtvauq +uid://dkjvknwk7nuhk diff --git a/addons/gdUnit4/src/doubler/GdUnitFunctionDoublerBuilder.gd.uid b/addons/gdUnit4/src/doubler/GdUnitFunctionDoublerBuilder.gd.uid index ffbcaad8f..e6d6fe440 100644 --- a/addons/gdUnit4/src/doubler/GdUnitFunctionDoublerBuilder.gd.uid +++ b/addons/gdUnit4/src/doubler/GdUnitFunctionDoublerBuilder.gd.uid @@ -1 +1 @@ -uid://cb2isq3vk7iml +uid://bmjalsuv0sghp diff --git a/addons/gdUnit4/src/doubler/GdUnitMockFunctionDoubler.gd.uid b/addons/gdUnit4/src/doubler/GdUnitMockFunctionDoubler.gd.uid index 690f0aa21..7f49fd398 100644 --- a/addons/gdUnit4/src/doubler/GdUnitMockFunctionDoubler.gd.uid +++ b/addons/gdUnit4/src/doubler/GdUnitMockFunctionDoubler.gd.uid @@ -1 +1 @@ -uid://djmxxf5kf86vv +uid://bt7riynxt7f65 diff --git a/addons/gdUnit4/src/doubler/GdUnitObjectInteractions.gd.uid b/addons/gdUnit4/src/doubler/GdUnitObjectInteractions.gd.uid index 87b00ccdd..67e2f3ad8 100644 --- a/addons/gdUnit4/src/doubler/GdUnitObjectInteractions.gd.uid +++ b/addons/gdUnit4/src/doubler/GdUnitObjectInteractions.gd.uid @@ -1 +1 @@ -uid://cxmkcdqi1ifyj +uid://b51x8nqypa8xp diff --git a/addons/gdUnit4/src/doubler/GdUnitObjectInteractionsVerifier.gd.uid b/addons/gdUnit4/src/doubler/GdUnitObjectInteractionsVerifier.gd.uid index 31fa07aba..6251261f4 100644 --- a/addons/gdUnit4/src/doubler/GdUnitObjectInteractionsVerifier.gd.uid +++ b/addons/gdUnit4/src/doubler/GdUnitObjectInteractionsVerifier.gd.uid @@ -1 +1 @@ -uid://dtoh1aq8ykx23 +uid://uw4otckritu0 diff --git a/addons/gdUnit4/src/doubler/GdUnitSpyFunctionDoubler.gd.uid b/addons/gdUnit4/src/doubler/GdUnitSpyFunctionDoubler.gd.uid index 91da298ed..36b48b6b4 100644 --- a/addons/gdUnit4/src/doubler/GdUnitSpyFunctionDoubler.gd.uid +++ b/addons/gdUnit4/src/doubler/GdUnitSpyFunctionDoubler.gd.uid @@ -1 +1 @@ -uid://daxaw1885alk +uid://b5w2egc1tad3n diff --git a/addons/gdUnit4/src/extractors/GdUnitFuncValueExtractor.gd.uid b/addons/gdUnit4/src/extractors/GdUnitFuncValueExtractor.gd.uid index b9057e52a..177bd3db0 100644 --- a/addons/gdUnit4/src/extractors/GdUnitFuncValueExtractor.gd.uid +++ b/addons/gdUnit4/src/extractors/GdUnitFuncValueExtractor.gd.uid @@ -1 +1 @@ -uid://dgt1841ewnwre +uid://bf46oi3s7qt88 diff --git a/addons/gdUnit4/src/fuzzers/FloatFuzzer.gd.uid b/addons/gdUnit4/src/fuzzers/FloatFuzzer.gd.uid index 2fd252d63..c8024ca70 100644 --- a/addons/gdUnit4/src/fuzzers/FloatFuzzer.gd.uid +++ b/addons/gdUnit4/src/fuzzers/FloatFuzzer.gd.uid @@ -1 +1 @@ -uid://c4gc7bx85wgfb +uid://cy8tlyyulqa4a diff --git a/addons/gdUnit4/src/fuzzers/Fuzzer.gd.uid b/addons/gdUnit4/src/fuzzers/Fuzzer.gd.uid index e5cbb8992..b405e59fb 100644 --- a/addons/gdUnit4/src/fuzzers/Fuzzer.gd.uid +++ b/addons/gdUnit4/src/fuzzers/Fuzzer.gd.uid @@ -1 +1 @@ -uid://db48mogqegems +uid://6gvjiwhj8knh diff --git a/addons/gdUnit4/src/fuzzers/IntFuzzer.gd.uid b/addons/gdUnit4/src/fuzzers/IntFuzzer.gd.uid index 3aef24ae1..03c7fd86f 100644 --- a/addons/gdUnit4/src/fuzzers/IntFuzzer.gd.uid +++ b/addons/gdUnit4/src/fuzzers/IntFuzzer.gd.uid @@ -1 +1 @@ -uid://dchu6uuq0l2eo +uid://db5a47m4ajssc diff --git a/addons/gdUnit4/src/fuzzers/StringFuzzer.gd.uid b/addons/gdUnit4/src/fuzzers/StringFuzzer.gd.uid index 9ef507b72..ad5248ffb 100644 --- a/addons/gdUnit4/src/fuzzers/StringFuzzer.gd.uid +++ b/addons/gdUnit4/src/fuzzers/StringFuzzer.gd.uid @@ -1 +1 @@ -uid://dfdaoow43qube +uid://bpu0fr0dup2qh diff --git a/addons/gdUnit4/src/fuzzers/Vector2Fuzzer.gd.uid b/addons/gdUnit4/src/fuzzers/Vector2Fuzzer.gd.uid index e54d288ce..08bfa4f37 100644 --- a/addons/gdUnit4/src/fuzzers/Vector2Fuzzer.gd.uid +++ b/addons/gdUnit4/src/fuzzers/Vector2Fuzzer.gd.uid @@ -1 +1 @@ -uid://checv0m5gtb77 +uid://d833uhap8ebr diff --git a/addons/gdUnit4/src/fuzzers/Vector3Fuzzer.gd.uid b/addons/gdUnit4/src/fuzzers/Vector3Fuzzer.gd.uid index d490f80d5..97bebcfbf 100644 --- a/addons/gdUnit4/src/fuzzers/Vector3Fuzzer.gd.uid +++ b/addons/gdUnit4/src/fuzzers/Vector3Fuzzer.gd.uid @@ -1 +1 @@ -uid://0a571ou7el1f +uid://15ft0j0nqk7v diff --git a/addons/gdUnit4/src/matchers/AnyArgumentMatcher.gd.uid b/addons/gdUnit4/src/matchers/AnyArgumentMatcher.gd.uid index b9642aba6..31f9a89bd 100644 --- a/addons/gdUnit4/src/matchers/AnyArgumentMatcher.gd.uid +++ b/addons/gdUnit4/src/matchers/AnyArgumentMatcher.gd.uid @@ -1 +1 @@ -uid://bcl2gcft35cal +uid://bj4cksp5auw7i diff --git a/addons/gdUnit4/src/matchers/AnyBuildInTypeArgumentMatcher.gd.uid b/addons/gdUnit4/src/matchers/AnyBuildInTypeArgumentMatcher.gd.uid index dbd4cac0c..48ba28667 100644 --- a/addons/gdUnit4/src/matchers/AnyBuildInTypeArgumentMatcher.gd.uid +++ b/addons/gdUnit4/src/matchers/AnyBuildInTypeArgumentMatcher.gd.uid @@ -1 +1 @@ -uid://b3mv4jxfswii2 +uid://ba8obxhgea2j5 diff --git a/addons/gdUnit4/src/matchers/AnyClazzArgumentMatcher.gd.uid b/addons/gdUnit4/src/matchers/AnyClazzArgumentMatcher.gd.uid index 20188ce6e..20752e2a1 100644 --- a/addons/gdUnit4/src/matchers/AnyClazzArgumentMatcher.gd.uid +++ b/addons/gdUnit4/src/matchers/AnyClazzArgumentMatcher.gd.uid @@ -1 +1 @@ -uid://df0pikot2q7go +uid://c8hyxso0xntv4 diff --git a/addons/gdUnit4/src/matchers/ChainedArgumentMatcher.gd.uid b/addons/gdUnit4/src/matchers/ChainedArgumentMatcher.gd.uid index f3e67493f..f0489590f 100644 --- a/addons/gdUnit4/src/matchers/ChainedArgumentMatcher.gd.uid +++ b/addons/gdUnit4/src/matchers/ChainedArgumentMatcher.gd.uid @@ -1 +1 @@ -uid://dwubkmk8cv5sq +uid://cp4y6kguw7akm diff --git a/addons/gdUnit4/src/matchers/EqualsArgumentMatcher.gd.uid b/addons/gdUnit4/src/matchers/EqualsArgumentMatcher.gd.uid index 33d83fbf9..050b17765 100644 --- a/addons/gdUnit4/src/matchers/EqualsArgumentMatcher.gd.uid +++ b/addons/gdUnit4/src/matchers/EqualsArgumentMatcher.gd.uid @@ -1 +1 @@ -uid://dbsxqjgoj84h0 +uid://dujiklt85okos diff --git a/addons/gdUnit4/src/matchers/GdUnitArgumentMatcher.gd.uid b/addons/gdUnit4/src/matchers/GdUnitArgumentMatcher.gd.uid index 47708ebf7..86bd81834 100644 --- a/addons/gdUnit4/src/matchers/GdUnitArgumentMatcher.gd.uid +++ b/addons/gdUnit4/src/matchers/GdUnitArgumentMatcher.gd.uid @@ -1 +1 @@ -uid://dap6n20i4vui0 +uid://hgnxwj858lwb diff --git a/addons/gdUnit4/src/matchers/GdUnitArgumentMatchers.gd.uid b/addons/gdUnit4/src/matchers/GdUnitArgumentMatchers.gd.uid index 59bf2851f..1c434b820 100644 --- a/addons/gdUnit4/src/matchers/GdUnitArgumentMatchers.gd.uid +++ b/addons/gdUnit4/src/matchers/GdUnitArgumentMatchers.gd.uid @@ -1 +1 @@ -uid://b140ja3xdrcmv +uid://dy2tvfmnekh23 diff --git a/addons/gdUnit4/src/mocking/GdUnitMock.gd.uid b/addons/gdUnit4/src/mocking/GdUnitMock.gd.uid index eeb21fe35..e4e0b6240 100644 --- a/addons/gdUnit4/src/mocking/GdUnitMock.gd.uid +++ b/addons/gdUnit4/src/mocking/GdUnitMock.gd.uid @@ -1 +1 @@ -uid://dncde4mf40ony +uid://cviphrfla4h1n diff --git a/addons/gdUnit4/src/mocking/GdUnitMockBuilder.gd.uid b/addons/gdUnit4/src/mocking/GdUnitMockBuilder.gd.uid index 5dbc1374b..174b3fa79 100644 --- a/addons/gdUnit4/src/mocking/GdUnitMockBuilder.gd.uid +++ b/addons/gdUnit4/src/mocking/GdUnitMockBuilder.gd.uid @@ -1 +1 @@ -uid://isptqo7thbvi +uid://d1u3pcbtd6vtf diff --git a/addons/gdUnit4/src/mocking/GdUnitMockImpl.gd.uid b/addons/gdUnit4/src/mocking/GdUnitMockImpl.gd.uid index 5033a7dfd..80e509d93 100644 --- a/addons/gdUnit4/src/mocking/GdUnitMockImpl.gd.uid +++ b/addons/gdUnit4/src/mocking/GdUnitMockImpl.gd.uid @@ -1 +1 @@ -uid://dnumrl4bxn8qx +uid://b0fj2wht3sjye diff --git a/addons/gdUnit4/src/monitor/ErrorLogEntry.gd.uid b/addons/gdUnit4/src/monitor/ErrorLogEntry.gd.uid index b665622eb..a74c69314 100644 --- a/addons/gdUnit4/src/monitor/ErrorLogEntry.gd.uid +++ b/addons/gdUnit4/src/monitor/ErrorLogEntry.gd.uid @@ -1 +1 @@ -uid://c30y8xh68ft83 +uid://daw5yruyif81v diff --git a/addons/gdUnit4/src/monitor/GdUnitMonitor.gd.uid b/addons/gdUnit4/src/monitor/GdUnitMonitor.gd.uid index 6dc36cdba..e3f9dae25 100644 --- a/addons/gdUnit4/src/monitor/GdUnitMonitor.gd.uid +++ b/addons/gdUnit4/src/monitor/GdUnitMonitor.gd.uid @@ -1 +1 @@ -uid://dtayl0pf8ml4k +uid://c1g8ln0dfg61g diff --git a/addons/gdUnit4/src/monitor/GdUnitOrphanNodesMonitor.gd.uid b/addons/gdUnit4/src/monitor/GdUnitOrphanNodesMonitor.gd.uid index cc6836919..420a72d53 100644 --- a/addons/gdUnit4/src/monitor/GdUnitOrphanNodesMonitor.gd.uid +++ b/addons/gdUnit4/src/monitor/GdUnitOrphanNodesMonitor.gd.uid @@ -1 +1 @@ -uid://ownrf70l53oa +uid://d0uuwqgytsfur diff --git a/addons/gdUnit4/src/monitor/GodotGdErrorMonitor.gd.uid b/addons/gdUnit4/src/monitor/GodotGdErrorMonitor.gd.uid index c0f97497f..27482bbc2 100644 --- a/addons/gdUnit4/src/monitor/GodotGdErrorMonitor.gd.uid +++ b/addons/gdUnit4/src/monitor/GodotGdErrorMonitor.gd.uid @@ -1 +1 @@ -uid://daaa3bbatyo32 +uid://s6yfimhcirui diff --git a/addons/gdUnit4/src/network/GdUnitServer.gd.uid b/addons/gdUnit4/src/network/GdUnitServer.gd.uid index 6d0505017..f28fe88e0 100644 --- a/addons/gdUnit4/src/network/GdUnitServer.gd.uid +++ b/addons/gdUnit4/src/network/GdUnitServer.gd.uid @@ -1 +1 @@ -uid://dxviu5t34ocqs +uid://c3g2e1evy1t41 diff --git a/addons/gdUnit4/src/network/GdUnitServerConstants.gd.uid b/addons/gdUnit4/src/network/GdUnitServerConstants.gd.uid index 038d22dd0..d31615a46 100644 --- a/addons/gdUnit4/src/network/GdUnitServerConstants.gd.uid +++ b/addons/gdUnit4/src/network/GdUnitServerConstants.gd.uid @@ -1 +1 @@ -uid://cn60sra3vgkf6 +uid://ccnctsovs7ecq diff --git a/addons/gdUnit4/src/network/GdUnitTask.gd.uid b/addons/gdUnit4/src/network/GdUnitTask.gd.uid index 29bcacf33..83c9214d9 100644 --- a/addons/gdUnit4/src/network/GdUnitTask.gd.uid +++ b/addons/gdUnit4/src/network/GdUnitTask.gd.uid @@ -1 +1 @@ -uid://dkic63p2h3fi1 +uid://ditqljuswc5a5 diff --git a/addons/gdUnit4/src/network/GdUnitTcpClient.gd.uid b/addons/gdUnit4/src/network/GdUnitTcpClient.gd.uid index 78911baf6..7c18fe25c 100644 --- a/addons/gdUnit4/src/network/GdUnitTcpClient.gd.uid +++ b/addons/gdUnit4/src/network/GdUnitTcpClient.gd.uid @@ -1 +1 @@ -uid://ix08f8u4fcdb +uid://c0njpv53hi276 diff --git a/addons/gdUnit4/src/network/GdUnitTcpNode.gd.uid b/addons/gdUnit4/src/network/GdUnitTcpNode.gd.uid index 0a25106f0..43d0dd3e6 100644 --- a/addons/gdUnit4/src/network/GdUnitTcpNode.gd.uid +++ b/addons/gdUnit4/src/network/GdUnitTcpNode.gd.uid @@ -1 +1 @@ -uid://cijhryk3wkej6 +uid://cohb5wwbrfe8p diff --git a/addons/gdUnit4/src/network/GdUnitTcpServer.gd.uid b/addons/gdUnit4/src/network/GdUnitTcpServer.gd.uid index 508c419a8..cc8303c8f 100644 --- a/addons/gdUnit4/src/network/GdUnitTcpServer.gd.uid +++ b/addons/gdUnit4/src/network/GdUnitTcpServer.gd.uid @@ -1 +1 @@ -uid://cnjcv47n2kusy +uid://b68wiasim2ed7 diff --git a/addons/gdUnit4/src/network/rpc/RPC.gd.uid b/addons/gdUnit4/src/network/rpc/RPC.gd.uid index 24030eeab..17b650c6b 100644 --- a/addons/gdUnit4/src/network/rpc/RPC.gd.uid +++ b/addons/gdUnit4/src/network/rpc/RPC.gd.uid @@ -1 +1 @@ -uid://csat1qdp0tw5a +uid://ch60mcnb7yat6 diff --git a/addons/gdUnit4/src/network/rpc/RPCClientConnect.gd.uid b/addons/gdUnit4/src/network/rpc/RPCClientConnect.gd.uid index cd531b0e4..f98214cfb 100644 --- a/addons/gdUnit4/src/network/rpc/RPCClientConnect.gd.uid +++ b/addons/gdUnit4/src/network/rpc/RPCClientConnect.gd.uid @@ -1 +1 @@ -uid://dvfhqcg5k5gen +uid://cdkgofpry84sl diff --git a/addons/gdUnit4/src/network/rpc/RPCClientDisconnect.gd.uid b/addons/gdUnit4/src/network/rpc/RPCClientDisconnect.gd.uid index 442cb6dc8..8cb068b73 100644 --- a/addons/gdUnit4/src/network/rpc/RPCClientDisconnect.gd.uid +++ b/addons/gdUnit4/src/network/rpc/RPCClientDisconnect.gd.uid @@ -1 +1 @@ -uid://bd7tl8ffvhmp0 +uid://0g1kjhaxfaje diff --git a/addons/gdUnit4/src/network/rpc/RPCGdUnitEvent.gd.uid b/addons/gdUnit4/src/network/rpc/RPCGdUnitEvent.gd.uid index a599c3ddb..0f19407af 100644 --- a/addons/gdUnit4/src/network/rpc/RPCGdUnitEvent.gd.uid +++ b/addons/gdUnit4/src/network/rpc/RPCGdUnitEvent.gd.uid @@ -1 +1 @@ -uid://dqijbn15efr4s +uid://cmpuj5rl1dyix diff --git a/addons/gdUnit4/src/network/rpc/RPCMessage.gd.uid b/addons/gdUnit4/src/network/rpc/RPCMessage.gd.uid index 23b391392..4329d5d86 100644 --- a/addons/gdUnit4/src/network/rpc/RPCMessage.gd.uid +++ b/addons/gdUnit4/src/network/rpc/RPCMessage.gd.uid @@ -1 +1 @@ -uid://cmvg0cur0eubu +uid://bxt6mu18bnca7 diff --git a/addons/gdUnit4/src/reporters/GdUnitReportSummary.gd.uid b/addons/gdUnit4/src/reporters/GdUnitReportSummary.gd.uid index 2a0425b5e..9a9930f55 100644 --- a/addons/gdUnit4/src/reporters/GdUnitReportSummary.gd.uid +++ b/addons/gdUnit4/src/reporters/GdUnitReportSummary.gd.uid @@ -1 +1 @@ -uid://bi3ucctlnamsn +uid://duvk4emktlcin diff --git a/addons/gdUnit4/src/reporters/GdUnitReportWriter.gd.uid b/addons/gdUnit4/src/reporters/GdUnitReportWriter.gd.uid index 4e687770b..771fd9df6 100644 --- a/addons/gdUnit4/src/reporters/GdUnitReportWriter.gd.uid +++ b/addons/gdUnit4/src/reporters/GdUnitReportWriter.gd.uid @@ -1 +1 @@ -uid://bkxl4kemfv2x1 +uid://ds4r3sxsj8gjx diff --git a/addons/gdUnit4/src/reporters/GdUnitTestCaseReport.gd.uid b/addons/gdUnit4/src/reporters/GdUnitTestCaseReport.gd.uid index cdabac65a..365d4d5de 100644 --- a/addons/gdUnit4/src/reporters/GdUnitTestCaseReport.gd.uid +++ b/addons/gdUnit4/src/reporters/GdUnitTestCaseReport.gd.uid @@ -1 +1 @@ -uid://fthmchxe5g3w +uid://bqpyt83fvsvh diff --git a/addons/gdUnit4/src/reporters/GdUnitTestReporter.gd.uid b/addons/gdUnit4/src/reporters/GdUnitTestReporter.gd.uid index ac1500e80..82dda71a3 100644 --- a/addons/gdUnit4/src/reporters/GdUnitTestReporter.gd.uid +++ b/addons/gdUnit4/src/reporters/GdUnitTestReporter.gd.uid @@ -1 +1 @@ -uid://nty7bav7767s +uid://bcp52a7i1nrw8 diff --git a/addons/gdUnit4/src/reporters/GdUnitTestSuiteReport.gd.uid b/addons/gdUnit4/src/reporters/GdUnitTestSuiteReport.gd.uid index eabe622f2..ed3591a9d 100644 --- a/addons/gdUnit4/src/reporters/GdUnitTestSuiteReport.gd.uid +++ b/addons/gdUnit4/src/reporters/GdUnitTestSuiteReport.gd.uid @@ -1 +1 @@ -uid://b1w3ab0pbppek +uid://bia3jw8lri2ke diff --git a/addons/gdUnit4/src/reporters/console/GdUnitConsoleTestReporter.gd.uid b/addons/gdUnit4/src/reporters/console/GdUnitConsoleTestReporter.gd.uid index cfaafe688..52570db68 100644 --- a/addons/gdUnit4/src/reporters/console/GdUnitConsoleTestReporter.gd.uid +++ b/addons/gdUnit4/src/reporters/console/GdUnitConsoleTestReporter.gd.uid @@ -1 +1 @@ -uid://clxl1lnio3j8v +uid://b20yl68obqugy diff --git a/addons/gdUnit4/src/reporters/html/GdUnitByPathReport.gd.uid b/addons/gdUnit4/src/reporters/html/GdUnitByPathReport.gd.uid index 3f7257d76..88b250b46 100644 --- a/addons/gdUnit4/src/reporters/html/GdUnitByPathReport.gd.uid +++ b/addons/gdUnit4/src/reporters/html/GdUnitByPathReport.gd.uid @@ -1 +1 @@ -uid://bi81xd80a58hy +uid://643i0ah1cis1 diff --git a/addons/gdUnit4/src/reporters/html/GdUnitHtmlPatterns.gd.uid b/addons/gdUnit4/src/reporters/html/GdUnitHtmlPatterns.gd.uid index ed4d576b2..89c7f816a 100644 --- a/addons/gdUnit4/src/reporters/html/GdUnitHtmlPatterns.gd.uid +++ b/addons/gdUnit4/src/reporters/html/GdUnitHtmlPatterns.gd.uid @@ -1 +1 @@ -uid://hr6ub4xp1qao +uid://bqolqv28goebo diff --git a/addons/gdUnit4/src/reporters/html/GdUnitHtmlReportWriter.gd.uid b/addons/gdUnit4/src/reporters/html/GdUnitHtmlReportWriter.gd.uid index 1611ebda0..fd864852c 100644 --- a/addons/gdUnit4/src/reporters/html/GdUnitHtmlReportWriter.gd.uid +++ b/addons/gdUnit4/src/reporters/html/GdUnitHtmlReportWriter.gd.uid @@ -1 +1 @@ -uid://df36gt0le0kxj +uid://dinu3hxvtoaxw diff --git a/addons/gdUnit4/src/reporters/xml/JUnitXmlReportWriter.gd.uid b/addons/gdUnit4/src/reporters/xml/JUnitXmlReportWriter.gd.uid index 2456b8179..c3750304f 100644 --- a/addons/gdUnit4/src/reporters/xml/JUnitXmlReportWriter.gd.uid +++ b/addons/gdUnit4/src/reporters/xml/JUnitXmlReportWriter.gd.uid @@ -1 +1 @@ -uid://xt5i3x7m78lu +uid://cgfydua6ck8u7 diff --git a/addons/gdUnit4/src/reporters/xml/XmlElement.gd.uid b/addons/gdUnit4/src/reporters/xml/XmlElement.gd.uid index 23b895248..25a0ec861 100644 --- a/addons/gdUnit4/src/reporters/xml/XmlElement.gd.uid +++ b/addons/gdUnit4/src/reporters/xml/XmlElement.gd.uid @@ -1 +1 @@ -uid://cjp2ltp8ww4cr +uid://1ywiroeh5asb diff --git a/addons/gdUnit4/src/spy/GdUnitSpyBuilder.gd.uid b/addons/gdUnit4/src/spy/GdUnitSpyBuilder.gd.uid index 8fc7df96a..bed344d43 100644 --- a/addons/gdUnit4/src/spy/GdUnitSpyBuilder.gd.uid +++ b/addons/gdUnit4/src/spy/GdUnitSpyBuilder.gd.uid @@ -1 +1 @@ -uid://r5g18nktxb4e +uid://dg12homghjpuy diff --git a/addons/gdUnit4/src/spy/GdUnitSpyImpl.gd.uid b/addons/gdUnit4/src/spy/GdUnitSpyImpl.gd.uid index b02d1ca9c..5a29cd8f4 100644 --- a/addons/gdUnit4/src/spy/GdUnitSpyImpl.gd.uid +++ b/addons/gdUnit4/src/spy/GdUnitSpyImpl.gd.uid @@ -1 +1 @@ -uid://cqegcojarsskh +uid://bmgn5lkwooifx diff --git a/addons/gdUnit4/src/ui/GdUnitConsole.gd.uid b/addons/gdUnit4/src/ui/GdUnitConsole.gd.uid index 356578924..92e5dc293 100644 --- a/addons/gdUnit4/src/ui/GdUnitConsole.gd.uid +++ b/addons/gdUnit4/src/ui/GdUnitConsole.gd.uid @@ -1 +1 @@ -uid://sk8gvcn7ycxx +uid://0afnn2p75n8l diff --git a/addons/gdUnit4/src/ui/GdUnitFonts.gd.uid b/addons/gdUnit4/src/ui/GdUnitFonts.gd.uid index 0051e50d1..bd883bcfb 100644 --- a/addons/gdUnit4/src/ui/GdUnitFonts.gd.uid +++ b/addons/gdUnit4/src/ui/GdUnitFonts.gd.uid @@ -1 +1 @@ -uid://22yyas61prea +uid://dsrba6fr2euxn diff --git a/addons/gdUnit4/src/ui/GdUnitInspector.gd.uid b/addons/gdUnit4/src/ui/GdUnitInspector.gd.uid index ec9eeac05..151e2ea75 100644 --- a/addons/gdUnit4/src/ui/GdUnitInspector.gd.uid +++ b/addons/gdUnit4/src/ui/GdUnitInspector.gd.uid @@ -1 +1 @@ -uid://b75croj08ks7 +uid://cevqniblw4lvl diff --git a/addons/gdUnit4/src/ui/GdUnitInspectorTreeConstants.gd.uid b/addons/gdUnit4/src/ui/GdUnitInspectorTreeConstants.gd.uid index 39a67e167..029776eea 100644 --- a/addons/gdUnit4/src/ui/GdUnitInspectorTreeConstants.gd.uid +++ b/addons/gdUnit4/src/ui/GdUnitInspectorTreeConstants.gd.uid @@ -1 +1 @@ -uid://c64yglb2vjxbb +uid://dei5yghqtcnf6 diff --git a/addons/gdUnit4/src/ui/GdUnitUiTools.gd.uid b/addons/gdUnit4/src/ui/GdUnitUiTools.gd.uid index ff87183cc..2b7bcf0dd 100644 --- a/addons/gdUnit4/src/ui/GdUnitUiTools.gd.uid +++ b/addons/gdUnit4/src/ui/GdUnitUiTools.gd.uid @@ -1 +1 @@ -uid://dpregx2fjhnbq +uid://der0hayrr0gfa diff --git a/addons/gdUnit4/src/ui/ScriptEditorControls.gd.uid b/addons/gdUnit4/src/ui/ScriptEditorControls.gd.uid index 7a293b45c..2c05b24e0 100644 --- a/addons/gdUnit4/src/ui/ScriptEditorControls.gd.uid +++ b/addons/gdUnit4/src/ui/ScriptEditorControls.gd.uid @@ -1 +1 @@ -uid://cq0tj8v3n1ntj +uid://dqgevib87k555 diff --git a/addons/gdUnit4/src/ui/menu/GdUnitContextMenuItem.gd.uid b/addons/gdUnit4/src/ui/menu/GdUnitContextMenuItem.gd.uid index f6899139a..8a117ea9c 100644 --- a/addons/gdUnit4/src/ui/menu/GdUnitContextMenuItem.gd.uid +++ b/addons/gdUnit4/src/ui/menu/GdUnitContextMenuItem.gd.uid @@ -1 +1 @@ -uid://bp2dm3kjqt0iu +uid://bwppfwkg115b3 diff --git a/addons/gdUnit4/src/ui/parts/InspectorMonitor.gd.uid b/addons/gdUnit4/src/ui/parts/InspectorMonitor.gd.uid index 757d3a1f6..0464fb0fe 100644 --- a/addons/gdUnit4/src/ui/parts/InspectorMonitor.gd.uid +++ b/addons/gdUnit4/src/ui/parts/InspectorMonitor.gd.uid @@ -1 +1 @@ -uid://d0gdyglh4d45d +uid://buwt6c4i4c0tr diff --git a/addons/gdUnit4/src/ui/parts/InspectorProgressBar.gd.uid b/addons/gdUnit4/src/ui/parts/InspectorProgressBar.gd.uid index 7488da8d3..f329185be 100644 --- a/addons/gdUnit4/src/ui/parts/InspectorProgressBar.gd.uid +++ b/addons/gdUnit4/src/ui/parts/InspectorProgressBar.gd.uid @@ -1 +1 @@ -uid://cmtwjg1rgtar +uid://cx5255qcqayc7 diff --git a/addons/gdUnit4/src/ui/parts/InspectorStatusBar.gd.uid b/addons/gdUnit4/src/ui/parts/InspectorStatusBar.gd.uid index 6d4c43102..d69237cc8 100644 --- a/addons/gdUnit4/src/ui/parts/InspectorStatusBar.gd.uid +++ b/addons/gdUnit4/src/ui/parts/InspectorStatusBar.gd.uid @@ -1 +1 @@ -uid://b1b6eip3mko6j +uid://b31lcmb2fr2w5 diff --git a/addons/gdUnit4/src/ui/parts/InspectorToolBar.gd.uid b/addons/gdUnit4/src/ui/parts/InspectorToolBar.gd.uid index 1d436d07e..ba7d738e5 100644 --- a/addons/gdUnit4/src/ui/parts/InspectorToolBar.gd.uid +++ b/addons/gdUnit4/src/ui/parts/InspectorToolBar.gd.uid @@ -1 +1 @@ -uid://j1av7txpb5r4 +uid://bx42gndd0cvss diff --git a/addons/gdUnit4/src/ui/parts/InspectorTreeMainPanel.gd.uid b/addons/gdUnit4/src/ui/parts/InspectorTreeMainPanel.gd.uid index 8a55a5dcb..f20a53d7f 100644 --- a/addons/gdUnit4/src/ui/parts/InspectorTreeMainPanel.gd.uid +++ b/addons/gdUnit4/src/ui/parts/InspectorTreeMainPanel.gd.uid @@ -1 +1 @@ -uid://c5tjarns6c0kb +uid://dkk6noaamnwbb diff --git a/addons/gdUnit4/src/ui/settings/GdUnitInputCapture.gd.uid b/addons/gdUnit4/src/ui/settings/GdUnitInputCapture.gd.uid index 02fb8e662..bf316c19a 100644 --- a/addons/gdUnit4/src/ui/settings/GdUnitInputCapture.gd.uid +++ b/addons/gdUnit4/src/ui/settings/GdUnitInputCapture.gd.uid @@ -1 +1 @@ -uid://batepb8f1a7m0 +uid://rqfhtnwta5qs diff --git a/addons/gdUnit4/src/ui/settings/GdUnitSettingsDialog.gd.uid b/addons/gdUnit4/src/ui/settings/GdUnitSettingsDialog.gd.uid index c3c46d1e9..39c31f41c 100644 --- a/addons/gdUnit4/src/ui/settings/GdUnitSettingsDialog.gd.uid +++ b/addons/gdUnit4/src/ui/settings/GdUnitSettingsDialog.gd.uid @@ -1 +1 @@ -uid://b6ojdhaqeg072 +uid://dw6kuqfnfgtt5 diff --git a/addons/gdUnit4/src/ui/settings/GdUnitSettingsTabHooks.gd.uid b/addons/gdUnit4/src/ui/settings/GdUnitSettingsTabHooks.gd.uid index ce30bd41c..0b9fa2b4a 100644 --- a/addons/gdUnit4/src/ui/settings/GdUnitSettingsTabHooks.gd.uid +++ b/addons/gdUnit4/src/ui/settings/GdUnitSettingsTabHooks.gd.uid @@ -1 +1 @@ -uid://ckkxai8qblhvd +uid://fktkhrlsn6kf diff --git a/addons/gdUnit4/src/ui/settings/logo.png.import b/addons/gdUnit4/src/ui/settings/logo.png.import index f918d7c47..383375d63 100644 --- a/addons/gdUnit4/src/ui/settings/logo.png.import +++ b/addons/gdUnit4/src/ui/settings/logo.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ctqfoth7pdorj" +uid="uid://drt54r0d6qe5o" path="res://.godot/imported/logo.png-deda0e4ba02a0b9e4e4a830029a5817f.ctex" metadata={ "has_editor_variant": true, diff --git a/addons/gdUnit4/src/ui/templates/TestSuiteTemplate.gd.uid b/addons/gdUnit4/src/ui/templates/TestSuiteTemplate.gd.uid index 70c138015..09ebc2909 100644 --- a/addons/gdUnit4/src/ui/templates/TestSuiteTemplate.gd.uid +++ b/addons/gdUnit4/src/ui/templates/TestSuiteTemplate.gd.uid @@ -1 +1 @@ -uid://brcrv8cc5rlwr +uid://bs7fypnvlqmf4 diff --git a/addons/gdUnit4/src/update/GdMarkDownReader.gd.uid b/addons/gdUnit4/src/update/GdMarkDownReader.gd.uid index 7fb27f0a3..8847403cc 100644 --- a/addons/gdUnit4/src/update/GdMarkDownReader.gd.uid +++ b/addons/gdUnit4/src/update/GdMarkDownReader.gd.uid @@ -1 +1 @@ -uid://drs0v84dwerh0 +uid://c4nllvaovkubp diff --git a/addons/gdUnit4/src/update/GdUnitPatch.gd.uid b/addons/gdUnit4/src/update/GdUnitPatch.gd.uid index 7c513bdea..448aec398 100644 --- a/addons/gdUnit4/src/update/GdUnitPatch.gd.uid +++ b/addons/gdUnit4/src/update/GdUnitPatch.gd.uid @@ -1 +1 @@ -uid://cbf6w4xswkjhk +uid://d2yfx4e4k516u diff --git a/addons/gdUnit4/src/update/GdUnitPatcher.gd.uid b/addons/gdUnit4/src/update/GdUnitPatcher.gd.uid index 83f6c5e76..f7d249edf 100644 --- a/addons/gdUnit4/src/update/GdUnitPatcher.gd.uid +++ b/addons/gdUnit4/src/update/GdUnitPatcher.gd.uid @@ -1 +1 @@ -uid://xb031t6h2tnq +uid://dqssl0ls8fe1l diff --git a/addons/gdUnit4/src/update/GdUnitUpdate.gd.uid b/addons/gdUnit4/src/update/GdUnitUpdate.gd.uid index a156bd1a4..ece69e537 100644 --- a/addons/gdUnit4/src/update/GdUnitUpdate.gd.uid +++ b/addons/gdUnit4/src/update/GdUnitUpdate.gd.uid @@ -1 +1 @@ -uid://dxmainb0g6cmd +uid://cgmlx2smdqygj diff --git a/addons/gdUnit4/src/update/GdUnitUpdateClient.gd.uid b/addons/gdUnit4/src/update/GdUnitUpdateClient.gd.uid index a337d8bb0..791e63475 100644 --- a/addons/gdUnit4/src/update/GdUnitUpdateClient.gd.uid +++ b/addons/gdUnit4/src/update/GdUnitUpdateClient.gd.uid @@ -1 +1 @@ -uid://b2w5iywtag4np +uid://oborp0ytvpdv diff --git a/addons/gdUnit4/src/update/GdUnitUpdateNotify.gd.uid b/addons/gdUnit4/src/update/GdUnitUpdateNotify.gd.uid index 08b239f84..1da716665 100644 --- a/addons/gdUnit4/src/update/GdUnitUpdateNotify.gd.uid +++ b/addons/gdUnit4/src/update/GdUnitUpdateNotify.gd.uid @@ -1 +1 @@ -uid://60i6w3f7b1f6 +uid://n6ujo0a51udh diff --git a/addons/gdUnit4/src/update/assets/border_bottom.png.import b/addons/gdUnit4/src/update/assets/border_bottom.png.import index aae12810f..d944571dd 100644 --- a/addons/gdUnit4/src/update/assets/border_bottom.png.import +++ b/addons/gdUnit4/src/update/assets/border_bottom.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dsytgacr66mp1" +uid="uid://nk4feq75a7gu" path="res://.godot/imported/border_bottom.png-30d66a4c67e3a03ad191e37cdf16549d.ctex" metadata={ "has_editor_variant": true, diff --git a/addons/gdUnit4/src/update/assets/border_top.png.import b/addons/gdUnit4/src/update/assets/border_top.png.import index 1b4afdcc2..d7f277a67 100644 --- a/addons/gdUnit4/src/update/assets/border_top.png.import +++ b/addons/gdUnit4/src/update/assets/border_top.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bcdesuk8s5fa4" +uid="uid://d3idvwvw1xiu3" path="res://.godot/imported/border_top.png-c47cbebdb755144731c6ae309e18bbaa.ctex" metadata={ "has_editor_variant": true, diff --git a/addons/gdUnit4/src/update/assets/dot1.png.import b/addons/gdUnit4/src/update/assets/dot1.png.import index 3025374fc..1dfe7d3e3 100644 --- a/addons/gdUnit4/src/update/assets/dot1.png.import +++ b/addons/gdUnit4/src/update/assets/dot1.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b8x1d8t2ahawj" +uid="uid://bssjfravdoemm" path="res://.godot/imported/dot1.png-380baf1b5247addda93bce3c799aa4e7.ctex" metadata={ "has_editor_variant": true, diff --git a/addons/gdUnit4/src/update/assets/dot2.png.import b/addons/gdUnit4/src/update/assets/dot2.png.import index 1613fc995..3535cb607 100644 --- a/addons/gdUnit4/src/update/assets/dot2.png.import +++ b/addons/gdUnit4/src/update/assets/dot2.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cffxbjng18itc" +uid="uid://dlwxdgbsrhyc3" path="res://.godot/imported/dot2.png-86a9db80ef4413e353c4339ad8f68a5f.ctex" metadata={ "has_editor_variant": true, diff --git a/addons/gdUnit4/src/update/assets/embedded.png.import b/addons/gdUnit4/src/update/assets/embedded.png.import index 6e788d8a7..b57a2d730 100644 --- a/addons/gdUnit4/src/update/assets/embedded.png.import +++ b/addons/gdUnit4/src/update/assets/embedded.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ct8kugqit4hp" +uid="uid://hec6k2fnnohc" path="res://.godot/imported/embedded.png-29390948772209a603567d24f8766495.ctex" metadata={ "has_editor_variant": true, diff --git a/addons/gdUnit4/src/update/assets/horizontal-line2.png.import b/addons/gdUnit4/src/update/assets/horizontal-line2.png.import index 9dc7f3a56..5f05df7c1 100644 --- a/addons/gdUnit4/src/update/assets/horizontal-line2.png.import +++ b/addons/gdUnit4/src/update/assets/horizontal-line2.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d23a48mhcghyc" +uid="uid://csfar76d2jie4" path="res://.godot/imported/horizontal-line2.png-92618e6ee5cc9002847547a8c9deadbc.ctex" metadata={ "has_editor_variant": true, diff --git a/project.godot b/project.godot index 76225c73f..5c1706f6a 100644 --- a/project.godot +++ b/project.godot @@ -13,12 +13,14 @@ config_version=5 config/name="Gaea" config/tags=PackedStringArray("addon") run/main_scene="res://scenes/walker_demo/walker_demo.tscn" -config/features=PackedStringArray("4.5", "Forward Plus") +config/features=PackedStringArray("4.6", "Forward Plus") config/icon="res://icon.svg" [debug] -gdscript/warnings/exclude_addons=false +gdscript/warnings/directory_rules={ +"res://addons": 1 +} [display]