diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..47600759 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/src/.godot +/src/android/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..d43ab76b --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "src/addons/godot-oauth2client"] + path = src/addons/godot-oauth2client + url = https://github.com/OpenMinerva/godot-oauth2client.git +[submodule "src/addons/godot-urlparser"] + path = src/addons/godot-urlparser + url = https://github.com/OpenMinerva/godot-urlparser.git diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..40c3f0ce --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,53 @@ +{ + "psi-header.config": { + "forceToTop": true, + "blankLinesAfter": 1, + "spacesBetweenYears": false, + "license": "MIT", + "company": "OpenMinerva", + "creationDateZero": "asIs", + }, + "psi-header.lang-config": [ + { + "language": "gdscript", + "begin": "# --- License", + "prefix": "# ", + "lineLength": 80, + "end": "# --- License", + "forceToTop": true, + "blankLinesAfter": 1, + "beforeHeader": [], + "afterHeader": [], + "rootDirFileName": "client", + "modAuthor": "Modified By:", + "modDate": "Last Modified:", + "modDateFormat": "dd/MM/yyyy hh:nn:ss", + "replace": [ + "Filename:", + "Project" + ], + "ignoreLines": [] + } + ], + "psi-header.templates": [ + { + "language": "gdscript", + "template": [ + "File: <>", + "Project: <>", + "Created Date: <>", + "Copyright (c) <> <>", + "License: <>", + "Authors: <>", + ], + "changeLogCaption": "HISTORY", + "changeLogHeaderLineCount": 2, + "changeLogEntryTemplate": [ + "", + "<>\t<>\t" + ], + "changeLogNaturalOrder": false, + "changeLogFooterLineCount": 0 + } + ], +} \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..77033a9e --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 OpenMinerva + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index ad739ae5..282669f5 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,41 @@ -# Prism -VR Social platform with a focus on Education +> [!WARNING] +> This repository is currently pre-alpha, breaking changes happen frequently, there have not been any security audits, and data loss is expected. + +

+ +

+

+ + Discord + +

+ +# Client + +Client is the interface used to connect and interact with the virtual world of OpenMinerva. + +## Development Quick Start + +### 1: Download source code +For cloning this project on Linux: +```bash +# Clone this repository. +git clone --recurse-submodules https://github.com/OpenMinerva/client +``` + +### 2: Import project into Godot. +2.a: Open your copy of the [Godot Engine](https://godotengine.org/). + +2.b: Click on "Import" near the top of the application window. + +2.c: Navigate to the location where the source code was downloaded to. + +2.d: Navigate to the subdirectory `/src`. + +2.e: Select `project.godot` to import this project. + +### 3: Open +Double click on the added entry. + +## Contributing +See [CONTRIBUTING.md](https://github.com/OpenMinerva/client/blob/alpha/CONTRIBUTING.md) for guidelines, and information. diff --git a/docs/logos/om-logo-big.webp b/docs/logos/om-logo-big.webp new file mode 100644 index 00000000..04fe4606 Binary files /dev/null and b/docs/logos/om-logo-big.webp differ diff --git a/src/addons/Gizmo3DScript/LICENSE b/src/addons/Gizmo3DScript/LICENSE new file mode 100644 index 00000000..1d5983aa --- /dev/null +++ b/src/addons/Gizmo3DScript/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Christopher Charbonneau + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/addons/Gizmo3DScript/edit_data.gd b/src/addons/Gizmo3DScript/edit_data.gd new file mode 100644 index 00000000..db38455c --- /dev/null +++ b/src/addons/Gizmo3DScript/edit_data.gd @@ -0,0 +1,20 @@ +## Temporary data holder for interacting with the gizmo. +class_name EditData +extends Object + +var show_rotation_line : bool +var original : Transform3D +var mode : Gizmo3D.TransformMode +var plane : Gizmo3D.TransformPlane +var click_ray : Vector3 +var click_ray_pos : Vector3 +var center : Vector3 +var mouse_pos : Vector2 + +## Rotation arc +var rotation_axis : Vector3 +var accumulated_rotation_angle : float +var display_rotation_angle : float +var initial_click_vector : Vector3 +var previous_rotation_vector : Vector3 +var gizmo_initiated : bool diff --git a/src/addons/Gizmo3DScript/edit_data.gd.uid b/src/addons/Gizmo3DScript/edit_data.gd.uid new file mode 100644 index 00000000..8c74c579 --- /dev/null +++ b/src/addons/Gizmo3DScript/edit_data.gd.uid @@ -0,0 +1 @@ +uid://c5igcdyj6lhen diff --git a/src/addons/Gizmo3DScript/gizmo3D.gd b/src/addons/Gizmo3DScript/gizmo3D.gd new file mode 100644 index 00000000..714a4006 --- /dev/null +++ b/src/addons/Gizmo3DScript/gizmo3D.gd @@ -0,0 +1,1625 @@ +class_name Gizmo3D +extends Node3D +## Gizmo3D encapsulates the Godot Engines 3D move/scale/rotation gizmos into a customizable node for use at runtime. +## The major differences are that you can edit all transformations at the same time, and customization options have +## been added. +## +## Translated from C++ to GDScript with alterations, from +## [url=https://github.com/godotengine/godot/blob/master/editor/plugins/node_3d_editor_plugin.h]source[/url] and +## [url=https://github.com/godotengine/godot/blob/master/editor/plugins/node_3d_editor_plugin.cpp]header[/url] file. + +const DEFAULT_FLOAT_STEP := 0.001 +const MAX_Z := 1000000.0 + +## The width for the move arrows - Godot value is .065f. +const GIZMO_ARROW_WIDTH = .12 +## The height of the move arrows. +const GIZMO_ARROW_SIZE := 0.35 +## Tolerance for interacting with rotation gizmo. +const GIZMO_RING_HALF_WIDTH := .1 +## The size of the move and scale plane gizmos. +const GIZMO_PLANE_SIZE := .2 +## Distance from center for plane gizmos. +const GIZMO_PLANE_DST := .3 +## The circle size for the rotation gizmo. +const GIZMO_CIRCLE_SIZE := 1.1 +## Distance from center for scale arrows. +const GIZMO_SCALE_OFFSET := GIZMO_CIRCLE_SIZE - .3 +## Distance from center for move arrows - Godot value is GIZMO_CIRCLE_SIZE + .3f. +const GIZMO_ARROW_OFFSET := GIZMO_CIRCLE_SIZE + .15 + +## Used to limit which transformations are being edited. +@export_flags("Move", "Rotate", "Scale") +var mode = ToolMode.MOVE | ToolMode.SCALE | ToolMode.ROTATE +## Used to limit which transformations are being edited. +@export_flags("X", "Y", "Z") +var axes = AxisMode.X | AxisMode.Y | AxisMode.Z + +@export_flags("X", "Y", "Z") +var move_axes = AxisMode.X | AxisMode.Y | AxisMode.Z +@export_flags("X", "Y", "Z") +var scale_axes = AxisMode.X | AxisMode.Y | AxisMode.Z +@export_flags("X", "Y", "Z") +var rotation_axes = AxisMode.X | AxisMode.Y | AxisMode.Z + +@export_flags_3d_render +var _layers := 1 +## The 3D render layers this gizmo is visible on. +var layers: int: + get: + return _layers + set(value): + _layers = value + if !is_node_ready(): + return + for i in range(3): + RenderingServer.instance_set_layer_mask(_move_gizmo_instance[i], _layers) + RenderingServer.instance_set_layer_mask(_move_plane_gizmo_instance[i], _layers) + RenderingServer.instance_set_layer_mask(_rotate_gizmo_instance[i], _layers) + RenderingServer.instance_set_layer_mask(_scale_gizmo_instance[i], _layers) + RenderingServer.instance_set_layer_mask(_scale_plane_gizmo_instance[i], _layers) + RenderingServer.instance_set_layer_mask(_axis_gizmo_instance[i], _layers) + RenderingServer.instance_set_layer_mask(_rotate_gizmo_instance[3], _layers) + for key in _selections: + var item = _selections[key] + RenderingServer.instance_set_layer_mask(item.sbox_instance, _layers) + RenderingServer.instance_set_layer_mask(item.sbox_instance_offset, _layers) + RenderingServer.instance_set_layer_mask(item.sbox_xray_instance, _layers) + RenderingServer.instance_set_layer_mask(item.sbox_xray_instance_offset, _layers) + +## The nodes this gizmo will apply transformations to. +var _selections : Dictionary[Node3D, SelectedItem] +## Whether or not transformations will be snapped to rotate_snap, scale_snap, and/or translate_snap. +var _snapping : bool +## Shift modifier for snapping at lower intervals. +var _shift_snap : bool +## Whether or not transformations will be snapped to [member rotate_snap], [member scale_snap], and/or [member translate_snap]. +var snapping: bool: + get: + return _snapping +var _message : String +## A displayable message describing the current transformation being applied, for example "Rotating: {60.000} degrees". +var message: String: + get: + return _message + +var _editing: bool: + set(value): + if _editing and not value: + emit_signal("transform_end", _edit.mode) + _editing = value + if !value: + _message = "" +## If the user is currently interacting with is gizmo. +var editing: bool: + get: + return _editing + +var _hovering: bool +## If the user is currently hovering over a gizmo. +var hovering: bool: + get: + return _hovering + +@export_group("Style") +## The size of the gizmo before distance based scaling is applied. +@export_range(30, 200) +var size := 80.0 +## If the X/Y/Z axes extending to infinity are drawn. +@export +var show_axes := true +## If the box encapsulating the target nodes is drawn. +@export +var show_selection_box := true +## Whether to show the line from the gizmo origin to the cursor when rotating. +@export +var show_rotation_line := true +## Whether to show the arc indicating rotation accumulation when rotating. +@export +var show_rotation_arc := true +## Whether to show the move/scale transformation planes. +@export +var show_transform_plane := true + +## Alpha value for all gizmos and the selection box. +@export_range(0.0, 1.0) +var _opacity := .9 +## Alpha value for all gizmos and the selection box. +var opacity : float: + get: + return _opacity + set(value): + if is_node_ready(): + _set_colors() + _opacity = value + +## The colors of the gizmos. 0 is the X axis, 1 is the Y axis, and 2 is the Z axis. +@export +var _colors : Array[Color] = [ + Color(0.96, 0.20, 0.32), + Color(0.53, 0.84, 0.01), + Color(0.16, 0.55, 0.96) +] +## The colors of the gizmos. 0 is the X axis, 1 is the Y axis, and 2 is the Z axis. +var colors : Array[Color]: + get: + return _colors + set(value): + if is_node_ready(): + _set_colors() + _colors = value + +## The color of the AABB surrounding the target nodes. +@export +var _selection_box_color := Color(1.0, .5, 0) +## The color of the AABB surrounding the target nodes. +var selection_box_color : Color: + get: + return _selection_box_color + set(value): + if is_node_ready(): + _selection_box_mat.albedo_color = Color(value, value.a * opacity) + _selection_box_xray_mat.albedo_color = Color(value, value.a * opacity) + _selection_box_color = value + +@export_group("Position") +## Whether the gizmo is displayed using the targets local coordinate space, or the global space. +@export +var use_local_space : bool +## Value to snap rotations to, if enabled. +@export_range(0.0, 360.0) +var rotate_snap := 15.0 +## Value to snap translations to, if enabled. +@export_range(0.0, 10.0) +var translate_snap := 1.0 +## Value to snap scaling to, if enabled. +@export_range(0.0, 5.0) +var scale_snap := .25 + +var _move_gizmo : Array[ArrayMesh] = [] +var _move_arrow_gizmo : Array[ArrayMesh] = [] +var _move_plane_gizmo : Array[ArrayMesh] = [] +var _rotate_gizmo : Array[ArrayMesh] = [] +var _scale_gizmo : Array[ArrayMesh] = [] +var _scale_plane_gizmo : Array[ArrayMesh] = [] +var _axis_gizmo : Array[ArrayMesh] = [] +var _gizmo_color : Array[StandardMaterial3D] = [] +var _plane_gizmo_color : Array[StandardMaterial3D] = [] +var _rotate_gizmo_color : Array[ShaderMaterial] = [] +var _gizmo_color_hl : Array[StandardMaterial3D] = [] +var _plane_gizmo_color_hl : Array[StandardMaterial3D] = [] +var _rotate_gizmo_color_hl : Array[ShaderMaterial] = [] + +var _move_gizmo_instance : Array[RID] = [] +var _move_arrow_gizmo_instance : Array[RID] = [] +var _move_plane_gizmo_instance : Array[RID] = [] +var _rotate_gizmo_instance : Array[RID] = [] +var _scale_gizmo_instance : Array[RID] = [] +var _scale_plane_gizmo_instance : Array[RID] = [] +var _axis_gizmo_instance : Array[RID] = [] + +var _selection_box : ArrayMesh +var _selection_box_xray : ArrayMesh +var _selection_box_mat : StandardMaterial3D +var _selection_box_xray_mat : StandardMaterial3D + +var _edit := EditData.new() +var _gizmo_scale := 1.0 + +var _surface : Control + +enum ToolMode { MOVE = 1, ROTATE = 2, SCALE = 4, ALL = 7 } +enum AxisMode { X = 1, Y = 2, Z = 4, ALL = 7 } +enum TransformMode { NONE, ROTATE, TRANSLATE, SCALE } +enum TransformPlane { VIEW, X, Y, Z, YZ, XZ, XY } + +## Emitted when the user selects or deselects a node. +signal selection_changed(node : Node3D, selected : bool) +## Emitted when the user begins interacting with the gizmo. +signal transform_begin(mode : TransformMode) +## Emitted as the user continues to interact with the gizmo. +## NOTE: For rotations, value is in radians. +signal transform_changed(mode : TransformMode, value : Vector3) +## Emitted when the user stops interacting with the gizmo. +signal transform_end(mode : TransformMode) + +func _ready() -> void: + _move_gizmo.resize(3) + _move_arrow_gizmo.resize(3) + _move_plane_gizmo.resize(3) + _rotate_gizmo.resize(4) + _scale_gizmo.resize(3) + _scale_plane_gizmo.resize(3) + _axis_gizmo.resize(3) + _gizmo_color.resize(3) + _plane_gizmo_color.resize(3) + _rotate_gizmo_color.resize(4) + _gizmo_color_hl.resize(3) + _plane_gizmo_color_hl.resize(3) + _rotate_gizmo_color_hl.resize(4) + + _move_gizmo_instance.resize(3) + _move_arrow_gizmo_instance.resize(3) + _move_plane_gizmo_instance.resize(3) + _rotate_gizmo_instance.resize(4) + _scale_gizmo_instance.resize(3) + _scale_plane_gizmo_instance.resize(3) + _axis_gizmo_instance.resize(3) + + _init_indicators() + _set_colors() + _init_gizmo_instance() + _update_transform_gizmo() + visibility_changed.connect(func(): _set_visibility(visible)) + + _surface = Control.new() + add_child(_surface) + + layers = _layers + colors = _colors + selection_box_color = _selection_box_color + +## 2D drawing using the RenderingServer and surface Control. +## https://github.com/godotengine/godot/blob/65eb6643522abbe8ebce6428fe082167a7df14f9/editor/scene/3d/node_3d_editor_plugin.cpp#L3436 +func _draw(): + var ci = _surface.get_canvas_item() + RenderingServer.canvas_item_clear(ci) + if _edit.mode == TransformMode.ROTATE: + var center = _point_to_screen(_edit.center) + + var handle_color : Color + match _edit.plane: + TransformPlane.X: + handle_color = colors[0] + TransformPlane.Y: + handle_color = colors[1] + TransformPlane.Z: + handle_color = colors[2] + + if is_rotation_arc_visible() and !_edit.initial_click_vector.is_zero_approx(): + var up := _edit.rotation_axis + var right := _edit.initial_click_vector + + right -= up * up.dot(right) + right = right.normalized() + var forward := up.cross(right) + + var circle_segments := 64 + var circle_points := [] + for i in range(circle_segments + 1): + var angle = float(i) / float(circle_segments) * TAU + var point_3d = _edit.center + _gizmo_scale * GIZMO_CIRCLE_SIZE * (right * cos(angle) + forward * sin(angle)) + var point_2d = _point_to_screen(point_3d) + circle_points.append(point_2d) + + var circle_color := Color.from_hsv(handle_color.h, 0.6, 1.0, 0.8) + for i in range(circle_points.size() - 1): + RenderingServer.canvas_item_add_line( + ci, + circle_points[i], + circle_points[i + 1], + circle_color, + 2) + + var segments := 64 + var display_angle := _edit.display_rotation_angle + + var absAngle := abs(display_angle) + if absAngle > TAU: + var remainder := float(fposmod(absAngle, TAU)) + remainder = float(TAU) if remainder < 0.01 else remainder + display_angle = sign(display_angle) * remainder + absAngle = remainder + + var num_segments := max(8, (int) (absAngle / (TAU / segments) * segments)) + num_segments = min(num_segments, segments) + + var fillColor := Color(1.0, 1.0, 1.0, 0.2) + + var is_counterclockwise := display_angle > 0 + var start_angle := 0.0 if is_counterclockwise else display_angle + var end_angle := display_angle if is_counterclockwise else 0.0 + + for i in range(num_segments): + var t1 := float(i) / float(num_segments) + var t2 := float(i + 1) / float(num_segments) + var angle1 = lerp(start_angle, end_angle, t1) + var angle2 = lerp(start_angle, end_angle, t2) + + var point1_3d = _edit.center + _gizmo_scale * GIZMO_CIRCLE_SIZE * (right * cos(angle1) + forward * sin(angle1)) + var point2_3d = _edit.center + _gizmo_scale * GIZMO_CIRCLE_SIZE * (right * cos(angle2) + forward * sin(angle2)) + + var center_2d = center + var point1_2d = _point_to_screen(point1_3d) + var point2_2d = _point_to_screen(point2_3d) + + var triangle_points = [center_2d, point1_2d, point2_2d] + var triangle_colors = [fillColor, fillColor, fillColor] + RenderingServer.canvas_item_add_polygon(ci, triangle_points, triangle_colors) + + var edge_color := Color.from_hsv(handle_color.h, 0.8, 1.0, 0.7) + + var start_point_3d := _edit.center + _gizmo_scale * GIZMO_CIRCLE_SIZE * right + var start_point_2d := _point_to_screen(start_point_3d) + RenderingServer.canvas_item_add_line( + ci, + center, + start_point_2d, + edge_color, + 2) + + var end_point_3d = _edit.center + _gizmo_scale * GIZMO_CIRCLE_SIZE * (right * cos(display_angle) + forward * sin(display_angle)) + var end_point_2d = _point_to_screen(end_point_3d) + RenderingServer.canvas_item_add_line( + ci, + center, + end_point_2d, + edge_color, + 2) + + if _edit.show_rotation_line && show_rotation_line: + handle_color = Color.from_hsv(handle_color.h, 0.25, 1.0, 1) + RenderingServer.canvas_item_add_line( + ci, + _edit.mouse_pos, + center, + handle_color, + 2) + +func is_rotation_arc_visible() -> bool: + return _edit.mode == TransformMode.ROTATE && show_rotation_arc && _edit.accumulated_rotation_angle != 0.0 && _edit.gizmo_initiated + +## Get the current translation snap value. +## https://github.com/godotengine/godot/blob/65eb6643522abbe8ebce6428fe082167a7df14f9/editor/scene/3d/node_3d_editor_plugin.cpp#L9935 +func get_translate_snap() -> float: + var snap := translate_snap + if _shift_snap: + snap /= 10.0 + return snap + +## Get the current rotation snap value. +## https://github.com/godotengine/godot/blob/65eb6643522abbe8ebce6428fe082167a7df14f9/editor/scene/3d/node_3d_editor_plugin.cpp#L9943 +func get_rotation_snap() -> float: + var snap = rotate_snap + if _shift_snap: + snap /= 3.0 + return snap + +## Get the current scale snap value. +## https://github.com/godotengine/godot/blob/65eb6643522abbe8ebce6428fe082167a7df14f9/editor/scene/3d/node_3d_editor_plugin.cpp#L9951 +func get_scale_snap() -> float: + var snap = scale_snap + if _shift_snap: + snap /= 2.0 + return snap + +func _unhandled_input(event : InputEvent) -> void: + _hovering = false + if !visible: + _editing = false + elif event is InputEventKey: + if event.keycode == KEY_CTRL: + _snapping = event.pressed + elif event.keycode == KEY_SHIFT: + _shift_snap = event.pressed + elif event is InputEventMouseButton and event.button_index == MOUSE_BUTTON_LEFT: + if !event.pressed: + var previous := _editing + _editing = false + _update_transform_gizmo_view() + _edit.mode = TransformMode.NONE + if previous: # Only consume input if previously editing + get_viewport().set_input_as_handled() + return + _edit.initial_click_vector = Vector3() + _edit.previous_rotation_vector = Vector3() + _edit.accumulated_rotation_angle = 0.0 + _edit.display_rotation_angle = 0.0 + _edit.gizmo_initiated = false + _edit.mouse_pos = event.position + _editing = _transform_gizmo_select(event.position) + if _editing: + emit_signal("transform_begin", _edit.mode) + get_viewport().set_input_as_handled() + elif event is InputEventMouseMotion: + if _editing: + if event.button_mask & MOUSE_BUTTON_MASK_LEFT: + _edit.mouse_pos = event.position + var value := _update_transform(false) + emit_signal("transform_changed", _edit.mode, value) + get_viewport().set_input_as_handled() + return + _hovering = _transform_gizmo_select(event.position, true) + +#region Selection + +## Add a node to the list of nodes currently being edited. +func select(target : Node3D) -> void: + _selections[target] = _get_editor_data() + emit_signal("selection_changed", target, true) + +## Remove a node from the list of nodes currently being edited. +func deselect(target : Node3D) -> bool: + var item = _selections.get(target) + if item == null: + return false + _selections.erase(target) + RenderingServer.free_rid(item.sbox_instance) + RenderingServer.free_rid(item.sbox_instance_offset) + RenderingServer.free_rid(item.sbox_xray_instance) + RenderingServer.free_rid(item.sbox_xray_instance_offset) + emit_signal("selection_changed", target, false) + return true + +## Check if a node is currently selected. +func is_selected(target : Node3D) -> bool: + return _selections.has(target) + +## Remove all nodes from the list of nodes currently being edited. +func clear_selection() -> void: + for key in _selections: + var item = _selections[key] + RenderingServer.free_rid(item.sbox_instance) + RenderingServer.free_rid(item.sbox_instance_offset) + RenderingServer.free_rid(item.sbox_xray_instance) + RenderingServer.free_rid(item.sbox_xray_instance_offset) + emit_signal("selection_changed", key, false) + _selections.clear() + +## Get the number of nodes currently being edited. +func get_selected_count() -> int: + return _selections.size() + +#endregion + +func _enter_tree() -> void: + get_tree().root.focus_exited.connect(_on_focus_exited) + +func _process(delta : float) -> void: + _update_transform_gizmo() + _draw() + +func _exit_tree() -> void: + get_tree().root.focus_exited.disconnect(_on_focus_exited) + for i in range(3): + RenderingServer.free_rid(_move_gizmo_instance[i]) + RenderingServer.free_rid(_move_arrow_gizmo_instance[i]) + RenderingServer.free_rid(_move_plane_gizmo_instance[i]) + RenderingServer.free_rid(_rotate_gizmo_instance[i]) + RenderingServer.free_rid(_scale_gizmo_instance[i]) + RenderingServer.free_rid(_scale_plane_gizmo_instance[i]) + RenderingServer.free_rid(_axis_gizmo_instance[i]) + RenderingServer.free_rid(_rotate_gizmo_instance[3]) + clear_selection() + +func _on_focus_exited() -> void: + _editing = false + _hovering = false + _snapping = false + _shift_snap = false + +func _init_gizmo_instance() -> void: + for i in range(3): + _move_gizmo_instance[i] = RenderingServer.instance_create() + RenderingServer.instance_set_base(_move_gizmo_instance[i], _move_gizmo[i].get_rid()) + RenderingServer.instance_set_scenario(_move_gizmo_instance[i], get_world_3d().scenario) + RenderingServer.instance_geometry_set_cast_shadows_setting(_move_gizmo_instance[i], RenderingServer.ShadowCastingSetting.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_set_layer_mask(_move_gizmo_instance[i], layers) + RenderingServer.instance_geometry_set_flag(_move_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(_move_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + + _move_arrow_gizmo_instance[i] = RenderingServer.instance_create() + RenderingServer.instance_set_base(_move_arrow_gizmo_instance[i], _move_arrow_gizmo[i].get_rid()) + RenderingServer.instance_set_scenario(_move_arrow_gizmo_instance[i], get_world_3d().scenario) + RenderingServer.instance_geometry_set_cast_shadows_setting(_move_arrow_gizmo_instance[i], RenderingServer.ShadowCastingSetting.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_set_layer_mask(_move_arrow_gizmo_instance[i], layers) + RenderingServer.instance_geometry_set_flag(_move_arrow_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(_move_arrow_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + + _move_plane_gizmo_instance[i] = RenderingServer.instance_create() + RenderingServer.instance_set_base(_move_plane_gizmo_instance[i], _move_plane_gizmo[i].get_rid()) + RenderingServer.instance_set_scenario(_move_plane_gizmo_instance[i], get_world_3d().scenario) + RenderingServer.instance_geometry_set_cast_shadows_setting(_move_plane_gizmo_instance[i], RenderingServer.ShadowCastingSetting.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_set_layer_mask(_move_plane_gizmo_instance[i], layers) + RenderingServer.instance_geometry_set_flag(_move_plane_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(_move_plane_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + + _rotate_gizmo_instance[i] = RenderingServer.instance_create() + RenderingServer.instance_set_base(_rotate_gizmo_instance[i], _rotate_gizmo[i].get_rid()) + RenderingServer.instance_set_scenario(_rotate_gizmo_instance[i], get_world_3d().scenario) + RenderingServer.instance_geometry_set_cast_shadows_setting(_rotate_gizmo_instance[i], RenderingServer.ShadowCastingSetting.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_set_layer_mask(_rotate_gizmo_instance[i], layers) + RenderingServer.instance_geometry_set_flag(_rotate_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(_rotate_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + + _scale_gizmo_instance[i] = RenderingServer.instance_create() + RenderingServer.instance_set_base(_scale_gizmo_instance[i], _scale_gizmo[i].get_rid()) + RenderingServer.instance_set_scenario(_scale_gizmo_instance[i], get_world_3d().scenario) + RenderingServer.instance_geometry_set_cast_shadows_setting(_scale_gizmo_instance[i], RenderingServer.ShadowCastingSetting.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_set_layer_mask(_scale_gizmo_instance[i], layers) + RenderingServer.instance_geometry_set_flag(_scale_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(_scale_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + + _scale_plane_gizmo_instance[i] = RenderingServer.instance_create() + RenderingServer.instance_set_base(_scale_plane_gizmo_instance[i], _scale_plane_gizmo[i].get_rid()) + RenderingServer.instance_set_scenario(_scale_plane_gizmo_instance[i], get_world_3d().scenario) + RenderingServer.instance_geometry_set_cast_shadows_setting(_scale_plane_gizmo_instance[i], RenderingServer.ShadowCastingSetting.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_set_layer_mask(_scale_plane_gizmo_instance[i], layers) + RenderingServer.instance_geometry_set_flag(_scale_plane_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(_scale_plane_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + + _axis_gizmo_instance[i] = RenderingServer.instance_create() + RenderingServer.instance_set_base(_axis_gizmo_instance[i], _axis_gizmo[i].get_rid()) + RenderingServer.instance_set_scenario(_axis_gizmo_instance[i], get_world_3d().scenario) + RenderingServer.instance_geometry_set_cast_shadows_setting(_axis_gizmo_instance[i], RenderingServer.ShadowCastingSetting.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_set_layer_mask(_axis_gizmo_instance[i], layers) + RenderingServer.instance_geometry_set_flag(_axis_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(_axis_gizmo_instance[i], RenderingServer.InstanceFlags.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + + _rotate_gizmo_instance[3] = RenderingServer.instance_create() + RenderingServer.instance_set_base(_rotate_gizmo_instance[3], _rotate_gizmo[3].get_rid()) + RenderingServer.instance_set_scenario(_rotate_gizmo_instance[3], get_world_3d().scenario) + RenderingServer.instance_geometry_set_cast_shadows_setting(_rotate_gizmo_instance[3], RenderingServer.ShadowCastingSetting.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_set_layer_mask(_rotate_gizmo_instance[3], layers) + RenderingServer.instance_geometry_set_flag(_rotate_gizmo_instance[3], RenderingServer.InstanceFlags.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(_rotate_gizmo_instance[3], RenderingServer.InstanceFlags.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + +func _init_indicators() -> void: + # Inverted zxy. + var ivec := Vector3(0, 0, - 1) + var nivec := Vector3(-1, -1, 0) + var ivec2 := Vector3(-1, 0, 0) + var ivec3 := Vector3(0, -1, 0) + + for i in range(3): + _move_gizmo[i] = ArrayMesh.new() + _move_arrow_gizmo[i] = ArrayMesh.new() + _move_plane_gizmo[i] = ArrayMesh.new() + _rotate_gizmo[i] = ArrayMesh.new() + _scale_gizmo[i] = ArrayMesh.new() + _scale_plane_gizmo[i] = ArrayMesh.new() + _axis_gizmo[i] = ArrayMesh.new() + + var mat := StandardMaterial3D.new() + mat.shading_mode = BaseMaterial3D.SHADING_MODE_UNSHADED + mat.disable_fog = true + mat.transparency = BaseMaterial3D.TRANSPARENCY_ALPHA + mat.cull_mode = BaseMaterial3D.CULL_DISABLED + GizmoHelper.set_on_top_of_alpha(mat, true) + _gizmo_color[i] = mat + _gizmo_color_hl[i] = mat.duplicate() + +#region Translate + var surf_tool := _create_arrow([ + nivec * 0.0 + ivec * GIZMO_ARROW_OFFSET, + nivec * 0.01 + ivec * GIZMO_ARROW_OFFSET, + nivec * 0.01 + ivec * GIZMO_ARROW_OFFSET, + nivec * GIZMO_ARROW_WIDTH + ivec * GIZMO_ARROW_OFFSET, + nivec * 0.0 + ivec * (GIZMO_ARROW_OFFSET + GIZMO_ARROW_SIZE) + ], ivec, 5, 16) + surf_tool.set_material(mat) + surf_tool.commit(_move_gizmo[i]) + + surf_tool = _create_arrow([ + nivec * 0.0 + ivec * 0.0, + nivec * 0.01 + ivec * 0.0, + nivec * 0.01 + ivec * GIZMO_ARROW_OFFSET, + nivec * GIZMO_ARROW_WIDTH + ivec * GIZMO_ARROW_OFFSET, + nivec * 0.0 + ivec * (GIZMO_ARROW_OFFSET + GIZMO_ARROW_SIZE) + ], ivec, 5, 16) + surf_tool.set_material(mat) + surf_tool.commit(_move_arrow_gizmo[i]) +#endregion +#region Plane translation + surf_tool = SurfaceTool.new() + surf_tool.begin(Mesh.PRIMITIVE_TRIANGLES) + + var vec := ivec2 - ivec3 + var plane := [ + vec * GIZMO_PLANE_DST, + vec * GIZMO_PLANE_DST + ivec2 * GIZMO_PLANE_SIZE, + vec * (GIZMO_PLANE_DST + GIZMO_PLANE_SIZE), + vec * GIZMO_PLANE_DST - ivec3 * GIZMO_PLANE_SIZE + ] + + var ma := Basis(ivec, PI / 2) + var points := [ + ma * plane[0], + ma * plane[1], + ma * plane[2], + ma * plane[3] + ] + surf_tool.add_vertex(points[0]) + surf_tool.add_vertex(points[1]) + surf_tool.add_vertex(points[2]) + + surf_tool.add_vertex(points[0]) + surf_tool.add_vertex(points[2]) + surf_tool.add_vertex(points[3]) + + var plane_mat := StandardMaterial3D.new() + plane_mat.shading_mode = BaseMaterial3D.SHADING_MODE_UNSHADED + plane_mat.disable_fog = true + plane_mat.transparency = BaseMaterial3D.TRANSPARENCY_ALPHA + plane_mat.cull_mode = BaseMaterial3D.CULL_DISABLED + GizmoHelper.set_on_top_of_alpha(plane_mat,true) + _plane_gizmo_color[i] = plane_mat + surf_tool.set_material(plane_mat) + surf_tool.commit(_move_plane_gizmo[i]) + _plane_gizmo_color_hl[i] = plane_mat.duplicate() +#endregion +#region Rotation + surf_tool = SurfaceTool.new() + surf_tool.begin(Mesh.PRIMITIVE_TRIANGLES) + + var CIRCLE_SEGMENTS := 128 + var CIRCLE_SEGMENT_THICKNESS := 3 + + var step := TAU / CIRCLE_SEGMENTS + for j in range(CIRCLE_SEGMENTS): + var basis := Basis(ivec, j * step) + var vertex := basis * (ivec2 * GIZMO_CIRCLE_SIZE) + for k in range(CIRCLE_SEGMENT_THICKNESS): + var ofs := Vector2(cos((TAU * k) / CIRCLE_SEGMENT_THICKNESS), sin((TAU * k) / CIRCLE_SEGMENT_THICKNESS)) + var normal := ivec * ofs.x + ivec2 * ofs.y + surf_tool.set_normal(basis * normal) + surf_tool.add_vertex(vertex) + + for j in range(CIRCLE_SEGMENTS): + for k in range(CIRCLE_SEGMENT_THICKNESS): + var current_ring := j * CIRCLE_SEGMENT_THICKNESS + var next_ring := ((j + 1) % CIRCLE_SEGMENTS) * CIRCLE_SEGMENT_THICKNESS + var current_segment := k + var next_segment := (k + 1) % CIRCLE_SEGMENT_THICKNESS + + surf_tool.add_index(current_ring + next_segment) + surf_tool.add_index(current_ring + current_segment) + surf_tool.add_index(next_ring + current_segment) + + surf_tool.add_index(next_ring + current_segment) + surf_tool.add_index(next_ring + next_segment) + surf_tool.add_index(current_ring + next_segment) + + var rotate_shader := Shader.new() + rotate_shader.code = r" +// 3D editor rotation manipulator gizmo shader. + +shader_type spatial; + +render_mode unshaded, depth_test_disabled, fog_disabled; + +uniform vec4 albedo; + +mat3 orthonormalize(mat3 m) { + vec3 x = normalize(m[0]); + vec3 y = normalize(m[1] - x * dot(x, m[1])); + vec3 z = m[2] - x * dot(x, m[2]); + z = normalize(z - y * (dot(y, m[2]))); + return mat3(x,y,z); +} + +void vertex() { + mat3 mv = orthonormalize(mat3(MODELVIEW_MATRIX)); + vec3 n = mv * VERTEX; + float orientation = dot(vec3(0.0, 0.0, -1.0), n); + if (orientation <= 0.005) { + VERTEX += NORMAL * 0.02; + } +} + +void fragment() { + ALBEDO = albedo.rgb; + ALPHA = albedo.a; +}" + + var rotate_mat := ShaderMaterial.new() + rotate_mat.render_priority = Material.RENDER_PRIORITY_MAX + rotate_mat.shader = rotate_shader + _rotate_gizmo_color[i] = rotate_mat + + var arrays := surf_tool.commit_to_arrays() + _rotate_gizmo[i].add_surface_from_arrays(Mesh.PRIMITIVE_TRIANGLES, arrays) + _rotate_gizmo[i].surface_set_material(0, rotate_mat) + + _rotate_gizmo_color_hl[i] = rotate_mat.duplicate() + + if i == 2: # Rotation white outline + var border_mat = rotate_mat.duplicate() + + var border_shader = Shader.new() + border_shader.code = r" +// 3D editor rotation manipulator gizmo shader (white outline). + +shader_type spatial; + +render_mode unshaded, depth_test_disabled, fog_disabled; + +uniform vec4 albedo; + +mat3 orthonormalize(mat3 m) { + vec3 x = normalize(m[0]); + vec3 y = normalize(m[1] - x * dot(x, m[1])); + vec3 z = m[2] - x * dot(x, m[2]); + z = normalize(z - y * (dot(y, m[2]))); + return mat3(x, y, z); +} + +void vertex() { + mat3 mv = orthonormalize(mat3(MODELVIEW_MATRIX)); + mv = inverse(mv); + VERTEX += NORMAL * 0.008; + vec3 camera_dir_local = mv * vec3(0.0, 0.0, 1.0); + vec3 camera_up_local = mv * vec3(0.0, 1.0, 0.0); + mat3 rotation_matrix = mat3(cross(camera_dir_local, camera_up_local), camera_up_local, camera_dir_local); + VERTEX = rotation_matrix * VERTEX; +} + +void fragment() { + ALBEDO = albedo.rgb; + ALPHA = albedo.a; +}" + border_mat.shader = border_shader + _rotate_gizmo_color[3] = border_mat + + _rotate_gizmo[3] = ArrayMesh.new() + _rotate_gizmo[3].add_surface_from_arrays(Mesh.PRIMITIVE_TRIANGLES, arrays) + _rotate_gizmo[3].surface_set_material(0, border_mat) +#endregion +#region Scale + surf_tool = _create_arrow([ + nivec * 0.0 + ivec * 0.0, + nivec * 0.01 + ivec * 0.0, + nivec * 0.01 + ivec * 1.0 * GIZMO_SCALE_OFFSET, + nivec * 0.07 + ivec * 1.0 * GIZMO_SCALE_OFFSET, + nivec * 0.07 + ivec * 1.2 * GIZMO_SCALE_OFFSET, + nivec * 0.0 + ivec * 1.2 * GIZMO_SCALE_OFFSET + ], ivec, 6, 4) + surf_tool.set_material(mat) + surf_tool.commit(_scale_gizmo[i]) +#endregion +#region Plane scale + surf_tool = SurfaceTool.new() + surf_tool.begin(Mesh.PRIMITIVE_TRIANGLES) + + vec = ivec2 - ivec3 + plane = [ + vec * GIZMO_PLANE_DST, + vec * GIZMO_PLANE_DST + ivec2 * GIZMO_PLANE_SIZE, + vec * (GIZMO_PLANE_DST + GIZMO_PLANE_SIZE), + vec * GIZMO_PLANE_DST - ivec3 * GIZMO_PLANE_SIZE + ] + + ma = Basis(ivec, PI / 2) + + points = [ + ma * plane[0], + ma * plane[1], + ma * plane[2], + ma * plane[3] + ] + surf_tool.add_vertex(points[0]) + surf_tool.add_vertex(points[1]) + surf_tool.add_vertex(points[2]) + + surf_tool.add_vertex(points[0]) + surf_tool.add_vertex(points[2]) + surf_tool.add_vertex(points[3]) + + plane_mat = StandardMaterial3D.new() + plane_mat.shading_mode = BaseMaterial3D.SHADING_MODE_UNSHADED + plane_mat.disable_fog = true + plane_mat.transparency = BaseMaterial3D.TRANSPARENCY_ALPHA + plane_mat.cull_mode = BaseMaterial3D.CULL_DISABLED + GizmoHelper.set_on_top_of_alpha(plane_mat, true) + _plane_gizmo_color[i] = plane_mat + surf_tool.set_material(plane_mat) + surf_tool.commit(_scale_plane_gizmo[i]) + + _plane_gizmo_color_hl[i] = plane_mat.duplicate() +#endregion +#region Lines to visualize transforms locked to an axis/plane + surf_tool = SurfaceTool.new() + surf_tool.begin(Mesh.PRIMITIVE_LINE_STRIP) + + vec = Vector3() + vec[i] = 1 + # line extending through infinity(ish) + surf_tool.add_vertex(vec * -1048576) + surf_tool.add_vertex(Vector3()) + surf_tool.add_vertex(vec * 1048576) + surf_tool.set_material(_gizmo_color_hl[i]) + surf_tool.commit(_axis_gizmo[i]) +#endregion + _generate_selection_boxes() + +func _create_arrow(arrow : Array[Vector3], ivec : Vector3, arrow_points : int, arrow_sides : int) -> SurfaceTool: + var surf_tool = SurfaceTool.new() + surf_tool.begin(Mesh.PRIMITIVE_TRIANGLES) + + # Arrow profile + var arrow_sides_step := TAU / arrow_sides + for k in range(arrow_sides): + var maa := Basis(ivec, k * arrow_sides_step) + var mbb := Basis(ivec, (k + 1) * arrow_sides_step) + for j in range(arrow_points - 1): + var apoints := [ + maa * arrow[j], + mbb * arrow[j], + mbb * arrow[j + 1], + maa * arrow[j + 1] + ] + surf_tool.add_vertex(apoints[0]) + surf_tool.add_vertex(apoints[1]) + surf_tool.add_vertex(apoints[2]) + + surf_tool.add_vertex(apoints[0]) + surf_tool.add_vertex(apoints[2]) + surf_tool.add_vertex(apoints[3]) + return surf_tool + +func _set_colors() -> void: + for i in range(3): + var col := Color(colors[i], colors[i].a * opacity) + _gizmo_color[i].albedo_color = col + _plane_gizmo_color[i].albedo_color = col + _rotate_gizmo_color[i].set_shader_parameter("albedo", col) + + var albedo := Color.from_hsv(col.h, .25, 1.0, colors[i].a * opacity) + _gizmo_color_hl[i].albedo_color = albedo + _plane_gizmo_color_hl[i].albedo_color = albedo + _rotate_gizmo_color_hl[i].set_shader_parameter("albedo", albedo) + _rotate_gizmo_color[3].set_shader_parameter("albedo", Color(.75, .75, .75, opacity / 3.0)) + _select_gizmo_highlight_axis(-1) + +func _update_transform_gizmo_view() -> void: + if !visible: + _set_visibility(false) + return + + var camera := get_viewport().get_camera_3d() + var xform := transform + var camera_transform := camera.global_transform + + if xform.origin.is_equal_approx(camera_transform.origin): + _set_visibility(false) + return + + var camz := -camera_transform.basis[2].normalized() + var camy := -camera_transform.basis[1].normalized() + var p := Plane(camz, camera_transform.origin) + var gizmoD := max(abs(p.distance_to(xform.origin)), 1e-06) + var d0 = camera.unproject_position(camera_transform.origin + camz * gizmoD).y + var d1 = camera.unproject_position(camera_transform.origin + camz * gizmoD + camy).y + var dd = max(abs(d0 - d1), 1e-06) + + _gizmo_scale = size / abs(dd) + var scale := Vector3.ONE * _gizmo_scale + + # if the determinant is zero, we should disable the gizmo from being rendered + # this prevents supplying bad values to the renderer and then having to filter it out again + if xform.basis.determinant() == 0: + _set_visibility(false) + return + + var show_gizmo := !is_rotation_arc_visible() + for i in range(3): + var axis_angle : Transform3D + if xform.basis[i].normalized().dot(xform.basis[(i + 1) % 3].normalized()) < 1.0: + axis_angle = axis_angle.looking_at(xform.basis[i].normalized(), xform.basis[(i + 1) % 3].normalized()) + axis_angle.basis *= Basis.from_scale(scale) + axis_angle.origin = xform.origin + + var axisFlag := (1 << i) as AxisMode + var move_axis_enabled = (axes & move_axes & axisFlag) != 0 + var rotateAxisEnabled = (axes & rotation_axes & axisFlag) != 0 + var scaleAxisEnabled = (axes & scale_axes & axisFlag) != 0 + RenderingServer.instance_set_transform(_move_gizmo_instance[i], axis_angle) + RenderingServer.instance_set_visible(_move_gizmo_instance[i], show_gizmo and move_axis_enabled and (mode & ToolMode.MOVE and mode & ToolMode.SCALE)) + RenderingServer.instance_set_transform(_move_arrow_gizmo_instance[i], axis_angle) + RenderingServer.instance_set_visible(_move_arrow_gizmo_instance[i], show_gizmo and move_axis_enabled and (mode & ToolMode.MOVE and not mode & ToolMode.SCALE)) + RenderingServer.instance_set_transform(_move_plane_gizmo_instance[i], axis_angle) + RenderingServer.instance_set_visible(_move_plane_gizmo_instance[i], show_transform_plane and show_gizmo and move_axis_enabled and mode & ToolMode.MOVE) + RenderingServer.instance_set_transform(_rotate_gizmo_instance[i], axis_angle) + RenderingServer.instance_set_visible(_rotate_gizmo_instance[i], show_gizmo and rotateAxisEnabled and mode & ToolMode.ROTATE) + RenderingServer.instance_set_transform(_scale_gizmo_instance[i], axis_angle) + RenderingServer.instance_set_visible(_scale_gizmo_instance[i], show_gizmo and scaleAxisEnabled and mode & ToolMode.SCALE) + RenderingServer.instance_set_transform(_scale_plane_gizmo_instance[i], axis_angle) + RenderingServer.instance_set_visible(_scale_plane_gizmo_instance[i], show_transform_plane and show_gizmo and scaleAxisEnabled and (mode & ToolMode.SCALE and not (mode & ToolMode.MOVE))) + RenderingServer.instance_set_transform(_axis_gizmo_instance[i], xform) + + var show := show_axes and editing + RenderingServer.instance_set_visible(_axis_gizmo_instance[0], show and (_edit.plane == TransformPlane.X || _edit.plane == TransformPlane.XY || _edit.plane == TransformPlane.XZ)) + RenderingServer.instance_set_visible(_axis_gizmo_instance[1], show and (_edit.plane == TransformPlane.Y || _edit.plane == TransformPlane.XY || _edit.plane == TransformPlane.YZ)) + RenderingServer.instance_set_visible(_axis_gizmo_instance[2], show and (_edit.plane == TransformPlane.Z || _edit.plane == TransformPlane.XZ || _edit.plane == TransformPlane.YZ)) + + # Rotation white outline + xform = xform.orthonormalized() + xform.basis *= xform.basis.scaled(scale) + RenderingServer.instance_set_transform(_rotate_gizmo_instance[3], xform) + RenderingServer.instance_set_visible(_rotate_gizmo_instance[3], show_gizmo and mode & ToolMode.ROTATE) + + # Selection box + for key in _selections: + var bounds := _calculate_spatial_bounds(key) + + var offset := Vector3(0.005, 0.005, 0.005) + var aabb_s := Basis.from_scale(bounds.size + offset) + var t = key.global_transform.translated_local(bounds.position - offset / 2) + t.basis *= aabb_s + + offset = Vector3(0.01, 0.01, 0.01) + aabb_s = Basis.from_scale(bounds.size + offset) + var t_offset = key.global_transform.translated_local(bounds.position - offset / 2) + t_offset.basis *= aabb_s + + var item = _selections[key] + RenderingServer.instance_set_transform(item.sbox_instance, t) + RenderingServer.instance_set_visible(item.sbox_instance, show_selection_box) + RenderingServer.instance_set_transform(item.sbox_instance_offset, t_offset) + RenderingServer.instance_set_visible(item.sbox_instance_offset, show_selection_box) + RenderingServer.instance_set_transform(item.sbox_xray_instance, t) + RenderingServer.instance_set_visible(item.sbox_xray_instance, show_selection_box) + RenderingServer.instance_set_transform(item.sbox_xray_instance_offset, t_offset) + RenderingServer.instance_set_visible(item.sbox_xray_instance_offset, show_selection_box) + +func _set_visibility(visible : bool) -> void: + for i in range(3): + var axisFlag := (1 << i) as AxisMode + var move_axis_enabled = (axes & move_axes & axisFlag) != 0 + var rotate_axis_enabled = (axes & rotation_axes & axisFlag) != 0 + var scale_axis_enabled = (axes & scale_axes & axisFlag) != 0 + RenderingServer.instance_set_visible(_move_gizmo_instance[i], visible and move_axis_enabled) + RenderingServer.instance_set_visible(_move_arrow_gizmo_instance[i], visible and move_axis_enabled) + RenderingServer.instance_set_visible(_move_plane_gizmo_instance[i], visible and move_axis_enabled) + RenderingServer.instance_set_visible(_rotate_gizmo_instance[i], visible and rotate_axis_enabled) + RenderingServer.instance_set_visible(_scale_gizmo_instance[i], visible and scale_axis_enabled) + RenderingServer.instance_set_visible(_scale_plane_gizmo_instance[i], visible and scale_axis_enabled) + RenderingServer.instance_set_visible(_axis_gizmo_instance[i], visible and (axes & axisFlag) != 0) + RenderingServer.instance_set_visible(_rotate_gizmo_instance[3], visible) + for key in _selections: + var item = _selections[key] + RenderingServer.instance_set_visible(item.sbox_instance, visible) + RenderingServer.instance_set_visible(item.sbox_instance_offset, visible) + RenderingServer.instance_set_visible(item.sbox_xray_instance, visible) + RenderingServer.instance_set_visible(item.sbox_xray_instance_offset, visible) + +func _generate_selection_boxes(): + # Use two AABBs to create the illusion of a slightly thicker line. + var aabb := AABB(Vector3(), Vector3.ONE) + + # Create a x-ray (visible through solid surfaces) and standard version of the selection box. + # Both will be drawn at the same position, but with different opacity. + # This lets the user see where the selection is while still having a sense of depth. + var st := SurfaceTool.new() + var st_xray := SurfaceTool.new() + + st.begin(Mesh.PRIMITIVE_LINES) + st_xray.begin(Mesh.PRIMITIVE_LINES) + for i in range(12): + var edge = GizmoHelper.get_edge(aabb, i) + st.add_vertex(edge[0]) + st.add_vertex(edge[1]) + st_xray.add_vertex(edge[0]) + st_xray.add_vertex(edge[1]) + + _selection_box_mat = StandardMaterial3D.new() + _selection_box_mat.shading_mode =BaseMaterial3D.SHADING_MODE_UNSHADED + _selection_box_mat.disable_fog = true + _selection_box_mat.albedo_color = selection_box_color + _selection_box_mat.transparency = BaseMaterial3D.TRANSPARENCY_ALPHA + st.set_material(_selection_box_mat) + _selection_box = st.commit() + + _selection_box_xray_mat = StandardMaterial3D.new() + _selection_box_xray_mat.shading_mode =BaseMaterial3D.SHADING_MODE_UNSHADED + _selection_box_xray_mat.disable_fog = true + _selection_box_xray_mat.no_depth_test = true + _selection_box_xray_mat.albedo_color = selection_box_color * Color(1, 1, 1, .15) + _selection_box_xray_mat.transparency = BaseMaterial3D.TRANSPARENCY_ALPHA + st_xray.set_material(_selection_box_xray_mat) + _selection_box_xray = st.commit() + +func _select_gizmo_highlight_axis(axis : int) -> void: + for i in range(3): + if i == axis: + _move_gizmo[i].surface_set_material(0, _gizmo_color_hl[i]) + _move_arrow_gizmo[i].surface_set_material(0, _gizmo_color_hl[i]) + else: + _move_gizmo[i].surface_set_material(0, _gizmo_color[i]) + _move_arrow_gizmo[i].surface_set_material(0, _gizmo_color[i]) + if i + 6 == axis: + _move_plane_gizmo[i].surface_set_material(0, _plane_gizmo_color_hl[i]) + else: + _move_plane_gizmo[i].surface_set_material(0, _plane_gizmo_color[i]) + if i + 3 == axis: + _rotate_gizmo[i].surface_set_material(0, _rotate_gizmo_color_hl[i]) + else: + _rotate_gizmo[i].surface_set_material(0, _rotate_gizmo_color[i]) + if i + 9 == axis: + _scale_gizmo[i].surface_set_material(0, _gizmo_color_hl[i]) + else: + _scale_gizmo[i].surface_set_material(0, _gizmo_color[i]) + if i + 12 == axis: + _scale_plane_gizmo[i].surface_set_material(0, _plane_gizmo_color_hl[i]) + else: + _scale_plane_gizmo[i].surface_set_material(0, _plane_gizmo_color[i]) + +func _update_transform_gizmo(): + var count := 0 + var gizmo_center : Vector3 + var gizmo_basis : Basis + + for key in _selections: + var item = _selections[key] + var xf = key.global_transform + gizmo_center += xf.origin + if count == 0 and use_local_space: + gizmo_basis = xf.basis + count += 1 + + visible = count > 0 + transform.origin = (gizmo_center / count) if count > 0 else Vector3() + transform.basis = gizmo_basis if count == 1 else Basis() + + _update_transform_gizmo_view() + +func _get_editor_data() -> SelectedItem: + var item = SelectedItem.new() + item.sbox_instance = RenderingServer.instance_create2(_selection_box.get_rid(), get_world_3d().scenario) + item.sbox_instance_offset = RenderingServer.instance_create2(_selection_box.get_rid(), get_world_3d().scenario) + RenderingServer.instance_geometry_set_cast_shadows_setting(item.sbox_instance, RenderingServer.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_geometry_set_cast_shadows_setting(item.sbox_instance_offset, RenderingServer.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_set_layer_mask(item.sbox_instance, layers) + RenderingServer.instance_set_layer_mask(item.sbox_instance_offset, layers) + RenderingServer.instance_geometry_set_flag(item.sbox_instance, RenderingServer.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(item.sbox_instance, RenderingServer.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + RenderingServer.instance_geometry_set_flag(item.sbox_instance_offset, RenderingServer.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(item.sbox_instance_offset, RenderingServer.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + item.sbox_xray_instance = RenderingServer.instance_create2(_selection_box.get_rid(), get_world_3d().scenario) + item.sbox_xray_instance_offset = RenderingServer.instance_create2(_selection_box.get_rid(), get_world_3d().scenario) + RenderingServer.instance_geometry_set_cast_shadows_setting(item.sbox_xray_instance, RenderingServer.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_geometry_set_cast_shadows_setting(item.sbox_xray_instance_offset, RenderingServer.SHADOW_CASTING_SETTING_OFF) + RenderingServer.instance_set_layer_mask(item.sbox_xray_instance, layers) + RenderingServer.instance_set_layer_mask(item.sbox_xray_instance_offset, layers) + RenderingServer.instance_geometry_set_flag(item.sbox_xray_instance, RenderingServer.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(item.sbox_xray_instance, RenderingServer.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + RenderingServer.instance_geometry_set_flag(item.sbox_xray_instance_offset, RenderingServer.INSTANCE_FLAG_IGNORE_OCCLUSION_CULLING, true) + RenderingServer.instance_geometry_set_flag(item.sbox_xray_instance_offset, RenderingServer.INSTANCE_FLAG_USE_BAKED_LIGHT, false) + return item + +func _transform_gizmo_select(screen_pos : Vector2, highlight_only := false): + if !visible: + return false + + if _selections.size() == 0: + if highlight_only: + _select_gizmo_highlight_axis(-1) + return false + + var ray_pos := _get_ray_pos(screen_pos) + var ray := _get_ray(screen_pos) + var gt := transform + + if mode & ToolMode.MOVE: + var col_axis := -1 + var colD : float = 1e20 + + for i in range(3): + if ((axes & move_axes & ((1 << i) as AxisMode)) == 0): + continue + var grabber_pos = gt.origin + gt.basis[i].normalized() * _gizmo_scale * (GIZMO_ARROW_OFFSET + (GIZMO_ARROW_SIZE * 0.5)) + var grabber_radius := _gizmo_scale * GIZMO_ARROW_SIZE + + var r := Geometry3D.segment_intersects_sphere(ray_pos, ray_pos + ray * MAX_Z, grabber_pos, grabber_radius) + if r.size() != 0: + var d := r[0].distance_to(ray_pos) + if d < colD: + colD = d + col_axis = i + + var is_plane_translate := false + # plane select + if col_axis == -1: + colD = 1e20 + + for i in range(3): + if ((axes & move_axes & ((1 << i) as AxisMode)) == 0): + continue + var ivec2 := gt.basis[(i + 1) % 3].normalized() + var ivec3 := gt.basis[(i + 2) % 3].normalized() + + # Allow some tolerance to make the plane easier to click, + # even if the click is actually slightly outside the plane. + var grabber_pos = gt.origin + (ivec2 + ivec3) * _gizmo_scale * (GIZMO_PLANE_SIZE + GIZMO_PLANE_DST * 0.6667) + + var plane := Plane(gt.basis[i].normalized(), gt.origin) + var r := plane.intersects_ray(ray_pos, ray) + + if r != null: + var dist = r.distance_to(grabber_pos) + # Allow some tolerance to make the plane easier to click, + # even if the click is actually slightly outside the plane. + if dist < _gizmo_scale * GIZMO_PLANE_SIZE * 1.5: + var d := ray_pos.distance_to(r) + if d < colD: + colD = d + col_axis = i + + is_plane_translate = true + + if col_axis != -1: + if highlight_only: + var axis := col_axis + if is_plane_translate: + axis += 6 + _select_gizmo_highlight_axis(axis) + else: + # handle plane translate + _edit.mode = TransformMode.TRANSLATE + _compute_edit(screen_pos) + _edit.plane = TransformPlane.X + col_axis + if is_plane_translate: + _edit.plane += 3 + return true + + if mode & ToolMode.ROTATE: + var col_axis := -1 + + var ray_length = gt.origin.distance_to(ray_pos) + (GIZMO_CIRCLE_SIZE * _gizmo_scale) * 4.0 + var result := Geometry3D.segment_intersects_sphere(ray_pos, ray_pos + ray * ray_length, gt.origin, _gizmo_scale * GIZMO_CIRCLE_SIZE) + if result.size() != 0: + var hit_position := result[0] + var hit_normal := result[1] + if hit_normal.dot(_get_camera_normal()) < .05: + hit_position = (hit_position * gt).abs() + var min_axis = hit_position.min_axis_index() + if hit_position[min_axis] < _gizmo_scale * GIZMO_RING_HALF_WIDTH: + col_axis = min_axis + if ((axes & rotation_axes & ((1 << col_axis) as AxisMode)) == 0): + col_axis = -1 + + if col_axis == -1: + var colD : float = 1e20 + + for i in range(3): + if ((axes & rotation_axes & ((1 << i) as AxisMode)) == 0): + continue + var plane := Plane(gt.basis[i].normalized(), gt.origin) + var r := plane.intersects_ray(ray_pos, ray) + if r == null: + continue + + var dist = r.distance_to(gt.origin) + var r_dir = (r - gt.origin).normalized() + + if _get_camera_normal().dot(r_dir) <= .005: + if dist > _gizmo_scale * (GIZMO_CIRCLE_SIZE - GIZMO_RING_HALF_WIDTH) and dist < _gizmo_scale * (GIZMO_CIRCLE_SIZE + GIZMO_RING_HALF_WIDTH): + var d = ray_pos.distance_to(r) + if d < colD: + colD = d + col_axis = i + + if col_axis != -1: + if highlight_only: + _select_gizmo_highlight_axis(col_axis + 3) + else: + # handle rotate + _edit.mode = TransformMode.ROTATE + _compute_edit(screen_pos) + _edit.plane = TransformPlane.X + col_axis + _edit.accumulated_rotation_angle = 0.0 + _edit.rotation_axis = gt.basis[col_axis].normalized() + _edit.gizmo_initiated = true + return true + + if mode & ToolMode.SCALE: + var col_axis := -1 + var colD : float = 1e20 + + for i in range(3): + if ((axes & scale_axes & ((1 << i) as AxisMode)) == 0): + continue + var grabber_pos := gt.origin + gt.basis[i].normalized() * _gizmo_scale * GIZMO_SCALE_OFFSET + var grabber_radius := _gizmo_scale * GIZMO_ARROW_SIZE + + var r := Geometry3D.segment_intersects_sphere(ray_pos, ray_pos + ray * MAX_Z, grabber_pos, grabber_radius) + if r.size() != 0: + var d := r[0].distance_to(ray_pos) + if d < colD: + colD = d + col_axis = i + + var is_plane_scale = false + # plane select + if col_axis == -1: + colD = 1e20 + + for i in range(3): + if ((axes & scale_axes & ((1 << i) as AxisMode)) == 0): + continue + var ivec2 := gt.basis[(i + 1) % 3].normalized() + var ivec3 := gt.basis[(i + 2) % 3].normalized() + + # Allow some tolerance to make the plane easier to click, + # even if the click is actually slightly outside the plane + var grabber_pos := gt.origin + (ivec2 + ivec3) * _gizmo_scale * (GIZMO_PLANE_SIZE + GIZMO_PLANE_DST * 0.6667) + + var plane := Plane(gt.basis[i].normalized(), gt.origin) + var r := plane.intersects_ray(ray_pos, ray) + + if r: + var dist = r.distance_to(grabber_pos) + # Allow some tolerance to make the plane easier to click, + # even if the click is actually slightly outside the plane. + if dist < (_gizmo_scale * GIZMO_PLANE_SIZE * 1.5): + var d := ray_pos.distance_to(r) + if d < colD: + colD = d + col_axis = i + + is_plane_scale = true + + if col_axis != -1: + if highlight_only: + var plane := 9 + if is_plane_scale: + plane = 12 + _select_gizmo_highlight_axis(col_axis + plane) + else: + # handle scale + var plane := 0 + if is_plane_scale: + plane = 3 + _edit.mode = TransformMode.SCALE + _compute_edit(screen_pos) + _edit.plane = TransformPlane.X + col_axis + plane + return true + + if highlight_only: + _select_gizmo_highlight_axis(-1) + return false + +func _transform_gizmo_apply(node : Node3D, transform : Transform3D, local : bool) -> void: + if transform.basis.determinant() == 0: + return + if local: + node.transform = transform + else: + node.global_transform = transform + +func _compute_transform(mode : TransformMode, original : Transform3D, original_local : Transform3D, motion : Vector3, extra : float, local : bool, orthogonal : bool) -> Transform3D: + match mode: + TransformMode.SCALE: + if snapping: + motion = motion.snappedf(extra) + var s : Transform3D + if local: + s.basis = original_local.basis * Basis.from_scale(motion + Vector3.ONE) + s.origin = original_local.origin + else: + s.basis = s.basis.scaled(motion + Vector3.ONE) + var base := Transform3D(Basis.IDENTITY, _edit.center) + s = base * (s * (base.inverse() * original)) + # Recalculate orthogonalized scale without moving origin. + if orthogonal: + s.basis = GizmoHelper.scaled_orthogonal(original.basis, motion + Vector3.ONE) + return s + TransformMode.TRANSLATE: + if snapping: + motion = motion.snappedf(extra) + if local: + return original_local.translated_local(motion) + return original.translated(motion) + TransformMode.ROTATE: + if local: + var axis := original_local.basis * motion + return Transform3D( + Basis(axis.normalized(), extra) * original_local.basis, + original_local.origin) + else: + var blocal := original.basis * original_local.basis.inverse() + var axis := motion * blocal + return Transform3D( + blocal * Basis(axis.normalized(), extra) * original_local.basis, + Basis(motion, extra) * (original.origin - _edit.center) + _edit.center) + push_error("Gizmo3D#ComputeTransform: Invalid mode") + return Transform3D() + +func _update_transform(shift : bool) -> Vector3: + var ray_pos := _get_ray_pos(_edit.mouse_pos) + var ray := _get_ray(_edit.mouse_pos) + var snap := DEFAULT_FLOAT_STEP + + match _edit.mode: + TransformMode.SCALE: + var smotion_mask : Vector3 + var splane : Plane + var splane_mv := false + + match _edit.plane: + TransformPlane.VIEW: + smotion_mask = Vector3.ZERO + splane = Plane(_get_camera_normal(), _edit.center) + TransformPlane.X: + smotion_mask = transform.basis[0].normalized() + splane = Plane(smotion_mask.cross(smotion_mask.cross(_get_camera_normal())).normalized(), _edit.center) + TransformPlane.Y: + smotion_mask = transform.basis[1].normalized() + splane = Plane(smotion_mask.cross(smotion_mask.cross(_get_camera_normal())).normalized(), _edit.center) + TransformPlane.Z: + smotion_mask = transform.basis[2].normalized() + splane = Plane(smotion_mask.cross(smotion_mask.cross(_get_camera_normal())).normalized(), _edit.center) + TransformPlane.YZ: + smotion_mask = transform.basis[2].normalized() + transform.basis[1].normalized() + splane = Plane(transform.basis[0].normalized(), _edit.center) + splane_mv = true + TransformPlane.XZ: + smotion_mask = transform.basis[2].normalized() + transform.basis[0].normalized() + splane = Plane(transform.basis[1].normalized(), _edit.center) + splane_mv = true + TransformPlane.XY: + smotion_mask = transform.basis[0].normalized() + transform.basis[1].normalized() + splane = Plane(transform.basis[2].normalized(), _edit.center) + splane_mv = true + + var sintersection := splane.intersects_ray(ray_pos, ray) + if sintersection == null: + return Vector3.ZERO + + var sclick := splane.intersects_ray(_edit.click_ray_pos, _edit.click_ray) + if sclick == null: + return Vector3.ZERO + + var smotion = sintersection - sclick + if _edit.plane != TransformPlane.VIEW: + if !splane_mv: + smotion = smotion_mask.dot(smotion) * smotion_mask + elif shift: # Alternative planar scaling mode + smotion = smotion_mask.dot(smotion) * smotion_mask + else: + var center_click_dist = sclick.distance_to(_edit.center) + var center_inters_dist = sintersection.distance_to(_edit.center) + if center_click_dist == 0: + return Vector3.ZERO + var sscale = center_inters_dist - center_click_dist + smotion = Vector3(sscale, sscale, sscale) + + smotion /= sclick.distance_to(_edit.center) + + # Disable local transformation for TRANSFORM_VIEW + var slocal_coords := use_local_space and _edit.plane != TransformPlane.VIEW + + if snapping: + snap = get_scale_snap() + if slocal_coords: + smotion = _edit.original.basis.inverse() * smotion + + smotion = _edit_scale(smotion) + + var smotion_snapped = smotion.snappedf(snap) + var x := "%.3f" % smotion_snapped.x + var y := "%.3f" % smotion_snapped.y + var z := "%.3f" % smotion_snapped.z + _message = TranslationServer.translate("Scaling") + ": (" + x + ", " + y + ", " + z + ")" + + _apply_transform(smotion, snap) + return smotion + TransformMode.TRANSLATE: + var tmotion_mask : Vector3 + var tplane : Plane + var tplane_mv = false + + match _edit.plane: + TransformPlane.VIEW: + tplane = Plane(_get_camera_normal(), _edit.center) + TransformPlane.X: + tmotion_mask = transform.basis[0].normalized() + tplane = Plane(tmotion_mask.cross(tmotion_mask.cross(_get_camera_normal())).normalized(), _edit.center) + TransformPlane.Y: + tmotion_mask = transform.basis[1].normalized() + tplane = Plane(tmotion_mask.cross(tmotion_mask.cross(_get_camera_normal())).normalized(), _edit.center) + TransformPlane.Z: + tmotion_mask = transform.basis[2].normalized() + tplane = Plane(tmotion_mask.cross(tmotion_mask.cross(_get_camera_normal())).normalized(), _edit.center) + TransformPlane.YZ: + tplane = Plane(transform.basis[0].normalized(), _edit.center) + tplane_mv = true + TransformPlane.XZ: + tplane = Plane(transform.basis[1].normalized(), _edit.center) + tplane_mv = true + TransformPlane.XY: + tplane = Plane(transform.basis[2].normalized(), _edit.center) + tplane_mv = true + + var tintersection := tplane.intersects_ray(ray_pos, ray) + if tintersection == null: + return Vector3.ZERO + + var tclick := tplane.intersects_ray(_edit.click_ray_pos, _edit.click_ray) + if tclick == null: + return Vector3.ZERO + + var tmotion = tintersection - tclick + if _edit.plane != TransformPlane.VIEW and !tplane_mv: + tmotion = tmotion_mask.dot(tmotion) * tmotion_mask + + # Disable local transformation for TRANSFORM_VIEW + var tlocal_coords := use_local_space and _edit.plane != TransformPlane.VIEW + + if snapping: + snap = get_translate_snap() + if tlocal_coords: + tmotion = transform.basis.inverse() * tmotion + + tmotion = _edit_translate(tmotion) + + var tmotion_snapped = tmotion.snappedf(snap) + var x := "%.3f" % tmotion_snapped.x + var y := "%.3f" % tmotion_snapped.y + var z := "%.3f" % tmotion_snapped.z + _message = TranslationServer.translate("Translating") + ": (" + x + ", " + y + ", " + z + ")" + + _apply_transform(tmotion, snap) + return tmotion + TransformMode.ROTATE: + var rplane : Plane + var camera := get_viewport().get_camera_3d() + if camera.projection == Camera3D.ProjectionType.PROJECTION_PERSPECTIVE: + var cam_to_obj = _edit.center - camera.global_transform.origin + if !cam_to_obj.is_zero_approx(): + rplane = Plane(cam_to_obj.normalized(), _edit.center) + else: + rplane = Plane(_get_camera_normal(), _edit.center) + else: + rplane = Plane(_get_camera_normal(), _edit.center) + + var local_axis : Vector3 + var global_axis : Vector3 + match _edit.plane: + TransformPlane.VIEW: + # local_axis unused + global_axis = rplane.normal + TransformPlane.X: + local_axis = Vector3(1, 0, 0) + TransformPlane.Y: + local_axis = Vector3(0, 1, 0) + TransformPlane.Z: + local_axis = Vector3(0, 0, 1) + + if _edit.plane != TransformPlane.VIEW: + global_axis = (transform.basis * local_axis).normalized() + + var rintersection := rplane.intersects_ray(ray_pos, ray) + if rintersection == null: + return Vector3.ZERO + + var rclick := rplane.intersects_ray(_edit.click_ray_pos, _edit.click_ray) + if rclick == null: + return Vector3.ZERO + + var current_rotation_vector = (rintersection - _edit.center).normalized() + if _edit.initial_click_vector == Vector3(): + _edit.initial_click_vector = (rclick - _edit.center).normalized() + _edit.previous_rotation_vector = current_rotation_vector + _edit.accumulated_rotation_angle = 0.0 + _edit.display_rotation_angle = 0.0 + + var orthogonal_threshold := cos(deg_to_rad(85.0)) + var axis_is_orthogonal = abs(rplane.normal.dot(global_axis)) < orthogonal_threshold + + var angle : float + if axis_is_orthogonal: + _edit.show_rotation_line = false + var projection_axis := rplane.normal.cross(global_axis) + var delta = rintersection - rclick + var projection = delta.dot(projection_axis) + angle = (projection * (PI / 2.0)) / (_gizmo_scale * GIZMO_CIRCLE_SIZE) + else: + _edit.show_rotation_line = true + var click_axis = (rclick - _edit.center).normalized() + angle = click_axis.signed_angle_to(current_rotation_vector, global_axis) + + if _edit.previous_rotation_vector != Vector3(): + var delta_angle := _edit.previous_rotation_vector.signed_angle_to(current_rotation_vector, global_axis) + _edit.accumulated_rotation_angle += delta_angle + _edit.previous_rotation_vector = current_rotation_vector + + if snapping: + snap = get_rotation_snap() + _edit.display_rotation_angle = deg_to_rad(snapped(rad_to_deg(_edit.accumulated_rotation_angle), snap)) + else: + _edit.display_rotation_angle = _edit.accumulated_rotation_angle + + var rlocal_coords = use_local_space and _edit.plane != TransformPlane.VIEW # Disable local transformation for TRANSFORM_VIEW + var compute_axis := global_axis + if rlocal_coords: + compute_axis = local_axis + + var result := _edit_rotate(compute_axis * angle) + if result != compute_axis * angle: + compute_axis = result.normalized() + angle = result.length() + + angle = snappedf(rad_to_deg(angle), snap) + var d := "%.3f" % angle + _message = TranslationServer.translate("Rotating") + ": {" + d + "} " + TranslationServer.translate("degrees") + angle = deg_to_rad(angle) + + _apply_transform(compute_axis, angle) + return compute_axis * angle + + return Vector3.ZERO + +func _apply_transform(motion : Vector3, snap : float) -> void: + var is_local_coords := use_local_space and _edit.plane != TransformPlane.VIEW + for key in _selections: + var item = _selections[key] + var new_transform := _compute_transform(_edit.mode, item.target_global, item.target_original, motion, snap, is_local_coords, _edit.plane != TransformPlane.VIEW) + _transform_gizmo_apply(key, new_transform, is_local_coords) + _update_transform_gizmo() + +func _compute_edit(point: Vector2) -> void: + _edit.click_ray = _get_ray(point) + _edit.click_ray_pos = _get_ray_pos(point) + _edit.plane = TransformPlane.VIEW + _update_transform_gizmo() + _edit.center = transform.origin + _edit.original = transform + for key in _selections: + var item = _selections[key] + item.target_global = key.global_transform + item.target_original = key.transform + _selections[key] = item + +func _calculate_spatial_bounds(parent : Node3D, omit_top_level := false, bounds_orientation := Transform3D.IDENTITY) -> AABB: + var bounds : AABB + + var tbounds_orientation : Transform3D + if bounds_orientation != Transform3D.IDENTITY: + tbounds_orientation = bounds_orientation + else: + tbounds_orientation = parent.global_transform + + if parent == null: + return AABB(Vector3(-0.2, -0.2, -0.2), Vector3(0.4, 0.4, 0.4)) + + var xform_to_top_level_parent_space := tbounds_orientation.affine_inverse() * parent.global_transform + + if parent is VisualInstance3D: + bounds = parent.get_aabb() + else: + bounds = AABB() + bounds = xform_to_top_level_parent_space * bounds + + for child in parent.get_children(): + if child is not Node3D: + continue + if !(omit_top_level and child.top_level): + var child_bounds := _calculate_spatial_bounds(child, omit_top_level, tbounds_orientation) + bounds = bounds.merge(child_bounds) + + return bounds + +func _get_ray_pos(pos : Vector2) -> Vector3: + return get_viewport().get_camera_3d().project_ray_origin(pos) + +func _get_ray(pos : Vector2) -> Vector3: + return get_viewport().get_camera_3d().project_ray_normal(pos) + +func _get_camera_normal() -> Vector3: + return -get_viewport().get_camera_3d().global_transform.basis[2] + +func _point_to_screen(point : Vector3) -> Vector2: + return get_viewport().get_camera_3d().unproject_position(point) + +## Optional method to override the user translating the gizmo. +func _edit_translate(translation : Vector3) -> Vector3: + return translation + +## Optional method to override the user scaling the gizmo. +func _edit_scale(scale : Vector3) -> Vector3: + return scale + +## Optional method to override the user rotating the gizmo. +func _edit_rotate(rotation : Vector3) -> Vector3: + return rotation diff --git a/src/addons/Gizmo3DScript/gizmo3D.gd.uid b/src/addons/Gizmo3DScript/gizmo3D.gd.uid new file mode 100644 index 00000000..26569d75 --- /dev/null +++ b/src/addons/Gizmo3DScript/gizmo3D.gd.uid @@ -0,0 +1 @@ +uid://e3f1ox6y6cvg diff --git a/src/addons/Gizmo3DScript/gizmo_helper.gd b/src/addons/Gizmo3DScript/gizmo_helper.gd new file mode 100644 index 00000000..221e1a88 --- /dev/null +++ b/src/addons/Gizmo3DScript/gizmo_helper.gd @@ -0,0 +1,73 @@ +class_name GizmoHelper +extends Node +## A collection of helper methods translated from the C++ Godot source. +## They're required by Gizmo3D but lack binds to GDScript and C#. + +## Port of https://github.com/godotengine/godot/blob/master/scene/resources/material.cpp#L2856 +static func set_on_top_of_alpha(material: BaseMaterial3D, alpha: bool = false): + if alpha: + material.transparency = BaseMaterial3D.Transparency.TRANSPARENCY_ALPHA + else: + material.transparency = BaseMaterial3D.Transparency.TRANSPARENCY_DISABLED + material.render_priority = Material.RENDER_PRIORITY_MAX + material.no_depth_test = true + +## Port of https://github.com/godotengine/godot/blob/master/core/math/aabb.cpp#L361 +static func get_edge(aabb: AABB, edge: int) -> Array: + var result : Array[Vector3] = [] + result.resize(2) + var position = aabb.position + var size = aabb.size + match (edge): + 0: + result[0] = (Vector3(position.x + size.x, position.y, position.z)) + result[1] = (Vector3(position.x, position.y, position.z)) + 1: + result[0] = (Vector3(position.x + size.x, position.y, position.z + size.z)) + result[1] = (Vector3(position.x + size.x, position.y, position.z)) + 2: + result[0] = (Vector3(position.x, position.y, position.z + size.z)) + result[1] = (Vector3(position.x + size.x, position.y, position.z + size.z)) + 3: + result[0] = (Vector3(position.x, position.y, position.z)) + result[1] = (Vector3(position.x, position.y, position.z + size.z)) + 4: + result[0] = (Vector3(position.x, position.y + size.y, position.z)) + result[1] = (Vector3(position.x + size.x, position.y + size.y, position.z)) + 5: + result[0] = (Vector3(position.x + size.x, position.y + size.y, position.z)) + result[1] = (Vector3(position.x + size.x, position.y + size.y, position.z + size.z)) + 6: + result[0] = (Vector3(position.x + size.x, position.y + size.y, position.z + size.z)) + result[1] = (Vector3(position.x, position.y + size.y, position.z + size.z)) + 7: + result[0] = (Vector3(position.x, position.y + size.y, position.z + size.z)) + result[1] = (Vector3(position.x, position.y + size.y, position.z)) + 8: + result[0] = (Vector3(position.x, position.y, position.z + size.z)) + result[1] = (Vector3(position.x, position.y + size.y, position.z + size.z)) + 9: + result[0] = (Vector3(position.x, position.y, position.z)) + result[1] = (Vector3(position.x, position.y + size.y, position.z)) + 10: + result[0] = (Vector3(position.x + size.x, position.y, position.z)) + result[1] = (Vector3(position.x + size.x, position.y + size.y, position.z)) + 11: + result[0] = (Vector3(position.x + size.x, position.y, position.z + size.z)) + result[1] = (Vector3(position.x + size.x, position.y + size.y, position.z + size.z)) + return result + +## Port of https://github.com/godotengine/godot/blob/master/core/math/basis.cpp#L262 +static func scaled_orthogonal(basis: Basis, scale: Vector3) -> Basis: + var s = Vector3(-1, -1, -1) + scale + var sign = (s.x + s.y + s.z) < 0 + var b = basis.orthonormalized() + s *= b + var dots = Vector3.ZERO + for i in range(3): + for j in range(3): + dots[j] += s[i] * abs(basis[i].normalized().dot(b[j])) + if sign != ((dots.x + dots.y + dots.z) < 0): + dots = -dots + basis *= Basis.from_scale(Vector3.ONE + dots) + return basis diff --git a/src/addons/Gizmo3DScript/gizmo_helper.gd.uid b/src/addons/Gizmo3DScript/gizmo_helper.gd.uid new file mode 100644 index 00000000..6c1fcea5 --- /dev/null +++ b/src/addons/Gizmo3DScript/gizmo_helper.gd.uid @@ -0,0 +1 @@ +uid://blp5re4fycbwi diff --git a/src/addons/Gizmo3DScript/gizmo_loader.gd b/src/addons/Gizmo3DScript/gizmo_loader.gd new file mode 100644 index 00000000..cc76112b --- /dev/null +++ b/src/addons/Gizmo3DScript/gizmo_loader.gd @@ -0,0 +1,12 @@ +@tool +class_name GizmoLoader +extends EditorPlugin +## +## Plugin that add/removes the node. +## + +func _enter_tree() -> void: + add_custom_type("Gizmo3D", "Node3D", ResourceLoader.load("res://addons/Gizmo3DScript/gizmo_loader.gd"), null) + +func _exit_tree() -> void: + remove_custom_type("Gizmo3D") diff --git a/src/addons/Gizmo3DScript/gizmo_loader.gd.uid b/src/addons/Gizmo3DScript/gizmo_loader.gd.uid new file mode 100644 index 00000000..ae913695 --- /dev/null +++ b/src/addons/Gizmo3DScript/gizmo_loader.gd.uid @@ -0,0 +1 @@ +uid://b110syc6mfgiv diff --git a/src/addons/Gizmo3DScript/plugin.cfg b/src/addons/Gizmo3DScript/plugin.cfg new file mode 100644 index 00000000..0a3dee6f --- /dev/null +++ b/src/addons/Gizmo3DScript/plugin.cfg @@ -0,0 +1,7 @@ +[plugin] + +name="Gizmo3DScript" +description="Gizmo3D aims to encapsulate the Godot Engines 3D move/scale/rotation gizmos into a customizable node for use at runtime." +author="Chris Charbonneau" +version="1.0.0" +script="gizmo_loader.gd" diff --git a/src/addons/Gizmo3DScript/selected_item.gd b/src/addons/Gizmo3DScript/selected_item.gd new file mode 100644 index 00000000..9555b9c5 --- /dev/null +++ b/src/addons/Gizmo3DScript/selected_item.gd @@ -0,0 +1,11 @@ +## Represents a single selected node. +class_name SelectedItem +extends Object + +var target_original : Transform3D +var target_global : Transform3D + +var sbox_instance : RID +var sbox_instance_offset : RID +var sbox_xray_instance : RID +var sbox_xray_instance_offset : RID diff --git a/src/addons/Gizmo3DScript/selected_item.gd.uid b/src/addons/Gizmo3DScript/selected_item.gd.uid new file mode 100644 index 00000000..16b40e0b --- /dev/null +++ b/src/addons/Gizmo3DScript/selected_item.gd.uid @@ -0,0 +1 @@ +uid://b8nhxjyafwoop diff --git a/src/addons/discord-rpc-gd/Debug.svg b/src/addons/discord-rpc-gd/Debug.svg new file mode 100644 index 00000000..9b14d0dd --- /dev/null +++ b/src/addons/discord-rpc-gd/Debug.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/addons/discord-rpc-gd/Debug.svg.import b/src/addons/discord-rpc-gd/Debug.svg.import new file mode 100644 index 00000000..809238d8 --- /dev/null +++ b/src/addons/discord-rpc-gd/Debug.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ufh1hha1ehui" +path="res://.godot/imported/Debug.svg-d4cb8599fa7926b76a2d6e40d2efd949.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/discord-rpc-gd/Debug.svg" +dest_files=["res://.godot/imported/Debug.svg-d4cb8599fa7926b76a2d6e40d2efd949.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/addons/discord-rpc-gd/LICENSE.md b/src/addons/discord-rpc-gd/LICENSE.md new file mode 100644 index 00000000..285bb736 --- /dev/null +++ b/src/addons/discord-rpc-gd/LICENSE.md @@ -0,0 +1,21 @@ +# MIT License + +Copyright (c) 2023 vaporvee + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/addons/discord-rpc-gd/Logo_V2_No_Bg.png b/src/addons/discord-rpc-gd/Logo_V2_No_Bg.png new file mode 100644 index 00000000..fb6c700e Binary files /dev/null and b/src/addons/discord-rpc-gd/Logo_V2_No_Bg.png differ diff --git a/src/addons/discord-rpc-gd/Logo_V2_No_Bg.png.import b/src/addons/discord-rpc-gd/Logo_V2_No_Bg.png.import new file mode 100644 index 00000000..6f4c3868 --- /dev/null +++ b/src/addons/discord-rpc-gd/Logo_V2_No_Bg.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csl0e2px0cwc1" +path="res://.godot/imported/Logo_V2_No_Bg.png-ed667fb599fe1e17ebcfc361ff7c9c93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/discord-rpc-gd/Logo_V2_No_Bg.png" +dest_files=["res://.godot/imported/Logo_V2_No_Bg.png-ed667fb599fe1e17ebcfc361ff7c9c93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/src/addons/discord-rpc-gd/READ_ME_PLEASE.txt b/src/addons/discord-rpc-gd/READ_ME_PLEASE.txt new file mode 100644 index 00000000..ad7b89bf --- /dev/null +++ b/src/addons/discord-rpc-gd/READ_ME_PLEASE.txt @@ -0,0 +1,7 @@ +MINIMUM GODOT VERSION: 4.2 + +PLEASE ACTIVATE THE PLUGIN UNDER Project -> Project Settings... -> Plugins -> DiscordRPC -> Status +IGNORE THE RED ERRORS ON THE FIRST 2 RESTARTS +READ THE TUTORIAL LINKED IN THE WINDOW THAT WILL OPEN ON PLUGIN ENABLE + +If nothing works, enable the plugin and delete /addons/discord-rpc-gd/bin/.gdignore diff --git a/src/addons/discord-rpc-gd/bin/discord-rpc-gd.gdextension b/src/addons/discord-rpc-gd/bin/discord-rpc-gd.gdextension new file mode 100644 index 00000000..f08cbccd --- /dev/null +++ b/src/addons/discord-rpc-gd/bin/discord-rpc-gd.gdextension @@ -0,0 +1,29 @@ +[configuration] + +entry_symbol = "discordrpcgd_library_init" +compatibility_minimum = 4.1 + +[libraries] + +macos.debug = "macos/libdiscord_game_sdk_binding_debug.dylib" +macos.release = "macos/libdiscord_game_sdk_binding.dylib" +windows.debug.x86_64 = "windows/discord_game_sdk_binding_debug.dll" +windows.release.x86_64 = "windows/discord_game_sdk_binding.dll" +linux.debug.x86_64 = "linux/libdiscord_game_sdk_binding_debug.so" +linux.release.x86_64 = "linux/libdiscord_game_sdk_binding.so" +linux.debug.arm64 = "linux/libdiscord_game_sdk_binding_debug.so" +linux.release.arm64 = "linux/libdiscord_game_sdk_binding.so" +linux.debug.rv64 = "linux/libdiscord_game_sdk_binding_debug.so" +linux.release.rv64 = "linux/libdiscord_game_sdk_binding.so" + +[dependencies] + +macos = { "macos/libdiscord_game_sdk.dylib": "" } +windows.debug.x86_64 = { "windows/discord_game_sdk.dll": "" } +windows.release.x86_64 = { "windows/discord_game_sdk.dll": "" } +linux.debug.x86_64 = { "linux/libdiscord_game_sdk.so": "" } +linux.release.x86_64 = { "linux/libdiscord_game_sdk.so": "" } +linux.debug.arm64 = { "linux/libdiscord_game_sdk.so": "" } +linux.release.arm64 = { "linux/libdiscord_game_sdk.so": "" } +linux.debug.rv64 = { "linux/libdiscord_game_sdk.so": "" } +linux.release.rv64 = { "linux/libdiscord_game_sdk.so": "" } diff --git a/src/addons/discord-rpc-gd/bin/discord-rpc-gd.gdextension.uid b/src/addons/discord-rpc-gd/bin/discord-rpc-gd.gdextension.uid new file mode 100644 index 00000000..da154936 --- /dev/null +++ b/src/addons/discord-rpc-gd/bin/discord-rpc-gd.gdextension.uid @@ -0,0 +1 @@ +uid://o4r73aoidlmc diff --git a/src/addons/discord-rpc-gd/bin/linux/libdiscord_game_sdk.so b/src/addons/discord-rpc-gd/bin/linux/libdiscord_game_sdk.so new file mode 100644 index 00000000..9dacf946 Binary files /dev/null and b/src/addons/discord-rpc-gd/bin/linux/libdiscord_game_sdk.so differ diff --git a/src/addons/discord-rpc-gd/bin/linux/libdiscord_game_sdk_binding.so b/src/addons/discord-rpc-gd/bin/linux/libdiscord_game_sdk_binding.so new file mode 100644 index 00000000..f9863c4f Binary files /dev/null and b/src/addons/discord-rpc-gd/bin/linux/libdiscord_game_sdk_binding.so differ diff --git a/src/addons/discord-rpc-gd/bin/linux/libdiscord_game_sdk_binding_debug.so b/src/addons/discord-rpc-gd/bin/linux/libdiscord_game_sdk_binding_debug.so new file mode 100644 index 00000000..89bf7dac Binary files /dev/null and b/src/addons/discord-rpc-gd/bin/linux/libdiscord_game_sdk_binding_debug.so differ diff --git a/src/addons/discord-rpc-gd/bin/macos/libdiscord_game_sdk.dylib b/src/addons/discord-rpc-gd/bin/macos/libdiscord_game_sdk.dylib new file mode 100644 index 00000000..2cc726dd Binary files /dev/null and b/src/addons/discord-rpc-gd/bin/macos/libdiscord_game_sdk.dylib differ diff --git a/src/addons/discord-rpc-gd/bin/macos/libdiscord_game_sdk_binding.dylib b/src/addons/discord-rpc-gd/bin/macos/libdiscord_game_sdk_binding.dylib new file mode 100644 index 00000000..cfcd1a7c Binary files /dev/null and b/src/addons/discord-rpc-gd/bin/macos/libdiscord_game_sdk_binding.dylib differ diff --git a/src/addons/discord-rpc-gd/bin/macos/libdiscord_game_sdk_binding_debug.dylib b/src/addons/discord-rpc-gd/bin/macos/libdiscord_game_sdk_binding_debug.dylib new file mode 100644 index 00000000..082e3966 Binary files /dev/null and b/src/addons/discord-rpc-gd/bin/macos/libdiscord_game_sdk_binding_debug.dylib differ diff --git a/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk.dll b/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk.dll new file mode 100644 index 00000000..be946ea7 Binary files /dev/null and b/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk.dll differ diff --git a/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk_binding.dll b/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk_binding.dll new file mode 100644 index 00000000..77ffef2b Binary files /dev/null and b/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk_binding.dll differ diff --git a/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk_binding_debug.dll b/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk_binding_debug.dll new file mode 100644 index 00000000..2b52a76b Binary files /dev/null and b/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk_binding_debug.dll differ diff --git a/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk_x86.dll b/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk_x86.dll new file mode 100644 index 00000000..45b9bb17 Binary files /dev/null and b/src/addons/discord-rpc-gd/bin/windows/discord_game_sdk_x86.dll differ diff --git a/src/addons/discord-rpc-gd/bin/windows/~discord_game_sdk_binding_debug.dll b/src/addons/discord-rpc-gd/bin/windows/~discord_game_sdk_binding_debug.dll new file mode 100644 index 00000000..2b52a76b Binary files /dev/null and b/src/addons/discord-rpc-gd/bin/windows/~discord_game_sdk_binding_debug.dll differ diff --git a/src/addons/discord-rpc-gd/example.gd b/src/addons/discord-rpc-gd/example.gd new file mode 100644 index 00000000..2d4887e5 --- /dev/null +++ b/src/addons/discord-rpc-gd/example.gd @@ -0,0 +1,38 @@ +class_name DiscordRPCTutorial +extends Node + +## 1. Put the addons/ folder in your Godot project[br] +## 2. Enable the addon in your Project Settings under "Plugins" and "DiscordRPC". [br](if it doesn't show up restart your project and try again)[br] +## 3. Restart your project[br] +## 4. Create an Application under https://discord.com/developers/applications and get the Application ID br] +## 5. (optional) Set images under "Rich Presence" and "Art Assets" and remember the keys[br] +## +## This is your [code]_ready()[/code] function wich could be anywhere +## [codeblock] +## func _ready(): +## # Application ID +## DiscordRPC.app_id = 1099618430065324082 +## # this is boolean if everything worked +## print("Discord working: " + str(DiscordRPC.get_is_discord_working())) +## # Set the first custom text row of the activity here +## DiscordRPC.details = "A demo activity by vaporvee#1231" +## # Set the second custom text row of the activity here +## DiscordRPC.state = "Checkpoint 23/23" +## # Image key for small image from "Art Assets" from the Discord Developer website +## DiscordRPC.large_image = "game" +## # Tooltip text for the large image +## DiscordRPC.large_image_text = "Try it now!" +## # Image key for large image from "Art Assets" from the Discord Developer website +## DiscordRPC.small_image = "boss" +## # Tooltip text for the small image +## DiscordRPC.small_image_text = "Fighting the end boss! D:" +## # "02:41 elapsed" timestamp for the activity +## DiscordRPC.start_timestamp = int(Time.get_unix_time_from_system()) +## # "59:59 remaining" timestamp for the activity +## DiscordRPC.end_timestamp = int(Time.get_unix_time_from_system()) + 3600 +## # Always refresh after changing the values! +## DiscordRPC.refresh() +## [/codeblock] +## +## @tutorial(More information here): https://github.com/vaporvee/discord-rpc-godot/wiki/Quick-start +## @tutorial(Make your Application ID and else here): https://discord.com/developers/applications diff --git a/src/addons/discord-rpc-gd/example.gd.uid b/src/addons/discord-rpc-gd/example.gd.uid new file mode 100644 index 00000000..6ea42fcd --- /dev/null +++ b/src/addons/discord-rpc-gd/example.gd.uid @@ -0,0 +1 @@ +uid://d184eboipkh4v diff --git a/src/addons/discord-rpc-gd/logo.png b/src/addons/discord-rpc-gd/logo.png new file mode 100644 index 00000000..fb6c700e Binary files /dev/null and b/src/addons/discord-rpc-gd/logo.png differ diff --git a/src/addons/discord-rpc-gd/logo.png.import b/src/addons/discord-rpc-gd/logo.png.import new file mode 100644 index 00000000..dd7b8450 --- /dev/null +++ b/src/addons/discord-rpc-gd/logo.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csl0e2px0cwc1" +path="res://.godot/imported/logo.png-bacb448eabae556bdb0659359ea4e4af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/discord-rpc-gd/logo.png" +dest_files=["res://.godot/imported/logo.png-bacb448eabae556bdb0659359ea4e4af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/src/addons/discord-rpc-gd/nodes/Debug.tscn b/src/addons/discord-rpc-gd/nodes/Debug.tscn new file mode 100644 index 00000000..5fbee26b --- /dev/null +++ b/src/addons/discord-rpc-gd/nodes/Debug.tscn @@ -0,0 +1,267 @@ +[gd_scene load_steps=9 format=3 uid="uid://c1slhdnlsv2qt"] + +[ext_resource type="Texture2D" uid="uid://dnfq6kug4x6o2" path="res://addons/discord-rpc-gd/nodes/assets/Checked.svg" id="2_q6tao"] +[ext_resource type="Texture2D" uid="uid://compmm3kviqqe" path="res://addons/discord-rpc-gd/nodes/assets/Unchecked.svg" id="3_5cyem"] +[ext_resource type="Texture2D" uid="uid://dtc6ckladq0td" path="res://addons/discord-rpc-gd/nodes/assets/circle.svg" id="3_goflf"] + +[sub_resource type="GDScript" id="GDScript_ak1tp"] +resource_name = "Debug" +script/source = "extends Node + +func _ready(): + DiscordRPC.connect(\"activity_join_request\",_on_activity_join_request) + +func _process(_delta): + if(DiscordRPC.get_is_discord_working()): + $Panel/TextureRect.self_modulate = Color(\"#3eff8d\") + $Panel/TextureRect/AnimationPlayer.play(\"pulsate\") + debug_text_update() + else: + $Panel/TextureRect.self_modulate = Color(\"#797979\") + $Panel/TextureRect/AnimationPlayer.stop() + debug_text_update() + + +func debug_text_update(): + $Panel/Info.text = \"Application ID : {id} +Details: {details} +State: {state} + +Large image key: {lkey} +Large image text: {ltext} +Small image key: {skey} +Small image text: {stext} + +Start timestamp: {stimestamp} +End timestamp: {etimestamp} + +Party ID: {partyid} +Current party size: {cpartysize} +Max party size: {mpartysize} +Match secret: {msecret} +Join secret: {jsecret} +Spectate secret: {ssecret} +Is party public: {ppublic} (needs to be activated in Discord client settings) + +Is instanced: {instanced} +\" + $Panel/Info.text = $Panel/Info.text.replace(\"{ppublic}\",str(DiscordRPC.is_public_party)).replace(\"{instanced}\",str(DiscordRPC.instanced)).replace(\"{ssecret}\",DiscordRPC.spectate_secret).replace(\"{jsecret}\",DiscordRPC.join_secret).replace(\"{msecret}\",DiscordRPC.match_secret).replace(\"{mpartysize}\",str(DiscordRPC.max_party_size)).replace(\"{cpartysize}\",str(DiscordRPC.current_party_size)).replace(\"{partyid}\",DiscordRPC.party_id).replace(\"{id}\",str(DiscordRPC.app_id)).replace(\"{details}\",DiscordRPC.details).replace(\"{state}\",DiscordRPC.state).replace(\"{lkey}\",DiscordRPC.large_image).replace(\"{ltext}\",DiscordRPC.large_image_text).replace(\"{skey}\",DiscordRPC.small_image).replace(\"{stext}\",DiscordRPC.small_image_text).replace(\"{stimestamp}\",str(DiscordRPC.start_timestamp)).replace(\"{etimestamp}\",str(DiscordRPC.end_timestamp)) + +var user_request = {}; + +func _on_activity_join_request(user_requesting): + print(user_requesting) + user_request = user_requesting + +func _on_accept_join_request_pressed(): + if(!user_request.is_empty()): + DiscordRPC.accept_join_request(user_request.id) + +func _on_invite_with_user_id_text_submitted(new_text): + DiscordRPC.send_invite(int(new_text),true,\"this is a test invite sent from godot\") + +func _on_accept_with_user_id_text_submitted(new_text): + DiscordRPC.accept_invite(int(new_text)) + +func _on_print_current_user_on_console_pressed(): + print(DiscordRPC.get_current_user()) + +func _on_toggle_sdk_toggled(button_pressed): + if(button_pressed): + DiscordRPC.unclear() + else: + DiscordRPC.clear(false) + +func _on_print_friends_pressed(): + print(DiscordRPC.get_all_relationships()) +" + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_8abo6"] + +[sub_resource type="Animation" id="Animation_mmtmn"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:scale") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0.4), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [Vector2(0.5, 0.5)] +} + +[sub_resource type="Animation" id="Animation_5u02v"] +resource_name = "pulsate" +loop_mode = 1 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath(".:scale") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0, 0.5, 1), +"transitions": PackedFloat32Array(1, 1, 1), +"update": 0, +"values": [Vector2(0.5, 0.5), Vector2(0.8, 0.8), Vector2(0.5, 0.5)] +} + +[sub_resource type="AnimationLibrary" id="AnimationLibrary_a7ofc"] +_data = { +"RESET": SubResource("Animation_mmtmn"), +"pulsate": SubResource("Animation_5u02v") +} + +[node name="DebugNodeGroup" type="Node"] +editor_description = "This is a Debug Node wich will show (only if the project runs) some usefull info and buttons/input" +script = SubResource("GDScript_ak1tp") + +[node name="Panel" type="Panel" parent="."] +anchors_preset = -1 +anchor_right = 0.373 +anchor_bottom = 1.0 +offset_left = -5.0 +offset_right = 0.303955 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Info" type="RichTextLabel" parent="Panel"] +layout_mode = 0 +offset_left = 12.0 +offset_top = 21.0 +offset_right = 429.0 +offset_bottom = 461.0 +theme_override_font_sizes/normal_font_size = 14 +text = "Application ID : {id} +Details: {details} +State: {state} + +Large image key: {lkey} +Large image text: {ltext} +Small image key: {skey} +Small image text: {stext} + +Start timestamp: {stimestamp} +End timestamp: {etimestamp} + +Party ID: {partyid} +Current party size: {cpartysize} +Max party size: {mpartysize} +Match secret: {msecret} +Join secret: {jsecret} +Spectate secret: {ssecret} +Is party public: {ppublic} (needs to be activated in Discord client settings) + +Is instanced: {instanced} +" +fit_content = true + +[node name="PrintCurrentUserOnConsole" type="Button" parent="Panel"] +layout_mode = 1 +anchors_preset = 4 +anchor_top = 0.5 +anchor_bottom = 0.5 +offset_left = 12.0 +offset_top = 138.375 +offset_right = 245.0 +offset_bottom = 171.375 +grow_vertical = 2 +text = "Print current user on console" + +[node name="PrintFriends" type="Button" parent="Panel"] +layout_mode = 1 +anchors_preset = 4 +anchor_top = 0.5 +anchor_bottom = 0.5 +offset_left = 12.0 +offset_top = 176.5 +offset_right = 204.0 +offset_bottom = 207.5 +grow_vertical = 2 +text = "Print friends on console" + +[node name="AcceptJoinRequest" type="Button" parent="Panel"] +layout_mode = 1 +anchors_preset = 4 +anchor_top = 0.5 +anchor_bottom = 0.5 +offset_left = 12.0 +offset_top = 212.875 +offset_right = 154.0 +offset_bottom = 243.875 +grow_vertical = 2 +text = "ACCEPT REQUEST" + +[node name="InviteWithUserID" type="LineEdit" parent="Panel"] +layout_mode = 1 +anchors_preset = 4 +anchor_top = 0.5 +anchor_bottom = 0.5 +offset_left = 11.0 +offset_top = 250.375 +offset_right = 210.0 +offset_bottom = 281.375 +grow_vertical = 2 +size_flags_horizontal = 0 +placeholder_text = "Invite with user_id here" + +[node name="AcceptWithUserID" type="LineEdit" parent="Panel"] +layout_mode = 1 +anchors_preset = 4 +anchor_top = 0.5 +anchor_bottom = 0.5 +offset_left = 11.0 +offset_top = 286.875 +offset_right = 260.0 +offset_bottom = 317.875 +grow_vertical = 2 +placeholder_text = "Accept Invite with user_id here" + +[node name="ToggleSDK" type="CheckButton" parent="Panel"] +layout_mode = 1 +anchors_preset = 4 +anchor_top = 0.5 +anchor_bottom = 0.5 +offset_left = 298.0 +offset_top = 157.375 +offset_right = 1144.0 +offset_bottom = 665.375 +grow_vertical = 2 +scale = Vector2(0.05, 0.05) +theme_override_icons/checked = ExtResource("2_q6tao") +theme_override_icons/unchecked = ExtResource("3_5cyem") +theme_override_styles/focus = SubResource("StyleBoxEmpty_8abo6") +button_pressed = true + +[node name="TextureRect" type="TextureRect" parent="Panel"] +self_modulate = Color(0.47451, 0.47451, 0.47451, 1) +layout_mode = 1 +anchors_preset = -1 +anchor_left = 0.88 +anchor_top = 0.762 +anchor_right = 0.88 +anchor_bottom = 0.762 +offset_left = -28.8 +offset_top = -28.776 +offset_right = 28.0841 +offset_bottom = 28.1082 +grow_horizontal = 2 +grow_vertical = 2 +scale = Vector2(0.5, 0.5) +pivot_offset = Vector2(29.0693, 29.0693) +texture = ExtResource("3_goflf") + +[node name="AnimationPlayer" type="AnimationPlayer" parent="Panel/TextureRect"] +libraries = { +"": SubResource("AnimationLibrary_a7ofc") +} + +[connection signal="pressed" from="Panel/PrintCurrentUserOnConsole" to="." method="_on_print_current_user_on_console_pressed"] +[connection signal="pressed" from="Panel/PrintFriends" to="." method="_on_print_friends_pressed"] +[connection signal="pressed" from="Panel/AcceptJoinRequest" to="." method="_on_accept_join_request_pressed"] +[connection signal="text_submitted" from="Panel/InviteWithUserID" to="." method="_on_invite_with_user_id_text_submitted"] +[connection signal="text_submitted" from="Panel/AcceptWithUserID" to="." method="_on_accept_with_user_id_text_submitted"] +[connection signal="toggled" from="Panel/ToggleSDK" to="." method="_on_toggle_sdk_toggled"] diff --git a/src/addons/discord-rpc-gd/nodes/assets/Checked.svg b/src/addons/discord-rpc-gd/nodes/assets/Checked.svg new file mode 100644 index 00000000..b623c804 --- /dev/null +++ b/src/addons/discord-rpc-gd/nodes/assets/Checked.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/addons/discord-rpc-gd/nodes/assets/Checked.svg.import b/src/addons/discord-rpc-gd/nodes/assets/Checked.svg.import new file mode 100644 index 00000000..18c43b2d --- /dev/null +++ b/src/addons/discord-rpc-gd/nodes/assets/Checked.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnfq6kug4x6o2" +path="res://.godot/imported/Checked.svg-80704e37f30c24e2ec3dfc0955f5f21c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/discord-rpc-gd/nodes/assets/Checked.svg" +dest_files=["res://.godot/imported/Checked.svg-80704e37f30c24e2ec3dfc0955f5f21c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/addons/discord-rpc-gd/nodes/assets/Unchecked.svg b/src/addons/discord-rpc-gd/nodes/assets/Unchecked.svg new file mode 100644 index 00000000..f88d401b --- /dev/null +++ b/src/addons/discord-rpc-gd/nodes/assets/Unchecked.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/addons/discord-rpc-gd/nodes/assets/Unchecked.svg.import b/src/addons/discord-rpc-gd/nodes/assets/Unchecked.svg.import new file mode 100644 index 00000000..e34db513 --- /dev/null +++ b/src/addons/discord-rpc-gd/nodes/assets/Unchecked.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://compmm3kviqqe" +path="res://.godot/imported/Unchecked.svg-b526adfd78f7b1577fc3c10a8ea626ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/discord-rpc-gd/nodes/assets/Unchecked.svg" +dest_files=["res://.godot/imported/Unchecked.svg-b526adfd78f7b1577fc3c10a8ea626ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/addons/discord-rpc-gd/nodes/assets/circle.svg b/src/addons/discord-rpc-gd/nodes/assets/circle.svg new file mode 100644 index 00000000..7bd2d47f --- /dev/null +++ b/src/addons/discord-rpc-gd/nodes/assets/circle.svg @@ -0,0 +1,11 @@ + + + + + + + \ No newline at end of file diff --git a/src/addons/discord-rpc-gd/nodes/assets/circle.svg.import b/src/addons/discord-rpc-gd/nodes/assets/circle.svg.import new file mode 100644 index 00000000..42372f5b --- /dev/null +++ b/src/addons/discord-rpc-gd/nodes/assets/circle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtc6ckladq0td" +path="res://.godot/imported/circle.svg-d0b0579c9433c6250a5869daf4f70024.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/discord-rpc-gd/nodes/assets/circle.svg" +dest_files=["res://.godot/imported/circle.svg-d0b0579c9433c6250a5869daf4f70024.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/addons/discord-rpc-gd/nodes/debug.gd b/src/addons/discord-rpc-gd/nodes/debug.gd new file mode 100644 index 00000000..f5e0a85c --- /dev/null +++ b/src/addons/discord-rpc-gd/nodes/debug.gd @@ -0,0 +1,11 @@ +## This is a Debug Node wich will show some usefull info and buttons/input +## +## The DiscordRPC Debug Node will show info about the current values of its variables and some buttons to change them. +## +## @tutorial: https://github.com/vaporvee/discord-rpc-godot/wiki +@tool +extends Node + +func _ready() -> void: + const DebugNodeGroup: PackedScene = preload("res://addons/discord-rpc-gd/nodes/Debug.tscn") + add_child(DebugNodeGroup.instantiate()) diff --git a/src/addons/discord-rpc-gd/nodes/debug.gd.uid b/src/addons/discord-rpc-gd/nodes/debug.gd.uid new file mode 100644 index 00000000..31bd6ba4 --- /dev/null +++ b/src/addons/discord-rpc-gd/nodes/debug.gd.uid @@ -0,0 +1 @@ +uid://dv2iodmr4lqey diff --git a/src/addons/discord-rpc-gd/nodes/discord_autoload.gd b/src/addons/discord-rpc-gd/nodes/discord_autoload.gd new file mode 100644 index 00000000..e408f208 --- /dev/null +++ b/src/addons/discord-rpc-gd/nodes/discord_autoload.gd @@ -0,0 +1,13 @@ +## This is a GDscript Node wich gets automatically added as Autoload while installing the addon. +## +## It can run in the background to comunicate with Discord. +## You don't need to use it. If you remove it make sure to run [code]DiscordRPC.run_callbacks()[/code] in a [code]_process[/code] function. +## +## @tutorial: https://github.com/vaporvee/discord-rpc-godot/wiki +extends Node + +func _ready() -> void: + pass + +func _process(_delta) -> void: + DiscordRPC.run_callbacks() diff --git a/src/addons/discord-rpc-gd/nodes/discord_autoload.gd.uid b/src/addons/discord-rpc-gd/nodes/discord_autoload.gd.uid new file mode 100644 index 00000000..27bcb354 --- /dev/null +++ b/src/addons/discord-rpc-gd/nodes/discord_autoload.gd.uid @@ -0,0 +1 @@ +uid://xq58uo0nw0gq diff --git a/src/addons/discord-rpc-gd/plugin.cfg b/src/addons/discord-rpc-gd/plugin.cfg new file mode 100644 index 00000000..25a3fbef --- /dev/null +++ b/src/addons/discord-rpc-gd/plugin.cfg @@ -0,0 +1,7 @@ +[plugin] + +name="DiscordRPC" +description="Discord RPC Plugin for GDScript in Godot" +author="vaporvee" +version="1.3.1" +script="plugin.gd" diff --git a/src/addons/discord-rpc-gd/plugin.gd b/src/addons/discord-rpc-gd/plugin.gd new file mode 100644 index 00000000..2a91a8c3 --- /dev/null +++ b/src/addons/discord-rpc-gd/plugin.gd @@ -0,0 +1,56 @@ +@tool +extends EditorPlugin + +const DiscordRPCDebug = preload("res://addons/discord-rpc-gd/nodes/debug.gd") +const DiscordRPCDebug_icon = preload("res://addons/discord-rpc-gd/Debug.svg") +var loaded_DiscordRPCDebug = DiscordRPCDebug.new() +var restart_window: ConfirmationDialog = preload("res://addons/discord-rpc-gd/restart_window.tscn").instantiate() +var plugin_cfg: ConfigFile = ConfigFile.new() +const plugin_data_filename = "/plugin_data.cfg" + +func _enter_tree() -> void: + add_custom_type("DiscordRPCDebug","Node",DiscordRPCDebug,DiscordRPCDebug_icon) + get_editor_interface().get_editor_settings().settings_changed.connect(_on_editor_settings_changed) + +func _ready() -> void: + await get_tree().create_timer(0.5).timeout + plugin_cfg.load(get_editor_interface().get_editor_paths().get_data_dir() + plugin_data_filename) + if !get_editor_interface().get_editor_settings().has_setting("DiscordRPC/EditorPresence/enabled"): + get_editor_interface().get_editor_settings().set_setting("DiscordRPC/EditorPresence/enabled",plugin_cfg.get_value("Discord","editor_presence",false)) + +func _exit_tree(): + if get_editor_interface().get_editor_settings().has_setting("DiscordRPC/EditorPresence/enabled"): + get_editor_interface().get_editor_settings().erase("DiscordRPC/EditorPresence/enabled") + +func _enable_plugin() -> void: + if FileAccess.file_exists(ProjectSettings.globalize_path("res://") + "addons/discord-rpc-gd/bin/.gdignore"): + DirAccess.remove_absolute(ProjectSettings.globalize_path("res://") + "addons/discord-rpc-gd/bin/.gdignore") + add_autoload_singleton("DiscordRPCLoader","res://addons/discord-rpc-gd/nodes/discord_autoload.gd") + restart_window.connect("confirmed", save_no_restart) + restart_window.connect("canceled", save_and_restart) + get_editor_interface().popup_dialog_centered(restart_window) + print("IGNORE RED ERROR MESSAGES BEFORE THE SECOND RESTART!") + +func _disable_plugin() -> void: + remove_autoload_singleton("DiscordRPCLoader") + FileAccess.open("res://addons/discord-rpc-gd/bin/.gdignore",FileAccess.WRITE) + remove_custom_type("DiscordRPCDebug") + get_editor_interface().get_editor_settings().erase("DiscordRPC/EditorPresence/enabled") + push_warning("Please restart the editor to fully disable the DiscordRPC plugin") + +func save_and_restart() -> void: + get_editor_interface().restart_editor(true) + +func save_no_restart() -> void: + get_editor_interface().restart_editor(false) + +var editor_presence: Node +func _on_editor_settings_changed() -> void: + plugin_cfg.set_value("Discord","editor_presence",get_editor_interface().get_editor_settings().get_setting("DiscordRPC/EditorPresence/enabled")) + plugin_cfg.save(get_editor_interface().get_editor_paths().get_data_dir() + plugin_data_filename) + if ClassDB.class_exists("EditorPresence") && editor_presence == null: + editor_presence = ClassDB.instantiate("EditorPresence") + if get_editor_interface().get_editor_settings().has_setting("DiscordRPC/EditorPresence/enabled") && get_editor_interface().get_editor_settings().get_setting("DiscordRPC/EditorPresence/enabled"): + add_child(editor_presence) + else: + editor_presence.queue_free() diff --git a/src/addons/discord-rpc-gd/plugin.gd.uid b/src/addons/discord-rpc-gd/plugin.gd.uid new file mode 100644 index 00000000..6be32b0a --- /dev/null +++ b/src/addons/discord-rpc-gd/plugin.gd.uid @@ -0,0 +1 @@ +uid://ctbjas7dlorq1 diff --git a/src/addons/discord-rpc-gd/restart_window.tscn b/src/addons/discord-rpc-gd/restart_window.tscn new file mode 100644 index 00000000..f295d969 --- /dev/null +++ b/src/addons/discord-rpc-gd/restart_window.tscn @@ -0,0 +1,112 @@ +[gd_scene load_steps=8 format=3 uid="uid://byc4c6d5tpomq"] + +[ext_resource type="Texture2D" uid="uid://csl0e2px0cwc1" path="res://addons/discord-rpc-gd/Logo_V2_No_Bg.png" id="1_0svbg"] + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_1t7mm"] + +[sub_resource type="Theme" id="Theme_swwco"] +Button/styles/focus = SubResource("StyleBoxEmpty_1t7mm") + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_5vqdt"] + +[sub_resource type="Image" id="Image_v4whe"] +data = { +"data": PackedByteArray(255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 227, 227, 227, 36, 224, 224, 224, 168, 224, 224, 224, 233, 224, 224, 224, 236, 224, 224, 224, 170, 231, 231, 231, 31, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 227, 227, 227, 36, 224, 224, 224, 234, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 239, 230, 230, 230, 30, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 224, 224, 224, 168, 224, 224, 224, 255, 224, 224, 224, 186, 224, 224, 224, 32, 224, 224, 224, 33, 224, 224, 224, 187, 224, 224, 224, 255, 225, 225, 225, 167, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 224, 224, 224, 237, 224, 224, 224, 255, 224, 224, 224, 33, 255, 255, 255, 0, 255, 255, 255, 0, 227, 227, 227, 36, 224, 224, 224, 255, 224, 224, 224, 234, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 224, 224, 224, 237, 224, 224, 224, 255, 224, 224, 224, 33, 255, 255, 255, 0, 255, 255, 255, 0, 229, 229, 229, 38, 224, 224, 224, 255, 224, 224, 224, 229, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 224, 224, 224, 164, 224, 224, 224, 255, 224, 224, 224, 187, 225, 225, 225, 34, 227, 227, 227, 36, 224, 224, 224, 192, 224, 224, 224, 255, 224, 224, 224, 162, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 224, 224, 224, 24, 225, 225, 225, 215, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 229, 224, 224, 224, 32, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 224, 224, 224, 24, 224, 224, 224, 216, 224, 224, 224, 255, 224, 224, 224, 210, 224, 224, 224, 161, 224, 224, 224, 232, 224, 224, 224, 231, 225, 225, 225, 159, 230, 230, 230, 30, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 224, 224, 224, 107, 224, 224, 224, 255, 224, 224, 224, 210, 230, 230, 230, 20, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 224, 224, 224, 105, 230, 230, 230, 20, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 255, 255, 255, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 221, 224, 224, 224, 130, 255, 255, 255, 1, 255, 255, 255, 1, 225, 225, 225, 134, 224, 224, 224, 224, 225, 225, 225, 223, 224, 224, 224, 132, 255, 255, 255, 1, 255, 255, 255, 6, 224, 224, 224, 137, 224, 224, 224, 231, 224, 224, 224, 255, 255, 255, 255, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 130, 225, 225, 225, 133, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 129, 224, 224, 224, 137, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 255, 255, 255, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 65, 224, 224, 224, 255, 224, 224, 224, 220, 225, 225, 225, 223, 224, 224, 224, 255, 226, 226, 226, 61, 224, 224, 224, 65, 224, 224, 224, 255, 224, 224, 224, 222, 224, 224, 224, 231, 224, 224, 224, 255, 227, 227, 227, 62, 255, 255, 255, 0, 255, 255, 255, 0, 224, 224, 224, 255, 224, 224, 224, 255, 225, 225, 225, 67, 224, 224, 224, 255, 224, 224, 224, 219, 224, 224, 224, 222, 224, 224, 224, 255, 227, 227, 227, 63, 225, 225, 225, 67, 224, 224, 224, 255, 224, 224, 224, 219, 224, 224, 224, 230, 224, 224, 224, 255, 227, 227, 227, 63, 255, 255, 255, 0, 255, 255, 255, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 225, 225, 225, 127, 224, 224, 224, 129, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 225, 225, 225, 126, 225, 225, 225, 135, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 255, 255, 255, 255, 0, 224, 224, 224, 255, 224, 224, 224, 255, 224, 224, 224, 221, 225, 225, 225, 127, 255, 255, 255, 0, 255, 255, 255, 1, 224, 224, 224, 128, 224, 224, 224, 220, 224, 224, 224, 219, 225, 225, 225, 127, 255, 255, 255, 0, 255, 255, 255, 5, 225, 225, 225, 134, 224, 224, 224, 229, 224, 224, 224, 255, 255, 255, 255, 0), +"format": "RGBA8", +"height": 16, +"mipmaps": false, +"width": 16 +} + +[sub_resource type="ImageTexture" id="ImageTexture_gdtpn"] +image = SubResource("Image_v4whe") + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_7v0rg"] + +[node name="RestartWindow" type="ConfirmationDialog"] +title = "Restart required" +initial_position = 2 +size = Vector2i(430, 500) +visible = true +transient = false +unresizable = true +theme = SubResource("Theme_swwco") +ok_button_text = "Restart" +cancel_button_text = "Save and restart" + +[node name="Panel" type="Panel" parent="."] +anchors_preset = 5 +anchor_left = 0.5 +anchor_right = 0.5 +offset_left = -207.0 +offset_top = 8.0 +offset_right = 207.0 +offset_bottom = 451.0 +grow_horizontal = 2 +mouse_filter = 1 + +[node name="VBoxContainer" type="VBoxContainer" parent="Panel"] +custom_minimum_size = Vector2(400, 0) +layout_mode = 1 +anchors_preset = 5 +anchor_left = 0.5 +anchor_right = 0.5 +offset_left = -200.0 +offset_right = 200.0 +offset_bottom = 389.0 +grow_horizontal = 2 + +[node name="HSeparator" type="HSeparator" parent="Panel/VBoxContainer"] +layout_mode = 2 +mouse_filter = 1 +theme_override_constants/separation = 15 +theme_override_styles/separator = SubResource("StyleBoxEmpty_5vqdt") + +[node name="HBoxContainer" type="HBoxContainer" parent="Panel/VBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +theme_override_constants/separation = 10 + +[node name="DocsIcon" type="TextureRect" parent="Panel/VBoxContainer/HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 8 +size_flags_vertical = 4 +texture = SubResource("ImageTexture_gdtpn") +stretch_mode = 2 + +[node name="LinkButton" type="LinkButton" parent="Panel/VBoxContainer/HBoxContainer"] +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 8 +mouse_default_cursor_shape = 16 +theme_override_font_sizes/font_size = 20 +text = "HOW TO USE" +uri = "https://vaporvee.com/docs/discord-rpc-godot#quick-start" + +[node name="TextureRect" type="TextureRect" parent="Panel/VBoxContainer"] +custom_minimum_size = Vector2(128, 128) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 0 +texture = ExtResource("1_0svbg") +expand_mode = 1 + +[node name="RichTextLabel" type="RichTextLabel" parent="Panel/VBoxContainer"] +custom_minimum_size = Vector2(400, 250) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 0 +mouse_filter = 1 +theme_override_font_sizes/normal_font_size = 16 +theme_override_styles/normal = SubResource("StyleBoxEmpty_7v0rg") +bbcode_enabled = true +text = "[center]Thanks for enabling the +[rainbow]Discord Game SDK Plugin[/rainbow] +made by vaporvee. ❤️ + + +You need to [wave]restart[/wave] the editor to fully enable this plugin! +Do you want to [wave]save[/wave] your project before restarting? + +Error messages after the first two restarts are normal. Please ignore them!" diff --git a/src/addons/godot-oauth2client b/src/addons/godot-oauth2client new file mode 160000 index 00000000..a835738a --- /dev/null +++ b/src/addons/godot-oauth2client @@ -0,0 +1 @@ +Subproject commit a835738a2674feb2679576a247169fc53c2d4682 diff --git a/src/addons/godot-urlparser b/src/addons/godot-urlparser new file mode 160000 index 00000000..50632506 --- /dev/null +++ b/src/addons/godot-urlparser @@ -0,0 +1 @@ +Subproject commit 50632506d6a5a8a65bda52640339df98957fd0cd diff --git a/src/addons/rpc-await/LICENSE b/src/addons/rpc-await/LICENSE new file mode 100644 index 00000000..b6506fa5 --- /dev/null +++ b/src/addons/rpc-await/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Dominik Schacht + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/addons/rpc-await/plugin.cfg b/src/addons/rpc-await/plugin.cfg new file mode 100644 index 00000000..5cf3a9db --- /dev/null +++ b/src/addons/rpc-await/plugin.cfg @@ -0,0 +1,7 @@ +[plugin] + +name="rpc-await" +description="A small layer build on top of Godot's RPC to send requests to a peer and await a response." +author="Dominik Schacht" +version="1.4" +script="rpc_await_plugin.gd" diff --git a/src/addons/rpc-await/rpc_await.gd b/src/addons/rpc-await/rpc_await.gd new file mode 100644 index 00000000..a5af1ca5 --- /dev/null +++ b/src/addons/rpc-await/rpc_await.gd @@ -0,0 +1,292 @@ +class_name RpcAwaiter +extends Node +## Implements a communication scheme over RPC that allows a peer to await a +## function call or await a sent message until a response is received that brings a return value. + +## How long requests may wait for a response until the await is relased. +## +## A timeout of <=0 means no timeout. +@export var default_timeout_secs := 5.0 +## Timeout checker interval in seconds. +@export var timer_interval := 0.5 + +## Maps req_id -> RequestAwaiter to keep track of the open requests waiting for the response. +var _open_requests: Dictionary[int, RequestAwaiter] = { } +## ID counter for requests. +var _next_id := 0 +## Timer node to regularly check +var _timeout_timer := Timer.new() +## The multiplayer API to use. +var _mp_api := get_multiplayer() +## Set of all registered listener callables. +## +## Dictionary used as a Set to prevent duplicates. +var _message_listeners: Dictionary[Callable, bool] = { } + + +func _init() -> void: + _timeout_timer.autostart = true + _timeout_timer.timeout.connect(_on_timeout_timer_tick) + add_child(_timeout_timer) + + +func _ready() -> void: + _timeout_timer.wait_time = timer_interval + _mp_api = get_multiplayer() + + +## Register a callable to listen for message events. +## +## The callable must have one parameter with the type RpcAwaiter.Message. +## Registering the same callable multiple times has no effect. +func add_message_listener(listener: Callable) -> void: + _message_listeners[listener] = true + + +## Unregister a callable from receiving message events. +func remove_message_listener(listener: Callable) -> void: + _message_listeners.erase(listener) + + +## Send a message with a custom timeout (in seconds). +func send_msg_timeout(timeout: float, net_id: int, data: Variant, default_return: Variant = null) -> Variant: + var req_obj := RequestAwaiter.new() + req_obj.target_net_id = net_id + req_obj.default_return = default_return + + if timeout > 0: + req_obj.timeout = Time.get_ticks_msec() + (timeout * 1000) + var req_id := _next_id + _next_id += 1 + + _open_requests[req_id] = req_obj + _handle_msg_request.rpc_id(net_id, req_id, data) + + # The operation might have already completed when executing locally so + # there is no use in waiting for the signal. + if req_obj.is_done: + return req_obj.result + else: + return await req_obj.done + + +## Send a message to the given peer and await the response. +func send_msg(net_id: int, data: Variant, default_return: Variant = null) -> Variant: + return await send_msg_timeout(default_timeout_secs, net_id, data, default_return) + + +## Call function via RPC and return the result. +func send_rpc(net_id: int, callable: Callable, default_return: Variant = null) -> Variant: + return await send_rpc_timeout(default_timeout_secs, net_id, callable, default_return) + + +## Call function via RPC and return the result. With custom timeout (in seconds). +func send_rpc_timeout(timeout: float, net_id: int, callable: Callable, default_return: Variant = null) -> Variant: + var source_obj = callable.get_object() + assert(source_obj is Node) + assert(source_obj.is_inside_tree()) + + var req_obj := RequestAwaiter.new() + req_obj.target_net_id = net_id + req_obj.default_return = default_return + + if timeout > 0: + req_obj.timeout = Time.get_ticks_msec() + (timeout * 1000) + var req_id = _next_id + _next_id += 1 + _open_requests[req_id] = req_obj + + # HACK: Bypass the mismatched scene ids by just looking at the scene root. + var regex = RegEx.new() + regex.compile("/root/Master/Scenes/[A-Za-z0-9]+/") + var result = regex.sub(source_obj.get_path(), "") + + _handle_callable_request.rpc_id( + net_id, + req_id, + callable.get_method(), + result, + callable.get_bound_arguments(), + ) + + # The operation might have already completed when executing locally so + # there is no use in waiting for the signal. + if req_obj.is_done: + return req_obj.result + else: + return await req_obj.done + + +@rpc("any_peer", "call_local", "reliable") +func _handle_callable_request(req_id: int, method: String, path: String, args: Array) -> void: + var sender_id := multiplayer.get_remote_sender_id() + + # Reconstruct the callable + var target := get_parent().get_node(path) + + # Check for target validity + if target == null: + var err_msg := "rpc target not found at %s" % path + push_error(err_msg) + _handle_fail_response.rpc_id(sender_id, req_id, err_msg) + return + + if target == self: + var err_msg := "blocked recursive rpc call to rpc_await node" + push_error(err_msg) + _handle_fail_response.rpc_id(sender_id, req_id, err_msg) + return + + # Check for script validity + var script = target.get_script() + if script == null: + var err_msg := "no script found at %s" % path + push_error(err_msg) + _handle_fail_response.rpc_id(sender_id, req_id, err_msg) + return + + # Retrieve and check the rpc mode of the target method + var rpc_config = script.get_rpc_config() + var callable_rpc_mode := _get_rpc_mode(rpc_config, method) + if callable_rpc_mode == MultiplayerAPI.RPC_MODE_DISABLED: + var err_msg := "%s not marked as rpc-method" % method + push_error(err_msg) + _handle_fail_response.rpc_id(sender_id, req_id, err_msg) + return + + if callable_rpc_mode == MultiplayerAPI.RPC_MODE_AUTHORITY and target.get_multiplayer_authority() != sender_id: + var err_msg := "%s called by %s but only available for authority (%s)" % [method, sender_id, target.get_multiplayer_authority()] + push_error(err_msg) + _handle_fail_response.rpc_id(sender_id, req_id, err_msg) + return + + # Check for rpc sync mode + if not _is_rpc_call_local(rpc_config, method) and multiplayer.get_remote_sender_id() == multiplayer.get_unique_id(): + var err_msg := "%s called via rpc on local but is not set as call_local" % method + push_error(err_msg) + _handle_fail_response.rpc_id(sender_id, req_id, err_msg) + return + + # Reconstruct the callable + var callable := Callable(target, method) + if not args.is_empty(): + callable = callable.bindv(args) + + # Call it with await in case it's an async function. + var result = await callable.call() + _handle_response.rpc_id(sender_id, req_id, result) + + +@rpc("any_peer", "call_local", "reliable") +func _handle_msg_request(req_id: int, data: Variant) -> void: + var sender_id := multiplayer.get_remote_sender_id() + var request := Message.new() + request.data = data + + for callable in _message_listeners.keys(): + await callable.call(request) + + _handle_response.rpc_id(sender_id, req_id, request.result) + + +@rpc("any_peer", "call_local", "reliable") +func _handle_response(req_id: int, data: Variant) -> void: + if not req_id in _open_requests: + push_warning("Received response for unknown id %s (timed out?)" % req_id) + return + var req_obj := _open_requests[req_id] + if req_obj.target_net_id != multiplayer.get_remote_sender_id(): + push_warning("Dismissed response from unexpected net_id") + return + + _open_requests.erase(req_id) + req_obj.done.emit(data) + + +@rpc("any_peer", "call_local", "reliable") +func _handle_fail_response(req_id: int, error_msg: String) -> void: + if not req_id in _open_requests: + push_warning("Received fail response for unknown id %s (timed out?)" % req_id) + return + var req_obj := _open_requests[req_id] + if req_obj.target_net_id != multiplayer.get_remote_sender_id(): + push_warning("Dismissed fail response from unexpected net_id") + return + + _open_requests.erase(req_id) + push_error(error_msg) + req_obj.done.emit(req_obj.default_return) + + +## Iterate over all waiting RequestAwaiters and check if they timed out. +## +## Timed out awaiters emit their signal with null. +func _on_timeout_timer_tick() -> void: + var now := Time.get_ticks_msec() + for id in _open_requests.keys(): + var awaiter := _open_requests[id] + + if awaiter.timeout > 0 and awaiter.timeout <= now: + _open_requests.erase(id) + awaiter.done.emit(awaiter.default_return) + + +func _get_rpc_mode(rpc_config: Dictionary, method_name: String) -> MultiplayerAPI.RPCMode: + if method_name not in rpc_config: + return MultiplayerAPI.RPC_MODE_DISABLED + if "rpc_mode" not in rpc_config[method_name]: + return MultiplayerAPI.RPC_MODE_DISABLED + return rpc_config[method_name]["rpc_mode"] + + +func _is_rpc_call_local(rpc_config: Dictionary, method_name: String) -> bool: + if method_name not in rpc_config: + return false + if "call_local" not in rpc_config[method_name]: + return false + return rpc_config[method_name]["call_local"] + + +## Utility object that represents an open await waiting for a response via rpc. +class RequestAwaiter: + extends RefCounted + + signal done(data: Variant) + + ## Flag to check whether this request has completed + var is_done := false + + ## Result of the operation + var result: Variant + + ## Ticks msecs at which this request will time out. Or 0 to disable timeout. + var timeout := 0 + + ## The net_id that we expect to receive a response from for this request + var target_net_id := 0 + + ## The default value that is to be returned in case of timeout or error + var default_return: Variant = null + + + func _init() -> void: + done.connect(_on_done) + + + ## When done, set result and done-flag on yourself - in case the operation + ## is complete before anyone was able to listen to the signal. + func _on_done(result: Variant) -> void: + self.is_done = true + self.result = result + + +## Handed to signal handlers of the message_received signal to allow listeners to +## process the request data and place their result. +class Message: + extends RefCounted + + ## The data that was sent with this message. + var data: Variant + + ## The result that will be returned. Set by handlers of the message_received signal. + var result: Variant diff --git a/src/addons/rpc-await/rpc_await.gd.uid b/src/addons/rpc-await/rpc_await.gd.uid new file mode 100644 index 00000000..280c59ee --- /dev/null +++ b/src/addons/rpc-await/rpc_await.gd.uid @@ -0,0 +1 @@ +uid://b0dicnumx46f8 diff --git a/src/addons/rpc-await/rpc_await_plugin.gd b/src/addons/rpc-await/rpc_await_plugin.gd new file mode 100644 index 00000000..c148cbcd --- /dev/null +++ b/src/addons/rpc-await/rpc_await_plugin.gd @@ -0,0 +1,10 @@ +@tool +extends EditorPlugin + + +func _enter_tree(): + pass + + +func _exit_tree(): + pass diff --git a/src/addons/rpc-await/rpc_await_plugin.gd.uid b/src/addons/rpc-await/rpc_await_plugin.gd.uid new file mode 100644 index 00000000..841a170b --- /dev/null +++ b/src/addons/rpc-await/rpc_await_plugin.gd.uid @@ -0,0 +1 @@ +uid://dvypsj1nhdo1q diff --git a/src/openminerva_darkpanel.tres b/src/openminerva_darkpanel.tres new file mode 100644 index 00000000..a6890af9 --- /dev/null +++ b/src/openminerva_darkpanel.tres @@ -0,0 +1,4 @@ +[gd_resource type="StyleBoxFlat" format=3 uid="uid://cxx1q037xaswi"] + +[resource] +bg_color = Color(0.0625, 0.0625, 0.0625, 1) diff --git a/src/openminerva_default.tres b/src/openminerva_default.tres new file mode 100644 index 00000000..a390c0e4 --- /dev/null +++ b/src/openminerva_default.tres @@ -0,0 +1,19 @@ +[gd_resource type="Theme" format=3 uid="uid://bg2nbganyysst"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_31r6k"] +bg_color = Color(0, 0, 0, 0.78431374) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_f2aq3"] +bg_color = Color(0.14117648, 0.39215687, 0.5686275, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fbptr"] +bg_color = Color(0.02, 0.02, 0.02, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_fq2hb"] +bg_color = Color(0.01773237, 0.0177324, 0.017732374, 0.8) + +[resource] +Button/styles/normal = SubResource("StyleBoxFlat_31r6k") +Button/styles/pressed = SubResource("StyleBoxFlat_f2aq3") +Panel/styles/normal = SubResource("StyleBoxFlat_fbptr") +Panel/styles/panel = SubResource("StyleBoxFlat_fq2hb") diff --git a/src/project.godot b/src/project.godot new file mode 100644 index 00000000..f1dfe330 --- /dev/null +++ b/src/project.godot @@ -0,0 +1,147 @@ +; Engine configuration file. +; It's best edited using the editor UI and not directly, +; since the parameters that go here are not all obvious. +; +; Format: +; [section] ; section goes between [] +; param=value ; assign values to parameters + +config_version=5 + +[animation] + +compatibility/default_parent_skeleton_in_mesh_instance_3d=true + +[application] + +config/name="OpenMinerva Client" +run/main_scene="uid://cxk6c0uipjjpo" +config/features=PackedStringArray("4.7", "Forward Plus") +run/max_fps=144 +boot_splash/stretch_mode=0 +boot_splash/image="uid://dpdryj57noc4c" +config/icon="res://resources/icons/logos/logo.webp" +config/macos_native_icon="res://resources/icons/logos/logo.icns" +config/windows_native_icon="res://resources/icons/logos/logo.ico" +boot_splash/minimum_display_time=1500 + +[autoload] + +LaunchArguments="*uid://c45jrfmrjtnyn" +GlobalLogger="*uid://dgmfafi41y1nk" +FileManager="*uid://d2s50p717g3n" +SettingsManager="*uid://cgvvntx8o26ds" +Accounts="*uid://sdrs0dnojnes" +DiscordRPCLoader="*uid://xq58uo0nw0gq" +Bootstrap="*uid://cvj10vdw6hlqw" +HTTP="*uid://d3cnfdwjxopsx" +FileDrop="*uid://btgqgfpx0av4m" +Events="*uid://c656spc3ppdlw" +StateManager="*uid://b5vvw77bmn4yc" +OAuth2Client="*uid://c4b880pwgfrty" +UrlParser="*uid://budprjmmpally" + +[debug] + +gdscript/warnings/unused_signal=0 + +[display] + +window/size/viewport_width=1920 +window/size/viewport_height=1080 +window/stretch/mode="canvas_items" +window/stretch/aspect="expand" + +[editor_plugins] + +enabled=PackedStringArray("res://addons/Gizmo3DScript/plugin.cfg", "res://addons/discord-rpc-gd/plugin.cfg", "res://addons/godot-oauth2client/plugin.cfg", "res://addons/godot-urlparser/plugin.cfg", "res://addons/rpc-await/plugin.cfg") + +[gui] + +theme/default_font_hinting=2 +theme/default_font_multichannel_signed_distance_field=true + +[input] + +jump={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null) +] +} +forward={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":119,"location":0,"echo":false,"script":null) +] +} +backward={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":115,"location":0,"echo":false,"script":null) +] +} +left={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null) +] +} +right={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"location":0,"echo":false,"script":null) +] +} +context={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":67,"key_label":0,"unicode":99,"location":0,"echo":false,"script":null) +] +} +escape={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194305,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +sprint={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194325,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +dev_cem_camera_mode={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194335,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +escape_mouse={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194306,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +cem_activate={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194334,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +cem_camera={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194335,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} +cem_camera_pan={ +"deadzone": 0.2, +"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":4,"position":Vector2(88, 7),"global_position":Vector2(97, 55),"factor":1.0,"button_index":3,"canceled":false,"pressed":true,"double_click":false,"script":null) +] +} +cem_camera_rotate={ +"deadzone": 0.2, +"events": [Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":2,"position":Vector2(192, 20),"global_position":Vector2(201, 68),"factor":1.0,"button_index":2,"canceled":false,"pressed":true,"double_click":false,"script":null) +] +} + +[physics] + +3d/run_on_separate_thread=true +3d/physics_engine="Jolt Physics" +common/physics_interpolation=true + +[rendering] + +textures/canvas_textures/default_texture_filter=0 +textures/default_filters/use_nearest_mipmap_filter=true +anti_aliasing/quality/msaa_3d=3 diff --git a/src/resources/icons/1280x720.webp b/src/resources/icons/1280x720.webp new file mode 100644 index 00000000..6951b101 Binary files /dev/null and b/src/resources/icons/1280x720.webp differ diff --git a/src/resources/icons/1280x720.webp.import b/src/resources/icons/1280x720.webp.import new file mode 100644 index 00000000..f5285983 --- /dev/null +++ b/src/resources/icons/1280x720.webp.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://itsm1b042lj4" +path="res://.godot/imported/1280x720.webp-0f567b7e104b7306bf6aee1c3f094cf3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/1280x720.webp" +dest_files=["res://.godot/imported/1280x720.webp-0f567b7e104b7306bf6aee1c3f094cf3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/src/resources/icons/Gizmo.svg b/src/resources/icons/Gizmo.svg new file mode 100644 index 00000000..c80a2ea1 --- /dev/null +++ b/src/resources/icons/Gizmo.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/resources/icons/Gizmo.svg.import b/src/resources/icons/Gizmo.svg.import new file mode 100644 index 00000000..73b1d044 --- /dev/null +++ b/src/resources/icons/Gizmo.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6xd71dfhussh" +path="res://.godot/imported/Gizmo.svg-cfbc64b407544fbdbdc94d864291d7d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/Gizmo.svg" +dest_files=["res://.godot/imported/Gizmo.svg-cfbc64b407544fbdbdc94d864291d7d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/account.svg b/src/resources/icons/account.svg new file mode 100644 index 00000000..a0afd11a --- /dev/null +++ b/src/resources/icons/account.svg @@ -0,0 +1,42 @@ + + + + + + diff --git a/src/resources/icons/account.svg.import b/src/resources/icons/account.svg.import new file mode 100644 index 00000000..2c4211b4 --- /dev/null +++ b/src/resources/icons/account.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coqi7w7inqyv1" +path="res://.godot/imported/account.svg-4dd6f4e3bd6806ac9bb3535ef447dd9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/account.svg" +dest_files=["res://.godot/imported/account.svg-4dd6f4e3bd6806ac9bb3535ef447dd9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/apps.svg b/src/resources/icons/apps.svg new file mode 100644 index 00000000..60a8cc28 --- /dev/null +++ b/src/resources/icons/apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/apps.svg.import b/src/resources/icons/apps.svg.import new file mode 100644 index 00000000..41f2d7d7 --- /dev/null +++ b/src/resources/icons/apps.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp5u16rwxd0bp" +path="res://.godot/imported/apps.svg-062353f68bab189f9e392acee8f22033.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/apps.svg" +dest_files=["res://.godot/imported/apps.svg-062353f68bab189f9e392acee8f22033.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/art.svg b/src/resources/icons/art.svg new file mode 100644 index 00000000..247db393 --- /dev/null +++ b/src/resources/icons/art.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/art.svg.import b/src/resources/icons/art.svg.import new file mode 100644 index 00000000..bbecb1d8 --- /dev/null +++ b/src/resources/icons/art.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crrjk7c2g4q55" +path="res://.godot/imported/art.svg-c5ead3145c8db393dce7fc50a2521349.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/art.svg" +dest_files=["res://.godot/imported/art.svg-c5ead3145c8db393dce7fc50a2521349.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/at-icons/LICENSE.txt b/src/resources/icons/at-icons/LICENSE.txt new file mode 100644 index 00000000..5beda5a7 --- /dev/null +++ b/src/resources/icons/at-icons/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026–present Valentin Fossati (Voxybuns) & contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/resources/icons/at-icons/airplane.svg b/src/resources/icons/at-icons/airplane.svg new file mode 100644 index 00000000..b2714a95 --- /dev/null +++ b/src/resources/icons/at-icons/airplane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/airplane.svg.import b/src/resources/icons/at-icons/airplane.svg.import new file mode 100644 index 00000000..49633c62 --- /dev/null +++ b/src/resources/icons/at-icons/airplane.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8x3gjbosst38" +path="res://.godot/imported/airplane.svg-59f288f4ef844dc83932f3a424235079.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/airplane.svg" +dest_files=["res://.godot/imported/airplane.svg-59f288f4ef844dc83932f3a424235079.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/alarm_clock.svg b/src/resources/icons/at-icons/alarm_clock.svg new file mode 100644 index 00000000..0686a70b --- /dev/null +++ b/src/resources/icons/at-icons/alarm_clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/alarm_clock.svg.import b/src/resources/icons/at-icons/alarm_clock.svg.import new file mode 100644 index 00000000..d3db3c74 --- /dev/null +++ b/src/resources/icons/at-icons/alarm_clock.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nonpflhuior4" +path="res://.godot/imported/alarm_clock.svg-bb41b7a4c1efd16924b87ce04a5829c2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/alarm_clock.svg" +dest_files=["res://.godot/imported/alarm_clock.svg-bb41b7a4c1efd16924b87ce04a5829c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/american_football.svg b/src/resources/icons/at-icons/american_football.svg new file mode 100644 index 00000000..4e2ef26c --- /dev/null +++ b/src/resources/icons/at-icons/american_football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/american_football.svg.import b/src/resources/icons/at-icons/american_football.svg.import new file mode 100644 index 00000000..7afbca23 --- /dev/null +++ b/src/resources/icons/at-icons/american_football.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmpssaoe6iq3" +path="res://.godot/imported/american_football.svg-d898c4fa82aedb8b3360125d6c7f36d7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/american_football.svg" +dest_files=["res://.godot/imported/american_football.svg-d898c4fa82aedb8b3360125d6c7f36d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/ammunition.svg b/src/resources/icons/at-icons/ammunition.svg new file mode 100644 index 00000000..351ec98a --- /dev/null +++ b/src/resources/icons/at-icons/ammunition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/ammunition.svg.import b/src/resources/icons/at-icons/ammunition.svg.import new file mode 100644 index 00000000..c28b58c3 --- /dev/null +++ b/src/resources/icons/at-icons/ammunition.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjahlnle3bs07" +path="res://.godot/imported/ammunition.svg-d848c880b5237d0f2a365744a22227d8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/ammunition.svg" +dest_files=["res://.godot/imported/ammunition.svg-d848c880b5237d0f2a365744a22227d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/anchor.svg b/src/resources/icons/at-icons/anchor.svg new file mode 100644 index 00000000..800ec443 --- /dev/null +++ b/src/resources/icons/at-icons/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/anchor.svg.import b/src/resources/icons/at-icons/anchor.svg.import new file mode 100644 index 00000000..676443cb --- /dev/null +++ b/src/resources/icons/at-icons/anchor.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brvtp3tseg5gf" +path="res://.godot/imported/anchor.svg-5afe2ae2f945d13ae3fffb872b8ed1b5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/anchor.svg" +dest_files=["res://.godot/imported/anchor.svg-5afe2ae2f945d13ae3fffb872b8ed1b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/angle.svg b/src/resources/icons/at-icons/angle.svg new file mode 100644 index 00000000..a5e65ecc --- /dev/null +++ b/src/resources/icons/at-icons/angle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/angle.svg.import b/src/resources/icons/at-icons/angle.svg.import new file mode 100644 index 00000000..a5195751 --- /dev/null +++ b/src/resources/icons/at-icons/angle.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8smjhx7hgxmf" +path="res://.godot/imported/angle.svg-248d69a490be7d172e7d5267817330f7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/angle.svg" +dest_files=["res://.godot/imported/angle.svg-248d69a490be7d172e7d5267817330f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/angry_face.svg b/src/resources/icons/at-icons/angry_face.svg new file mode 100644 index 00000000..c187362b --- /dev/null +++ b/src/resources/icons/at-icons/angry_face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/angry_face.svg.import b/src/resources/icons/at-icons/angry_face.svg.import new file mode 100644 index 00000000..74642787 --- /dev/null +++ b/src/resources/icons/at-icons/angry_face.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rdjy3tikypn6" +path="res://.godot/imported/angry_face.svg-1107789a10b7425c425c2f31ad2754e9.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/angry_face.svg" +dest_files=["res://.godot/imported/angry_face.svg-1107789a10b7425c425c2f31ad2754e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/apple.svg b/src/resources/icons/at-icons/apple.svg new file mode 100644 index 00000000..f32daa49 --- /dev/null +++ b/src/resources/icons/at-icons/apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/apple.svg.import b/src/resources/icons/at-icons/apple.svg.import new file mode 100644 index 00000000..c646cfa1 --- /dev/null +++ b/src/resources/icons/at-icons/apple.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb3t43egxgsbu" +path="res://.godot/imported/apple.svg-b92e4f00402bb1f296a9e644e7c6f8b5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/apple.svg" +dest_files=["res://.godot/imported/apple.svg-b92e4f00402bb1f296a9e644e7c6f8b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/apple_eaten.svg b/src/resources/icons/at-icons/apple_eaten.svg new file mode 100644 index 00000000..d7d36194 --- /dev/null +++ b/src/resources/icons/at-icons/apple_eaten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/apple_eaten.svg.import b/src/resources/icons/at-icons/apple_eaten.svg.import new file mode 100644 index 00000000..e862aa1d --- /dev/null +++ b/src/resources/icons/at-icons/apple_eaten.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh14bads3rwg0" +path="res://.godot/imported/apple_eaten.svg-308801c077038de0bb75fa97e566c8c5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/apple_eaten.svg" +dest_files=["res://.godot/imported/apple_eaten.svg-308801c077038de0bb75fa97e566c8c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/archive.svg b/src/resources/icons/at-icons/archive.svg new file mode 100644 index 00000000..624060d2 --- /dev/null +++ b/src/resources/icons/at-icons/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/archive.svg.import b/src/resources/icons/at-icons/archive.svg.import new file mode 100644 index 00000000..bd33c501 --- /dev/null +++ b/src/resources/icons/at-icons/archive.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btqplk7fct0cg" +path="res://.godot/imported/archive.svg-56f7c9d84c8665ca655d3586f6909dd7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/archive.svg" +dest_files=["res://.godot/imported/archive.svg-56f7c9d84c8665ca655d3586f6909dd7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/archive_arrow_down.svg b/src/resources/icons/at-icons/archive_arrow_down.svg new file mode 100644 index 00000000..f77c079d --- /dev/null +++ b/src/resources/icons/at-icons/archive_arrow_down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/archive_arrow_down.svg.import b/src/resources/icons/at-icons/archive_arrow_down.svg.import new file mode 100644 index 00000000..5ea33497 --- /dev/null +++ b/src/resources/icons/at-icons/archive_arrow_down.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5p8k3m14wsse" +path="res://.godot/imported/archive_arrow_down.svg-8771ebdd0ad0e5fa1fb0cb6dbc1c2998.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/archive_arrow_down.svg" +dest_files=["res://.godot/imported/archive_arrow_down.svg-8771ebdd0ad0e5fa1fb0cb6dbc1c2998.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/area.svg b/src/resources/icons/at-icons/area.svg new file mode 100644 index 00000000..c80f5bbf --- /dev/null +++ b/src/resources/icons/at-icons/area.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/area.svg.import b/src/resources/icons/at-icons/area.svg.import new file mode 100644 index 00000000..f803dd23 --- /dev/null +++ b/src/resources/icons/at-icons/area.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daika5br8vibl" +path="res://.godot/imported/area.svg-06b7270d888b8bb1afbb1bc34114fc98.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/area.svg" +dest_files=["res://.godot/imported/area.svg-06b7270d888b8bb1afbb1bc34114fc98.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_axes.svg b/src/resources/icons/at-icons/arrow_axes.svg new file mode 100644 index 00000000..f069c21d --- /dev/null +++ b/src/resources/icons/at-icons/arrow_axes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_axes.svg.import b/src/resources/icons/at-icons/arrow_axes.svg.import new file mode 100644 index 00000000..1ca0588b --- /dev/null +++ b/src/resources/icons/at-icons/arrow_axes.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boghheyoneo3j" +path="res://.godot/imported/arrow_axes.svg-524ff0a3313107cf4f6e371b5b458c67.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_axes.svg" +dest_files=["res://.godot/imported/arrow_axes.svg-524ff0a3313107cf4f6e371b5b458c67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_clockwise.svg b/src/resources/icons/at-icons/arrow_clockwise.svg new file mode 100644 index 00000000..5af14f45 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_clockwise.svg.import b/src/resources/icons/at-icons/arrow_clockwise.svg.import new file mode 100644 index 00000000..4a32bd09 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_clockwise.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg7tq65e4ujj4" +path="res://.godot/imported/arrow_clockwise.svg-87db26f60b4c5e10fbb0d7e206a33c22.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_clockwise.svg" +dest_files=["res://.godot/imported/arrow_clockwise.svg-87db26f60b4c5e10fbb0d7e206a33c22.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_counterclockwise.svg b/src/resources/icons/at-icons/arrow_counterclockwise.svg new file mode 100644 index 00000000..5677bf7c --- /dev/null +++ b/src/resources/icons/at-icons/arrow_counterclockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_counterclockwise.svg.import b/src/resources/icons/at-icons/arrow_counterclockwise.svg.import new file mode 100644 index 00000000..ba6668fe --- /dev/null +++ b/src/resources/icons/at-icons/arrow_counterclockwise.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dakpo2wi68qu5" +path="res://.godot/imported/arrow_counterclockwise.svg-2bf8ca950d2732a9feb877307529f59a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_counterclockwise.svg" +dest_files=["res://.godot/imported/arrow_counterclockwise.svg-2bf8ca950d2732a9feb877307529f59a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_cross.svg b/src/resources/icons/at-icons/arrow_cross.svg new file mode 100644 index 00000000..4290543b --- /dev/null +++ b/src/resources/icons/at-icons/arrow_cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_cross.svg.import b/src/resources/icons/at-icons/arrow_cross.svg.import new file mode 100644 index 00000000..c5a39b16 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_cross.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chu2eigixgnm3" +path="res://.godot/imported/arrow_cross.svg-209ab1e81d68a60af26cda5ff3e65a68.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_cross.svg" +dest_files=["res://.godot/imported/arrow_cross.svg-209ab1e81d68a60af26cda5ff3e65a68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_double_diagonal.svg b/src/resources/icons/at-icons/arrow_double_diagonal.svg new file mode 100644 index 00000000..e8dbd32b --- /dev/null +++ b/src/resources/icons/at-icons/arrow_double_diagonal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_double_diagonal.svg.import b/src/resources/icons/at-icons/arrow_double_diagonal.svg.import new file mode 100644 index 00000000..73c87f79 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_double_diagonal.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doggyv28a7wte" +path="res://.godot/imported/arrow_double_diagonal.svg-776464966cfa7bfb8264568d5c9b430e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_double_diagonal.svg" +dest_files=["res://.godot/imported/arrow_double_diagonal.svg-776464966cfa7bfb8264568d5c9b430e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_double_diagonal_reverse.svg b/src/resources/icons/at-icons/arrow_double_diagonal_reverse.svg new file mode 100644 index 00000000..7471f823 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_double_diagonal_reverse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_double_diagonal_reverse.svg.import b/src/resources/icons/at-icons/arrow_double_diagonal_reverse.svg.import new file mode 100644 index 00000000..2ed9cf23 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_double_diagonal_reverse.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlcj8as6jih6c" +path="res://.godot/imported/arrow_double_diagonal_reverse.svg-0955fff5f0cdfe03d4f8c1f1fcbdb15a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_double_diagonal_reverse.svg" +dest_files=["res://.godot/imported/arrow_double_diagonal_reverse.svg-0955fff5f0cdfe03d4f8c1f1fcbdb15a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_double_horizontal.svg b/src/resources/icons/at-icons/arrow_double_horizontal.svg new file mode 100644 index 00000000..3c570c91 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_double_horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_double_horizontal.svg.import b/src/resources/icons/at-icons/arrow_double_horizontal.svg.import new file mode 100644 index 00000000..a93deca7 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_double_horizontal.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0tm4nonaj0gk" +path="res://.godot/imported/arrow_double_horizontal.svg-dfb6d702cd540190d3059724548d819a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_double_horizontal.svg" +dest_files=["res://.godot/imported/arrow_double_horizontal.svg-dfb6d702cd540190d3059724548d819a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_double_vertical.svg b/src/resources/icons/at-icons/arrow_double_vertical.svg new file mode 100644 index 00000000..0bf75a41 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_double_vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_double_vertical.svg.import b/src/resources/icons/at-icons/arrow_double_vertical.svg.import new file mode 100644 index 00000000..c1c24045 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_double_vertical.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp2jj215xpr27" +path="res://.godot/imported/arrow_double_vertical.svg-df468b1871f125d02667691b7af8af76.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_double_vertical.svg" +dest_files=["res://.godot/imported/arrow_double_vertical.svg-df468b1871f125d02667691b7af8af76.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_down.svg b/src/resources/icons/at-icons/arrow_down.svg new file mode 100644 index 00000000..4c2aea21 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_down.svg.import b/src/resources/icons/at-icons/arrow_down.svg.import new file mode 100644 index 00000000..a58d5d5a --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cst3exr7621tn" +path="res://.godot/imported/arrow_down.svg-2f78f6bc1fe7212e82db27d6a0381c4d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_down.svg" +dest_files=["res://.godot/imported/arrow_down.svg-2f78f6bc1fe7212e82db27d6a0381c4d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_down_arrow_up.svg b/src/resources/icons/at-icons/arrow_down_arrow_up.svg new file mode 100644 index 00000000..9c2c0b3b --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_arrow_up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_down_arrow_up.svg.import b/src/resources/icons/at-icons/arrow_down_arrow_up.svg.import new file mode 100644 index 00000000..487a249e --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_arrow_up.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cquxyugq7lpqm" +path="res://.godot/imported/arrow_down_arrow_up.svg-fa74a9d8e52c02d42cefde773c25e24b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_down_arrow_up.svg" +dest_files=["res://.godot/imported/arrow_down_arrow_up.svg-fa74a9d8e52c02d42cefde773c25e24b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_down_from_line.svg b/src/resources/icons/at-icons/arrow_down_from_line.svg new file mode 100644 index 00000000..057d8347 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_from_line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_down_from_line.svg.import b/src/resources/icons/at-icons/arrow_down_from_line.svg.import new file mode 100644 index 00000000..53450e1f --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_from_line.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0havxokkfp0q" +path="res://.godot/imported/arrow_down_from_line.svg-79628847d4824d483b42b8bb3d168999.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_down_from_line.svg" +dest_files=["res://.godot/imported/arrow_down_from_line.svg-79628847d4824d483b42b8bb3d168999.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_down_left.svg b/src/resources/icons/at-icons/arrow_down_left.svg new file mode 100644 index 00000000..0e66c80b --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_down_left.svg.import b/src/resources/icons/at-icons/arrow_down_left.svg.import new file mode 100644 index 00000000..bb0fd862 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_left.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1svqdx2lx5fg" +path="res://.godot/imported/arrow_down_left.svg-e9be246e9f4baddbbecdda1dfd86f908.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_down_left.svg" +dest_files=["res://.godot/imported/arrow_down_left.svg-e9be246e9f4baddbbecdda1dfd86f908.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_down_right.svg b/src/resources/icons/at-icons/arrow_down_right.svg new file mode 100644 index 00000000..f8feff24 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_down_right.svg.import b/src/resources/icons/at-icons/arrow_down_right.svg.import new file mode 100644 index 00000000..e934da79 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_right.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://06mc7qrpkw3y" +path="res://.godot/imported/arrow_down_right.svg-94368fba264f029014437ce18bab2404.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_down_right.svg" +dest_files=["res://.godot/imported/arrow_down_right.svg-94368fba264f029014437ce18bab2404.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_down_to_bracket.svg b/src/resources/icons/at-icons/arrow_down_to_bracket.svg new file mode 100644 index 00000000..47db676e --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_to_bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_down_to_bracket.svg.import b/src/resources/icons/at-icons/arrow_down_to_bracket.svg.import new file mode 100644 index 00000000..5f47c8c7 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_to_bracket.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca3q0exoaimot" +path="res://.godot/imported/arrow_down_to_bracket.svg-564526a70b04d612e56d579011718ca4.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_down_to_bracket.svg" +dest_files=["res://.godot/imported/arrow_down_to_bracket.svg-564526a70b04d612e56d579011718ca4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_down_to_line.svg b/src/resources/icons/at-icons/arrow_down_to_line.svg new file mode 100644 index 00000000..eb7cd4ef --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_to_line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_down_to_line.svg.import b/src/resources/icons/at-icons/arrow_down_to_line.svg.import new file mode 100644 index 00000000..40d502db --- /dev/null +++ b/src/resources/icons/at-icons/arrow_down_to_line.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6irwrj1ihi24" +path="res://.godot/imported/arrow_down_to_line.svg-6f3be6866a575cd160913956c31a4463.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_down_to_line.svg" +dest_files=["res://.godot/imported/arrow_down_to_line.svg-6f3be6866a575cd160913956c31a4463.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_left.svg b/src/resources/icons/at-icons/arrow_left.svg new file mode 100644 index 00000000..b450ccc3 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_left.svg.import b/src/resources/icons/at-icons/arrow_left.svg.import new file mode 100644 index 00000000..7b7efb58 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_left.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwir6q5lbk0gs" +path="res://.godot/imported/arrow_left.svg-fbcfb418e3a8f9059382b463921cc261.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_left.svg" +dest_files=["res://.godot/imported/arrow_left.svg-fbcfb418e3a8f9059382b463921cc261.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_left_from_line.svg b/src/resources/icons/at-icons/arrow_left_from_line.svg new file mode 100644 index 00000000..dd052b56 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_left_from_line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_left_from_line.svg.import b/src/resources/icons/at-icons/arrow_left_from_line.svg.import new file mode 100644 index 00000000..73b1507a --- /dev/null +++ b/src/resources/icons/at-icons/arrow_left_from_line.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de3gx5u8s3wgw" +path="res://.godot/imported/arrow_left_from_line.svg-3e6fd8559e1489948d46306256117487.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_left_from_line.svg" +dest_files=["res://.godot/imported/arrow_left_from_line.svg-3e6fd8559e1489948d46306256117487.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_left_to_line.svg b/src/resources/icons/at-icons/arrow_left_to_line.svg new file mode 100644 index 00000000..7586b643 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_left_to_line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_left_to_line.svg.import b/src/resources/icons/at-icons/arrow_left_to_line.svg.import new file mode 100644 index 00000000..8d24274d --- /dev/null +++ b/src/resources/icons/at-icons/arrow_left_to_line.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brgu0fvsr832c" +path="res://.godot/imported/arrow_left_to_line.svg-e1cbf82e58d2a3b029014571baac3b36.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_left_to_line.svg" +dest_files=["res://.godot/imported/arrow_left_to_line.svg-e1cbf82e58d2a3b029014571baac3b36.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_local_axes.svg b/src/resources/icons/at-icons/arrow_local_axes.svg new file mode 100644 index 00000000..f43437d8 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_local_axes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_local_axes.svg.import b/src/resources/icons/at-icons/arrow_local_axes.svg.import new file mode 100644 index 00000000..977b4578 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_local_axes.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xodye1a3aevo" +path="res://.godot/imported/arrow_local_axes.svg-c72f020de9108b1a38d543ad95a0223d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_local_axes.svg" +dest_files=["res://.godot/imported/arrow_local_axes.svg-c72f020de9108b1a38d543ad95a0223d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_merge.svg b/src/resources/icons/at-icons/arrow_merge.svg new file mode 100644 index 00000000..0d3d1678 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_merge.svg.import b/src/resources/icons/at-icons/arrow_merge.svg.import new file mode 100644 index 00000000..7d1f00f8 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_merge.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b64jye0v8oq4w" +path="res://.godot/imported/arrow_merge.svg-08add5494fd303909e09476645658545.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_merge.svg" +dest_files=["res://.godot/imported/arrow_merge.svg-08add5494fd303909e09476645658545.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_projectile.svg b/src/resources/icons/at-icons/arrow_projectile.svg new file mode 100644 index 00000000..fad9c283 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_projectile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_projectile.svg.import b/src/resources/icons/at-icons/arrow_projectile.svg.import new file mode 100644 index 00000000..f27f4296 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_projectile.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coccle5ixe83m" +path="res://.godot/imported/arrow_projectile.svg-8a83bdc4e37e7b506da261daf728ffb7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_projectile.svg" +dest_files=["res://.godot/imported/arrow_projectile.svg-8a83bdc4e37e7b506da261daf728ffb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_right.svg b/src/resources/icons/at-icons/arrow_right.svg new file mode 100644 index 00000000..f05f9017 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_right.svg.import b/src/resources/icons/at-icons/arrow_right.svg.import new file mode 100644 index 00000000..daa0bcae --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmbhu2ahqnvt4" +path="res://.godot/imported/arrow_right.svg-cc689e82ead7ceadf31feed6872c280e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_right.svg" +dest_files=["res://.godot/imported/arrow_right.svg-cc689e82ead7ceadf31feed6872c280e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_right_arrow_left.svg b/src/resources/icons/at-icons/arrow_right_arrow_left.svg new file mode 100644 index 00000000..92df5817 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right_arrow_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_right_arrow_left.svg.import b/src/resources/icons/at-icons/arrow_right_arrow_left.svg.import new file mode 100644 index 00000000..f127f4c6 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right_arrow_left.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsoyx5pe5itu2" +path="res://.godot/imported/arrow_right_arrow_left.svg-5424e15cd13e7a2f94cc6bf344d9148d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_right_arrow_left.svg" +dest_files=["res://.godot/imported/arrow_right_arrow_left.svg-5424e15cd13e7a2f94cc6bf344d9148d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_right_from_bracket.svg b/src/resources/icons/at-icons/arrow_right_from_bracket.svg new file mode 100644 index 00000000..06d0309a --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right_from_bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_right_from_bracket.svg.import b/src/resources/icons/at-icons/arrow_right_from_bracket.svg.import new file mode 100644 index 00000000..05b630d1 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right_from_bracket.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dthkxdkyjvhdv" +path="res://.godot/imported/arrow_right_from_bracket.svg-bd784600c9d184c5a3f1f9517c2d15b7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_right_from_bracket.svg" +dest_files=["res://.godot/imported/arrow_right_from_bracket.svg-bd784600c9d184c5a3f1f9517c2d15b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_right_from_line.svg b/src/resources/icons/at-icons/arrow_right_from_line.svg new file mode 100644 index 00000000..0953b084 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right_from_line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_right_from_line.svg.import b/src/resources/icons/at-icons/arrow_right_from_line.svg.import new file mode 100644 index 00000000..58c7330c --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right_from_line.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpsiyouailcdn" +path="res://.godot/imported/arrow_right_from_line.svg-0fc3a2c6ab58cc7c99b224c566d9dbbf.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_right_from_line.svg" +dest_files=["res://.godot/imported/arrow_right_from_line.svg-0fc3a2c6ab58cc7c99b224c566d9dbbf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_right_to_bracket.svg b/src/resources/icons/at-icons/arrow_right_to_bracket.svg new file mode 100644 index 00000000..91fd3f9e --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right_to_bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_right_to_bracket.svg.import b/src/resources/icons/at-icons/arrow_right_to_bracket.svg.import new file mode 100644 index 00000000..d4c7336b --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right_to_bracket.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i323r3ahtjlh" +path="res://.godot/imported/arrow_right_to_bracket.svg-bb26e7c3fa4063bc3434fa3b22c3cf63.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_right_to_bracket.svg" +dest_files=["res://.godot/imported/arrow_right_to_bracket.svg-bb26e7c3fa4063bc3434fa3b22c3cf63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_right_to_line.svg b/src/resources/icons/at-icons/arrow_right_to_line.svg new file mode 100644 index 00000000..2dd150e5 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right_to_line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_right_to_line.svg.import b/src/resources/icons/at-icons/arrow_right_to_line.svg.import new file mode 100644 index 00000000..725835cf --- /dev/null +++ b/src/resources/icons/at-icons/arrow_right_to_line.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsar3lpdp8enc" +path="res://.godot/imported/arrow_right_to_line.svg-477fe312fac66dd88077cf6225e6ba0b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_right_to_line.svg" +dest_files=["res://.godot/imported/arrow_right_to_line.svg-477fe312fac66dd88077cf6225e6ba0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_shuffle.svg b/src/resources/icons/at-icons/arrow_shuffle.svg new file mode 100644 index 00000000..092c51b2 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_shuffle.svg.import b/src/resources/icons/at-icons/arrow_shuffle.svg.import new file mode 100644 index 00000000..50d01c41 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_shuffle.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg86tsmypmawj" +path="res://.godot/imported/arrow_shuffle.svg-b098833f8695e692544f17b9798853f5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_shuffle.svg" +dest_files=["res://.godot/imported/arrow_shuffle.svg-b098833f8695e692544f17b9798853f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_split.svg b/src/resources/icons/at-icons/arrow_split.svg new file mode 100644 index 00000000..be3e51f1 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_split.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_split.svg.import b/src/resources/icons/at-icons/arrow_split.svg.import new file mode 100644 index 00000000..78fc667d --- /dev/null +++ b/src/resources/icons/at-icons/arrow_split.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0oeogsr3g5cj" +path="res://.godot/imported/arrow_split.svg-973152495a5e2743ce488e381bf8be07.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_split.svg" +dest_files=["res://.godot/imported/arrow_split.svg-973152495a5e2743ce488e381bf8be07.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_turn_down_left.svg b/src/resources/icons/at-icons/arrow_turn_down_left.svg new file mode 100644 index 00000000..924fd17b --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_down_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_turn_down_left.svg.import b/src/resources/icons/at-icons/arrow_turn_down_left.svg.import new file mode 100644 index 00000000..50871de4 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_down_left.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm118w1px05yw" +path="res://.godot/imported/arrow_turn_down_left.svg-25f915fe452bd09a90cfcb309f876a42.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_turn_down_left.svg" +dest_files=["res://.godot/imported/arrow_turn_down_left.svg-25f915fe452bd09a90cfcb309f876a42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_turn_down_right.svg b/src/resources/icons/at-icons/arrow_turn_down_right.svg new file mode 100644 index 00000000..da045fc9 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_down_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_turn_down_right.svg.import b/src/resources/icons/at-icons/arrow_turn_down_right.svg.import new file mode 100644 index 00000000..7afa5167 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_down_right.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ptwr16nk2ibv" +path="res://.godot/imported/arrow_turn_down_right.svg-f9ce0278a919bec24f6796bb72af0904.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_turn_down_right.svg" +dest_files=["res://.godot/imported/arrow_turn_down_right.svg-f9ce0278a919bec24f6796bb72af0904.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_turn_left_down.svg b/src/resources/icons/at-icons/arrow_turn_left_down.svg new file mode 100644 index 00000000..a6fffcc8 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_left_down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_turn_left_down.svg.import b/src/resources/icons/at-icons/arrow_turn_left_down.svg.import new file mode 100644 index 00000000..0890dafc --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_left_down.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2wn87ewp2cee" +path="res://.godot/imported/arrow_turn_left_down.svg-ab09120731ea2a84d143cba9f00f4347.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_turn_left_down.svg" +dest_files=["res://.godot/imported/arrow_turn_left_down.svg-ab09120731ea2a84d143cba9f00f4347.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_turn_left_up.svg b/src/resources/icons/at-icons/arrow_turn_left_up.svg new file mode 100644 index 00000000..efa85d45 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_left_up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_turn_left_up.svg.import b/src/resources/icons/at-icons/arrow_turn_left_up.svg.import new file mode 100644 index 00000000..47928c89 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_left_up.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgacqw6jkgxsd" +path="res://.godot/imported/arrow_turn_left_up.svg-530a2c9e6af04c39c39d1dee0960b7a5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_turn_left_up.svg" +dest_files=["res://.godot/imported/arrow_turn_left_up.svg-530a2c9e6af04c39c39d1dee0960b7a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_turn_right_down.svg b/src/resources/icons/at-icons/arrow_turn_right_down.svg new file mode 100644 index 00000000..ce93f19c --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_right_down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_turn_right_down.svg.import b/src/resources/icons/at-icons/arrow_turn_right_down.svg.import new file mode 100644 index 00000000..79496dee --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_right_down.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg8f2jardla6k" +path="res://.godot/imported/arrow_turn_right_down.svg-e94844adf96927c3fc95afa87421b45c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_turn_right_down.svg" +dest_files=["res://.godot/imported/arrow_turn_right_down.svg-e94844adf96927c3fc95afa87421b45c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_turn_right_up.svg b/src/resources/icons/at-icons/arrow_turn_right_up.svg new file mode 100644 index 00000000..708b27bc --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_right_up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_turn_right_up.svg.import b/src/resources/icons/at-icons/arrow_turn_right_up.svg.import new file mode 100644 index 00000000..f98f61f4 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_right_up.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djixumukg05xm" +path="res://.godot/imported/arrow_turn_right_up.svg-9a91a3c2f4525e142822cd9b1af2000f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_turn_right_up.svg" +dest_files=["res://.godot/imported/arrow_turn_right_up.svg-9a91a3c2f4525e142822cd9b1af2000f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_turn_up_left.svg b/src/resources/icons/at-icons/arrow_turn_up_left.svg new file mode 100644 index 00000000..e2638c05 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_up_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_turn_up_left.svg.import b/src/resources/icons/at-icons/arrow_turn_up_left.svg.import new file mode 100644 index 00000000..aa223e78 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_up_left.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fxxvah507hmf" +path="res://.godot/imported/arrow_turn_up_left.svg-a16cef2cb617b88d69a003517530cba2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_turn_up_left.svg" +dest_files=["res://.godot/imported/arrow_turn_up_left.svg-a16cef2cb617b88d69a003517530cba2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_turn_up_right.svg b/src/resources/icons/at-icons/arrow_turn_up_right.svg new file mode 100644 index 00000000..4f06571b --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_up_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_turn_up_right.svg.import b/src/resources/icons/at-icons/arrow_turn_up_right.svg.import new file mode 100644 index 00000000..a554a8cc --- /dev/null +++ b/src/resources/icons/at-icons/arrow_turn_up_right.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkylp2uxi1pn" +path="res://.godot/imported/arrow_turn_up_right.svg-6132404c4e744ff440d71faa86a0c2f3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_turn_up_right.svg" +dest_files=["res://.godot/imported/arrow_turn_up_right.svg-6132404c4e744ff440d71faa86a0c2f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_up.svg b/src/resources/icons/at-icons/arrow_up.svg new file mode 100644 index 00000000..bb5d2d8c --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_up.svg.import b/src/resources/icons/at-icons/arrow_up.svg.import new file mode 100644 index 00000000..4df63380 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6f2cr2chrgqb" +path="res://.godot/imported/arrow_up.svg-cddc3d1cf44c5ab104f7e245a5493326.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_up.svg" +dest_files=["res://.godot/imported/arrow_up.svg-cddc3d1cf44c5ab104f7e245a5493326.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_up_from_bracket.svg b/src/resources/icons/at-icons/arrow_up_from_bracket.svg new file mode 100644 index 00000000..5de56ac8 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up_from_bracket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_up_from_bracket.svg.import b/src/resources/icons/at-icons/arrow_up_from_bracket.svg.import new file mode 100644 index 00000000..921b96b7 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up_from_bracket.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bokxfsrd0232u" +path="res://.godot/imported/arrow_up_from_bracket.svg-9392b4e96bd57b1fd0bdc9915be0ab34.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_up_from_bracket.svg" +dest_files=["res://.godot/imported/arrow_up_from_bracket.svg-9392b4e96bd57b1fd0bdc9915be0ab34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_up_from_line.svg b/src/resources/icons/at-icons/arrow_up_from_line.svg new file mode 100644 index 00000000..45f2852d --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up_from_line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_up_from_line.svg.import b/src/resources/icons/at-icons/arrow_up_from_line.svg.import new file mode 100644 index 00000000..687639c7 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up_from_line.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2l0bwg4o45xu" +path="res://.godot/imported/arrow_up_from_line.svg-1ab7922ee2117de101dc98408eeac0d0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_up_from_line.svg" +dest_files=["res://.godot/imported/arrow_up_from_line.svg-1ab7922ee2117de101dc98408eeac0d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_up_left.svg b/src/resources/icons/at-icons/arrow_up_left.svg new file mode 100644 index 00000000..3b93b0f5 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_up_left.svg.import b/src/resources/icons/at-icons/arrow_up_left.svg.import new file mode 100644 index 00000000..c46251a2 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up_left.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbf67qjw7w4qb" +path="res://.godot/imported/arrow_up_left.svg-4241f92f3eeeb716d94da25a1574d301.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_up_left.svg" +dest_files=["res://.godot/imported/arrow_up_left.svg-4241f92f3eeeb716d94da25a1574d301.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_up_right.svg b/src/resources/icons/at-icons/arrow_up_right.svg new file mode 100644 index 00000000..a4c702f0 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_up_right.svg.import b/src/resources/icons/at-icons/arrow_up_right.svg.import new file mode 100644 index 00000000..5b4dc19c --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up_right.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh7jg0h8nnp3q" +path="res://.godot/imported/arrow_up_right.svg-24994abf792a39023110f3eef2ba0fc6.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_up_right.svg" +dest_files=["res://.godot/imported/arrow_up_right.svg-24994abf792a39023110f3eef2ba0fc6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_up_to_line.svg b/src/resources/icons/at-icons/arrow_up_to_line.svg new file mode 100644 index 00000000..51f77fdc --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up_to_line.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_up_to_line.svg.import b/src/resources/icons/at-icons/arrow_up_to_line.svg.import new file mode 100644 index 00000000..c0eae7c0 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_up_to_line.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r0v71oe3kjf6" +path="res://.godot/imported/arrow_up_to_line.svg-fcb5f166b641e57fbf97626e0bb87fa3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_up_to_line.svg" +dest_files=["res://.godot/imported/arrow_up_to_line.svg-fcb5f166b641e57fbf97626e0bb87fa3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_uturn_down_left.svg b/src/resources/icons/at-icons/arrow_uturn_down_left.svg new file mode 100644 index 00000000..ccfba40e --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_down_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_uturn_down_left.svg.import b/src/resources/icons/at-icons/arrow_uturn_down_left.svg.import new file mode 100644 index 00000000..d73575ac --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_down_left.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0ma02vbesxs5" +path="res://.godot/imported/arrow_uturn_down_left.svg-b455a78579be927b3ffd3ee194a28a88.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_uturn_down_left.svg" +dest_files=["res://.godot/imported/arrow_uturn_down_left.svg-b455a78579be927b3ffd3ee194a28a88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_uturn_down_right.svg b/src/resources/icons/at-icons/arrow_uturn_down_right.svg new file mode 100644 index 00000000..14956554 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_down_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_uturn_down_right.svg.import b/src/resources/icons/at-icons/arrow_uturn_down_right.svg.import new file mode 100644 index 00000000..d90c54e9 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_down_right.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5wx8r65oja6m" +path="res://.godot/imported/arrow_uturn_down_right.svg-0b39daed658988f466d54b9590b194f4.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_uturn_down_right.svg" +dest_files=["res://.godot/imported/arrow_uturn_down_right.svg-0b39daed658988f466d54b9590b194f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_uturn_left_down.svg b/src/resources/icons/at-icons/arrow_uturn_left_down.svg new file mode 100644 index 00000000..7ef1b990 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_left_down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_uturn_left_down.svg.import b/src/resources/icons/at-icons/arrow_uturn_left_down.svg.import new file mode 100644 index 00000000..27b46331 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_left_down.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb3ixyghpqqso" +path="res://.godot/imported/arrow_uturn_left_down.svg-6b77ae05531a6ea29c8619c15ec8419c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_uturn_left_down.svg" +dest_files=["res://.godot/imported/arrow_uturn_left_down.svg-6b77ae05531a6ea29c8619c15ec8419c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_uturn_left_up.svg b/src/resources/icons/at-icons/arrow_uturn_left_up.svg new file mode 100644 index 00000000..c34b8ce6 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_left_up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_uturn_left_up.svg.import b/src/resources/icons/at-icons/arrow_uturn_left_up.svg.import new file mode 100644 index 00000000..6a037b28 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_left_up.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chy0d2rq15ljl" +path="res://.godot/imported/arrow_uturn_left_up.svg-8b68f6ff420745f141badee11ea0aa02.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_uturn_left_up.svg" +dest_files=["res://.godot/imported/arrow_uturn_left_up.svg-8b68f6ff420745f141badee11ea0aa02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_uturn_right_down.svg b/src/resources/icons/at-icons/arrow_uturn_right_down.svg new file mode 100644 index 00000000..bc8fe10d --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_right_down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_uturn_right_down.svg.import b/src/resources/icons/at-icons/arrow_uturn_right_down.svg.import new file mode 100644 index 00000000..51e9944b --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_right_down.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dybupbv1ftqcx" +path="res://.godot/imported/arrow_uturn_right_down.svg-a0d73d19d2a1f6a5c003776091abf01e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_uturn_right_down.svg" +dest_files=["res://.godot/imported/arrow_uturn_right_down.svg-a0d73d19d2a1f6a5c003776091abf01e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_uturn_right_up.svg b/src/resources/icons/at-icons/arrow_uturn_right_up.svg new file mode 100644 index 00000000..69e78d7c --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_right_up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_uturn_right_up.svg.import b/src/resources/icons/at-icons/arrow_uturn_right_up.svg.import new file mode 100644 index 00000000..35710afb --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_right_up.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qcp3idaqfrhs" +path="res://.godot/imported/arrow_uturn_right_up.svg-6e05509479ac2cd34708722931fec1ae.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_uturn_right_up.svg" +dest_files=["res://.godot/imported/arrow_uturn_right_up.svg-6e05509479ac2cd34708722931fec1ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_uturn_up_left.svg b/src/resources/icons/at-icons/arrow_uturn_up_left.svg new file mode 100644 index 00000000..e67e0714 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_up_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_uturn_up_left.svg.import b/src/resources/icons/at-icons/arrow_uturn_up_left.svg.import new file mode 100644 index 00000000..89510a04 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_up_left.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs3xhs18nik7e" +path="res://.godot/imported/arrow_uturn_up_left.svg-6e5aa3ae61e97eb81bc0df3da2235adc.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_uturn_up_left.svg" +dest_files=["res://.godot/imported/arrow_uturn_up_left.svg-6e5aa3ae61e97eb81bc0df3da2235adc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_uturn_up_right.svg b/src/resources/icons/at-icons/arrow_uturn_up_right.svg new file mode 100644 index 00000000..593a6201 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_up_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_uturn_up_right.svg.import b/src/resources/icons/at-icons/arrow_uturn_up_right.svg.import new file mode 100644 index 00000000..49600a79 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_uturn_up_right.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kh3sewyysvch" +path="res://.godot/imported/arrow_uturn_up_right.svg-f3e77d9e2471582332c186d6e5679a2c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_uturn_up_right.svg" +dest_files=["res://.godot/imported/arrow_uturn_up_right.svg-f3e77d9e2471582332c186d6e5679a2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrow_x.svg b/src/resources/icons/at-icons/arrow_x.svg new file mode 100644 index 00000000..62fb4acb --- /dev/null +++ b/src/resources/icons/at-icons/arrow_x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrow_x.svg.import b/src/resources/icons/at-icons/arrow_x.svg.import new file mode 100644 index 00000000..32f675b6 --- /dev/null +++ b/src/resources/icons/at-icons/arrow_x.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8iy6h7akyxx0" +path="res://.godot/imported/arrow_x.svg-12dab06660f803e681c84f74bc560920.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrow_x.svg" +dest_files=["res://.godot/imported/arrow_x.svg-12dab06660f803e681c84f74bc560920.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrows_clockwise.svg b/src/resources/icons/at-icons/arrows_clockwise.svg new file mode 100644 index 00000000..575208fb --- /dev/null +++ b/src/resources/icons/at-icons/arrows_clockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrows_clockwise.svg.import b/src/resources/icons/at-icons/arrows_clockwise.svg.import new file mode 100644 index 00000000..500932f2 --- /dev/null +++ b/src/resources/icons/at-icons/arrows_clockwise.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfbqrifw7rnvr" +path="res://.godot/imported/arrows_clockwise.svg-67df318a2aab2b67a5c0caa66de9c9c9.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrows_clockwise.svg" +dest_files=["res://.godot/imported/arrows_clockwise.svg-67df318a2aab2b67a5c0caa66de9c9c9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/arrows_counterclockwise.svg b/src/resources/icons/at-icons/arrows_counterclockwise.svg new file mode 100644 index 00000000..7212443c --- /dev/null +++ b/src/resources/icons/at-icons/arrows_counterclockwise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/arrows_counterclockwise.svg.import b/src/resources/icons/at-icons/arrows_counterclockwise.svg.import new file mode 100644 index 00000000..0290a339 --- /dev/null +++ b/src/resources/icons/at-icons/arrows_counterclockwise.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cchehxlnhgbm3" +path="res://.godot/imported/arrows_counterclockwise.svg-3af708029713ad211d519c5a99f56c67.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/arrows_counterclockwise.svg" +dest_files=["res://.godot/imported/arrows_counterclockwise.svg-3af708029713ad211d519c5a99f56c67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/at.svg b/src/resources/icons/at-icons/at.svg new file mode 100644 index 00000000..8ec93ca7 --- /dev/null +++ b/src/resources/icons/at-icons/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/at.svg.import b/src/resources/icons/at-icons/at.svg.import new file mode 100644 index 00000000..357bb40d --- /dev/null +++ b/src/resources/icons/at-icons/at.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dilkyujh23yjg" +path="res://.godot/imported/at.svg-1a805c6b484985eeb2f7973755a1a8e8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/at.svg" +dest_files=["res://.godot/imported/at.svg-1a805c6b484985eeb2f7973755a1a8e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/atom.svg b/src/resources/icons/at-icons/atom.svg new file mode 100644 index 00000000..71d8f961 --- /dev/null +++ b/src/resources/icons/at-icons/atom.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/atom.svg.import b/src/resources/icons/at-icons/atom.svg.import new file mode 100644 index 00000000..de7e5b1e --- /dev/null +++ b/src/resources/icons/at-icons/atom.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwprdyhoy6s4r" +path="res://.godot/imported/atom.svg-ceb77e6122b5a94149bf88c8d902b5cf.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/atom.svg" +dest_files=["res://.godot/imported/atom.svg-ceb77e6122b5a94149bf88c8d902b5cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/axe.svg b/src/resources/icons/at-icons/axe.svg new file mode 100644 index 00000000..926706cc --- /dev/null +++ b/src/resources/icons/at-icons/axe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/axe.svg.import b/src/resources/icons/at-icons/axe.svg.import new file mode 100644 index 00000000..2497c28f --- /dev/null +++ b/src/resources/icons/at-icons/axe.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://54da3vyo23eh" +path="res://.godot/imported/axe.svg-d275b49cb44a51eb6050c141a9dfb330.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/axe.svg" +dest_files=["res://.godot/imported/axe.svg-d275b49cb44a51eb6050c141a9dfb330.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/backpack.svg b/src/resources/icons/at-icons/backpack.svg new file mode 100644 index 00000000..12205ff5 --- /dev/null +++ b/src/resources/icons/at-icons/backpack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/backpack.svg.import b/src/resources/icons/at-icons/backpack.svg.import new file mode 100644 index 00000000..4b6c4625 --- /dev/null +++ b/src/resources/icons/at-icons/backpack.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqyagygiol3d" +path="res://.godot/imported/backpack.svg-203aa3d1cf85eec962993ca39ae468ed.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/backpack.svg" +dest_files=["res://.godot/imported/backpack.svg-203aa3d1cf85eec962993ca39ae468ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/badge.svg b/src/resources/icons/at-icons/badge.svg new file mode 100644 index 00000000..68239958 --- /dev/null +++ b/src/resources/icons/at-icons/badge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/badge.svg.import b/src/resources/icons/at-icons/badge.svg.import new file mode 100644 index 00000000..eb1c949d --- /dev/null +++ b/src/resources/icons/at-icons/badge.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjoi1nyx4euar" +path="res://.godot/imported/badge.svg-5da700ac63ce3caa255d7a002ae33b3e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/badge.svg" +dest_files=["res://.godot/imported/badge.svg-5da700ac63ce3caa255d7a002ae33b3e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/balance.svg b/src/resources/icons/at-icons/balance.svg new file mode 100644 index 00000000..f0478e55 --- /dev/null +++ b/src/resources/icons/at-icons/balance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/balance.svg.import b/src/resources/icons/at-icons/balance.svg.import new file mode 100644 index 00000000..95343d52 --- /dev/null +++ b/src/resources/icons/at-icons/balance.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b23gm60lshthc" +path="res://.godot/imported/balance.svg-5c0407fe8f13566c20426006e49db4f3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/balance.svg" +dest_files=["res://.godot/imported/balance.svg-5c0407fe8f13566c20426006e49db4f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/ball_and_socket_joint.svg b/src/resources/icons/at-icons/ball_and_socket_joint.svg new file mode 100644 index 00000000..5ff01879 --- /dev/null +++ b/src/resources/icons/at-icons/ball_and_socket_joint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/ball_and_socket_joint.svg.import b/src/resources/icons/at-icons/ball_and_socket_joint.svg.import new file mode 100644 index 00000000..b84d18c6 --- /dev/null +++ b/src/resources/icons/at-icons/ball_and_socket_joint.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca0p7di6aev7b" +path="res://.godot/imported/ball_and_socket_joint.svg-649feea4af18b7c389f19cdd094a7619.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/ball_and_socket_joint.svg" +dest_files=["res://.godot/imported/ball_and_socket_joint.svg-649feea4af18b7c389f19cdd094a7619.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/balloon.svg b/src/resources/icons/at-icons/balloon.svg new file mode 100644 index 00000000..76f3934d --- /dev/null +++ b/src/resources/icons/at-icons/balloon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/balloon.svg.import b/src/resources/icons/at-icons/balloon.svg.import new file mode 100644 index 00000000..c84e0069 --- /dev/null +++ b/src/resources/icons/at-icons/balloon.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq2j7hvywwrjf" +path="res://.godot/imported/balloon.svg-f26b84514511ae239eaaf53f12ed66e4.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/balloon.svg" +dest_files=["res://.godot/imported/balloon.svg-f26b84514511ae239eaaf53f12ed66e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bandages.svg b/src/resources/icons/at-icons/bandages.svg new file mode 100644 index 00000000..f4ae2b2b --- /dev/null +++ b/src/resources/icons/at-icons/bandages.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bandages.svg.import b/src/resources/icons/at-icons/bandages.svg.import new file mode 100644 index 00000000..f11b2b1d --- /dev/null +++ b/src/resources/icons/at-icons/bandages.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj3bdvjptlj51" +path="res://.godot/imported/bandages.svg-d04bb7b5875ed410cb74f09c302b8561.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bandages.svg" +dest_files=["res://.godot/imported/bandages.svg-d04bb7b5875ed410cb74f09c302b8561.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/banner.svg b/src/resources/icons/at-icons/banner.svg new file mode 100644 index 00000000..a504707f --- /dev/null +++ b/src/resources/icons/at-icons/banner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/banner.svg.import b/src/resources/icons/at-icons/banner.svg.import new file mode 100644 index 00000000..f2afba7d --- /dev/null +++ b/src/resources/icons/at-icons/banner.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt3dnleiypo7e" +path="res://.godot/imported/banner.svg-6eba2e5ce34ae5cae4ba1806bfaac043.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/banner.svg" +dest_files=["res://.godot/imported/banner.svg-6eba2e5ce34ae5cae4ba1806bfaac043.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bar_graph.svg b/src/resources/icons/at-icons/bar_graph.svg new file mode 100644 index 00000000..592fbc9f --- /dev/null +++ b/src/resources/icons/at-icons/bar_graph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bar_graph.svg.import b/src/resources/icons/at-icons/bar_graph.svg.import new file mode 100644 index 00000000..08239280 --- /dev/null +++ b/src/resources/icons/at-icons/bar_graph.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxjgr5g4bufmw" +path="res://.godot/imported/bar_graph.svg-40a99c01e9cd1a15733fc6df67abc2c1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bar_graph.svg" +dest_files=["res://.godot/imported/bar_graph.svg-40a99c01e9cd1a15733fc6df67abc2c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/baseball.svg b/src/resources/icons/at-icons/baseball.svg new file mode 100644 index 00000000..6121031a --- /dev/null +++ b/src/resources/icons/at-icons/baseball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/baseball.svg.import b/src/resources/icons/at-icons/baseball.svg.import new file mode 100644 index 00000000..74cb89a9 --- /dev/null +++ b/src/resources/icons/at-icons/baseball.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://banqtodewd37w" +path="res://.godot/imported/baseball.svg-47a63c5e7330edfaddd80f24e96f22f0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/baseball.svg" +dest_files=["res://.godot/imported/baseball.svg-47a63c5e7330edfaddd80f24e96f22f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/baseball_bat.svg b/src/resources/icons/at-icons/baseball_bat.svg new file mode 100644 index 00000000..8fe62e9d --- /dev/null +++ b/src/resources/icons/at-icons/baseball_bat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/baseball_bat.svg.import b/src/resources/icons/at-icons/baseball_bat.svg.import new file mode 100644 index 00000000..14239c64 --- /dev/null +++ b/src/resources/icons/at-icons/baseball_bat.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clc35e2gevovn" +path="res://.godot/imported/baseball_bat.svg-3a309c6d73f648ab4d1a856c6a79948a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/baseball_bat.svg" +dest_files=["res://.godot/imported/baseball_bat.svg-3a309c6d73f648ab4d1a856c6a79948a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/basketball.svg b/src/resources/icons/at-icons/basketball.svg new file mode 100644 index 00000000..1fa92795 --- /dev/null +++ b/src/resources/icons/at-icons/basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/basketball.svg.import b/src/resources/icons/at-icons/basketball.svg.import new file mode 100644 index 00000000..3250b62b --- /dev/null +++ b/src/resources/icons/at-icons/basketball.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwsmac1ub441d" +path="res://.godot/imported/basketball.svg-ab91fa5ab534c6236cc0c926da442c00.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/basketball.svg" +dest_files=["res://.godot/imported/basketball.svg-ab91fa5ab534c6236cc0c926da442c00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/battery_empty.svg b/src/resources/icons/at-icons/battery_empty.svg new file mode 100644 index 00000000..d46db372 --- /dev/null +++ b/src/resources/icons/at-icons/battery_empty.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/battery_empty.svg.import b/src/resources/icons/at-icons/battery_empty.svg.import new file mode 100644 index 00000000..1f281261 --- /dev/null +++ b/src/resources/icons/at-icons/battery_empty.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj1nti4lslnsa" +path="res://.godot/imported/battery_empty.svg-1fe58a85c9f0384530f591e76b21cc3a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/battery_empty.svg" +dest_files=["res://.godot/imported/battery_empty.svg-1fe58a85c9f0384530f591e76b21cc3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/battery_full.svg b/src/resources/icons/at-icons/battery_full.svg new file mode 100644 index 00000000..cd57f31d --- /dev/null +++ b/src/resources/icons/at-icons/battery_full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/battery_full.svg.import b/src/resources/icons/at-icons/battery_full.svg.import new file mode 100644 index 00000000..fa0f62e9 --- /dev/null +++ b/src/resources/icons/at-icons/battery_full.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpmrqnnq73mbf" +path="res://.godot/imported/battery_full.svg-361cc0fb5cca927fbb64dd80aade6ba9.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/battery_full.svg" +dest_files=["res://.godot/imported/battery_full.svg-361cc0fb5cca927fbb64dd80aade6ba9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/battery_half.svg b/src/resources/icons/at-icons/battery_half.svg new file mode 100644 index 00000000..a9aa4a6e --- /dev/null +++ b/src/resources/icons/at-icons/battery_half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/battery_half.svg.import b/src/resources/icons/at-icons/battery_half.svg.import new file mode 100644 index 00000000..7b339905 --- /dev/null +++ b/src/resources/icons/at-icons/battery_half.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckkgy3bvvx7n" +path="res://.godot/imported/battery_half.svg-23bc1993af76fc3ee6a17f4aeb02651b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/battery_half.svg" +dest_files=["res://.godot/imported/battery_half.svg-23bc1993af76fc3ee6a17f4aeb02651b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/battery_high.svg b/src/resources/icons/at-icons/battery_high.svg new file mode 100644 index 00000000..2d3cd505 --- /dev/null +++ b/src/resources/icons/at-icons/battery_high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/battery_high.svg.import b/src/resources/icons/at-icons/battery_high.svg.import new file mode 100644 index 00000000..a9ab4bdb --- /dev/null +++ b/src/resources/icons/at-icons/battery_high.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://donpvinscvqgc" +path="res://.godot/imported/battery_high.svg-7430ef32a8d973b914597ccef01d1e57.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/battery_high.svg" +dest_files=["res://.godot/imported/battery_high.svg-7430ef32a8d973b914597ccef01d1e57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/battery_low.svg b/src/resources/icons/at-icons/battery_low.svg new file mode 100644 index 00000000..6e44c81a --- /dev/null +++ b/src/resources/icons/at-icons/battery_low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/battery_low.svg.import b/src/resources/icons/at-icons/battery_low.svg.import new file mode 100644 index 00000000..29bdc4e5 --- /dev/null +++ b/src/resources/icons/at-icons/battery_low.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbhmmuf2hvfgu" +path="res://.godot/imported/battery_low.svg-74f504cdbd4de0e35f487889c403a2cd.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/battery_low.svg" +dest_files=["res://.godot/imported/battery_low.svg-74f504cdbd4de0e35f487889c403a2cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/beaker.svg b/src/resources/icons/at-icons/beaker.svg new file mode 100644 index 00000000..3cdca79b --- /dev/null +++ b/src/resources/icons/at-icons/beaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/beaker.svg.import b/src/resources/icons/at-icons/beaker.svg.import new file mode 100644 index 00000000..8bb3add0 --- /dev/null +++ b/src/resources/icons/at-icons/beaker.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://codn5nvnhdr4" +path="res://.godot/imported/beaker.svg-574ea21152c8260939f5eb93796f30ae.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/beaker.svg" +dest_files=["res://.godot/imported/beaker.svg-574ea21152c8260939f5eb93796f30ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bell.svg b/src/resources/icons/at-icons/bell.svg new file mode 100644 index 00000000..85ad6f48 --- /dev/null +++ b/src/resources/icons/at-icons/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bell.svg.import b/src/resources/icons/at-icons/bell.svg.import new file mode 100644 index 00000000..e367de86 --- /dev/null +++ b/src/resources/icons/at-icons/bell.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgk0r18gd4nq8" +path="res://.godot/imported/bell.svg-ca88042a225c8ad202cae7c6cd72cb0f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bell.svg" +dest_files=["res://.godot/imported/bell.svg-ca88042a225c8ad202cae7c6cd72cb0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bike.svg b/src/resources/icons/at-icons/bike.svg new file mode 100644 index 00000000..c778d2d0 --- /dev/null +++ b/src/resources/icons/at-icons/bike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bike.svg.import b/src/resources/icons/at-icons/bike.svg.import new file mode 100644 index 00000000..535054ed --- /dev/null +++ b/src/resources/icons/at-icons/bike.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn3d3lpy6xj0h" +path="res://.godot/imported/bike.svg-4283f23f3abe38bdffdb2de0eed6263c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bike.svg" +dest_files=["res://.godot/imported/bike.svg-4283f23f3abe38bdffdb2de0eed6263c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/binoculars.svg b/src/resources/icons/at-icons/binoculars.svg new file mode 100644 index 00000000..04641408 --- /dev/null +++ b/src/resources/icons/at-icons/binoculars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/binoculars.svg.import b/src/resources/icons/at-icons/binoculars.svg.import new file mode 100644 index 00000000..a6c0649d --- /dev/null +++ b/src/resources/icons/at-icons/binoculars.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by6nd8imt8vp6" +path="res://.godot/imported/binoculars.svg-ef063886f63737c14d41e4db8f856a8e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/binoculars.svg" +dest_files=["res://.godot/imported/binoculars.svg-ef063886f63737c14d41e4db8f856a8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bird.svg b/src/resources/icons/at-icons/bird.svg new file mode 100644 index 00000000..4711114a --- /dev/null +++ b/src/resources/icons/at-icons/bird.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bird.svg.import b/src/resources/icons/at-icons/bird.svg.import new file mode 100644 index 00000000..60e7b08e --- /dev/null +++ b/src/resources/icons/at-icons/bird.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2j20fqc3vyaf" +path="res://.godot/imported/bird.svg-f5be8dc4546ab62d6738b0a42adf0703.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bird.svg" +dest_files=["res://.godot/imported/bird.svg-f5be8dc4546ab62d6738b0a42adf0703.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/black_hole.svg b/src/resources/icons/at-icons/black_hole.svg new file mode 100644 index 00000000..f2de6d27 --- /dev/null +++ b/src/resources/icons/at-icons/black_hole.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/black_hole.svg.import b/src/resources/icons/at-icons/black_hole.svg.import new file mode 100644 index 00000000..51c9b37a --- /dev/null +++ b/src/resources/icons/at-icons/black_hole.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s31s3us1duek" +path="res://.godot/imported/black_hole.svg-d400b3c16001cf46c85a39b26052e81d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/black_hole.svg" +dest_files=["res://.godot/imported/black_hole.svg-d400b3c16001cf46c85a39b26052e81d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/boat.svg b/src/resources/icons/at-icons/boat.svg new file mode 100644 index 00000000..9462fb22 --- /dev/null +++ b/src/resources/icons/at-icons/boat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/boat.svg.import b/src/resources/icons/at-icons/boat.svg.import new file mode 100644 index 00000000..c17dd6a8 --- /dev/null +++ b/src/resources/icons/at-icons/boat.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2ist50wc1vyg" +path="res://.godot/imported/boat.svg-72cdf2d4a6639878edb404a49fa8efa0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/boat.svg" +dest_files=["res://.godot/imported/boat.svg-72cdf2d4a6639878edb404a49fa8efa0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bold.svg b/src/resources/icons/at-icons/bold.svg new file mode 100644 index 00000000..9bd8f6d8 --- /dev/null +++ b/src/resources/icons/at-icons/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bold.svg.import b/src/resources/icons/at-icons/bold.svg.import new file mode 100644 index 00000000..9ba6ff28 --- /dev/null +++ b/src/resources/icons/at-icons/bold.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsx0lioy32joc" +path="res://.godot/imported/bold.svg-3bc39afafc4794b5fc1f4564589c4a5d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bold.svg" +dest_files=["res://.godot/imported/bold.svg-3bc39afafc4794b5fc1f4564589c4a5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bomb.svg b/src/resources/icons/at-icons/bomb.svg new file mode 100644 index 00000000..a48d83aa --- /dev/null +++ b/src/resources/icons/at-icons/bomb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bomb.svg.import b/src/resources/icons/at-icons/bomb.svg.import new file mode 100644 index 00000000..45577784 --- /dev/null +++ b/src/resources/icons/at-icons/bomb.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds3vutspvk8v4" +path="res://.godot/imported/bomb.svg-e77cd22698216488ac60c9f10b2074ba.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bomb.svg" +dest_files=["res://.godot/imported/bomb.svg-e77cd22698216488ac60c9f10b2074ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bone.svg b/src/resources/icons/at-icons/bone.svg new file mode 100644 index 00000000..b6234eec --- /dev/null +++ b/src/resources/icons/at-icons/bone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bone.svg.import b/src/resources/icons/at-icons/bone.svg.import new file mode 100644 index 00000000..e79e3e89 --- /dev/null +++ b/src/resources/icons/at-icons/bone.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2nk6x0mqihq5" +path="res://.godot/imported/bone.svg-3c1c12a46f35a3f8be28e46e71c991c8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bone.svg" +dest_files=["res://.godot/imported/bone.svg-3c1c12a46f35a3f8be28e46e71c991c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bone_fracture.svg b/src/resources/icons/at-icons/bone_fracture.svg new file mode 100644 index 00000000..dd4df008 --- /dev/null +++ b/src/resources/icons/at-icons/bone_fracture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bone_fracture.svg.import b/src/resources/icons/at-icons/bone_fracture.svg.import new file mode 100644 index 00000000..0dc8dbf9 --- /dev/null +++ b/src/resources/icons/at-icons/bone_fracture.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds8sj13kypxe" +path="res://.godot/imported/bone_fracture.svg-522400800ad6627d9079f9be84f9209e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bone_fracture.svg" +dest_files=["res://.godot/imported/bone_fracture.svg-522400800ad6627d9079f9be84f9209e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bone_horizontal.svg b/src/resources/icons/at-icons/bone_horizontal.svg new file mode 100644 index 00000000..3ebef52d --- /dev/null +++ b/src/resources/icons/at-icons/bone_horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bone_horizontal.svg.import b/src/resources/icons/at-icons/bone_horizontal.svg.import new file mode 100644 index 00000000..715f68a7 --- /dev/null +++ b/src/resources/icons/at-icons/bone_horizontal.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsxh0g7d8lc8w" +path="res://.godot/imported/bone_horizontal.svg-6493083bf312ead6b53c4f536917fa08.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bone_horizontal.svg" +dest_files=["res://.godot/imported/bone_horizontal.svg-6493083bf312ead6b53c4f536917fa08.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/book.svg b/src/resources/icons/at-icons/book.svg new file mode 100644 index 00000000..e61a70cc --- /dev/null +++ b/src/resources/icons/at-icons/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/book.svg.import b/src/resources/icons/at-icons/book.svg.import new file mode 100644 index 00000000..65ba740e --- /dev/null +++ b/src/resources/icons/at-icons/book.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cswgyovsmhj7i" +path="res://.godot/imported/book.svg-28160dd81c9c8a6469945920ca61b175.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/book.svg" +dest_files=["res://.godot/imported/book.svg-28160dd81c9c8a6469945920ca61b175.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/book_open.svg b/src/resources/icons/at-icons/book_open.svg new file mode 100644 index 00000000..3537e28f --- /dev/null +++ b/src/resources/icons/at-icons/book_open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/book_open.svg.import b/src/resources/icons/at-icons/book_open.svg.import new file mode 100644 index 00000000..291134db --- /dev/null +++ b/src/resources/icons/at-icons/book_open.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://005gwf74nsaf" +path="res://.godot/imported/book_open.svg-fc2d6b50201441f52f26c688b880c921.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/book_open.svg" +dest_files=["res://.godot/imported/book_open.svg-fc2d6b50201441f52f26c688b880c921.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bookmark.svg b/src/resources/icons/at-icons/bookmark.svg new file mode 100644 index 00000000..fa1a6d08 --- /dev/null +++ b/src/resources/icons/at-icons/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bookmark.svg.import b/src/resources/icons/at-icons/bookmark.svg.import new file mode 100644 index 00000000..8971bbdc --- /dev/null +++ b/src/resources/icons/at-icons/bookmark.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl3ju2u2a46p5" +path="res://.godot/imported/bookmark.svg-873ee3ab81ebad4dc71c1c7d28319fdb.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bookmark.svg" +dest_files=["res://.godot/imported/bookmark.svg-873ee3ab81ebad4dc71c1c7d28319fdb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bot.svg b/src/resources/icons/at-icons/bot.svg new file mode 100644 index 00000000..d4fce8e4 --- /dev/null +++ b/src/resources/icons/at-icons/bot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bot.svg.import b/src/resources/icons/at-icons/bot.svg.import new file mode 100644 index 00000000..1dfb8935 --- /dev/null +++ b/src/resources/icons/at-icons/bot.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e673yjoy55c1" +path="res://.godot/imported/bot.svg-eeb7b1e1ee4cabe5f10d2ac3683f80b2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bot.svg" +dest_files=["res://.godot/imported/bot.svg-eeb7b1e1ee4cabe5f10d2ac3683f80b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bow_and_arrow.svg b/src/resources/icons/at-icons/bow_and_arrow.svg new file mode 100644 index 00000000..14a95e8d --- /dev/null +++ b/src/resources/icons/at-icons/bow_and_arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bow_and_arrow.svg.import b/src/resources/icons/at-icons/bow_and_arrow.svg.import new file mode 100644 index 00000000..01d32f6c --- /dev/null +++ b/src/resources/icons/at-icons/bow_and_arrow.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnaqtdtpgi7o1" +path="res://.godot/imported/bow_and_arrow.svg-65c0b9aedda1ec0009d0ab0270d39841.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bow_and_arrow.svg" +dest_files=["res://.godot/imported/bow_and_arrow.svg-65c0b9aedda1ec0009d0ab0270d39841.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bowling_ball.svg b/src/resources/icons/at-icons/bowling_ball.svg new file mode 100644 index 00000000..07fcf09c --- /dev/null +++ b/src/resources/icons/at-icons/bowling_ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bowling_ball.svg.import b/src/resources/icons/at-icons/bowling_ball.svg.import new file mode 100644 index 00000000..98e699d8 --- /dev/null +++ b/src/resources/icons/at-icons/bowling_ball.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brvxf82sc7apt" +path="res://.godot/imported/bowling_ball.svg-e112a75c7522a6dd97567d7f0011a0ec.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bowling_ball.svg" +dest_files=["res://.godot/imported/bowling_ball.svg-e112a75c7522a6dd97567d7f0011a0ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bowling_pin.svg b/src/resources/icons/at-icons/bowling_pin.svg new file mode 100644 index 00000000..c148ffc8 --- /dev/null +++ b/src/resources/icons/at-icons/bowling_pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bowling_pin.svg.import b/src/resources/icons/at-icons/bowling_pin.svg.import new file mode 100644 index 00000000..d4ad5c31 --- /dev/null +++ b/src/resources/icons/at-icons/bowling_pin.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8tsxkpn1ryfe" +path="res://.godot/imported/bowling_pin.svg-c3482a03c9958e89f5379d5315640a41.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bowling_pin.svg" +dest_files=["res://.godot/imported/bowling_pin.svg-c3482a03c9958e89f5379d5315640a41.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/box.svg b/src/resources/icons/at-icons/box.svg new file mode 100644 index 00000000..b8dcb11f --- /dev/null +++ b/src/resources/icons/at-icons/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/box.svg.import b/src/resources/icons/at-icons/box.svg.import new file mode 100644 index 00000000..3d3c1067 --- /dev/null +++ b/src/resources/icons/at-icons/box.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfu6rq2h8242d" +path="res://.godot/imported/box.svg-d7cd298ccc7f6629b13025503276d4d7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/box.svg" +dest_files=["res://.godot/imported/box.svg-d7cd298ccc7f6629b13025503276d4d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/boxing_glove.svg b/src/resources/icons/at-icons/boxing_glove.svg new file mode 100644 index 00000000..faa58dc1 --- /dev/null +++ b/src/resources/icons/at-icons/boxing_glove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/boxing_glove.svg.import b/src/resources/icons/at-icons/boxing_glove.svg.import new file mode 100644 index 00000000..6e2d49ae --- /dev/null +++ b/src/resources/icons/at-icons/boxing_glove.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbdn1v0ua8d1h" +path="res://.godot/imported/boxing_glove.svg-05c7858562403d551f8d4b7aca94171d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/boxing_glove.svg" +dest_files=["res://.godot/imported/boxing_glove.svg-05c7858562403d551f8d4b7aca94171d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/brain.svg b/src/resources/icons/at-icons/brain.svg new file mode 100644 index 00000000..b81cd1ba --- /dev/null +++ b/src/resources/icons/at-icons/brain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/brain.svg.import b/src/resources/icons/at-icons/brain.svg.import new file mode 100644 index 00000000..58d37123 --- /dev/null +++ b/src/resources/icons/at-icons/brain.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch1cn1kckdsx1" +path="res://.godot/imported/brain.svg-d6a9c8b6a4edc043781f275cac186dd0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/brain.svg" +dest_files=["res://.godot/imported/brain.svg-d6a9c8b6a4edc043781f275cac186dd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/brick_wall.svg b/src/resources/icons/at-icons/brick_wall.svg new file mode 100644 index 00000000..cb9f7c52 --- /dev/null +++ b/src/resources/icons/at-icons/brick_wall.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/brick_wall.svg.import b/src/resources/icons/at-icons/brick_wall.svg.import new file mode 100644 index 00000000..3752bea3 --- /dev/null +++ b/src/resources/icons/at-icons/brick_wall.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7svswgd83epj" +path="res://.godot/imported/brick_wall.svg-c6350acd35c8b9cd3c204d687aea5955.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/brick_wall.svg" +dest_files=["res://.godot/imported/brick_wall.svg-c6350acd35c8b9cd3c204d687aea5955.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/briefcase.svg b/src/resources/icons/at-icons/briefcase.svg new file mode 100644 index 00000000..52e6d7d2 --- /dev/null +++ b/src/resources/icons/at-icons/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/briefcase.svg.import b/src/resources/icons/at-icons/briefcase.svg.import new file mode 100644 index 00000000..ca5876bd --- /dev/null +++ b/src/resources/icons/at-icons/briefcase.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfelud7ntwof7" +path="res://.godot/imported/briefcase.svg-33710476fc3b744c308a27af71345d30.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/briefcase.svg" +dest_files=["res://.godot/imported/briefcase.svg-33710476fc3b744c308a27af71345d30.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/brush.svg b/src/resources/icons/at-icons/brush.svg new file mode 100644 index 00000000..03d23de1 --- /dev/null +++ b/src/resources/icons/at-icons/brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/brush.svg.import b/src/resources/icons/at-icons/brush.svg.import new file mode 100644 index 00000000..a5bd9c67 --- /dev/null +++ b/src/resources/icons/at-icons/brush.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cthbghn6yltcm" +path="res://.godot/imported/brush.svg-155e26b17c56eb22cca9ec7eb13a216d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/brush.svg" +dest_files=["res://.godot/imported/brush.svg-155e26b17c56eb22cca9ec7eb13a216d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bucket_fill.svg b/src/resources/icons/at-icons/bucket_fill.svg new file mode 100644 index 00000000..ac1c7999 --- /dev/null +++ b/src/resources/icons/at-icons/bucket_fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bucket_fill.svg.import b/src/resources/icons/at-icons/bucket_fill.svg.import new file mode 100644 index 00000000..d8252d68 --- /dev/null +++ b/src/resources/icons/at-icons/bucket_fill.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s7xtqhssplqo" +path="res://.godot/imported/bucket_fill.svg-cc01cd40e49a5d6e95e53a05381deb81.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bucket_fill.svg" +dest_files=["res://.godot/imported/bucket_fill.svg-cc01cd40e49a5d6e95e53a05381deb81.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bug.svg b/src/resources/icons/at-icons/bug.svg new file mode 100644 index 00000000..9bade3f9 --- /dev/null +++ b/src/resources/icons/at-icons/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bug.svg.import b/src/resources/icons/at-icons/bug.svg.import new file mode 100644 index 00000000..b85d65e3 --- /dev/null +++ b/src/resources/icons/at-icons/bug.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhcgk87b1cyq3" +path="res://.godot/imported/bug.svg-49e243442fc020397bb3438d46704387.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bug.svg" +dest_files=["res://.godot/imported/bug.svg-49e243442fc020397bb3438d46704387.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/building.svg b/src/resources/icons/at-icons/building.svg new file mode 100644 index 00000000..bbc4ccf7 --- /dev/null +++ b/src/resources/icons/at-icons/building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/building.svg.import b/src/resources/icons/at-icons/building.svg.import new file mode 100644 index 00000000..4aaafaa3 --- /dev/null +++ b/src/resources/icons/at-icons/building.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxbwvqa7i2qwm" +path="res://.godot/imported/building.svg-6d59119450a927299f297f61d67870d7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/building.svg" +dest_files=["res://.godot/imported/building.svg-6d59119450a927299f297f61d67870d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bulldozer.svg b/src/resources/icons/at-icons/bulldozer.svg new file mode 100644 index 00000000..22bdf61d --- /dev/null +++ b/src/resources/icons/at-icons/bulldozer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bulldozer.svg.import b/src/resources/icons/at-icons/bulldozer.svg.import new file mode 100644 index 00000000..4298402a --- /dev/null +++ b/src/resources/icons/at-icons/bulldozer.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btdf433smtfa" +path="res://.godot/imported/bulldozer.svg-39141af63412d1ef200f95d76c0d82ab.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bulldozer.svg" +dest_files=["res://.godot/imported/bulldozer.svg-39141af63412d1ef200f95d76c0d82ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bullet.svg b/src/resources/icons/at-icons/bullet.svg new file mode 100644 index 00000000..22350968 --- /dev/null +++ b/src/resources/icons/at-icons/bullet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bullet.svg.import b/src/resources/icons/at-icons/bullet.svg.import new file mode 100644 index 00000000..d5686944 --- /dev/null +++ b/src/resources/icons/at-icons/bullet.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfehrdx4gp2g2" +path="res://.godot/imported/bullet.svg-1b9f97cad9991bb809db0da261acdcc7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bullet.svg" +dest_files=["res://.godot/imported/bullet.svg-1b9f97cad9991bb809db0da261acdcc7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bullseye.svg b/src/resources/icons/at-icons/bullseye.svg new file mode 100644 index 00000000..57d5bd0e --- /dev/null +++ b/src/resources/icons/at-icons/bullseye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bullseye.svg.import b/src/resources/icons/at-icons/bullseye.svg.import new file mode 100644 index 00000000..0b14f8f5 --- /dev/null +++ b/src/resources/icons/at-icons/bullseye.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4m71dct0i8sa" +path="res://.godot/imported/bullseye.svg-832bea168fec18daa91b7c66540defdf.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bullseye.svg" +dest_files=["res://.godot/imported/bullseye.svg-832bea168fec18daa91b7c66540defdf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/bunny.svg b/src/resources/icons/at-icons/bunny.svg new file mode 100644 index 00000000..08ab35fc --- /dev/null +++ b/src/resources/icons/at-icons/bunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/bunny.svg.import b/src/resources/icons/at-icons/bunny.svg.import new file mode 100644 index 00000000..144c69f0 --- /dev/null +++ b/src/resources/icons/at-icons/bunny.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byxuunt445wfs" +path="res://.godot/imported/bunny.svg-2e91f662d7a409c5221aab99a515269f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/bunny.svg" +dest_files=["res://.godot/imported/bunny.svg-2e91f662d7a409c5221aab99a515269f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/buoy.svg b/src/resources/icons/at-icons/buoy.svg new file mode 100644 index 00000000..47d52654 --- /dev/null +++ b/src/resources/icons/at-icons/buoy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/buoy.svg.import b/src/resources/icons/at-icons/buoy.svg.import new file mode 100644 index 00000000..7e206f3e --- /dev/null +++ b/src/resources/icons/at-icons/buoy.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dshfy3sa8vpk6" +path="res://.godot/imported/buoy.svg-f0c8c3b2d9bb537306c41d73d4b16aba.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/buoy.svg" +dest_files=["res://.godot/imported/buoy.svg-f0c8c3b2d9bb537306c41d73d4b16aba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/calculator.svg b/src/resources/icons/at-icons/calculator.svg new file mode 100644 index 00000000..5afbdbc4 --- /dev/null +++ b/src/resources/icons/at-icons/calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/calculator.svg.import b/src/resources/icons/at-icons/calculator.svg.import new file mode 100644 index 00000000..1fe3b5ef --- /dev/null +++ b/src/resources/icons/at-icons/calculator.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcf4h8dh52f60" +path="res://.godot/imported/calculator.svg-e4a5b2c1f2f455462f1373ea278bcbb5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/calculator.svg" +dest_files=["res://.godot/imported/calculator.svg-e4a5b2c1f2f455462f1373ea278bcbb5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/calendar.svg b/src/resources/icons/at-icons/calendar.svg new file mode 100644 index 00000000..d85ab718 --- /dev/null +++ b/src/resources/icons/at-icons/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/calendar.svg.import b/src/resources/icons/at-icons/calendar.svg.import new file mode 100644 index 00000000..95e4f401 --- /dev/null +++ b/src/resources/icons/at-icons/calendar.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cadbdun4x4ato" +path="res://.godot/imported/calendar.svg-6976b692707b9069215ba72a9028705b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/calendar.svg" +dest_files=["res://.godot/imported/calendar.svg-6976b692707b9069215ba72a9028705b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/car.svg b/src/resources/icons/at-icons/car.svg new file mode 100644 index 00000000..54842237 --- /dev/null +++ b/src/resources/icons/at-icons/car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/car.svg.import b/src/resources/icons/at-icons/car.svg.import new file mode 100644 index 00000000..067f56b1 --- /dev/null +++ b/src/resources/icons/at-icons/car.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfk75obdq66j6" +path="res://.godot/imported/car.svg-10e7164630de5d9d5cd55a7e69298727.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/car.svg" +dest_files=["res://.godot/imported/car.svg-10e7164630de5d9d5cd55a7e69298727.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/carnival_mask.svg b/src/resources/icons/at-icons/carnival_mask.svg new file mode 100644 index 00000000..c2ceb07d --- /dev/null +++ b/src/resources/icons/at-icons/carnival_mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/carnival_mask.svg.import b/src/resources/icons/at-icons/carnival_mask.svg.import new file mode 100644 index 00000000..29c531ad --- /dev/null +++ b/src/resources/icons/at-icons/carnival_mask.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlukxjjau14hv" +path="res://.godot/imported/carnival_mask.svg-34b67409bb26ea5b24ea1b1d4547cdd6.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/carnival_mask.svg" +dest_files=["res://.godot/imported/carnival_mask.svg-34b67409bb26ea5b24ea1b1d4547cdd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/castle.svg b/src/resources/icons/at-icons/castle.svg new file mode 100644 index 00000000..12416e31 --- /dev/null +++ b/src/resources/icons/at-icons/castle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/castle.svg.import b/src/resources/icons/at-icons/castle.svg.import new file mode 100644 index 00000000..4f415bce --- /dev/null +++ b/src/resources/icons/at-icons/castle.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct6bu17vo8udn" +path="res://.godot/imported/castle.svg-49f2d2903a5d6f52a9d9744edf480bee.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/castle.svg" +dest_files=["res://.godot/imported/castle.svg-49f2d2903a5d6f52a9d9744edf480bee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cat.svg b/src/resources/icons/at-icons/cat.svg new file mode 100644 index 00000000..fb2fdda0 --- /dev/null +++ b/src/resources/icons/at-icons/cat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cat.svg.import b/src/resources/icons/at-icons/cat.svg.import new file mode 100644 index 00000000..b657d5d8 --- /dev/null +++ b/src/resources/icons/at-icons/cat.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvddux2uvxww6" +path="res://.godot/imported/cat.svg-e1605075765bdd71c2d51167e0a23203.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cat.svg" +dest_files=["res://.godot/imported/cat.svg-e1605075765bdd71c2d51167e0a23203.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cauldron.svg b/src/resources/icons/at-icons/cauldron.svg new file mode 100644 index 00000000..37ad9297 --- /dev/null +++ b/src/resources/icons/at-icons/cauldron.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cauldron.svg.import b/src/resources/icons/at-icons/cauldron.svg.import new file mode 100644 index 00000000..d9b6baea --- /dev/null +++ b/src/resources/icons/at-icons/cauldron.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4b20p1akdijo" +path="res://.godot/imported/cauldron.svg-3ed4dab33374ba88950db31d6ea11e9f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cauldron.svg" +dest_files=["res://.godot/imported/cauldron.svg-3ed4dab33374ba88950db31d6ea11e9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/chair.svg b/src/resources/icons/at-icons/chair.svg new file mode 100644 index 00000000..b99a1918 --- /dev/null +++ b/src/resources/icons/at-icons/chair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/chair.svg.import b/src/resources/icons/at-icons/chair.svg.import new file mode 100644 index 00000000..4331f3f7 --- /dev/null +++ b/src/resources/icons/at-icons/chair.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdy5u62xnfix7" +path="res://.godot/imported/chair.svg-cae06f49bfb713d832068fd236e22b04.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/chair.svg" +dest_files=["res://.godot/imported/chair.svg-cae06f49bfb713d832068fd236e22b04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/checkerboard.svg b/src/resources/icons/at-icons/checkerboard.svg new file mode 100644 index 00000000..8e8ea87c --- /dev/null +++ b/src/resources/icons/at-icons/checkerboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/checkerboard.svg.import b/src/resources/icons/at-icons/checkerboard.svg.import new file mode 100644 index 00000000..5df8070d --- /dev/null +++ b/src/resources/icons/at-icons/checkerboard.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coe106f1s5rtw" +path="res://.godot/imported/checkerboard.svg-3b1de1be0e6561351493c477e1410b8a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/checkerboard.svg" +dest_files=["res://.godot/imported/checkerboard.svg-3b1de1be0e6561351493c477e1410b8a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/checkerboard_circle.svg b/src/resources/icons/at-icons/checkerboard_circle.svg new file mode 100644 index 00000000..64cfd438 --- /dev/null +++ b/src/resources/icons/at-icons/checkerboard_circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/checkerboard_circle.svg.import b/src/resources/icons/at-icons/checkerboard_circle.svg.import new file mode 100644 index 00000000..47858ea4 --- /dev/null +++ b/src/resources/icons/at-icons/checkerboard_circle.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck00yiv16cjmi" +path="res://.godot/imported/checkerboard_circle.svg-28a1da44313840712c16b31f3e8c2c99.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/checkerboard_circle.svg" +dest_files=["res://.godot/imported/checkerboard_circle.svg-28a1da44313840712c16b31f3e8c2c99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/checkmark.svg b/src/resources/icons/at-icons/checkmark.svg new file mode 100644 index 00000000..754afba6 --- /dev/null +++ b/src/resources/icons/at-icons/checkmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/checkmark.svg.import b/src/resources/icons/at-icons/checkmark.svg.import new file mode 100644 index 00000000..e8721362 --- /dev/null +++ b/src/resources/icons/at-icons/checkmark.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boqtlk4jva3xa" +path="res://.godot/imported/checkmark.svg-b63dd0282fa0e34b10db089dfa6541a7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/checkmark.svg" +dest_files=["res://.godot/imported/checkmark.svg-b63dd0282fa0e34b10db089dfa6541a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/checkmark_in_square.svg b/src/resources/icons/at-icons/checkmark_in_square.svg new file mode 100644 index 00000000..32a869c3 --- /dev/null +++ b/src/resources/icons/at-icons/checkmark_in_square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/checkmark_in_square.svg.import b/src/resources/icons/at-icons/checkmark_in_square.svg.import new file mode 100644 index 00000000..77ef3c05 --- /dev/null +++ b/src/resources/icons/at-icons/checkmark_in_square.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b28723rcngcjb" +path="res://.godot/imported/checkmark_in_square.svg-accd2bcf8afa4182e4a0be5fba578ce7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/checkmark_in_square.svg" +dest_files=["res://.godot/imported/checkmark_in_square.svg-accd2bcf8afa4182e4a0be5fba578ce7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/chess_bishop.svg b/src/resources/icons/at-icons/chess_bishop.svg new file mode 100644 index 00000000..0cf19be5 --- /dev/null +++ b/src/resources/icons/at-icons/chess_bishop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/chess_bishop.svg.import b/src/resources/icons/at-icons/chess_bishop.svg.import new file mode 100644 index 00000000..a1312383 --- /dev/null +++ b/src/resources/icons/at-icons/chess_bishop.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3jpigiipu37v" +path="res://.godot/imported/chess_bishop.svg-875eb5da2865defc9c83ccc4a7664a25.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/chess_bishop.svg" +dest_files=["res://.godot/imported/chess_bishop.svg-875eb5da2865defc9c83ccc4a7664a25.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/chess_king.svg b/src/resources/icons/at-icons/chess_king.svg new file mode 100644 index 00000000..170ad045 --- /dev/null +++ b/src/resources/icons/at-icons/chess_king.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/chess_king.svg.import b/src/resources/icons/at-icons/chess_king.svg.import new file mode 100644 index 00000000..3a8ab922 --- /dev/null +++ b/src/resources/icons/at-icons/chess_king.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cow2reegksi2g" +path="res://.godot/imported/chess_king.svg-fd963daa97fea7f6a7c88d3c9be81efc.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/chess_king.svg" +dest_files=["res://.godot/imported/chess_king.svg-fd963daa97fea7f6a7c88d3c9be81efc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/chess_knight.svg b/src/resources/icons/at-icons/chess_knight.svg new file mode 100644 index 00000000..ec7a386d --- /dev/null +++ b/src/resources/icons/at-icons/chess_knight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/chess_knight.svg.import b/src/resources/icons/at-icons/chess_knight.svg.import new file mode 100644 index 00000000..52ce58f1 --- /dev/null +++ b/src/resources/icons/at-icons/chess_knight.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b26hi83cgts5t" +path="res://.godot/imported/chess_knight.svg-12206f7769f8196a1e6300b44b3caa1f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/chess_knight.svg" +dest_files=["res://.godot/imported/chess_knight.svg-12206f7769f8196a1e6300b44b3caa1f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/chess_pawn.svg b/src/resources/icons/at-icons/chess_pawn.svg new file mode 100644 index 00000000..76a8469f --- /dev/null +++ b/src/resources/icons/at-icons/chess_pawn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/chess_pawn.svg.import b/src/resources/icons/at-icons/chess_pawn.svg.import new file mode 100644 index 00000000..ab7b03f6 --- /dev/null +++ b/src/resources/icons/at-icons/chess_pawn.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn07h1m08qxrv" +path="res://.godot/imported/chess_pawn.svg-730d75da1973c9c34cff88ba5f293c11.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/chess_pawn.svg" +dest_files=["res://.godot/imported/chess_pawn.svg-730d75da1973c9c34cff88ba5f293c11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/chess_queen.svg b/src/resources/icons/at-icons/chess_queen.svg new file mode 100644 index 00000000..b2af1a7b --- /dev/null +++ b/src/resources/icons/at-icons/chess_queen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/chess_queen.svg.import b/src/resources/icons/at-icons/chess_queen.svg.import new file mode 100644 index 00000000..9d176b57 --- /dev/null +++ b/src/resources/icons/at-icons/chess_queen.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn8gojfhuifs0" +path="res://.godot/imported/chess_queen.svg-ac3c56b03a72e8d74138190a31b2c471.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/chess_queen.svg" +dest_files=["res://.godot/imported/chess_queen.svg-ac3c56b03a72e8d74138190a31b2c471.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/chess_rook.svg b/src/resources/icons/at-icons/chess_rook.svg new file mode 100644 index 00000000..1a5c401c --- /dev/null +++ b/src/resources/icons/at-icons/chess_rook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/chess_rook.svg.import b/src/resources/icons/at-icons/chess_rook.svg.import new file mode 100644 index 00000000..a92452ac --- /dev/null +++ b/src/resources/icons/at-icons/chess_rook.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk4u815d7mk6v" +path="res://.godot/imported/chess_rook.svg-9da56f2b384672eaf1ee8daedc7a228d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/chess_rook.svg" +dest_files=["res://.godot/imported/chess_rook.svg-9da56f2b384672eaf1ee8daedc7a228d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/chest.svg b/src/resources/icons/at-icons/chest.svg new file mode 100644 index 00000000..d97c8823 --- /dev/null +++ b/src/resources/icons/at-icons/chest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/chest.svg.import b/src/resources/icons/at-icons/chest.svg.import new file mode 100644 index 00000000..fc019975 --- /dev/null +++ b/src/resources/icons/at-icons/chest.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccesdrg06bhel" +path="res://.godot/imported/chest.svg-a7ee0ac18738efe519db1397135023f2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/chest.svg" +dest_files=["res://.godot/imported/chest.svg-a7ee0ac18738efe519db1397135023f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/circle.svg b/src/resources/icons/at-icons/circle.svg new file mode 100644 index 00000000..0c02df9c --- /dev/null +++ b/src/resources/icons/at-icons/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/circle.svg.import b/src/resources/icons/at-icons/circle.svg.import new file mode 100644 index 00000000..61ae8005 --- /dev/null +++ b/src/resources/icons/at-icons/circle.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3gglwjddwpfl" +path="res://.godot/imported/circle.svg-6040d69d6777f2b8615fb8c4ccf623f2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/circle.svg" +dest_files=["res://.godot/imported/circle.svg-6040d69d6777f2b8615fb8c4ccf623f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/clapperboard.svg b/src/resources/icons/at-icons/clapperboard.svg new file mode 100644 index 00000000..162a90a9 --- /dev/null +++ b/src/resources/icons/at-icons/clapperboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/clapperboard.svg.import b/src/resources/icons/at-icons/clapperboard.svg.import new file mode 100644 index 00000000..6fe990e3 --- /dev/null +++ b/src/resources/icons/at-icons/clapperboard.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj4owk0up2q8v" +path="res://.godot/imported/clapperboard.svg-805190ddca30acaee2d877c2656bc056.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/clapperboard.svg" +dest_files=["res://.godot/imported/clapperboard.svg-805190ddca30acaee2d877c2656bc056.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/click.svg b/src/resources/icons/at-icons/click.svg new file mode 100644 index 00000000..a38633d6 --- /dev/null +++ b/src/resources/icons/at-icons/click.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/click.svg.import b/src/resources/icons/at-icons/click.svg.import new file mode 100644 index 00000000..6a7c857d --- /dev/null +++ b/src/resources/icons/at-icons/click.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs18cwna2f7b2" +path="res://.godot/imported/click.svg-fb83a70eb0539bf251f0ca1a9404dde1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/click.svg" +dest_files=["res://.godot/imported/click.svg-fb83a70eb0539bf251f0ca1a9404dde1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/clipboard.svg b/src/resources/icons/at-icons/clipboard.svg new file mode 100644 index 00000000..824734b9 --- /dev/null +++ b/src/resources/icons/at-icons/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/clipboard.svg.import b/src/resources/icons/at-icons/clipboard.svg.import new file mode 100644 index 00000000..5a3e9279 --- /dev/null +++ b/src/resources/icons/at-icons/clipboard.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blos3fbppe84o" +path="res://.godot/imported/clipboard.svg-07b6ef788912a26561ab8d7d1de0860d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/clipboard.svg" +dest_files=["res://.godot/imported/clipboard.svg-07b6ef788912a26561ab8d7d1de0860d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/clock.svg b/src/resources/icons/at-icons/clock.svg new file mode 100644 index 00000000..729bc551 --- /dev/null +++ b/src/resources/icons/at-icons/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/clock.svg.import b/src/resources/icons/at-icons/clock.svg.import new file mode 100644 index 00000000..f3ab5fbf --- /dev/null +++ b/src/resources/icons/at-icons/clock.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqj7071vgo4bn" +path="res://.godot/imported/clock.svg-465ce1eb33424701cdbe9c2f4d45587c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/clock.svg" +dest_files=["res://.godot/imported/clock.svg-465ce1eb33424701cdbe9c2f4d45587c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/clothes_hanger.svg b/src/resources/icons/at-icons/clothes_hanger.svg new file mode 100644 index 00000000..4e1aa025 --- /dev/null +++ b/src/resources/icons/at-icons/clothes_hanger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/clothes_hanger.svg.import b/src/resources/icons/at-icons/clothes_hanger.svg.import new file mode 100644 index 00000000..c768a1b1 --- /dev/null +++ b/src/resources/icons/at-icons/clothes_hanger.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hroacsji5owh" +path="res://.godot/imported/clothes_hanger.svg-e3f2070bc168649c4a9eb54803746bb8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/clothes_hanger.svg" +dest_files=["res://.godot/imported/clothes_hanger.svg-e3f2070bc168649c4a9eb54803746bb8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cloud.svg b/src/resources/icons/at-icons/cloud.svg new file mode 100644 index 00000000..25b126b7 --- /dev/null +++ b/src/resources/icons/at-icons/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cloud.svg.import b/src/resources/icons/at-icons/cloud.svg.import new file mode 100644 index 00000000..172f9e3e --- /dev/null +++ b/src/resources/icons/at-icons/cloud.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl2ak1nlk5vi3" +path="res://.godot/imported/cloud.svg-02be05aa64dcd3e889928b1902a5a830.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cloud.svg" +dest_files=["res://.godot/imported/cloud.svg-02be05aa64dcd3e889928b1902a5a830.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cloud_arrow_down.svg b/src/resources/icons/at-icons/cloud_arrow_down.svg new file mode 100644 index 00000000..e2ef8500 --- /dev/null +++ b/src/resources/icons/at-icons/cloud_arrow_down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cloud_arrow_down.svg.import b/src/resources/icons/at-icons/cloud_arrow_down.svg.import new file mode 100644 index 00000000..c2c4ede3 --- /dev/null +++ b/src/resources/icons/at-icons/cloud_arrow_down.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqofcthyj7h8y" +path="res://.godot/imported/cloud_arrow_down.svg-f39e6985afd84be4c51e307c91682e11.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cloud_arrow_down.svg" +dest_files=["res://.godot/imported/cloud_arrow_down.svg-f39e6985afd84be4c51e307c91682e11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cloud_arrow_up.svg b/src/resources/icons/at-icons/cloud_arrow_up.svg new file mode 100644 index 00000000..7a89e6da --- /dev/null +++ b/src/resources/icons/at-icons/cloud_arrow_up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cloud_arrow_up.svg.import b/src/resources/icons/at-icons/cloud_arrow_up.svg.import new file mode 100644 index 00000000..b54420bf --- /dev/null +++ b/src/resources/icons/at-icons/cloud_arrow_up.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg1urruow5vdw" +path="res://.godot/imported/cloud_arrow_up.svg-baddeda25d59e09dfabf5793aa45bda2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cloud_arrow_up.svg" +dest_files=["res://.godot/imported/cloud_arrow_up.svg-baddeda25d59e09dfabf5793aa45bda2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/club.svg b/src/resources/icons/at-icons/club.svg new file mode 100644 index 00000000..8be03df8 --- /dev/null +++ b/src/resources/icons/at-icons/club.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/club.svg.import b/src/resources/icons/at-icons/club.svg.import new file mode 100644 index 00000000..2c4cb903 --- /dev/null +++ b/src/resources/icons/at-icons/club.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cploaeae0tqis" +path="res://.godot/imported/club.svg-d083d20ce266b62b07e3a12eda984d16.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/club.svg" +dest_files=["res://.godot/imported/club.svg-d083d20ce266b62b07e3a12eda984d16.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/code.svg b/src/resources/icons/at-icons/code.svg new file mode 100644 index 00000000..4ef03e4c --- /dev/null +++ b/src/resources/icons/at-icons/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/code.svg.import b/src/resources/icons/at-icons/code.svg.import new file mode 100644 index 00000000..1efe9817 --- /dev/null +++ b/src/resources/icons/at-icons/code.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br5w6golkqy8e" +path="res://.godot/imported/code.svg-4e6a6f78f7313e33a02b387d3aae5877.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/code.svg" +dest_files=["res://.godot/imported/code.svg-4e6a6f78f7313e33a02b387d3aae5877.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cog.svg b/src/resources/icons/at-icons/cog.svg new file mode 100644 index 00000000..170d1252 --- /dev/null +++ b/src/resources/icons/at-icons/cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cog.svg.import b/src/resources/icons/at-icons/cog.svg.import new file mode 100644 index 00000000..1ab91508 --- /dev/null +++ b/src/resources/icons/at-icons/cog.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bycsblt2nt2xh" +path="res://.godot/imported/cog.svg-a0ab34ba403f79ab7aea427758d2e940.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cog.svg" +dest_files=["res://.godot/imported/cog.svg-a0ab34ba403f79ab7aea427758d2e940.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/coin.svg b/src/resources/icons/at-icons/coin.svg new file mode 100644 index 00000000..8436b57e --- /dev/null +++ b/src/resources/icons/at-icons/coin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/coin.svg.import b/src/resources/icons/at-icons/coin.svg.import new file mode 100644 index 00000000..41de14b1 --- /dev/null +++ b/src/resources/icons/at-icons/coin.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c33l5o2bvk4ds" +path="res://.godot/imported/coin.svg-b856761503e5b790c3deea9a64b836e5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/coin.svg" +dest_files=["res://.godot/imported/coin.svg-b856761503e5b790c3deea9a64b836e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/coins.svg b/src/resources/icons/at-icons/coins.svg new file mode 100644 index 00000000..bdb1c35f --- /dev/null +++ b/src/resources/icons/at-icons/coins.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/coins.svg.import b/src/resources/icons/at-icons/coins.svg.import new file mode 100644 index 00000000..1c704aae --- /dev/null +++ b/src/resources/icons/at-icons/coins.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvqomjcmqqthg" +path="res://.godot/imported/coins.svg-bc14e52407da3602def86e2ec0bac271.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/coins.svg" +dest_files=["res://.godot/imported/coins.svg-bc14e52407da3602def86e2ec0bac271.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/comb.svg b/src/resources/icons/at-icons/comb.svg new file mode 100644 index 00000000..1da4f1d0 --- /dev/null +++ b/src/resources/icons/at-icons/comb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/comb.svg.import b/src/resources/icons/at-icons/comb.svg.import new file mode 100644 index 00000000..ca9f7c51 --- /dev/null +++ b/src/resources/icons/at-icons/comb.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cohx3q8ndpo6l" +path="res://.godot/imported/comb.svg-42bad1f4151ea7ce6d6782325191249a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/comb.svg" +dest_files=["res://.godot/imported/comb.svg-42bad1f4151ea7ce6d6782325191249a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/comedy_mask.svg b/src/resources/icons/at-icons/comedy_mask.svg new file mode 100644 index 00000000..2a25c0b8 --- /dev/null +++ b/src/resources/icons/at-icons/comedy_mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/comedy_mask.svg.import b/src/resources/icons/at-icons/comedy_mask.svg.import new file mode 100644 index 00000000..fe32bb40 --- /dev/null +++ b/src/resources/icons/at-icons/comedy_mask.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgng3rnm8uplg" +path="res://.godot/imported/comedy_mask.svg-c6b41dd68f872911092c2db127c3da53.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/comedy_mask.svg" +dest_files=["res://.godot/imported/comedy_mask.svg-c6b41dd68f872911092c2db127c3da53.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/comet.svg b/src/resources/icons/at-icons/comet.svg new file mode 100644 index 00000000..9ca27815 --- /dev/null +++ b/src/resources/icons/at-icons/comet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/comet.svg.import b/src/resources/icons/at-icons/comet.svg.import new file mode 100644 index 00000000..66208ea5 --- /dev/null +++ b/src/resources/icons/at-icons/comet.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qkmr4ei4ji4d" +path="res://.godot/imported/comet.svg-30fe7b6234c8e7f9ee53d92739cf34e9.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/comet.svg" +dest_files=["res://.godot/imported/comet.svg-30fe7b6234c8e7f9ee53d92739cf34e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/compass.svg b/src/resources/icons/at-icons/compass.svg new file mode 100644 index 00000000..4f90b7b7 --- /dev/null +++ b/src/resources/icons/at-icons/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/compass.svg.import b/src/resources/icons/at-icons/compass.svg.import new file mode 100644 index 00000000..d5075fe5 --- /dev/null +++ b/src/resources/icons/at-icons/compass.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6vjj30qsg2mb" +path="res://.godot/imported/compass.svg-295b061f5717e768388934b1b43f5bdf.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/compass.svg" +dest_files=["res://.godot/imported/compass.svg-295b061f5717e768388934b1b43f5bdf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cone.svg b/src/resources/icons/at-icons/cone.svg new file mode 100644 index 00000000..d4c12ff4 --- /dev/null +++ b/src/resources/icons/at-icons/cone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cone.svg.import b/src/resources/icons/at-icons/cone.svg.import new file mode 100644 index 00000000..30f1a216 --- /dev/null +++ b/src/resources/icons/at-icons/cone.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4sadkghilu52" +path="res://.godot/imported/cone.svg-7728a578761f6207293399c929438841.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cone.svg" +dest_files=["res://.godot/imported/cone.svg-7728a578761f6207293399c929438841.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/conveyor_belt.svg b/src/resources/icons/at-icons/conveyor_belt.svg new file mode 100644 index 00000000..e9e71ec8 --- /dev/null +++ b/src/resources/icons/at-icons/conveyor_belt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/conveyor_belt.svg.import b/src/resources/icons/at-icons/conveyor_belt.svg.import new file mode 100644 index 00000000..59f6a324 --- /dev/null +++ b/src/resources/icons/at-icons/conveyor_belt.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b83j0y82433cp" +path="res://.godot/imported/conveyor_belt.svg-9a70e803938ac4625c800ded68d4cd1b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/conveyor_belt.svg" +dest_files=["res://.godot/imported/conveyor_belt.svg-9a70e803938ac4625c800ded68d4cd1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/couch.svg b/src/resources/icons/at-icons/couch.svg new file mode 100644 index 00000000..f5caf012 --- /dev/null +++ b/src/resources/icons/at-icons/couch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/couch.svg.import b/src/resources/icons/at-icons/couch.svg.import new file mode 100644 index 00000000..b3ce1ac2 --- /dev/null +++ b/src/resources/icons/at-icons/couch.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2uxkr66m23i7" +path="res://.godot/imported/couch.svg-e1ba3c68bc2c3bea94fe7a7ed86efce2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/couch.svg" +dest_files=["res://.godot/imported/couch.svg-e1ba3c68bc2c3bea94fe7a7ed86efce2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cpu.svg b/src/resources/icons/at-icons/cpu.svg new file mode 100644 index 00000000..e3d14317 --- /dev/null +++ b/src/resources/icons/at-icons/cpu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cpu.svg.import b/src/resources/icons/at-icons/cpu.svg.import new file mode 100644 index 00000000..535702f2 --- /dev/null +++ b/src/resources/icons/at-icons/cpu.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm6oecwedg5oj" +path="res://.godot/imported/cpu.svg-eb1ffc46c9284cda66f8910529d7aa97.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cpu.svg" +dest_files=["res://.godot/imported/cpu.svg-eb1ffc46c9284cda66f8910529d7aa97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/crane.svg b/src/resources/icons/at-icons/crane.svg new file mode 100644 index 00000000..f0070c59 --- /dev/null +++ b/src/resources/icons/at-icons/crane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/crane.svg.import b/src/resources/icons/at-icons/crane.svg.import new file mode 100644 index 00000000..ce069f90 --- /dev/null +++ b/src/resources/icons/at-icons/crane.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5hihkubbtq54" +path="res://.godot/imported/crane.svg-9609221bfffb8ba8e15ce677817b1566.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/crane.svg" +dest_files=["res://.godot/imported/crane.svg-9609221bfffb8ba8e15ce677817b1566.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/crash_test_dummy.svg b/src/resources/icons/at-icons/crash_test_dummy.svg new file mode 100644 index 00000000..727524c7 --- /dev/null +++ b/src/resources/icons/at-icons/crash_test_dummy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/crash_test_dummy.svg.import b/src/resources/icons/at-icons/crash_test_dummy.svg.import new file mode 100644 index 00000000..12e1c2ae --- /dev/null +++ b/src/resources/icons/at-icons/crash_test_dummy.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddwiah2d1uhh4" +path="res://.godot/imported/crash_test_dummy.svg-00021e9def5abb4046c6911db88174dc.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/crash_test_dummy.svg" +dest_files=["res://.godot/imported/crash_test_dummy.svg-00021e9def5abb4046c6911db88174dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/crate.svg b/src/resources/icons/at-icons/crate.svg new file mode 100644 index 00000000..908103d9 --- /dev/null +++ b/src/resources/icons/at-icons/crate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/crate.svg.import b/src/resources/icons/at-icons/crate.svg.import new file mode 100644 index 00000000..e5e71523 --- /dev/null +++ b/src/resources/icons/at-icons/crate.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0sk3r7xs1t7o" +path="res://.godot/imported/crate.svg-9bc9b5db0521bc2fe04da6f6b20adcee.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/crate.svg" +dest_files=["res://.godot/imported/crate.svg-9bc9b5db0521bc2fe04da6f6b20adcee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cross.svg b/src/resources/icons/at-icons/cross.svg new file mode 100644 index 00000000..0c02277c --- /dev/null +++ b/src/resources/icons/at-icons/cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cross.svg.import b/src/resources/icons/at-icons/cross.svg.import new file mode 100644 index 00000000..68525742 --- /dev/null +++ b/src/resources/icons/at-icons/cross.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lbws0x68g27p" +path="res://.godot/imported/cross.svg-8748e6629c2b5a6fd83d191c51444eae.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cross.svg" +dest_files=["res://.godot/imported/cross.svg-8748e6629c2b5a6fd83d191c51444eae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cross_in_square.svg b/src/resources/icons/at-icons/cross_in_square.svg new file mode 100644 index 00000000..63a61a20 --- /dev/null +++ b/src/resources/icons/at-icons/cross_in_square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cross_in_square.svg.import b/src/resources/icons/at-icons/cross_in_square.svg.import new file mode 100644 index 00000000..518df88c --- /dev/null +++ b/src/resources/icons/at-icons/cross_in_square.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oslyo7kflpe1" +path="res://.godot/imported/cross_in_square.svg-66ddf9c97d81f3465fb46a63c6d260e3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cross_in_square.svg" +dest_files=["res://.godot/imported/cross_in_square.svg-66ddf9c97d81f3465fb46a63c6d260e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cube.svg b/src/resources/icons/at-icons/cube.svg new file mode 100644 index 00000000..d93a0e04 --- /dev/null +++ b/src/resources/icons/at-icons/cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cube.svg.import b/src/resources/icons/at-icons/cube.svg.import new file mode 100644 index 00000000..12a9b911 --- /dev/null +++ b/src/resources/icons/at-icons/cube.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtits2mwwkd43" +path="res://.godot/imported/cube.svg-13b774f322c0760775da8530a3d42b7f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cube.svg" +dest_files=["res://.godot/imported/cube.svg-13b774f322c0760775da8530a3d42b7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cup.svg b/src/resources/icons/at-icons/cup.svg new file mode 100644 index 00000000..d0c7307e --- /dev/null +++ b/src/resources/icons/at-icons/cup.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cup.svg.import b/src/resources/icons/at-icons/cup.svg.import new file mode 100644 index 00000000..8685392c --- /dev/null +++ b/src/resources/icons/at-icons/cup.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf50bcqbw4niu" +path="res://.godot/imported/cup.svg-2b8343153d95a6fa40c6fd64bf06a70e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cup.svg" +dest_files=["res://.godot/imported/cup.svg-2b8343153d95a6fa40c6fd64bf06a70e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cursor.svg b/src/resources/icons/at-icons/cursor.svg new file mode 100644 index 00000000..39779168 --- /dev/null +++ b/src/resources/icons/at-icons/cursor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cursor.svg.import b/src/resources/icons/at-icons/cursor.svg.import new file mode 100644 index 00000000..4a07317d --- /dev/null +++ b/src/resources/icons/at-icons/cursor.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj5neeqj8rijx" +path="res://.godot/imported/cursor.svg-7cff52ecbbdd727457361239755c6148.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cursor.svg" +dest_files=["res://.godot/imported/cursor.svg-7cff52ecbbdd727457361239755c6148.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cursor_text.svg b/src/resources/icons/at-icons/cursor_text.svg new file mode 100644 index 00000000..4347478d --- /dev/null +++ b/src/resources/icons/at-icons/cursor_text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cursor_text.svg.import b/src/resources/icons/at-icons/cursor_text.svg.import new file mode 100644 index 00000000..dc0a8d4c --- /dev/null +++ b/src/resources/icons/at-icons/cursor_text.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cubfvyvvptvvj" +path="res://.godot/imported/cursor_text.svg-2a183e0984251774a04c0d4cda47577d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cursor_text.svg" +dest_files=["res://.godot/imported/cursor_text.svg-2a183e0984251774a04c0d4cda47577d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cutlass.svg b/src/resources/icons/at-icons/cutlass.svg new file mode 100644 index 00000000..923bb02e --- /dev/null +++ b/src/resources/icons/at-icons/cutlass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cutlass.svg.import b/src/resources/icons/at-icons/cutlass.svg.import new file mode 100644 index 00000000..41b3ab8b --- /dev/null +++ b/src/resources/icons/at-icons/cutlass.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tf2oh768oo86" +path="res://.godot/imported/cutlass.svg-dc226952d3d15043efcab196a9d29713.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cutlass.svg" +dest_files=["res://.godot/imported/cutlass.svg-dc226952d3d15043efcab196a9d29713.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/cylinder.svg b/src/resources/icons/at-icons/cylinder.svg new file mode 100644 index 00000000..663dc1b5 --- /dev/null +++ b/src/resources/icons/at-icons/cylinder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/cylinder.svg.import b/src/resources/icons/at-icons/cylinder.svg.import new file mode 100644 index 00000000..1d339d27 --- /dev/null +++ b/src/resources/icons/at-icons/cylinder.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ykam3itl1rfq" +path="res://.godot/imported/cylinder.svg-5650e5063caecb76e9cb151165aa4f2f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/cylinder.svg" +dest_files=["res://.godot/imported/cylinder.svg-5650e5063caecb76e9cb151165aa4f2f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/d20.svg b/src/resources/icons/at-icons/d20.svg new file mode 100644 index 00000000..d68e1f98 --- /dev/null +++ b/src/resources/icons/at-icons/d20.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/d20.svg.import b/src/resources/icons/at-icons/d20.svg.import new file mode 100644 index 00000000..06f65582 --- /dev/null +++ b/src/resources/icons/at-icons/d20.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvgtbcqotwqng" +path="res://.godot/imported/d20.svg-c163e9283faa83dd2ebb3850c221419a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/d20.svg" +dest_files=["res://.godot/imported/d20.svg-c163e9283faa83dd2ebb3850c221419a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/dagger.svg b/src/resources/icons/at-icons/dagger.svg new file mode 100644 index 00000000..450a20a0 --- /dev/null +++ b/src/resources/icons/at-icons/dagger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/dagger.svg.import b/src/resources/icons/at-icons/dagger.svg.import new file mode 100644 index 00000000..7df59c55 --- /dev/null +++ b/src/resources/icons/at-icons/dagger.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj6gnrth5a4w1" +path="res://.godot/imported/dagger.svg-bdcd7023864751cd0474c12151215081.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/dagger.svg" +dest_files=["res://.godot/imported/dagger.svg-bdcd7023864751cd0474c12151215081.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/danger.svg b/src/resources/icons/at-icons/danger.svg new file mode 100644 index 00000000..f1aab522 --- /dev/null +++ b/src/resources/icons/at-icons/danger.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/danger.svg.import b/src/resources/icons/at-icons/danger.svg.import new file mode 100644 index 00000000..b165f4cc --- /dev/null +++ b/src/resources/icons/at-icons/danger.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj41rxupkk1mn" +path="res://.godot/imported/danger.svg-5f2798cce22c7d7556cd6fc2a5bb058e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/danger.svg" +dest_files=["res://.godot/imported/danger.svg-5f2798cce22c7d7556cd6fc2a5bb058e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/dash_in_square.svg b/src/resources/icons/at-icons/dash_in_square.svg new file mode 100644 index 00000000..992e0e57 --- /dev/null +++ b/src/resources/icons/at-icons/dash_in_square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/dash_in_square.svg.import b/src/resources/icons/at-icons/dash_in_square.svg.import new file mode 100644 index 00000000..00bdb70a --- /dev/null +++ b/src/resources/icons/at-icons/dash_in_square.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biy7vqrn65xrk" +path="res://.godot/imported/dash_in_square.svg-2e59e43c6e9544ca4e1784c4100d23de.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/dash_in_square.svg" +dest_files=["res://.godot/imported/dash_in_square.svg-2e59e43c6e9544ca4e1784c4100d23de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/database.svg b/src/resources/icons/at-icons/database.svg new file mode 100644 index 00000000..0a8d02a0 --- /dev/null +++ b/src/resources/icons/at-icons/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/database.svg.import b/src/resources/icons/at-icons/database.svg.import new file mode 100644 index 00000000..c1f0dc56 --- /dev/null +++ b/src/resources/icons/at-icons/database.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwo7mjbuxbrmj" +path="res://.godot/imported/database.svg-615b45b10cdf6342e0c4f01fbbd53c06.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/database.svg" +dest_files=["res://.godot/imported/database.svg-615b45b10cdf6342e0c4f01fbbd53c06.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/delivery_box.svg b/src/resources/icons/at-icons/delivery_box.svg new file mode 100644 index 00000000..11003056 --- /dev/null +++ b/src/resources/icons/at-icons/delivery_box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/delivery_box.svg.import b/src/resources/icons/at-icons/delivery_box.svg.import new file mode 100644 index 00000000..b4751438 --- /dev/null +++ b/src/resources/icons/at-icons/delivery_box.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chr672ny4vsxh" +path="res://.godot/imported/delivery_box.svg-1fb8797bef2c205833f6071fc82f3cf2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/delivery_box.svg" +dest_files=["res://.godot/imported/delivery_box.svg-1fb8797bef2c205833f6071fc82f3cf2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/desk_lamp.svg b/src/resources/icons/at-icons/desk_lamp.svg new file mode 100644 index 00000000..45050afe --- /dev/null +++ b/src/resources/icons/at-icons/desk_lamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/desk_lamp.svg.import b/src/resources/icons/at-icons/desk_lamp.svg.import new file mode 100644 index 00000000..2b7b6c63 --- /dev/null +++ b/src/resources/icons/at-icons/desk_lamp.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcn0vmqb8kxax" +path="res://.godot/imported/desk_lamp.svg-f708894d3cb1d2e4e74f40b21f6094c6.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/desk_lamp.svg" +dest_files=["res://.godot/imported/desk_lamp.svg-f708894d3cb1d2e4e74f40b21f6094c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/desktop.svg b/src/resources/icons/at-icons/desktop.svg new file mode 100644 index 00000000..e595b6d9 --- /dev/null +++ b/src/resources/icons/at-icons/desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/desktop.svg.import b/src/resources/icons/at-icons/desktop.svg.import new file mode 100644 index 00000000..d003df50 --- /dev/null +++ b/src/resources/icons/at-icons/desktop.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgwjyvja7r8ue" +path="res://.godot/imported/desktop.svg-7029c31ca9424e75fbf069bcf84e074b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/desktop.svg" +dest_files=["res://.godot/imported/desktop.svg-7029c31ca9424e75fbf069bcf84e074b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/diamond.svg b/src/resources/icons/at-icons/diamond.svg new file mode 100644 index 00000000..d647a8bd --- /dev/null +++ b/src/resources/icons/at-icons/diamond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/diamond.svg.import b/src/resources/icons/at-icons/diamond.svg.import new file mode 100644 index 00000000..d0b62b36 --- /dev/null +++ b/src/resources/icons/at-icons/diamond.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://00tchv2cqmko" +path="res://.godot/imported/diamond.svg-a4a230d49a7c56c32a312c736631620c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/diamond.svg" +dest_files=["res://.godot/imported/diamond.svg-a4a230d49a7c56c32a312c736631620c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/diamond_shape.svg b/src/resources/icons/at-icons/diamond_shape.svg new file mode 100644 index 00000000..0fa9bbde --- /dev/null +++ b/src/resources/icons/at-icons/diamond_shape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/diamond_shape.svg.import b/src/resources/icons/at-icons/diamond_shape.svg.import new file mode 100644 index 00000000..74e1277f --- /dev/null +++ b/src/resources/icons/at-icons/diamond_shape.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btd2ty0asetdb" +path="res://.godot/imported/diamond_shape.svg-a8091447be5b0bfc9ad68a9d80d4417c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/diamond_shape.svg" +dest_files=["res://.godot/imported/diamond_shape.svg-a8091447be5b0bfc9ad68a9d80d4417c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/dice.svg b/src/resources/icons/at-icons/dice.svg new file mode 100644 index 00000000..494e1b02 --- /dev/null +++ b/src/resources/icons/at-icons/dice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/dice.svg.import b/src/resources/icons/at-icons/dice.svg.import new file mode 100644 index 00000000..19cc6748 --- /dev/null +++ b/src/resources/icons/at-icons/dice.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxyay56qxb0p7" +path="res://.godot/imported/dice.svg-ace2bf684f2e2f52942e98c6914eb9ff.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/dice.svg" +dest_files=["res://.godot/imported/dice.svg-ace2bf684f2e2f52942e98c6914eb9ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/die.svg b/src/resources/icons/at-icons/die.svg new file mode 100644 index 00000000..6fd99b3d --- /dev/null +++ b/src/resources/icons/at-icons/die.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/die.svg.import b/src/resources/icons/at-icons/die.svg.import new file mode 100644 index 00000000..ea29fc50 --- /dev/null +++ b/src/resources/icons/at-icons/die.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f14b68yamacu" +path="res://.godot/imported/die.svg-14f0d2aec27a17328cb9f7fcdd0c31a3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/die.svg" +dest_files=["res://.godot/imported/die.svg-14f0d2aec27a17328cb9f7fcdd0c31a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/distance.svg b/src/resources/icons/at-icons/distance.svg new file mode 100644 index 00000000..d8956481 --- /dev/null +++ b/src/resources/icons/at-icons/distance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/distance.svg.import b/src/resources/icons/at-icons/distance.svg.import new file mode 100644 index 00000000..d64d7569 --- /dev/null +++ b/src/resources/icons/at-icons/distance.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqo7enyne4drb" +path="res://.godot/imported/distance.svg-c79db7d7310807a426f4ef7386129afe.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/distance.svg" +dest_files=["res://.godot/imported/distance.svg-c79db7d7310807a426f4ef7386129afe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/division_sign_in_square.svg b/src/resources/icons/at-icons/division_sign_in_square.svg new file mode 100644 index 00000000..f10b55b0 --- /dev/null +++ b/src/resources/icons/at-icons/division_sign_in_square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/division_sign_in_square.svg.import b/src/resources/icons/at-icons/division_sign_in_square.svg.import new file mode 100644 index 00000000..bed77bac --- /dev/null +++ b/src/resources/icons/at-icons/division_sign_in_square.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://85yknf4we337" +path="res://.godot/imported/division_sign_in_square.svg-17561963e607c8f009f630f5a47ea062.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/division_sign_in_square.svg" +dest_files=["res://.godot/imported/division_sign_in_square.svg-17561963e607c8f009f630f5a47ea062.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/dog.svg b/src/resources/icons/at-icons/dog.svg new file mode 100644 index 00000000..164b2864 --- /dev/null +++ b/src/resources/icons/at-icons/dog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/dog.svg.import b/src/resources/icons/at-icons/dog.svg.import new file mode 100644 index 00000000..17030bbd --- /dev/null +++ b/src/resources/icons/at-icons/dog.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm6u66072trs" +path="res://.godot/imported/dog.svg-3384fa6ee3082396c6864e71edb50d83.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/dog.svg" +dest_files=["res://.godot/imported/dog.svg-3384fa6ee3082396c6864e71edb50d83.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/door.svg b/src/resources/icons/at-icons/door.svg new file mode 100644 index 00000000..e46a1e0c --- /dev/null +++ b/src/resources/icons/at-icons/door.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/door.svg.import b/src/resources/icons/at-icons/door.svg.import new file mode 100644 index 00000000..f891774a --- /dev/null +++ b/src/resources/icons/at-icons/door.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j0rq6lmk2h8m" +path="res://.godot/imported/door.svg-be1cdae500f20e86bb644239f08f83ef.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/door.svg" +dest_files=["res://.godot/imported/door.svg-be1cdae500f20e86bb644239f08f83ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/doors.svg b/src/resources/icons/at-icons/doors.svg new file mode 100644 index 00000000..590355bc --- /dev/null +++ b/src/resources/icons/at-icons/doors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/doors.svg.import b/src/resources/icons/at-icons/doors.svg.import new file mode 100644 index 00000000..3dbd437e --- /dev/null +++ b/src/resources/icons/at-icons/doors.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqmgwaq80pvya" +path="res://.godot/imported/doors.svg-156d9e937a6d96c8c208cec3e0c57d4a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/doors.svg" +dest_files=["res://.godot/imported/doors.svg-156d9e937a6d96c8c208cec3e0c57d4a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/doorway.svg b/src/resources/icons/at-icons/doorway.svg new file mode 100644 index 00000000..747d56ba --- /dev/null +++ b/src/resources/icons/at-icons/doorway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/doorway.svg.import b/src/resources/icons/at-icons/doorway.svg.import new file mode 100644 index 00000000..dfcdd2c8 --- /dev/null +++ b/src/resources/icons/at-icons/doorway.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d22g81fo3ohsa" +path="res://.godot/imported/doorway.svg-abb0705a638069eb68728e0ac00823f4.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/doorway.svg" +dest_files=["res://.godot/imported/doorway.svg-abb0705a638069eb68728e0ac00823f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/doorway_entrance.svg b/src/resources/icons/at-icons/doorway_entrance.svg new file mode 100644 index 00000000..039c4b24 --- /dev/null +++ b/src/resources/icons/at-icons/doorway_entrance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/doorway_entrance.svg.import b/src/resources/icons/at-icons/doorway_entrance.svg.import new file mode 100644 index 00000000..98e0820a --- /dev/null +++ b/src/resources/icons/at-icons/doorway_entrance.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://craaagjoeejfe" +path="res://.godot/imported/doorway_entrance.svg-e2a77dcb09a01ae07473379c32651a91.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/doorway_entrance.svg" +dest_files=["res://.godot/imported/doorway_entrance.svg-e2a77dcb09a01ae07473379c32651a91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/doorway_exit.svg b/src/resources/icons/at-icons/doorway_exit.svg new file mode 100644 index 00000000..f6e3bb41 --- /dev/null +++ b/src/resources/icons/at-icons/doorway_exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/doorway_exit.svg.import b/src/resources/icons/at-icons/doorway_exit.svg.import new file mode 100644 index 00000000..396db0e6 --- /dev/null +++ b/src/resources/icons/at-icons/doorway_exit.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpm5itjh7wwu" +path="res://.godot/imported/doorway_exit.svg-ee6da9463e145484b18c37b6b216b3eb.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/doorway_exit.svg" +dest_files=["res://.godot/imported/doorway_exit.svg-ee6da9463e145484b18c37b6b216b3eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/dragon.svg b/src/resources/icons/at-icons/dragon.svg new file mode 100644 index 00000000..1032057d --- /dev/null +++ b/src/resources/icons/at-icons/dragon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/dragon.svg.import b/src/resources/icons/at-icons/dragon.svg.import new file mode 100644 index 00000000..c31d3b89 --- /dev/null +++ b/src/resources/icons/at-icons/dragon.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2683ta0vtany" +path="res://.godot/imported/dragon.svg-cf53d9d4f4795253f7f5e595aabd519a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/dragon.svg" +dest_files=["res://.godot/imported/dragon.svg-cf53d9d4f4795253f7f5e595aabd519a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/drawing_compass.svg b/src/resources/icons/at-icons/drawing_compass.svg new file mode 100644 index 00000000..ac87c9fc --- /dev/null +++ b/src/resources/icons/at-icons/drawing_compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/drawing_compass.svg.import b/src/resources/icons/at-icons/drawing_compass.svg.import new file mode 100644 index 00000000..214e5bc7 --- /dev/null +++ b/src/resources/icons/at-icons/drawing_compass.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkfew3ojm5vtt" +path="res://.godot/imported/drawing_compass.svg-9fd2348a49c2d139c628ad7c0c7ec4b1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/drawing_compass.svg" +dest_files=["res://.godot/imported/drawing_compass.svg-9fd2348a49c2d139c628ad7c0c7ec4b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/dropdown.svg b/src/resources/icons/at-icons/dropdown.svg new file mode 100644 index 00000000..91a7a871 --- /dev/null +++ b/src/resources/icons/at-icons/dropdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/dropdown.svg.import b/src/resources/icons/at-icons/dropdown.svg.import new file mode 100644 index 00000000..79dcc887 --- /dev/null +++ b/src/resources/icons/at-icons/dropdown.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu5kowibnq4wx" +path="res://.godot/imported/dropdown.svg-13bb3cf529fbfac6bc0fb89b11ff6bfb.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/dropdown.svg" +dest_files=["res://.godot/imported/dropdown.svg-13bb3cf529fbfac6bc0fb89b11ff6bfb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/droplet.svg b/src/resources/icons/at-icons/droplet.svg new file mode 100644 index 00000000..43995d68 --- /dev/null +++ b/src/resources/icons/at-icons/droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/droplet.svg.import b/src/resources/icons/at-icons/droplet.svg.import new file mode 100644 index 00000000..937482a9 --- /dev/null +++ b/src/resources/icons/at-icons/droplet.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djvwm5wvb7ejx" +path="res://.godot/imported/droplet.svg-27bf54b11a4adf1917b12d280f058faa.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/droplet.svg" +dest_files=["res://.godot/imported/droplet.svg-27bf54b11a4adf1917b12d280f058faa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/duplicate.svg b/src/resources/icons/at-icons/duplicate.svg new file mode 100644 index 00000000..3a9e3352 --- /dev/null +++ b/src/resources/icons/at-icons/duplicate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/duplicate.svg.import b/src/resources/icons/at-icons/duplicate.svg.import new file mode 100644 index 00000000..28841243 --- /dev/null +++ b/src/resources/icons/at-icons/duplicate.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vhirg18xkyjs" +path="res://.godot/imported/duplicate.svg-2ed92e936e7c2c9e6a4167747d7924de.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/duplicate.svg" +dest_files=["res://.godot/imported/duplicate.svg-2ed92e936e7c2c9e6a4167747d7924de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/edge.svg b/src/resources/icons/at-icons/edge.svg new file mode 100644 index 00000000..1bcc81b4 --- /dev/null +++ b/src/resources/icons/at-icons/edge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/edge.svg.import b/src/resources/icons/at-icons/edge.svg.import new file mode 100644 index 00000000..9f5c1016 --- /dev/null +++ b/src/resources/icons/at-icons/edge.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2uqjljgrx0y7" +path="res://.godot/imported/edge.svg-9e78d36b1bf30a5b8c464bfba7bffff7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/edge.svg" +dest_files=["res://.godot/imported/edge.svg-9e78d36b1bf30a5b8c464bfba7bffff7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/egg.svg b/src/resources/icons/at-icons/egg.svg new file mode 100644 index 00000000..8d7784de --- /dev/null +++ b/src/resources/icons/at-icons/egg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/egg.svg.import b/src/resources/icons/at-icons/egg.svg.import new file mode 100644 index 00000000..b27df452 --- /dev/null +++ b/src/resources/icons/at-icons/egg.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pfqi8fvmj3bu" +path="res://.godot/imported/egg.svg-2c688aba4c48f619814b90df93d00a2a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/egg.svg" +dest_files=["res://.godot/imported/egg.svg-2c688aba4c48f619814b90df93d00a2a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/eight_ball.svg b/src/resources/icons/at-icons/eight_ball.svg new file mode 100644 index 00000000..c65c2f24 --- /dev/null +++ b/src/resources/icons/at-icons/eight_ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/eight_ball.svg.import b/src/resources/icons/at-icons/eight_ball.svg.import new file mode 100644 index 00000000..bd3993ab --- /dev/null +++ b/src/resources/icons/at-icons/eight_ball.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdcnhu824s5b2" +path="res://.godot/imported/eight_ball.svg-faa86abe5f54542cfadbaa2542a4d25d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/eight_ball.svg" +dest_files=["res://.godot/imported/eight_ball.svg-faa86abe5f54542cfadbaa2542a4d25d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/emitter.svg b/src/resources/icons/at-icons/emitter.svg new file mode 100644 index 00000000..52c148e3 --- /dev/null +++ b/src/resources/icons/at-icons/emitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/emitter.svg.import b/src/resources/icons/at-icons/emitter.svg.import new file mode 100644 index 00000000..fafce8cc --- /dev/null +++ b/src/resources/icons/at-icons/emitter.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl8tqgahw5nxq" +path="res://.godot/imported/emitter.svg-c70847a99a0454107f078d6f110fe20c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/emitter.svg" +dest_files=["res://.godot/imported/emitter.svg-c70847a99a0454107f078d6f110fe20c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/envelope.svg b/src/resources/icons/at-icons/envelope.svg new file mode 100644 index 00000000..89b72899 --- /dev/null +++ b/src/resources/icons/at-icons/envelope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/envelope.svg.import b/src/resources/icons/at-icons/envelope.svg.import new file mode 100644 index 00000000..55933d00 --- /dev/null +++ b/src/resources/icons/at-icons/envelope.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3fuqesc3ho4j" +path="res://.godot/imported/envelope.svg-a1a921a379ad14e65d03a713646df634.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/envelope.svg" +dest_files=["res://.godot/imported/envelope.svg-a1a921a379ad14e65d03a713646df634.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/eraser.svg b/src/resources/icons/at-icons/eraser.svg new file mode 100644 index 00000000..e1993e30 --- /dev/null +++ b/src/resources/icons/at-icons/eraser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/eraser.svg.import b/src/resources/icons/at-icons/eraser.svg.import new file mode 100644 index 00000000..c6ca1d1a --- /dev/null +++ b/src/resources/icons/at-icons/eraser.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dttjs7hfsfmbq" +path="res://.godot/imported/eraser.svg-66025b7bd9f461cc4697ed2e27fc6fd2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/eraser.svg" +dest_files=["res://.godot/imported/eraser.svg-66025b7bd9f461cc4697ed2e27fc6fd2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/expand.svg b/src/resources/icons/at-icons/expand.svg new file mode 100644 index 00000000..e1fff4da --- /dev/null +++ b/src/resources/icons/at-icons/expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/expand.svg.import b/src/resources/icons/at-icons/expand.svg.import new file mode 100644 index 00000000..e2bc42e4 --- /dev/null +++ b/src/resources/icons/at-icons/expand.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biunthyaf1ct6" +path="res://.godot/imported/expand.svg-b0fdcc0779625c0f01758d2f000a6b93.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/expand.svg" +dest_files=["res://.godot/imported/expand.svg-b0fdcc0779625c0f01758d2f000a6b93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/explosion.svg b/src/resources/icons/at-icons/explosion.svg new file mode 100644 index 00000000..49349d04 --- /dev/null +++ b/src/resources/icons/at-icons/explosion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/explosion.svg.import b/src/resources/icons/at-icons/explosion.svg.import new file mode 100644 index 00000000..e00b2780 --- /dev/null +++ b/src/resources/icons/at-icons/explosion.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jcwx2h5a8qh1" +path="res://.godot/imported/explosion.svg-37bf90075468c4d587f03c83715e5fe0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/explosion.svg" +dest_files=["res://.godot/imported/explosion.svg-37bf90075468c4d587f03c83715e5fe0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/eye.svg b/src/resources/icons/at-icons/eye.svg new file mode 100644 index 00000000..42c52560 --- /dev/null +++ b/src/resources/icons/at-icons/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/eye.svg.import b/src/resources/icons/at-icons/eye.svg.import new file mode 100644 index 00000000..53dfaaad --- /dev/null +++ b/src/resources/icons/at-icons/eye.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt12y6jr8g4r6" +path="res://.godot/imported/eye.svg-e599c8653b854752f86522f95d89e27e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/eye.svg" +dest_files=["res://.godot/imported/eye.svg-e599c8653b854752f86522f95d89e27e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/eye_closed.svg b/src/resources/icons/at-icons/eye_closed.svg new file mode 100644 index 00000000..a987f992 --- /dev/null +++ b/src/resources/icons/at-icons/eye_closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/eye_closed.svg.import b/src/resources/icons/at-icons/eye_closed.svg.import new file mode 100644 index 00000000..9027fd0e --- /dev/null +++ b/src/resources/icons/at-icons/eye_closed.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://darlg0uldbig7" +path="res://.godot/imported/eye_closed.svg-400cd75750d289f1d399d94e68d4f554.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/eye_closed.svg" +dest_files=["res://.godot/imported/eye_closed.svg-400cd75750d289f1d399d94e68d4f554.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/face.svg b/src/resources/icons/at-icons/face.svg new file mode 100644 index 00000000..d6ed1ec6 --- /dev/null +++ b/src/resources/icons/at-icons/face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/face.svg.import b/src/resources/icons/at-icons/face.svg.import new file mode 100644 index 00000000..0ada91fc --- /dev/null +++ b/src/resources/icons/at-icons/face.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jnh4bee4nxrx" +path="res://.godot/imported/face.svg-06c4573788b7f40ac3486ab9e44edbf5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/face.svg" +dest_files=["res://.godot/imported/face.svg-06c4573788b7f40ac3486ab9e44edbf5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/factory.svg b/src/resources/icons/at-icons/factory.svg new file mode 100644 index 00000000..2e94640e --- /dev/null +++ b/src/resources/icons/at-icons/factory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/factory.svg.import b/src/resources/icons/at-icons/factory.svg.import new file mode 100644 index 00000000..16ac4334 --- /dev/null +++ b/src/resources/icons/at-icons/factory.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d01ns6ua5rpnq" +path="res://.godot/imported/factory.svg-90c669e9feef81e23a860d3bbe2636ce.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/factory.svg" +dest_files=["res://.godot/imported/factory.svg-90c669e9feef81e23a860d3bbe2636ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/fan.svg b/src/resources/icons/at-icons/fan.svg new file mode 100644 index 00000000..045e7702 --- /dev/null +++ b/src/resources/icons/at-icons/fan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/fan.svg.import b/src/resources/icons/at-icons/fan.svg.import new file mode 100644 index 00000000..8b3cd66a --- /dev/null +++ b/src/resources/icons/at-icons/fan.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cloq15ym08k77" +path="res://.godot/imported/fan.svg-2434b907c62b7fbfc211a9a8710903e8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/fan.svg" +dest_files=["res://.godot/imported/fan.svg-2434b907c62b7fbfc211a9a8710903e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/fast_forward.svg b/src/resources/icons/at-icons/fast_forward.svg new file mode 100644 index 00000000..1b421126 --- /dev/null +++ b/src/resources/icons/at-icons/fast_forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/fast_forward.svg.import b/src/resources/icons/at-icons/fast_forward.svg.import new file mode 100644 index 00000000..e8fadb05 --- /dev/null +++ b/src/resources/icons/at-icons/fast_forward.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rdxsgf0dpa1x" +path="res://.godot/imported/fast_forward.svg-b4d530c0e8e43e02fe28bc5336253c56.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/fast_forward.svg" +dest_files=["res://.godot/imported/fast_forward.svg-b4d530c0e8e43e02fe28bc5336253c56.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/feather.svg b/src/resources/icons/at-icons/feather.svg new file mode 100644 index 00000000..b35be07c --- /dev/null +++ b/src/resources/icons/at-icons/feather.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/feather.svg.import b/src/resources/icons/at-icons/feather.svg.import new file mode 100644 index 00000000..92d87b29 --- /dev/null +++ b/src/resources/icons/at-icons/feather.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e6ml0taynfd7" +path="res://.godot/imported/feather.svg-8ecbbe5aa14b84df3678af15de3d8d3b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/feather.svg" +dest_files=["res://.godot/imported/feather.svg-8ecbbe5aa14b84df3678af15de3d8d3b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/field_of_view.svg b/src/resources/icons/at-icons/field_of_view.svg new file mode 100644 index 00000000..25694a74 --- /dev/null +++ b/src/resources/icons/at-icons/field_of_view.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/field_of_view.svg.import b/src/resources/icons/at-icons/field_of_view.svg.import new file mode 100644 index 00000000..c2ea6688 --- /dev/null +++ b/src/resources/icons/at-icons/field_of_view.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bauh6pvxfq3oh" +path="res://.godot/imported/field_of_view.svg-b8639d20b2806e141b4bdd901456ce1b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/field_of_view.svg" +dest_files=["res://.godot/imported/field_of_view.svg-b8639d20b2806e141b4bdd901456ce1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file.svg b/src/resources/icons/at-icons/file.svg new file mode 100644 index 00000000..5c6b6524 --- /dev/null +++ b/src/resources/icons/at-icons/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file.svg.import b/src/resources/icons/at-icons/file.svg.import new file mode 100644 index 00000000..581f2469 --- /dev/null +++ b/src/resources/icons/at-icons/file.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyikgtqd25ij3" +path="res://.godot/imported/file.svg-cf702edfefc9ecd4498f2c70c0a5af53.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file.svg" +dest_files=["res://.godot/imported/file.svg-cf702edfefc9ecd4498f2c70c0a5af53.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_arrow_down.svg b/src/resources/icons/at-icons/file_arrow_down.svg new file mode 100644 index 00000000..047fed3b --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_arrow_down.svg.import b/src/resources/icons/at-icons/file_arrow_down.svg.import new file mode 100644 index 00000000..0c7005b0 --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_down.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q3tx15x8giwe" +path="res://.godot/imported/file_arrow_down.svg-2f77b4731cd03105ac300a3eba71a7ad.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_arrow_down.svg" +dest_files=["res://.godot/imported/file_arrow_down.svg-2f77b4731cd03105ac300a3eba71a7ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_arrow_down_left.svg b/src/resources/icons/at-icons/file_arrow_down_left.svg new file mode 100644 index 00000000..91098aeb --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_down_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_arrow_down_left.svg.import b/src/resources/icons/at-icons/file_arrow_down_left.svg.import new file mode 100644 index 00000000..22eca900 --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_down_left.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rciclxspsjow" +path="res://.godot/imported/file_arrow_down_left.svg-71bfb515815a6fe4325e08ae8faad7bf.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_arrow_down_left.svg" +dest_files=["res://.godot/imported/file_arrow_down_left.svg-71bfb515815a6fe4325e08ae8faad7bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_arrow_down_right.svg b/src/resources/icons/at-icons/file_arrow_down_right.svg new file mode 100644 index 00000000..d59274e2 --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_down_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_arrow_down_right.svg.import b/src/resources/icons/at-icons/file_arrow_down_right.svg.import new file mode 100644 index 00000000..ab9a5ab2 --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_down_right.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://krri1tru5ifn" +path="res://.godot/imported/file_arrow_down_right.svg-b063d13bd1d1992b269ab65216aa1f7c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_arrow_down_right.svg" +dest_files=["res://.godot/imported/file_arrow_down_right.svg-b063d13bd1d1992b269ab65216aa1f7c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_arrow_left.svg b/src/resources/icons/at-icons/file_arrow_left.svg new file mode 100644 index 00000000..5d14d162 --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_arrow_left.svg.import b/src/resources/icons/at-icons/file_arrow_left.svg.import new file mode 100644 index 00000000..1506231b --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_left.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs2sgxcoytvly" +path="res://.godot/imported/file_arrow_left.svg-79fb11abd0133461f92d58b0a6688114.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_arrow_left.svg" +dest_files=["res://.godot/imported/file_arrow_left.svg-79fb11abd0133461f92d58b0a6688114.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_arrow_right.svg b/src/resources/icons/at-icons/file_arrow_right.svg new file mode 100644 index 00000000..9b262530 --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_arrow_right.svg.import b/src/resources/icons/at-icons/file_arrow_right.svg.import new file mode 100644 index 00000000..ccc7c819 --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_right.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beoxdn2luyqdd" +path="res://.godot/imported/file_arrow_right.svg-3f8e182b0ec70d1a128ef1b5de302759.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_arrow_right.svg" +dest_files=["res://.godot/imported/file_arrow_right.svg-3f8e182b0ec70d1a128ef1b5de302759.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_arrow_up.svg b/src/resources/icons/at-icons/file_arrow_up.svg new file mode 100644 index 00000000..815fe9de --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_arrow_up.svg.import b/src/resources/icons/at-icons/file_arrow_up.svg.import new file mode 100644 index 00000000..4ee80511 --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_up.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dntfscxowms7a" +path="res://.godot/imported/file_arrow_up.svg-7a50f692a116d9fbe82595a46cb73aeb.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_arrow_up.svg" +dest_files=["res://.godot/imported/file_arrow_up.svg-7a50f692a116d9fbe82595a46cb73aeb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_arrow_up_left.svg b/src/resources/icons/at-icons/file_arrow_up_left.svg new file mode 100644 index 00000000..b7a6370b --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_up_left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_arrow_up_left.svg.import b/src/resources/icons/at-icons/file_arrow_up_left.svg.import new file mode 100644 index 00000000..006957f4 --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_up_left.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvd3vp2j1nkyw" +path="res://.godot/imported/file_arrow_up_left.svg-02365f0275c7924b81820e0b7820d39c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_arrow_up_left.svg" +dest_files=["res://.godot/imported/file_arrow_up_left.svg-02365f0275c7924b81820e0b7820d39c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_arrow_up_right.svg b/src/resources/icons/at-icons/file_arrow_up_right.svg new file mode 100644 index 00000000..7a61ebe3 --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_up_right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_arrow_up_right.svg.import b/src/resources/icons/at-icons/file_arrow_up_right.svg.import new file mode 100644 index 00000000..e6fe6ba4 --- /dev/null +++ b/src/resources/icons/at-icons/file_arrow_up_right.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c87bggmioq2c" +path="res://.godot/imported/file_arrow_up_right.svg-422b394f776f4f634dee3adfa516b05d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_arrow_up_right.svg" +dest_files=["res://.godot/imported/file_arrow_up_right.svg-422b394f776f4f634dee3adfa516b05d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_box.svg b/src/resources/icons/at-icons/file_box.svg new file mode 100644 index 00000000..a4a4f458 --- /dev/null +++ b/src/resources/icons/at-icons/file_box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_box.svg.import b/src/resources/icons/at-icons/file_box.svg.import new file mode 100644 index 00000000..1bcc9a6a --- /dev/null +++ b/src/resources/icons/at-icons/file_box.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br6ahkttq21jx" +path="res://.godot/imported/file_box.svg-544342e89ee7eff9cd8f634a77834d6b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_box.svg" +dest_files=["res://.godot/imported/file_box.svg-544342e89ee7eff9cd8f634a77834d6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_checkmark.svg b/src/resources/icons/at-icons/file_checkmark.svg new file mode 100644 index 00000000..1d403593 --- /dev/null +++ b/src/resources/icons/at-icons/file_checkmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_checkmark.svg.import b/src/resources/icons/at-icons/file_checkmark.svg.import new file mode 100644 index 00000000..b6fdc85b --- /dev/null +++ b/src/resources/icons/at-icons/file_checkmark.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpk0lr7faka28" +path="res://.godot/imported/file_checkmark.svg-b6e0663b8a3645263c64b0d4bebb242e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_checkmark.svg" +dest_files=["res://.godot/imported/file_checkmark.svg-b6e0663b8a3645263c64b0d4bebb242e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_code.svg b/src/resources/icons/at-icons/file_code.svg new file mode 100644 index 00000000..a92bdb64 --- /dev/null +++ b/src/resources/icons/at-icons/file_code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_code.svg.import b/src/resources/icons/at-icons/file_code.svg.import new file mode 100644 index 00000000..0f38025c --- /dev/null +++ b/src/resources/icons/at-icons/file_code.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwrh61ohdxxkt" +path="res://.godot/imported/file_code.svg-10d28acec0e37e8a3b2512a46b3c694c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_code.svg" +dest_files=["res://.godot/imported/file_code.svg-10d28acec0e37e8a3b2512a46b3c694c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_cog.svg b/src/resources/icons/at-icons/file_cog.svg new file mode 100644 index 00000000..a080f5d7 --- /dev/null +++ b/src/resources/icons/at-icons/file_cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_cog.svg.import b/src/resources/icons/at-icons/file_cog.svg.import new file mode 100644 index 00000000..c4a71817 --- /dev/null +++ b/src/resources/icons/at-icons/file_cog.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc7b7waal7i45" +path="res://.godot/imported/file_cog.svg-45d6ca75045d85eb137f9cf6055e7f85.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_cog.svg" +dest_files=["res://.godot/imported/file_cog.svg-45d6ca75045d85eb137f9cf6055e7f85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_cross.svg b/src/resources/icons/at-icons/file_cross.svg new file mode 100644 index 00000000..fca010ee --- /dev/null +++ b/src/resources/icons/at-icons/file_cross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_cross.svg.import b/src/resources/icons/at-icons/file_cross.svg.import new file mode 100644 index 00000000..a2126e10 --- /dev/null +++ b/src/resources/icons/at-icons/file_cross.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwxxbbejt1p67" +path="res://.godot/imported/file_cross.svg-c22ac014e76fbd3caad9d8c2376a77a6.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_cross.svg" +dest_files=["res://.godot/imported/file_cross.svg-c22ac014e76fbd3caad9d8c2376a77a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_document.svg b/src/resources/icons/at-icons/file_document.svg new file mode 100644 index 00000000..88512781 --- /dev/null +++ b/src/resources/icons/at-icons/file_document.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_document.svg.import b/src/resources/icons/at-icons/file_document.svg.import new file mode 100644 index 00000000..2f56fbaf --- /dev/null +++ b/src/resources/icons/at-icons/file_document.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://srbx61vq2mr8" +path="res://.godot/imported/file_document.svg-a68765502ee31cf3c8709fdda9bad70f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_document.svg" +dest_files=["res://.godot/imported/file_document.svg-a68765502ee31cf3c8709fdda9bad70f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_image.svg b/src/resources/icons/at-icons/file_image.svg new file mode 100644 index 00000000..c0676c37 --- /dev/null +++ b/src/resources/icons/at-icons/file_image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_image.svg.import b/src/resources/icons/at-icons/file_image.svg.import new file mode 100644 index 00000000..4360dfd0 --- /dev/null +++ b/src/resources/icons/at-icons/file_image.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmk3gromurlxt" +path="res://.godot/imported/file_image.svg-4990c7d7510c7a27183d897ef8ad0bdd.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_image.svg" +dest_files=["res://.godot/imported/file_image.svg-4990c7d7510c7a27183d897ef8ad0bdd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_magnifying_glass.svg b/src/resources/icons/at-icons/file_magnifying_glass.svg new file mode 100644 index 00000000..63d2e6ed --- /dev/null +++ b/src/resources/icons/at-icons/file_magnifying_glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_magnifying_glass.svg.import b/src/resources/icons/at-icons/file_magnifying_glass.svg.import new file mode 100644 index 00000000..f7f213e9 --- /dev/null +++ b/src/resources/icons/at-icons/file_magnifying_glass.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buws0djp2ooxj" +path="res://.godot/imported/file_magnifying_glass.svg-a7635c9957df6f9baec6d5f23de62504.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_magnifying_glass.svg" +dest_files=["res://.godot/imported/file_magnifying_glass.svg-a7635c9957df6f9baec6d5f23de62504.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_note.svg b/src/resources/icons/at-icons/file_note.svg new file mode 100644 index 00000000..29335415 --- /dev/null +++ b/src/resources/icons/at-icons/file_note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_note.svg.import b/src/resources/icons/at-icons/file_note.svg.import new file mode 100644 index 00000000..c97ec5ee --- /dev/null +++ b/src/resources/icons/at-icons/file_note.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7beex56evt5o" +path="res://.godot/imported/file_note.svg-9b25e52c469f76da45c826ba4de6dc92.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_note.svg" +dest_files=["res://.godot/imported/file_note.svg-9b25e52c469f76da45c826ba4de6dc92.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_note_double.svg b/src/resources/icons/at-icons/file_note_double.svg new file mode 100644 index 00000000..1aa9b26c --- /dev/null +++ b/src/resources/icons/at-icons/file_note_double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_note_double.svg.import b/src/resources/icons/at-icons/file_note_double.svg.import new file mode 100644 index 00000000..b2f058f9 --- /dev/null +++ b/src/resources/icons/at-icons/file_note_double.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctcia4pg358ck" +path="res://.godot/imported/file_note_double.svg-84e654bd95cc9d0cd15e3ca4be0c2a8f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_note_double.svg" +dest_files=["res://.godot/imported/file_note_double.svg-84e654bd95cc9d0cd15e3ca4be0c2a8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_pencil.svg b/src/resources/icons/at-icons/file_pencil.svg new file mode 100644 index 00000000..809fde04 --- /dev/null +++ b/src/resources/icons/at-icons/file_pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_pencil.svg.import b/src/resources/icons/at-icons/file_pencil.svg.import new file mode 100644 index 00000000..997b0cf2 --- /dev/null +++ b/src/resources/icons/at-icons/file_pencil.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2lcar5oigup2" +path="res://.godot/imported/file_pencil.svg-3187eb18820098239003494ce03471ed.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_pencil.svg" +dest_files=["res://.godot/imported/file_pencil.svg-3187eb18820098239003494ce03471ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_plus.svg b/src/resources/icons/at-icons/file_plus.svg new file mode 100644 index 00000000..0cf9c7dd --- /dev/null +++ b/src/resources/icons/at-icons/file_plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_plus.svg.import b/src/resources/icons/at-icons/file_plus.svg.import new file mode 100644 index 00000000..d522b169 --- /dev/null +++ b/src/resources/icons/at-icons/file_plus.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu30ec3evy4pm" +path="res://.godot/imported/file_plus.svg-333faf6e8a7a7351501fadf8c286da24.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_plus.svg" +dest_files=["res://.godot/imported/file_plus.svg-333faf6e8a7a7351501fadf8c286da24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_sliders.svg b/src/resources/icons/at-icons/file_sliders.svg new file mode 100644 index 00000000..7fe601dd --- /dev/null +++ b/src/resources/icons/at-icons/file_sliders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_sliders.svg.import b/src/resources/icons/at-icons/file_sliders.svg.import new file mode 100644 index 00000000..c94bc9f5 --- /dev/null +++ b/src/resources/icons/at-icons/file_sliders.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwuy2oum4qvlw" +path="res://.godot/imported/file_sliders.svg-f126642dc6a52e02f0192ed47514b3da.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_sliders.svg" +dest_files=["res://.godot/imported/file_sliders.svg-f126642dc6a52e02f0192ed47514b3da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_terminal.svg b/src/resources/icons/at-icons/file_terminal.svg new file mode 100644 index 00000000..10dd8aab --- /dev/null +++ b/src/resources/icons/at-icons/file_terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_terminal.svg.import b/src/resources/icons/at-icons/file_terminal.svg.import new file mode 100644 index 00000000..b59b1964 --- /dev/null +++ b/src/resources/icons/at-icons/file_terminal.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvg1uy2b88a0g" +path="res://.godot/imported/file_terminal.svg-a77c9b5f176c1c7273559c7f964533cf.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_terminal.svg" +dest_files=["res://.godot/imported/file_terminal.svg-a77c9b5f176c1c7273559c7f964533cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/file_video.svg b/src/resources/icons/at-icons/file_video.svg new file mode 100644 index 00000000..1b6128aa --- /dev/null +++ b/src/resources/icons/at-icons/file_video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/file_video.svg.import b/src/resources/icons/at-icons/file_video.svg.import new file mode 100644 index 00000000..a1322cb2 --- /dev/null +++ b/src/resources/icons/at-icons/file_video.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyognoqj7wr7p" +path="res://.godot/imported/file_video.svg-98ee9ccf37833433b2dc8d79ee5e19e2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/file_video.svg" +dest_files=["res://.godot/imported/file_video.svg-98ee9ccf37833433b2dc8d79ee5e19e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/files.svg b/src/resources/icons/at-icons/files.svg new file mode 100644 index 00000000..0feb3315 --- /dev/null +++ b/src/resources/icons/at-icons/files.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/files.svg.import b/src/resources/icons/at-icons/files.svg.import new file mode 100644 index 00000000..6207812c --- /dev/null +++ b/src/resources/icons/at-icons/files.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbuc5t4abj31n" +path="res://.godot/imported/files.svg-05a28e158ada67195afc512837e11243.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/files.svg" +dest_files=["res://.godot/imported/files.svg-05a28e158ada67195afc512837e11243.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/film.svg b/src/resources/icons/at-icons/film.svg new file mode 100644 index 00000000..227c0673 --- /dev/null +++ b/src/resources/icons/at-icons/film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/film.svg.import b/src/resources/icons/at-icons/film.svg.import new file mode 100644 index 00000000..309afb08 --- /dev/null +++ b/src/resources/icons/at-icons/film.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d7hn0vah6xpp" +path="res://.godot/imported/film.svg-4f6ca7d9f0101dbd06d09c18759cd4bb.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/film.svg" +dest_files=["res://.godot/imported/film.svg-4f6ca7d9f0101dbd06d09c18759cd4bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/filter.svg b/src/resources/icons/at-icons/filter.svg new file mode 100644 index 00000000..6205dded --- /dev/null +++ b/src/resources/icons/at-icons/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/filter.svg.import b/src/resources/icons/at-icons/filter.svg.import new file mode 100644 index 00000000..f7a388a7 --- /dev/null +++ b/src/resources/icons/at-icons/filter.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dki4vpbmhhbe2" +path="res://.godot/imported/filter.svg-a6b6291b3175e10b85c62172b371f3bb.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/filter.svg" +dest_files=["res://.godot/imported/filter.svg-a6b6291b3175e10b85c62172b371f3bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/fingerprint.svg b/src/resources/icons/at-icons/fingerprint.svg new file mode 100644 index 00000000..e5f42810 --- /dev/null +++ b/src/resources/icons/at-icons/fingerprint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/fingerprint.svg.import b/src/resources/icons/at-icons/fingerprint.svg.import new file mode 100644 index 00000000..402a7969 --- /dev/null +++ b/src/resources/icons/at-icons/fingerprint.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crva05a7dtx6s" +path="res://.godot/imported/fingerprint.svg-c4ea454af0fbd2f4866992d638954beb.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/fingerprint.svg" +dest_files=["res://.godot/imported/fingerprint.svg-c4ea454af0fbd2f4866992d638954beb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/fire.svg b/src/resources/icons/at-icons/fire.svg new file mode 100644 index 00000000..6da22bee --- /dev/null +++ b/src/resources/icons/at-icons/fire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/fire.svg.import b/src/resources/icons/at-icons/fire.svg.import new file mode 100644 index 00000000..181790ba --- /dev/null +++ b/src/resources/icons/at-icons/fire.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct3w2fatg7t28" +path="res://.godot/imported/fire.svg-9891d749f8a13c799b0be2e5507314d8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/fire.svg" +dest_files=["res://.godot/imported/fire.svg-9891d749f8a13c799b0be2e5507314d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/fish.svg b/src/resources/icons/at-icons/fish.svg new file mode 100644 index 00000000..9576dfcf --- /dev/null +++ b/src/resources/icons/at-icons/fish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/fish.svg.import b/src/resources/icons/at-icons/fish.svg.import new file mode 100644 index 00000000..1288d3c7 --- /dev/null +++ b/src/resources/icons/at-icons/fish.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8pllcvywtqwt" +path="res://.godot/imported/fish.svg-3bf1ca4c0769acb0b5a6f3bb555071c7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/fish.svg" +dest_files=["res://.godot/imported/fish.svg-3bf1ca4c0769acb0b5a6f3bb555071c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/fist.svg b/src/resources/icons/at-icons/fist.svg new file mode 100644 index 00000000..cb225c51 --- /dev/null +++ b/src/resources/icons/at-icons/fist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/fist.svg.import b/src/resources/icons/at-icons/fist.svg.import new file mode 100644 index 00000000..d1a696d2 --- /dev/null +++ b/src/resources/icons/at-icons/fist.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmdvlcdwntdk0" +path="res://.godot/imported/fist.svg-bd7fff2daa427bcbfc6eb930c6e37ad9.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/fist.svg" +dest_files=["res://.godot/imported/fist.svg-bd7fff2daa427bcbfc6eb930c6e37ad9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/flag_checkered.svg b/src/resources/icons/at-icons/flag_checkered.svg new file mode 100644 index 00000000..1627bc8a --- /dev/null +++ b/src/resources/icons/at-icons/flag_checkered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/flag_checkered.svg.import b/src/resources/icons/at-icons/flag_checkered.svg.import new file mode 100644 index 00000000..ef7fb2a8 --- /dev/null +++ b/src/resources/icons/at-icons/flag_checkered.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p5s3nsi4vfff" +path="res://.godot/imported/flag_checkered.svg-8f4ad3510b3280bbb702a08a50ee0d9c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/flag_checkered.svg" +dest_files=["res://.godot/imported/flag_checkered.svg-8f4ad3510b3280bbb702a08a50ee0d9c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/flag_cone.svg b/src/resources/icons/at-icons/flag_cone.svg new file mode 100644 index 00000000..60ece229 --- /dev/null +++ b/src/resources/icons/at-icons/flag_cone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/flag_cone.svg.import b/src/resources/icons/at-icons/flag_cone.svg.import new file mode 100644 index 00000000..9308c51e --- /dev/null +++ b/src/resources/icons/at-icons/flag_cone.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yc10t2k2vlor" +path="res://.godot/imported/flag_cone.svg-77168eafc0b91cf0f88092679862a13d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/flag_cone.svg" +dest_files=["res://.godot/imported/flag_cone.svg-77168eafc0b91cf0f88092679862a13d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/flag_triangular.svg b/src/resources/icons/at-icons/flag_triangular.svg new file mode 100644 index 00000000..e74f5c78 --- /dev/null +++ b/src/resources/icons/at-icons/flag_triangular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/flag_triangular.svg.import b/src/resources/icons/at-icons/flag_triangular.svg.import new file mode 100644 index 00000000..5623fb5a --- /dev/null +++ b/src/resources/icons/at-icons/flag_triangular.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyxypaetfvkmi" +path="res://.godot/imported/flag_triangular.svg-1e1602fc528dae07f9129517913152f7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/flag_triangular.svg" +dest_files=["res://.godot/imported/flag_triangular.svg-1e1602fc528dae07f9129517913152f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/flintlock.svg b/src/resources/icons/at-icons/flintlock.svg new file mode 100644 index 00000000..1c1993a8 --- /dev/null +++ b/src/resources/icons/at-icons/flintlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/flintlock.svg.import b/src/resources/icons/at-icons/flintlock.svg.import new file mode 100644 index 00000000..e12f358d --- /dev/null +++ b/src/resources/icons/at-icons/flintlock.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f0m3ythkwccf" +path="res://.godot/imported/flintlock.svg-5b60aab052582ddbffd56581979a73ab.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/flintlock.svg" +dest_files=["res://.godot/imported/flintlock.svg-5b60aab052582ddbffd56581979a73ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/floppy_disk.svg b/src/resources/icons/at-icons/floppy_disk.svg new file mode 100644 index 00000000..ceba1789 --- /dev/null +++ b/src/resources/icons/at-icons/floppy_disk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/floppy_disk.svg.import b/src/resources/icons/at-icons/floppy_disk.svg.import new file mode 100644 index 00000000..8592bb7a --- /dev/null +++ b/src/resources/icons/at-icons/floppy_disk.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bep28eda3goub" +path="res://.godot/imported/floppy_disk.svg-4dbfd9b548ec631299a0234e681f88e7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/floppy_disk.svg" +dest_files=["res://.godot/imported/floppy_disk.svg-4dbfd9b548ec631299a0234e681f88e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/floppy_disks.svg b/src/resources/icons/at-icons/floppy_disks.svg new file mode 100644 index 00000000..64c14692 --- /dev/null +++ b/src/resources/icons/at-icons/floppy_disks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/floppy_disks.svg.import b/src/resources/icons/at-icons/floppy_disks.svg.import new file mode 100644 index 00000000..a06ab5d4 --- /dev/null +++ b/src/resources/icons/at-icons/floppy_disks.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxy5espswm6ak" +path="res://.godot/imported/floppy_disks.svg-8d84e00cccd2d2832e497a64e71c2dcd.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/floppy_disks.svg" +dest_files=["res://.godot/imported/floppy_disks.svg-8d84e00cccd2d2832e497a64e71c2dcd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/flower.svg b/src/resources/icons/at-icons/flower.svg new file mode 100644 index 00000000..b136db3c --- /dev/null +++ b/src/resources/icons/at-icons/flower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/flower.svg.import b/src/resources/icons/at-icons/flower.svg.import new file mode 100644 index 00000000..834e2f77 --- /dev/null +++ b/src/resources/icons/at-icons/flower.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtr8axi6yqndo" +path="res://.godot/imported/flower.svg-67c73fcd64ab3a19aa13df297934bf20.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/flower.svg" +dest_files=["res://.godot/imported/flower.svg-67c73fcd64ab3a19aa13df297934bf20.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/fog.svg b/src/resources/icons/at-icons/fog.svg new file mode 100644 index 00000000..ad0e1db3 --- /dev/null +++ b/src/resources/icons/at-icons/fog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/fog.svg.import b/src/resources/icons/at-icons/fog.svg.import new file mode 100644 index 00000000..ede1d0c9 --- /dev/null +++ b/src/resources/icons/at-icons/fog.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://480q1u8kvwlw" +path="res://.godot/imported/fog.svg-f3284b677be6ffebdd670e84b2f0fc83.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/fog.svg" +dest_files=["res://.godot/imported/fog.svg-f3284b677be6ffebdd670e84b2f0fc83.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/folder.svg b/src/resources/icons/at-icons/folder.svg new file mode 100644 index 00000000..7ba08a1d --- /dev/null +++ b/src/resources/icons/at-icons/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/folder.svg.import b/src/resources/icons/at-icons/folder.svg.import new file mode 100644 index 00000000..7abae88a --- /dev/null +++ b/src/resources/icons/at-icons/folder.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddatviwfg73kc" +path="res://.godot/imported/folder.svg-862715071114c09d36b85f007bca6063.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/folder.svg" +dest_files=["res://.godot/imported/folder.svg-862715071114c09d36b85f007bca6063.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/folder_lock.svg b/src/resources/icons/at-icons/folder_lock.svg new file mode 100644 index 00000000..2aecdb1e --- /dev/null +++ b/src/resources/icons/at-icons/folder_lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/folder_lock.svg.import b/src/resources/icons/at-icons/folder_lock.svg.import new file mode 100644 index 00000000..a91ad6d2 --- /dev/null +++ b/src/resources/icons/at-icons/folder_lock.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crvfny4ulh07v" +path="res://.godot/imported/folder_lock.svg-35d1e0dde41964a4025c06e40e4fdcd1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/folder_lock.svg" +dest_files=["res://.godot/imported/folder_lock.svg-35d1e0dde41964a4025c06e40e4fdcd1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/folder_open.svg b/src/resources/icons/at-icons/folder_open.svg new file mode 100644 index 00000000..8af8949f --- /dev/null +++ b/src/resources/icons/at-icons/folder_open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/folder_open.svg.import b/src/resources/icons/at-icons/folder_open.svg.import new file mode 100644 index 00000000..7bd407b3 --- /dev/null +++ b/src/resources/icons/at-icons/folder_open.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn1spun2gxpep" +path="res://.godot/imported/folder_open.svg-9965da66854fa24a771bd5dd8b394c70.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/folder_open.svg" +dest_files=["res://.godot/imported/folder_open.svg-9965da66854fa24a771bd5dd8b394c70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/folder_zip.svg b/src/resources/icons/at-icons/folder_zip.svg new file mode 100644 index 00000000..b63aa6af --- /dev/null +++ b/src/resources/icons/at-icons/folder_zip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/folder_zip.svg.import b/src/resources/icons/at-icons/folder_zip.svg.import new file mode 100644 index 00000000..ab104fa4 --- /dev/null +++ b/src/resources/icons/at-icons/folder_zip.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8gq8w35hahav" +path="res://.godot/imported/folder_zip.svg-0f4aefc22dcad25fcde98702c4288c85.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/folder_zip.svg" +dest_files=["res://.godot/imported/folder_zip.svg-0f4aefc22dcad25fcde98702c4288c85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/font.svg b/src/resources/icons/at-icons/font.svg new file mode 100644 index 00000000..b41a3f0f --- /dev/null +++ b/src/resources/icons/at-icons/font.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/font.svg.import b/src/resources/icons/at-icons/font.svg.import new file mode 100644 index 00000000..92bffce6 --- /dev/null +++ b/src/resources/icons/at-icons/font.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsw1asstwcx7l" +path="res://.godot/imported/font.svg-c96f38d6074f4539d3a113568bc83853.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/font.svg" +dest_files=["res://.godot/imported/font.svg-c96f38d6074f4539d3a113568bc83853.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/football.svg b/src/resources/icons/at-icons/football.svg new file mode 100644 index 00000000..1fc3a92e --- /dev/null +++ b/src/resources/icons/at-icons/football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/football.svg.import b/src/resources/icons/at-icons/football.svg.import new file mode 100644 index 00000000..c7b5d9cc --- /dev/null +++ b/src/resources/icons/at-icons/football.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3d1eoughvlwe" +path="res://.godot/imported/football.svg-b08e14b0afce55ff5309c7445236e1fc.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/football.svg" +dest_files=["res://.godot/imported/football.svg-b08e14b0afce55ff5309c7445236e1fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/footsteps.svg b/src/resources/icons/at-icons/footsteps.svg new file mode 100644 index 00000000..8123bb91 --- /dev/null +++ b/src/resources/icons/at-icons/footsteps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/footsteps.svg.import b/src/resources/icons/at-icons/footsteps.svg.import new file mode 100644 index 00000000..d00b09c0 --- /dev/null +++ b/src/resources/icons/at-icons/footsteps.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brigdyunqa18" +path="res://.godot/imported/footsteps.svg-10bf37ee00a7bfcc997a6ce34a5c143a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/footsteps.svg" +dest_files=["res://.godot/imported/footsteps.svg-10bf37ee00a7bfcc997a6ce34a5c143a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/force_field.svg b/src/resources/icons/at-icons/force_field.svg new file mode 100644 index 00000000..f4079e75 --- /dev/null +++ b/src/resources/icons/at-icons/force_field.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/force_field.svg.import b/src/resources/icons/at-icons/force_field.svg.import new file mode 100644 index 00000000..6fb7eb42 --- /dev/null +++ b/src/resources/icons/at-icons/force_field.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn5hlcrd5g0o1" +path="res://.godot/imported/force_field.svg-07434041056a047aa74883d1492b34f1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/force_field.svg" +dest_files=["res://.godot/imported/force_field.svg-07434041056a047aa74883d1492b34f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/forest.svg b/src/resources/icons/at-icons/forest.svg new file mode 100644 index 00000000..39aa33e4 --- /dev/null +++ b/src/resources/icons/at-icons/forest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/forest.svg.import b/src/resources/icons/at-icons/forest.svg.import new file mode 100644 index 00000000..b09b689f --- /dev/null +++ b/src/resources/icons/at-icons/forest.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvnmkva6fjqjp" +path="res://.godot/imported/forest.svg-645c2a72fac97950882ad392a677d169.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/forest.svg" +dest_files=["res://.godot/imported/forest.svg-645c2a72fac97950882ad392a677d169.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/frowning_face.svg b/src/resources/icons/at-icons/frowning_face.svg new file mode 100644 index 00000000..787f5300 --- /dev/null +++ b/src/resources/icons/at-icons/frowning_face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/frowning_face.svg.import b/src/resources/icons/at-icons/frowning_face.svg.import new file mode 100644 index 00000000..cd0efdba --- /dev/null +++ b/src/resources/icons/at-icons/frowning_face.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mi728jxkntw4" +path="res://.godot/imported/frowning_face.svg-1bbb42b8dcdff1ffd59f87ca030b2414.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/frowning_face.svg" +dest_files=["res://.godot/imported/frowning_face.svg-1bbb42b8dcdff1ffd59f87ca030b2414.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/galaxy.svg b/src/resources/icons/at-icons/galaxy.svg new file mode 100644 index 00000000..66662bbe --- /dev/null +++ b/src/resources/icons/at-icons/galaxy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/galaxy.svg.import b/src/resources/icons/at-icons/galaxy.svg.import new file mode 100644 index 00000000..be971e30 --- /dev/null +++ b/src/resources/icons/at-icons/galaxy.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6cbeluepcbi2" +path="res://.godot/imported/galaxy.svg-e99a3d1b0e4dc6cdcd58b2c00dfe6fc1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/galaxy.svg" +dest_files=["res://.godot/imported/galaxy.svg-e99a3d1b0e4dc6cdcd58b2c00dfe6fc1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/gate.svg b/src/resources/icons/at-icons/gate.svg new file mode 100644 index 00000000..e8b15835 --- /dev/null +++ b/src/resources/icons/at-icons/gate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/gate.svg.import b/src/resources/icons/at-icons/gate.svg.import new file mode 100644 index 00000000..3e718095 --- /dev/null +++ b/src/resources/icons/at-icons/gate.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dswglgo8oyfjj" +path="res://.godot/imported/gate.svg-4f9bf867fbe1a4f8ef5cd1b24ed8b767.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/gate.svg" +dest_files=["res://.godot/imported/gate.svg-4f9bf867fbe1a4f8ef5cd1b24ed8b767.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/gauge.svg b/src/resources/icons/at-icons/gauge.svg new file mode 100644 index 00000000..442258c8 --- /dev/null +++ b/src/resources/icons/at-icons/gauge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/gauge.svg.import b/src/resources/icons/at-icons/gauge.svg.import new file mode 100644 index 00000000..54922e65 --- /dev/null +++ b/src/resources/icons/at-icons/gauge.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca25be1mxetfu" +path="res://.godot/imported/gauge.svg-4900b79ce899366a1db3a1b09b1c4268.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/gauge.svg" +dest_files=["res://.godot/imported/gauge.svg-4900b79ce899366a1db3a1b09b1c4268.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/gem.svg b/src/resources/icons/at-icons/gem.svg new file mode 100644 index 00000000..5f6f05ca --- /dev/null +++ b/src/resources/icons/at-icons/gem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/gem.svg.import b/src/resources/icons/at-icons/gem.svg.import new file mode 100644 index 00000000..a006ff4b --- /dev/null +++ b/src/resources/icons/at-icons/gem.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v0ejbu02mt74" +path="res://.godot/imported/gem.svg-ce9f6d0f53c71b029fa64291ec8f5eb3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/gem.svg" +dest_files=["res://.godot/imported/gem.svg-ce9f6d0f53c71b029fa64291ec8f5eb3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/ghost.svg b/src/resources/icons/at-icons/ghost.svg new file mode 100644 index 00000000..12a3d404 --- /dev/null +++ b/src/resources/icons/at-icons/ghost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/ghost.svg.import b/src/resources/icons/at-icons/ghost.svg.import new file mode 100644 index 00000000..25069d9a --- /dev/null +++ b/src/resources/icons/at-icons/ghost.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crw0pjdiqq2cn" +path="res://.godot/imported/ghost.svg-185e82825af8fb638cac587396e29da1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/ghost.svg" +dest_files=["res://.godot/imported/ghost.svg-185e82825af8fb638cac587396e29da1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/gift.svg b/src/resources/icons/at-icons/gift.svg new file mode 100644 index 00000000..60f7547d --- /dev/null +++ b/src/resources/icons/at-icons/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/gift.svg.import b/src/resources/icons/at-icons/gift.svg.import new file mode 100644 index 00000000..88c21418 --- /dev/null +++ b/src/resources/icons/at-icons/gift.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clwnycwq0dcx1" +path="res://.godot/imported/gift.svg-e0f82fe5873d2657344039619a7b678f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/gift.svg" +dest_files=["res://.godot/imported/gift.svg-e0f82fe5873d2657344039619a7b678f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/gimbal.svg b/src/resources/icons/at-icons/gimbal.svg new file mode 100644 index 00000000..8ac4f28b --- /dev/null +++ b/src/resources/icons/at-icons/gimbal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/gimbal.svg.import b/src/resources/icons/at-icons/gimbal.svg.import new file mode 100644 index 00000000..7e6aa079 --- /dev/null +++ b/src/resources/icons/at-icons/gimbal.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7woucu1d3pql" +path="res://.godot/imported/gimbal.svg-90aa27e86d6a6a9044c2488d8b71a641.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/gimbal.svg" +dest_files=["res://.godot/imported/gimbal.svg-90aa27e86d6a6a9044c2488d8b71a641.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/glass.svg b/src/resources/icons/at-icons/glass.svg new file mode 100644 index 00000000..cab4f17b --- /dev/null +++ b/src/resources/icons/at-icons/glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/glass.svg.import b/src/resources/icons/at-icons/glass.svg.import new file mode 100644 index 00000000..2b29a7e0 --- /dev/null +++ b/src/resources/icons/at-icons/glass.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://urx7j0lxktrl" +path="res://.godot/imported/glass.svg-df028df06b45640c2eafbeb279430089.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/glass.svg" +dest_files=["res://.godot/imported/glass.svg-df028df06b45640c2eafbeb279430089.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/glass_pane.svg b/src/resources/icons/at-icons/glass_pane.svg new file mode 100644 index 00000000..29e4eeb4 --- /dev/null +++ b/src/resources/icons/at-icons/glass_pane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/glass_pane.svg.import b/src/resources/icons/at-icons/glass_pane.svg.import new file mode 100644 index 00000000..707a5998 --- /dev/null +++ b/src/resources/icons/at-icons/glass_pane.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oolbhp4d68w3" +path="res://.godot/imported/glass_pane.svg-24c769a2b3e6d1aa75efc3171d871d9f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/glass_pane.svg" +dest_files=["res://.godot/imported/glass_pane.svg-24c769a2b3e6d1aa75efc3171d871d9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/glasses.svg b/src/resources/icons/at-icons/glasses.svg new file mode 100644 index 00000000..d600d1d8 --- /dev/null +++ b/src/resources/icons/at-icons/glasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/glasses.svg.import b/src/resources/icons/at-icons/glasses.svg.import new file mode 100644 index 00000000..8ed4353a --- /dev/null +++ b/src/resources/icons/at-icons/glasses.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmq88npmqq1m" +path="res://.godot/imported/glasses.svg-7c7a82f2abc0340373030d11affbb421.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/glasses.svg" +dest_files=["res://.godot/imported/glasses.svg-7c7a82f2abc0340373030d11affbb421.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/globe.svg b/src/resources/icons/at-icons/globe.svg new file mode 100644 index 00000000..033a2171 --- /dev/null +++ b/src/resources/icons/at-icons/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/globe.svg.import b/src/resources/icons/at-icons/globe.svg.import new file mode 100644 index 00000000..64bdbf64 --- /dev/null +++ b/src/resources/icons/at-icons/globe.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfbkrv7v5gixl" +path="res://.godot/imported/globe.svg-d09496db2ecc9cc3da1f3dcfab39dbbf.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/globe.svg" +dest_files=["res://.godot/imported/globe.svg-d09496db2ecc9cc3da1f3dcfab39dbbf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/gobot.svg b/src/resources/icons/at-icons/gobot.svg new file mode 100644 index 00000000..19762540 --- /dev/null +++ b/src/resources/icons/at-icons/gobot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/gobot.svg.import b/src/resources/icons/at-icons/gobot.svg.import new file mode 100644 index 00000000..30581239 --- /dev/null +++ b/src/resources/icons/at-icons/gobot.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxfxnxgbt4f3l" +path="res://.godot/imported/gobot.svg-ef915306565c5e89c6dea39dfaf55cad.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/gobot.svg" +dest_files=["res://.godot/imported/gobot.svg-ef915306565c5e89c6dea39dfaf55cad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/golf_ball.svg b/src/resources/icons/at-icons/golf_ball.svg new file mode 100644 index 00000000..852edf0c --- /dev/null +++ b/src/resources/icons/at-icons/golf_ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/golf_ball.svg.import b/src/resources/icons/at-icons/golf_ball.svg.import new file mode 100644 index 00000000..cb35dcf6 --- /dev/null +++ b/src/resources/icons/at-icons/golf_ball.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2ex5gak3wbal" +path="res://.godot/imported/golf_ball.svg-95b3ea25ac321616212c791a3452d83a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/golf_ball.svg" +dest_files=["res://.godot/imported/golf_ball.svg-95b3ea25ac321616212c791a3452d83a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/golf_club.svg b/src/resources/icons/at-icons/golf_club.svg new file mode 100644 index 00000000..87fe472c --- /dev/null +++ b/src/resources/icons/at-icons/golf_club.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/golf_club.svg.import b/src/resources/icons/at-icons/golf_club.svg.import new file mode 100644 index 00000000..999552de --- /dev/null +++ b/src/resources/icons/at-icons/golf_club.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci0a0u8ciha68" +path="res://.godot/imported/golf_club.svg-eb4f4d3b8fdc78ca5ac605f67160616e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/golf_club.svg" +dest_files=["res://.godot/imported/golf_club.svg-eb4f4d3b8fdc78ca5ac605f67160616e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/golf_hole.svg b/src/resources/icons/at-icons/golf_hole.svg new file mode 100644 index 00000000..cfd4e862 --- /dev/null +++ b/src/resources/icons/at-icons/golf_hole.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/golf_hole.svg.import b/src/resources/icons/at-icons/golf_hole.svg.import new file mode 100644 index 00000000..16031526 --- /dev/null +++ b/src/resources/icons/at-icons/golf_hole.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://thi5oaw420kf" +path="res://.godot/imported/golf_hole.svg-213e34b34a4893fd0baa98770c8ac1bd.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/golf_hole.svg" +dest_files=["res://.godot/imported/golf_hole.svg-213e34b34a4893fd0baa98770c8ac1bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/grass.svg b/src/resources/icons/at-icons/grass.svg new file mode 100644 index 00000000..1e6c06a7 --- /dev/null +++ b/src/resources/icons/at-icons/grass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/grass.svg.import b/src/resources/icons/at-icons/grass.svg.import new file mode 100644 index 00000000..9192c7e2 --- /dev/null +++ b/src/resources/icons/at-icons/grass.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5ne5u6y7pmmq" +path="res://.godot/imported/grass.svg-af0145e62c470f8119a2cd49c137cfec.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/grass.svg" +dest_files=["res://.godot/imported/grass.svg-af0145e62c470f8119a2cd49c137cfec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/gravity.svg b/src/resources/icons/at-icons/gravity.svg new file mode 100644 index 00000000..fb847e81 --- /dev/null +++ b/src/resources/icons/at-icons/gravity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/gravity.svg.import b/src/resources/icons/at-icons/gravity.svg.import new file mode 100644 index 00000000..18d86a92 --- /dev/null +++ b/src/resources/icons/at-icons/gravity.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhseoxi4lxc2m" +path="res://.godot/imported/gravity.svg-3bd6bb0942b5acc8bc185057d466f5b1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/gravity.svg" +dest_files=["res://.godot/imported/gravity.svg-3bd6bb0942b5acc8bc185057d466f5b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/grenade.svg b/src/resources/icons/at-icons/grenade.svg new file mode 100644 index 00000000..3c8ddd27 --- /dev/null +++ b/src/resources/icons/at-icons/grenade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/grenade.svg.import b/src/resources/icons/at-icons/grenade.svg.import new file mode 100644 index 00000000..2f652cc8 --- /dev/null +++ b/src/resources/icons/at-icons/grenade.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6t50o5w2k54q" +path="res://.godot/imported/grenade.svg-b4d0f98d0c50862c22e8966c084b0d43.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/grenade.svg" +dest_files=["res://.godot/imported/grenade.svg-b4d0f98d0c50862c22e8966c084b0d43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/grid_coarse.svg b/src/resources/icons/at-icons/grid_coarse.svg new file mode 100644 index 00000000..4c01a3db --- /dev/null +++ b/src/resources/icons/at-icons/grid_coarse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/grid_coarse.svg.import b/src/resources/icons/at-icons/grid_coarse.svg.import new file mode 100644 index 00000000..2490e48c --- /dev/null +++ b/src/resources/icons/at-icons/grid_coarse.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://leqfurcu6khl" +path="res://.godot/imported/grid_coarse.svg-207844b49990f8e298042c2c07271b6d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/grid_coarse.svg" +dest_files=["res://.godot/imported/grid_coarse.svg-207844b49990f8e298042c2c07271b6d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/grid_fine.svg b/src/resources/icons/at-icons/grid_fine.svg new file mode 100644 index 00000000..5e2e4e5f --- /dev/null +++ b/src/resources/icons/at-icons/grid_fine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/grid_fine.svg.import b/src/resources/icons/at-icons/grid_fine.svg.import new file mode 100644 index 00000000..4818c76b --- /dev/null +++ b/src/resources/icons/at-icons/grid_fine.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg07k0phcl6d7" +path="res://.godot/imported/grid_fine.svg-ed4471c968589905f229f50e165c42d5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/grid_fine.svg" +dest_files=["res://.godot/imported/grid_fine.svg-ed4471c968589905f229f50e165c42d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/ground.svg b/src/resources/icons/at-icons/ground.svg new file mode 100644 index 00000000..b6b32447 --- /dev/null +++ b/src/resources/icons/at-icons/ground.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/ground.svg.import b/src/resources/icons/at-icons/ground.svg.import new file mode 100644 index 00000000..fcaba82c --- /dev/null +++ b/src/resources/icons/at-icons/ground.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbvxj6weix62d" +path="res://.godot/imported/ground.svg-41682ea44d2be641461dbd0032ef709f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/ground.svg" +dest_files=["res://.godot/imported/ground.svg-41682ea44d2be641461dbd0032ef709f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/gun.svg b/src/resources/icons/at-icons/gun.svg new file mode 100644 index 00000000..e4bff1ec --- /dev/null +++ b/src/resources/icons/at-icons/gun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/gun.svg.import b/src/resources/icons/at-icons/gun.svg.import new file mode 100644 index 00000000..e7012a88 --- /dev/null +++ b/src/resources/icons/at-icons/gun.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgd73cpjtpfaa" +path="res://.godot/imported/gun.svg-8ca1706c7fe307f544c5e8ff05e4f9e8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/gun.svg" +dest_files=["res://.godot/imported/gun.svg-8ca1706c7fe307f544c5e8ff05e4f9e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/hammer.svg b/src/resources/icons/at-icons/hammer.svg new file mode 100644 index 00000000..0b9bcb87 --- /dev/null +++ b/src/resources/icons/at-icons/hammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/hammer.svg.import b/src/resources/icons/at-icons/hammer.svg.import new file mode 100644 index 00000000..e6b0bd23 --- /dev/null +++ b/src/resources/icons/at-icons/hammer.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmyfvqbcye25i" +path="res://.godot/imported/hammer.svg-d9e31d32afe81cf32913603e8a5bbbf3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/hammer.svg" +dest_files=["res://.godot/imported/hammer.svg-d9e31d32afe81cf32913603e8a5bbbf3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/hand.svg b/src/resources/icons/at-icons/hand.svg new file mode 100644 index 00000000..505a52ab --- /dev/null +++ b/src/resources/icons/at-icons/hand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/hand.svg.import b/src/resources/icons/at-icons/hand.svg.import new file mode 100644 index 00000000..6debaa21 --- /dev/null +++ b/src/resources/icons/at-icons/hand.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp5bs88f7l2ti" +path="res://.godot/imported/hand.svg-c23154288ecc22d85fb7e9cad8f03e43.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/hand.svg" +dest_files=["res://.godot/imported/hand.svg-c23154288ecc22d85fb7e9cad8f03e43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/hand_mirror.svg b/src/resources/icons/at-icons/hand_mirror.svg new file mode 100644 index 00000000..d5e39bfd --- /dev/null +++ b/src/resources/icons/at-icons/hand_mirror.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/hand_mirror.svg.import b/src/resources/icons/at-icons/hand_mirror.svg.import new file mode 100644 index 00000000..1216fcd9 --- /dev/null +++ b/src/resources/icons/at-icons/hand_mirror.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5kw6iwabbpps" +path="res://.godot/imported/hand_mirror.svg-0581bde00e7926bfe23ffda56624fd88.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/hand_mirror.svg" +dest_files=["res://.godot/imported/hand_mirror.svg-0581bde00e7926bfe23ffda56624fd88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/handset.svg b/src/resources/icons/at-icons/handset.svg new file mode 100644 index 00000000..4058cd8b --- /dev/null +++ b/src/resources/icons/at-icons/handset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/handset.svg.import b/src/resources/icons/at-icons/handset.svg.import new file mode 100644 index 00000000..4edbc5a6 --- /dev/null +++ b/src/resources/icons/at-icons/handset.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6v8t6y3ugmsg" +path="res://.godot/imported/handset.svg-ef24f758aec1751a9bdcf7166637bba3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/handset.svg" +dest_files=["res://.godot/imported/handset.svg-ef24f758aec1751a9bdcf7166637bba3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/happy_face.svg b/src/resources/icons/at-icons/happy_face.svg new file mode 100644 index 00000000..c3ba3ee4 --- /dev/null +++ b/src/resources/icons/at-icons/happy_face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/happy_face.svg.import b/src/resources/icons/at-icons/happy_face.svg.import new file mode 100644 index 00000000..e0fc3887 --- /dev/null +++ b/src/resources/icons/at-icons/happy_face.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgibqpue8pw80" +path="res://.godot/imported/happy_face.svg-7381a32b7adb2e30b71d990f6325608a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/happy_face.svg" +dest_files=["res://.godot/imported/happy_face.svg-7381a32b7adb2e30b71d990f6325608a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/head_with_gear.svg b/src/resources/icons/at-icons/head_with_gear.svg new file mode 100644 index 00000000..0431fc3e --- /dev/null +++ b/src/resources/icons/at-icons/head_with_gear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/head_with_gear.svg.import b/src/resources/icons/at-icons/head_with_gear.svg.import new file mode 100644 index 00000000..24ce727f --- /dev/null +++ b/src/resources/icons/at-icons/head_with_gear.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dglhfof5x238d" +path="res://.godot/imported/head_with_gear.svg-40b1b7bcf7e7417c052c8df7f2dd11d7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/head_with_gear.svg" +dest_files=["res://.godot/imported/head_with_gear.svg-40b1b7bcf7e7417c052c8df7f2dd11d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/headphones.svg b/src/resources/icons/at-icons/headphones.svg new file mode 100644 index 00000000..1f9c24a6 --- /dev/null +++ b/src/resources/icons/at-icons/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/headphones.svg.import b/src/resources/icons/at-icons/headphones.svg.import new file mode 100644 index 00000000..85f2cda3 --- /dev/null +++ b/src/resources/icons/at-icons/headphones.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6evrdmi3gcue" +path="res://.godot/imported/headphones.svg-93afe8cf3fd4bd2b576f773e7c4b4d5a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/headphones.svg" +dest_files=["res://.godot/imported/headphones.svg-93afe8cf3fd4bd2b576f773e7c4b4d5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/heart.svg b/src/resources/icons/at-icons/heart.svg new file mode 100644 index 00000000..8dc80db2 --- /dev/null +++ b/src/resources/icons/at-icons/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/heart.svg.import b/src/resources/icons/at-icons/heart.svg.import new file mode 100644 index 00000000..31f5f936 --- /dev/null +++ b/src/resources/icons/at-icons/heart.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ouljbstk6cey" +path="res://.godot/imported/heart.svg-48b6dd040cb87f2d3c03bb5e9f393798.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/heart.svg" +dest_files=["res://.godot/imported/heart.svg-48b6dd040cb87f2d3c03bb5e9f393798.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/heart_broken.svg b/src/resources/icons/at-icons/heart_broken.svg new file mode 100644 index 00000000..85302a92 --- /dev/null +++ b/src/resources/icons/at-icons/heart_broken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/heart_broken.svg.import b/src/resources/icons/at-icons/heart_broken.svg.import new file mode 100644 index 00000000..812eccd7 --- /dev/null +++ b/src/resources/icons/at-icons/heart_broken.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4ar7s7w0ecjo" +path="res://.godot/imported/heart_broken.svg-839ed4266a4b7895c93293db2d95310b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/heart_broken.svg" +dest_files=["res://.godot/imported/heart_broken.svg-839ed4266a4b7895c93293db2d95310b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/help.svg b/src/resources/icons/at-icons/help.svg new file mode 100644 index 00000000..a44b0998 --- /dev/null +++ b/src/resources/icons/at-icons/help.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/help.svg.import b/src/resources/icons/at-icons/help.svg.import new file mode 100644 index 00000000..03d8b0e8 --- /dev/null +++ b/src/resources/icons/at-icons/help.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drt1o51p52s2p" +path="res://.godot/imported/help.svg-321c1c40698ebc2764490133d54fcf1d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/help.svg" +dest_files=["res://.godot/imported/help.svg-321c1c40698ebc2764490133d54fcf1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/hexagon.svg b/src/resources/icons/at-icons/hexagon.svg new file mode 100644 index 00000000..e7c330d0 --- /dev/null +++ b/src/resources/icons/at-icons/hexagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/hexagon.svg.import b/src/resources/icons/at-icons/hexagon.svg.import new file mode 100644 index 00000000..10732757 --- /dev/null +++ b/src/resources/icons/at-icons/hexagon.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b17cuvkth13qu" +path="res://.godot/imported/hexagon.svg-87659d74bbe6900d95e3f6811632721b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/hexagon.svg" +dest_files=["res://.godot/imported/hexagon.svg-87659d74bbe6900d95e3f6811632721b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/hinge_joint.svg b/src/resources/icons/at-icons/hinge_joint.svg new file mode 100644 index 00000000..9f2255b0 --- /dev/null +++ b/src/resources/icons/at-icons/hinge_joint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/hinge_joint.svg.import b/src/resources/icons/at-icons/hinge_joint.svg.import new file mode 100644 index 00000000..ddb002a0 --- /dev/null +++ b/src/resources/icons/at-icons/hinge_joint.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw3vee6e8ctfj" +path="res://.godot/imported/hinge_joint.svg-d835452c1e0156641649d2ba5cc8c124.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/hinge_joint.svg" +dest_files=["res://.godot/imported/hinge_joint.svg-d835452c1e0156641649d2ba5cc8c124.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/hook.svg b/src/resources/icons/at-icons/hook.svg new file mode 100644 index 00000000..f7cb5254 --- /dev/null +++ b/src/resources/icons/at-icons/hook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/hook.svg.import b/src/resources/icons/at-icons/hook.svg.import new file mode 100644 index 00000000..be5c72f2 --- /dev/null +++ b/src/resources/icons/at-icons/hook.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvtt7my7w5cxh" +path="res://.godot/imported/hook.svg-3ec705e7a589104490158f8337f65cc6.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/hook.svg" +dest_files=["res://.godot/imported/hook.svg-3ec705e7a589104490158f8337f65cc6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/hourglass.svg b/src/resources/icons/at-icons/hourglass.svg new file mode 100644 index 00000000..52f1aebb --- /dev/null +++ b/src/resources/icons/at-icons/hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/hourglass.svg.import b/src/resources/icons/at-icons/hourglass.svg.import new file mode 100644 index 00000000..413c43f1 --- /dev/null +++ b/src/resources/icons/at-icons/hourglass.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1jp8jus3g1ss" +path="res://.godot/imported/hourglass.svg-f32d71c895a1412b3422d0f0b3978955.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/hourglass.svg" +dest_files=["res://.godot/imported/hourglass.svg-f32d71c895a1412b3422d0f0b3978955.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/house.svg b/src/resources/icons/at-icons/house.svg new file mode 100644 index 00000000..817898c4 --- /dev/null +++ b/src/resources/icons/at-icons/house.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/house.svg.import b/src/resources/icons/at-icons/house.svg.import new file mode 100644 index 00000000..889c9185 --- /dev/null +++ b/src/resources/icons/at-icons/house.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t46cgclyoqkl" +path="res://.godot/imported/house.svg-9cc216f1ba8f3108fd1dd0c38721989e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/house.svg" +dest_files=["res://.godot/imported/house.svg-9cc216f1ba8f3108fd1dd0c38721989e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/human.svg b/src/resources/icons/at-icons/human.svg new file mode 100644 index 00000000..7c0ce2cb --- /dev/null +++ b/src/resources/icons/at-icons/human.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/human.svg.import b/src/resources/icons/at-icons/human.svg.import new file mode 100644 index 00000000..527c1cfa --- /dev/null +++ b/src/resources/icons/at-icons/human.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk1xubitf0jf0" +path="res://.godot/imported/human.svg-c91dcfafe5f0ccefdb14d9f48452ce4f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/human.svg" +dest_files=["res://.godot/imported/human.svg-c91dcfafe5f0ccefdb14d9f48452ce4f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/icons.svg b/src/resources/icons/at-icons/icons.svg new file mode 100644 index 00000000..9e989598 --- /dev/null +++ b/src/resources/icons/at-icons/icons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/icons.svg.import b/src/resources/icons/at-icons/icons.svg.import new file mode 100644 index 00000000..67ee3c1d --- /dev/null +++ b/src/resources/icons/at-icons/icons.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgbekgdgiu8l1" +path="res://.godot/imported/icons.svg-209ad01b175563bacf5aa1c1738ad86a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/icons.svg" +dest_files=["res://.godot/imported/icons.svg-209ad01b175563bacf5aa1c1738ad86a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/image.svg b/src/resources/icons/at-icons/image.svg new file mode 100644 index 00000000..fb605753 --- /dev/null +++ b/src/resources/icons/at-icons/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/image.svg.import b/src/resources/icons/at-icons/image.svg.import new file mode 100644 index 00000000..174097e8 --- /dev/null +++ b/src/resources/icons/at-icons/image.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtjfq3weo5ytt" +path="res://.godot/imported/image.svg-e891d00b270b32b2af675a73100b1ab9.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/image.svg" +dest_files=["res://.godot/imported/image.svg-e891d00b270b32b2af675a73100b1ab9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/info.svg b/src/resources/icons/at-icons/info.svg new file mode 100644 index 00000000..340ac029 --- /dev/null +++ b/src/resources/icons/at-icons/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/info.svg.import b/src/resources/icons/at-icons/info.svg.import new file mode 100644 index 00000000..06b2a385 --- /dev/null +++ b/src/resources/icons/at-icons/info.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bciqiufr4w5ig" +path="res://.godot/imported/info.svg-db776b82a33a077475c165d0e319ab2d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/info.svg" +dest_files=["res://.godot/imported/info.svg-db776b82a33a077475c165d0e319ab2d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/institutional_building.svg b/src/resources/icons/at-icons/institutional_building.svg new file mode 100644 index 00000000..1cff070f --- /dev/null +++ b/src/resources/icons/at-icons/institutional_building.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/institutional_building.svg.import b/src/resources/icons/at-icons/institutional_building.svg.import new file mode 100644 index 00000000..d5f70f13 --- /dev/null +++ b/src/resources/icons/at-icons/institutional_building.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cya4bwi6jjctw" +path="res://.godot/imported/institutional_building.svg-6b1bc9230d47e84d164dc7e9a72cd169.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/institutional_building.svg" +dest_files=["res://.godot/imported/institutional_building.svg-6b1bc9230d47e84d164dc7e9a72cd169.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/italics.svg b/src/resources/icons/at-icons/italics.svg new file mode 100644 index 00000000..4fef1b1f --- /dev/null +++ b/src/resources/icons/at-icons/italics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/italics.svg.import b/src/resources/icons/at-icons/italics.svg.import new file mode 100644 index 00000000..bbaa327d --- /dev/null +++ b/src/resources/icons/at-icons/italics.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp2xpsed3gfiu" +path="res://.godot/imported/italics.svg-5a41eb618c5f7d7bd1d0098d8c7a5c29.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/italics.svg" +dest_files=["res://.godot/imported/italics.svg-5a41eb618c5f7d7bd1d0098d8c7a5c29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/itinerary.svg b/src/resources/icons/at-icons/itinerary.svg new file mode 100644 index 00000000..808960da --- /dev/null +++ b/src/resources/icons/at-icons/itinerary.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/itinerary.svg.import b/src/resources/icons/at-icons/itinerary.svg.import new file mode 100644 index 00000000..f0299c42 --- /dev/null +++ b/src/resources/icons/at-icons/itinerary.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1ek503moyvpx" +path="res://.godot/imported/itinerary.svg-d007c9fb0a27921e2a1df5340484bfa5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/itinerary.svg" +dest_files=["res://.godot/imported/itinerary.svg-d007c9fb0a27921e2a1df5340484bfa5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/jigsaw_piece.svg b/src/resources/icons/at-icons/jigsaw_piece.svg new file mode 100644 index 00000000..a1d9379e --- /dev/null +++ b/src/resources/icons/at-icons/jigsaw_piece.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/jigsaw_piece.svg.import b/src/resources/icons/at-icons/jigsaw_piece.svg.import new file mode 100644 index 00000000..9b02c913 --- /dev/null +++ b/src/resources/icons/at-icons/jigsaw_piece.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbwir4bxwja8g" +path="res://.godot/imported/jigsaw_piece.svg-95e91e39a840a400d30ae0eb8bc54eb1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/jigsaw_piece.svg" +dest_files=["res://.godot/imported/jigsaw_piece.svg-95e91e39a840a400d30ae0eb8bc54eb1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/joypad.svg b/src/resources/icons/at-icons/joypad.svg new file mode 100644 index 00000000..7edc9e89 --- /dev/null +++ b/src/resources/icons/at-icons/joypad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/joypad.svg.import b/src/resources/icons/at-icons/joypad.svg.import new file mode 100644 index 00000000..1ad21991 --- /dev/null +++ b/src/resources/icons/at-icons/joypad.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5x0jp48lvjw7" +path="res://.godot/imported/joypad.svg-101f73071a7a9f4c0e6f280f9f8da6aa.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/joypad.svg" +dest_files=["res://.godot/imported/joypad.svg-101f73071a7a9f4c0e6f280f9f8da6aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/joystick.svg b/src/resources/icons/at-icons/joystick.svg new file mode 100644 index 00000000..ab340d60 --- /dev/null +++ b/src/resources/icons/at-icons/joystick.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/joystick.svg.import b/src/resources/icons/at-icons/joystick.svg.import new file mode 100644 index 00000000..dbf308f5 --- /dev/null +++ b/src/resources/icons/at-icons/joystick.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drb3cti1wslkx" +path="res://.godot/imported/joystick.svg-aa80960c4d5ce94e25b6caadd36f570c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/joystick.svg" +dest_files=["res://.godot/imported/joystick.svg-aa80960c4d5ce94e25b6caadd36f570c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/key.svg b/src/resources/icons/at-icons/key.svg new file mode 100644 index 00000000..8ac15a9b --- /dev/null +++ b/src/resources/icons/at-icons/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/key.svg.import b/src/resources/icons/at-icons/key.svg.import new file mode 100644 index 00000000..e41bdb7d --- /dev/null +++ b/src/resources/icons/at-icons/key.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iffyy1k7kod3" +path="res://.godot/imported/key.svg-e881c58e89a813e51525b6d40de6cc51.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/key.svg" +dest_files=["res://.godot/imported/key.svg-e881c58e89a813e51525b6d40de6cc51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/key_modern.svg b/src/resources/icons/at-icons/key_modern.svg new file mode 100644 index 00000000..e923c026 --- /dev/null +++ b/src/resources/icons/at-icons/key_modern.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/key_modern.svg.import b/src/resources/icons/at-icons/key_modern.svg.import new file mode 100644 index 00000000..3421e9b8 --- /dev/null +++ b/src/resources/icons/at-icons/key_modern.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dchqgndbxnmlg" +path="res://.godot/imported/key_modern.svg-fe6b4592a919934d90d5a2392f2ea49d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/key_modern.svg" +dest_files=["res://.godot/imported/key_modern.svg-fe6b4592a919934d90d5a2392f2ea49d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/keyboard.svg b/src/resources/icons/at-icons/keyboard.svg new file mode 100644 index 00000000..8bc30eb3 --- /dev/null +++ b/src/resources/icons/at-icons/keyboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/keyboard.svg.import b/src/resources/icons/at-icons/keyboard.svg.import new file mode 100644 index 00000000..d52d1827 --- /dev/null +++ b/src/resources/icons/at-icons/keyboard.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdy30mn0grs3a" +path="res://.godot/imported/keyboard.svg-35168c79152b0d404e3b520337de3f4d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/keyboard.svg" +dest_files=["res://.godot/imported/keyboard.svg-35168c79152b0d404e3b520337de3f4d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/keyhole.svg b/src/resources/icons/at-icons/keyhole.svg new file mode 100644 index 00000000..c43f7f03 --- /dev/null +++ b/src/resources/icons/at-icons/keyhole.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/keyhole.svg.import b/src/resources/icons/at-icons/keyhole.svg.import new file mode 100644 index 00000000..8060c336 --- /dev/null +++ b/src/resources/icons/at-icons/keyhole.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjbe3w2exbgee" +path="res://.godot/imported/keyhole.svg-2501cd697e78d2d072218aad94908b34.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/keyhole.svg" +dest_files=["res://.godot/imported/keyhole.svg-2501cd697e78d2d072218aad94908b34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/knife.svg b/src/resources/icons/at-icons/knife.svg new file mode 100644 index 00000000..a9d40613 --- /dev/null +++ b/src/resources/icons/at-icons/knife.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/knife.svg.import b/src/resources/icons/at-icons/knife.svg.import new file mode 100644 index 00000000..9f3fe9fd --- /dev/null +++ b/src/resources/icons/at-icons/knife.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5bitok8veq0d" +path="res://.godot/imported/knife.svg-dc66ca5fb06b98e0f34b945118c711a5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/knife.svg" +dest_files=["res://.godot/imported/knife.svg-dc66ca5fb06b98e0f34b945118c711a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/knot.svg b/src/resources/icons/at-icons/knot.svg new file mode 100644 index 00000000..8e520a22 --- /dev/null +++ b/src/resources/icons/at-icons/knot.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/knot.svg.import b/src/resources/icons/at-icons/knot.svg.import new file mode 100644 index 00000000..ff550dbe --- /dev/null +++ b/src/resources/icons/at-icons/knot.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg1w7fwhcomfd" +path="res://.godot/imported/knot.svg-ff2dfac556df7f19e01392e0aa1ded42.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/knot.svg" +dest_files=["res://.godot/imported/knot.svg-ff2dfac556df7f19e01392e0aa1ded42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/ladder.svg b/src/resources/icons/at-icons/ladder.svg new file mode 100644 index 00000000..61fb0065 --- /dev/null +++ b/src/resources/icons/at-icons/ladder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/ladder.svg.import b/src/resources/icons/at-icons/ladder.svg.import new file mode 100644 index 00000000..ce7a09b1 --- /dev/null +++ b/src/resources/icons/at-icons/ladder.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q7r8rnoxg654" +path="res://.godot/imported/ladder.svg-d65491f355f8448dbcc9be6a15cf5a62.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/ladder.svg" +dest_files=["res://.godot/imported/ladder.svg-d65491f355f8448dbcc9be6a15cf5a62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/laptop.svg b/src/resources/icons/at-icons/laptop.svg new file mode 100644 index 00000000..84ec0cd5 --- /dev/null +++ b/src/resources/icons/at-icons/laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/laptop.svg.import b/src/resources/icons/at-icons/laptop.svg.import new file mode 100644 index 00000000..5d97de67 --- /dev/null +++ b/src/resources/icons/at-icons/laptop.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfr8e0ejua6v2" +path="res://.godot/imported/laptop.svg-c97075a294ef35fa11f70877a7b21440.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/laptop.svg" +dest_files=["res://.godot/imported/laptop.svg-c97075a294ef35fa11f70877a7b21440.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/laser.svg b/src/resources/icons/at-icons/laser.svg new file mode 100644 index 00000000..c8ae222a --- /dev/null +++ b/src/resources/icons/at-icons/laser.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/laser.svg.import b/src/resources/icons/at-icons/laser.svg.import new file mode 100644 index 00000000..ab80af07 --- /dev/null +++ b/src/resources/icons/at-icons/laser.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckgwdrpyu8pa3" +path="res://.godot/imported/laser.svg-efd4a4611fb80508073428aa7faa1671.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/laser.svg" +dest_files=["res://.godot/imported/laser.svg-efd4a4611fb80508073428aa7faa1671.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/laser_gun.svg b/src/resources/icons/at-icons/laser_gun.svg new file mode 100644 index 00000000..59d8aa1c --- /dev/null +++ b/src/resources/icons/at-icons/laser_gun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/laser_gun.svg.import b/src/resources/icons/at-icons/laser_gun.svg.import new file mode 100644 index 00000000..a14ce304 --- /dev/null +++ b/src/resources/icons/at-icons/laser_gun.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5jxxk0b847o2" +path="res://.godot/imported/laser_gun.svg-12f207d02b7cb85d043cdc62cc1a9c09.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/laser_gun.svg" +dest_files=["res://.godot/imported/laser_gun.svg-12f207d02b7cb85d043cdc62cc1a9c09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/layers.svg b/src/resources/icons/at-icons/layers.svg new file mode 100644 index 00000000..5c5aab3a --- /dev/null +++ b/src/resources/icons/at-icons/layers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/layers.svg.import b/src/resources/icons/at-icons/layers.svg.import new file mode 100644 index 00000000..e72748e8 --- /dev/null +++ b/src/resources/icons/at-icons/layers.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0mo12tx52ws0" +path="res://.godot/imported/layers.svg-14028afe1fce2924145074d9f609ced6.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/layers.svg" +dest_files=["res://.godot/imported/layers.svg-14028afe1fce2924145074d9f609ced6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/leaf.svg b/src/resources/icons/at-icons/leaf.svg new file mode 100644 index 00000000..fa906545 --- /dev/null +++ b/src/resources/icons/at-icons/leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/leaf.svg.import b/src/resources/icons/at-icons/leaf.svg.import new file mode 100644 index 00000000..76b76b24 --- /dev/null +++ b/src/resources/icons/at-icons/leaf.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkj2jdws0durs" +path="res://.godot/imported/leaf.svg-ff5ae647754592d797944d3ccc01e402.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/leaf.svg" +dest_files=["res://.godot/imported/leaf.svg-ff5ae647754592d797944d3ccc01e402.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/lever.svg b/src/resources/icons/at-icons/lever.svg new file mode 100644 index 00000000..3b3e5948 --- /dev/null +++ b/src/resources/icons/at-icons/lever.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/lever.svg.import b/src/resources/icons/at-icons/lever.svg.import new file mode 100644 index 00000000..458bc661 --- /dev/null +++ b/src/resources/icons/at-icons/lever.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crvpon0qpw1l5" +path="res://.godot/imported/lever.svg-c33ea610ca749996d5f263be1da33738.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/lever.svg" +dest_files=["res://.godot/imported/lever.svg-c33ea610ca749996d5f263be1da33738.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/library.svg b/src/resources/icons/at-icons/library.svg new file mode 100644 index 00000000..9519417b --- /dev/null +++ b/src/resources/icons/at-icons/library.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/library.svg.import b/src/resources/icons/at-icons/library.svg.import new file mode 100644 index 00000000..3c3e4b1d --- /dev/null +++ b/src/resources/icons/at-icons/library.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vwyugd5024me" +path="res://.godot/imported/library.svg-d83b75f250a1a54ebba8ae46cde581eb.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/library.svg" +dest_files=["res://.godot/imported/library.svg-d83b75f250a1a54ebba8ae46cde581eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/lightbulb.svg b/src/resources/icons/at-icons/lightbulb.svg new file mode 100644 index 00000000..8a055c47 --- /dev/null +++ b/src/resources/icons/at-icons/lightbulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/lightbulb.svg.import b/src/resources/icons/at-icons/lightbulb.svg.import new file mode 100644 index 00000000..874e64b3 --- /dev/null +++ b/src/resources/icons/at-icons/lightbulb.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch1s5g8bahu13" +path="res://.godot/imported/lightbulb.svg-7609228fff975355f457ea01642683d3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/lightbulb.svg" +dest_files=["res://.godot/imported/lightbulb.svg-7609228fff975355f457ea01642683d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/lightning_bolt.svg b/src/resources/icons/at-icons/lightning_bolt.svg new file mode 100644 index 00000000..ff2cb33d --- /dev/null +++ b/src/resources/icons/at-icons/lightning_bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/lightning_bolt.svg.import b/src/resources/icons/at-icons/lightning_bolt.svg.import new file mode 100644 index 00000000..63bad4da --- /dev/null +++ b/src/resources/icons/at-icons/lightning_bolt.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b63i45ykishm7" +path="res://.godot/imported/lightning_bolt.svg-25f68ff5b3768436afce8c94dde58b1c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/lightning_bolt.svg" +dest_files=["res://.godot/imported/lightning_bolt.svg-25f68ff5b3768436afce8c94dde58b1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/lightning_in_circle.svg b/src/resources/icons/at-icons/lightning_in_circle.svg new file mode 100644 index 00000000..8be28f58 --- /dev/null +++ b/src/resources/icons/at-icons/lightning_in_circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/lightning_in_circle.svg.import b/src/resources/icons/at-icons/lightning_in_circle.svg.import new file mode 100644 index 00000000..662eb423 --- /dev/null +++ b/src/resources/icons/at-icons/lightning_in_circle.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://834s1037lg03" +path="res://.godot/imported/lightning_in_circle.svg-a249f1859f16e818fc7ae0ad61cc101f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/lightning_in_circle.svg" +dest_files=["res://.godot/imported/lightning_in_circle.svg-a249f1859f16e818fc7ae0ad61cc101f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/lightning_in_clockwise_arrow.svg b/src/resources/icons/at-icons/lightning_in_clockwise_arrow.svg new file mode 100644 index 00000000..9ab8dffb --- /dev/null +++ b/src/resources/icons/at-icons/lightning_in_clockwise_arrow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/lightning_in_clockwise_arrow.svg.import b/src/resources/icons/at-icons/lightning_in_clockwise_arrow.svg.import new file mode 100644 index 00000000..7756e684 --- /dev/null +++ b/src/resources/icons/at-icons/lightning_in_clockwise_arrow.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fv2w2lqfmys5" +path="res://.godot/imported/lightning_in_clockwise_arrow.svg-95e60ebf6da399e685497d1c515615ed.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/lightning_in_clockwise_arrow.svg" +dest_files=["res://.godot/imported/lightning_in_clockwise_arrow.svg-95e60ebf6da399e685497d1c515615ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/line_graph.svg b/src/resources/icons/at-icons/line_graph.svg new file mode 100644 index 00000000..68627740 --- /dev/null +++ b/src/resources/icons/at-icons/line_graph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/line_graph.svg.import b/src/resources/icons/at-icons/line_graph.svg.import new file mode 100644 index 00000000..0cffa189 --- /dev/null +++ b/src/resources/icons/at-icons/line_graph.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4qxhvim007jx" +path="res://.godot/imported/line_graph.svg-3eaabf297919308cb8b61f53e0ff52a2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/line_graph.svg" +dest_files=["res://.godot/imported/line_graph.svg-3eaabf297919308cb8b61f53e0ff52a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/link.svg b/src/resources/icons/at-icons/link.svg new file mode 100644 index 00000000..7b68fec1 --- /dev/null +++ b/src/resources/icons/at-icons/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/link.svg.import b/src/resources/icons/at-icons/link.svg.import new file mode 100644 index 00000000..0d00f5e1 --- /dev/null +++ b/src/resources/icons/at-icons/link.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfmh403n6k2ac" +path="res://.godot/imported/link.svg-3e331dcbd999617c52b50b452c6a311b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/link.svg" +dest_files=["res://.godot/imported/link.svg-3e331dcbd999617c52b50b452c6a311b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/list_checkboxes.svg b/src/resources/icons/at-icons/list_checkboxes.svg new file mode 100644 index 00000000..532e197b --- /dev/null +++ b/src/resources/icons/at-icons/list_checkboxes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/list_checkboxes.svg.import b/src/resources/icons/at-icons/list_checkboxes.svg.import new file mode 100644 index 00000000..b7d80c72 --- /dev/null +++ b/src/resources/icons/at-icons/list_checkboxes.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk5o3tbcaps3u" +path="res://.godot/imported/list_checkboxes.svg-3dc3f4fe52df8c2c1c45e064337fb7c6.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/list_checkboxes.svg" +dest_files=["res://.godot/imported/list_checkboxes.svg-3dc3f4fe52df8c2c1c45e064337fb7c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/list_ordered.svg b/src/resources/icons/at-icons/list_ordered.svg new file mode 100644 index 00000000..f04d7608 --- /dev/null +++ b/src/resources/icons/at-icons/list_ordered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/list_ordered.svg.import b/src/resources/icons/at-icons/list_ordered.svg.import new file mode 100644 index 00000000..df1a162d --- /dev/null +++ b/src/resources/icons/at-icons/list_ordered.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci1fk022xa0ge" +path="res://.godot/imported/list_ordered.svg-97e88b80cee5082dd6a5d836fe46158a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/list_ordered.svg" +dest_files=["res://.godot/imported/list_ordered.svg-97e88b80cee5082dd6a5d836fe46158a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/list_unordered.svg b/src/resources/icons/at-icons/list_unordered.svg new file mode 100644 index 00000000..24b4bc20 --- /dev/null +++ b/src/resources/icons/at-icons/list_unordered.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/list_unordered.svg.import b/src/resources/icons/at-icons/list_unordered.svg.import new file mode 100644 index 00000000..c25ea92b --- /dev/null +++ b/src/resources/icons/at-icons/list_unordered.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcd06bljnl3e2" +path="res://.godot/imported/list_unordered.svg-4ddb569d0941c4b884462381f5d2b449.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/list_unordered.svg" +dest_files=["res://.godot/imported/list_unordered.svg-4ddb569d0941c4b884462381f5d2b449.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/location.svg b/src/resources/icons/at-icons/location.svg new file mode 100644 index 00000000..a091a537 --- /dev/null +++ b/src/resources/icons/at-icons/location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/location.svg.import b/src/resources/icons/at-icons/location.svg.import new file mode 100644 index 00000000..63d0046b --- /dev/null +++ b/src/resources/icons/at-icons/location.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0vfdr6a5uh0d" +path="res://.godot/imported/location.svg-6f87f5b7bf5f9a5a526e3461ce0ed21b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/location.svg" +dest_files=["res://.godot/imported/location.svg-6f87f5b7bf5f9a5a526e3461ce0ed21b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/lock.svg b/src/resources/icons/at-icons/lock.svg new file mode 100644 index 00000000..57ac6f54 --- /dev/null +++ b/src/resources/icons/at-icons/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/lock.svg.import b/src/resources/icons/at-icons/lock.svg.import new file mode 100644 index 00000000..5caaaaec --- /dev/null +++ b/src/resources/icons/at-icons/lock.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmdavt0hhtjv2" +path="res://.godot/imported/lock.svg-cbda98636327311dac8a94796424e75c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/lock.svg" +dest_files=["res://.godot/imported/lock.svg-cbda98636327311dac8a94796424e75c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/magic_wand.svg b/src/resources/icons/at-icons/magic_wand.svg new file mode 100644 index 00000000..18eb8413 --- /dev/null +++ b/src/resources/icons/at-icons/magic_wand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/magic_wand.svg.import b/src/resources/icons/at-icons/magic_wand.svg.import new file mode 100644 index 00000000..42e27516 --- /dev/null +++ b/src/resources/icons/at-icons/magic_wand.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt52apc6rn8un" +path="res://.godot/imported/magic_wand.svg-7cc329e526acbf4dc832bb62dc82002e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/magic_wand.svg" +dest_files=["res://.godot/imported/magic_wand.svg-7cc329e526acbf4dc832bb62dc82002e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/magnet.svg b/src/resources/icons/at-icons/magnet.svg new file mode 100644 index 00000000..047632f6 --- /dev/null +++ b/src/resources/icons/at-icons/magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/magnet.svg.import b/src/resources/icons/at-icons/magnet.svg.import new file mode 100644 index 00000000..9d20d1ff --- /dev/null +++ b/src/resources/icons/at-icons/magnet.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b02uv28lvho8i" +path="res://.godot/imported/magnet.svg-2dde9799427b0fc1cf81230f901ab349.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/magnet.svg" +dest_files=["res://.godot/imported/magnet.svg-2dde9799427b0fc1cf81230f901ab349.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/magnifying_glass.svg b/src/resources/icons/at-icons/magnifying_glass.svg new file mode 100644 index 00000000..69d2ab94 --- /dev/null +++ b/src/resources/icons/at-icons/magnifying_glass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/magnifying_glass.svg.import b/src/resources/icons/at-icons/magnifying_glass.svg.import new file mode 100644 index 00000000..1579b3ff --- /dev/null +++ b/src/resources/icons/at-icons/magnifying_glass.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn8qn75dgquda" +path="res://.godot/imported/magnifying_glass.svg-410803a4dc5d103bf839f7f624c7cb61.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/magnifying_glass.svg" +dest_files=["res://.godot/imported/magnifying_glass.svg-410803a4dc5d103bf839f7f624c7cb61.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/mailbox.svg b/src/resources/icons/at-icons/mailbox.svg new file mode 100644 index 00000000..1db074f2 --- /dev/null +++ b/src/resources/icons/at-icons/mailbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/mailbox.svg.import b/src/resources/icons/at-icons/mailbox.svg.import new file mode 100644 index 00000000..59e50d62 --- /dev/null +++ b/src/resources/icons/at-icons/mailbox.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwgxmp184580h" +path="res://.godot/imported/mailbox.svg-06312b2bd47246be15c92c65ed550b3d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/mailbox.svg" +dest_files=["res://.godot/imported/mailbox.svg-06312b2bd47246be15c92c65ed550b3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/map.svg b/src/resources/icons/at-icons/map.svg new file mode 100644 index 00000000..d8c367c1 --- /dev/null +++ b/src/resources/icons/at-icons/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/map.svg.import b/src/resources/icons/at-icons/map.svg.import new file mode 100644 index 00000000..4c27c185 --- /dev/null +++ b/src/resources/icons/at-icons/map.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2d24v4bi7mjl" +path="res://.godot/imported/map.svg-13a45ca7562ae7f54839bb7d85289d6a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/map.svg" +dest_files=["res://.godot/imported/map.svg-13a45ca7562ae7f54839bb7d85289d6a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/measuring_tape.svg b/src/resources/icons/at-icons/measuring_tape.svg new file mode 100644 index 00000000..758953a7 --- /dev/null +++ b/src/resources/icons/at-icons/measuring_tape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/measuring_tape.svg.import b/src/resources/icons/at-icons/measuring_tape.svg.import new file mode 100644 index 00000000..b0e34d42 --- /dev/null +++ b/src/resources/icons/at-icons/measuring_tape.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cefhge0i487vj" +path="res://.godot/imported/measuring_tape.svg-f79a2b12ce2446099aa73a5f63e6b1ae.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/measuring_tape.svg" +dest_files=["res://.godot/imported/measuring_tape.svg-f79a2b12ce2446099aa73a5f63e6b1ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/meat.svg b/src/resources/icons/at-icons/meat.svg new file mode 100644 index 00000000..0da08fe8 --- /dev/null +++ b/src/resources/icons/at-icons/meat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/meat.svg.import b/src/resources/icons/at-icons/meat.svg.import new file mode 100644 index 00000000..b2772d0d --- /dev/null +++ b/src/resources/icons/at-icons/meat.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duny1s6fdwwgq" +path="res://.godot/imported/meat.svg-5dc666241a047e7940287cef54be30f7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/meat.svg" +dest_files=["res://.godot/imported/meat.svg-5dc666241a047e7940287cef54be30f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/meat_eaten.svg b/src/resources/icons/at-icons/meat_eaten.svg new file mode 100644 index 00000000..3c116589 --- /dev/null +++ b/src/resources/icons/at-icons/meat_eaten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/meat_eaten.svg.import b/src/resources/icons/at-icons/meat_eaten.svg.import new file mode 100644 index 00000000..3be5c188 --- /dev/null +++ b/src/resources/icons/at-icons/meat_eaten.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw133qm7r66xm" +path="res://.godot/imported/meat_eaten.svg-b3af06b527da0ff78c1f43a9e748e8b7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/meat_eaten.svg" +dest_files=["res://.godot/imported/meat_eaten.svg-b3af06b527da0ff78c1f43a9e748e8b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/medal.svg b/src/resources/icons/at-icons/medal.svg new file mode 100644 index 00000000..0eafabb9 --- /dev/null +++ b/src/resources/icons/at-icons/medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/medal.svg.import b/src/resources/icons/at-icons/medal.svg.import new file mode 100644 index 00000000..75427ce9 --- /dev/null +++ b/src/resources/icons/at-icons/medal.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca7ytq15dicmj" +path="res://.godot/imported/medal.svg-7f3d347f916cc957173ecf90fd759662.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/medal.svg" +dest_files=["res://.godot/imported/medal.svg-7f3d347f916cc957173ecf90fd759662.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/medal_1st.svg b/src/resources/icons/at-icons/medal_1st.svg new file mode 100644 index 00000000..d9e14327 --- /dev/null +++ b/src/resources/icons/at-icons/medal_1st.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/medal_1st.svg.import b/src/resources/icons/at-icons/medal_1st.svg.import new file mode 100644 index 00000000..b73f2873 --- /dev/null +++ b/src/resources/icons/at-icons/medal_1st.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqdp3qle8fxyb" +path="res://.godot/imported/medal_1st.svg-1c8dc8e036ef31fc5a089bffbd946e1a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/medal_1st.svg" +dest_files=["res://.godot/imported/medal_1st.svg-1c8dc8e036ef31fc5a089bffbd946e1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/medal_2nd.svg b/src/resources/icons/at-icons/medal_2nd.svg new file mode 100644 index 00000000..c172bc5c --- /dev/null +++ b/src/resources/icons/at-icons/medal_2nd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/medal_2nd.svg.import b/src/resources/icons/at-icons/medal_2nd.svg.import new file mode 100644 index 00000000..12697d56 --- /dev/null +++ b/src/resources/icons/at-icons/medal_2nd.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt8vcyd61xn5y" +path="res://.godot/imported/medal_2nd.svg-ed59415e5f0c62927697cb742b18641a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/medal_2nd.svg" +dest_files=["res://.godot/imported/medal_2nd.svg-ed59415e5f0c62927697cb742b18641a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/medal_3rd.svg b/src/resources/icons/at-icons/medal_3rd.svg new file mode 100644 index 00000000..d06c8b02 --- /dev/null +++ b/src/resources/icons/at-icons/medal_3rd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/medal_3rd.svg.import b/src/resources/icons/at-icons/medal_3rd.svg.import new file mode 100644 index 00000000..82b1ba1d --- /dev/null +++ b/src/resources/icons/at-icons/medal_3rd.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkcofp44rvygq" +path="res://.godot/imported/medal_3rd.svg-85eafc18ae0405975be96ad8e77d799f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/medal_3rd.svg" +dest_files=["res://.godot/imported/medal_3rd.svg-85eafc18ae0405975be96ad8e77d799f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/medkit.svg b/src/resources/icons/at-icons/medkit.svg new file mode 100644 index 00000000..92ce900c --- /dev/null +++ b/src/resources/icons/at-icons/medkit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/medkit.svg.import b/src/resources/icons/at-icons/medkit.svg.import new file mode 100644 index 00000000..7cd487f2 --- /dev/null +++ b/src/resources/icons/at-icons/medkit.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddd6kfka6d8ok" +path="res://.godot/imported/medkit.svg-be5aa31c91801345fa5f789356a764ab.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/medkit.svg" +dest_files=["res://.godot/imported/medkit.svg-be5aa31c91801345fa5f789356a764ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/metaballs.svg b/src/resources/icons/at-icons/metaballs.svg new file mode 100644 index 00000000..f08265b0 --- /dev/null +++ b/src/resources/icons/at-icons/metaballs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/metaballs.svg.import b/src/resources/icons/at-icons/metaballs.svg.import new file mode 100644 index 00000000..6839fc41 --- /dev/null +++ b/src/resources/icons/at-icons/metaballs.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6qdryopjetyu" +path="res://.godot/imported/metaballs.svg-5b54a8582b577c89fed5c197fb197e5f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/metaballs.svg" +dest_files=["res://.godot/imported/metaballs.svg-5b54a8582b577c89fed5c197fb197e5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/microphone.svg b/src/resources/icons/at-icons/microphone.svg new file mode 100644 index 00000000..07f4adc0 --- /dev/null +++ b/src/resources/icons/at-icons/microphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/microphone.svg.import b/src/resources/icons/at-icons/microphone.svg.import new file mode 100644 index 00000000..12a9333b --- /dev/null +++ b/src/resources/icons/at-icons/microphone.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjvhyfwqn6jxf" +path="res://.godot/imported/microphone.svg-ccb533532c40df7783741199c9f9797e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/microphone.svg" +dest_files=["res://.godot/imported/microphone.svg-ccb533532c40df7783741199c9f9797e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/microphone_mute.svg b/src/resources/icons/at-icons/microphone_mute.svg new file mode 100644 index 00000000..84beecb0 --- /dev/null +++ b/src/resources/icons/at-icons/microphone_mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/microphone_mute.svg.import b/src/resources/icons/at-icons/microphone_mute.svg.import new file mode 100644 index 00000000..ffdedb0e --- /dev/null +++ b/src/resources/icons/at-icons/microphone_mute.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnbrxxpfpiff7" +path="res://.godot/imported/microphone_mute.svg-e84068bcc1776d75774b3f30ef94ba3d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/microphone_mute.svg" +dest_files=["res://.godot/imported/microphone_mute.svg-e84068bcc1776d75774b3f30ef94ba3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/mirror_horizontally.svg b/src/resources/icons/at-icons/mirror_horizontally.svg new file mode 100644 index 00000000..c24441aa --- /dev/null +++ b/src/resources/icons/at-icons/mirror_horizontally.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/mirror_horizontally.svg.import b/src/resources/icons/at-icons/mirror_horizontally.svg.import new file mode 100644 index 00000000..91e74f1b --- /dev/null +++ b/src/resources/icons/at-icons/mirror_horizontally.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6saum5xrty6u" +path="res://.godot/imported/mirror_horizontally.svg-396a0b032ad76dc609f6f8c2a41714a5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/mirror_horizontally.svg" +dest_files=["res://.godot/imported/mirror_horizontally.svg-396a0b032ad76dc609f6f8c2a41714a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/mirror_vertically.svg b/src/resources/icons/at-icons/mirror_vertically.svg new file mode 100644 index 00000000..dc42065e --- /dev/null +++ b/src/resources/icons/at-icons/mirror_vertically.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/mirror_vertically.svg.import b/src/resources/icons/at-icons/mirror_vertically.svg.import new file mode 100644 index 00000000..e441faed --- /dev/null +++ b/src/resources/icons/at-icons/mirror_vertically.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwsejjvmq2rke" +path="res://.godot/imported/mirror_vertically.svg-99515fc3fc770cb272c2c0b6977d30d2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/mirror_vertically.svg" +dest_files=["res://.godot/imported/mirror_vertically.svg-99515fc3fc770cb272c2c0b6977d30d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/missile.svg b/src/resources/icons/at-icons/missile.svg new file mode 100644 index 00000000..bb59bd36 --- /dev/null +++ b/src/resources/icons/at-icons/missile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/missile.svg.import b/src/resources/icons/at-icons/missile.svg.import new file mode 100644 index 00000000..2ed9dd5f --- /dev/null +++ b/src/resources/icons/at-icons/missile.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c15qg8ajlu4gw" +path="res://.godot/imported/missile.svg-2df7413f526196982dd7912ffa5f2fae.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/missile.svg" +dest_files=["res://.godot/imported/missile.svg-2df7413f526196982dd7912ffa5f2fae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/mobile_phone.svg b/src/resources/icons/at-icons/mobile_phone.svg new file mode 100644 index 00000000..92b4e4d1 --- /dev/null +++ b/src/resources/icons/at-icons/mobile_phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/mobile_phone.svg.import b/src/resources/icons/at-icons/mobile_phone.svg.import new file mode 100644 index 00000000..0f486671 --- /dev/null +++ b/src/resources/icons/at-icons/mobile_phone.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp54ohi8jbudk" +path="res://.godot/imported/mobile_phone.svg-ccc9f38d2fcfa73675349fd588a97a93.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/mobile_phone.svg" +dest_files=["res://.godot/imported/mobile_phone.svg-ccc9f38d2fcfa73675349fd588a97a93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/moon.svg b/src/resources/icons/at-icons/moon.svg new file mode 100644 index 00000000..677dda1a --- /dev/null +++ b/src/resources/icons/at-icons/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/moon.svg.import b/src/resources/icons/at-icons/moon.svg.import new file mode 100644 index 00000000..d3cfd86b --- /dev/null +++ b/src/resources/icons/at-icons/moon.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bekemrg6ul0wo" +path="res://.godot/imported/moon.svg-185e00b2f0506200f6b4a13a7c957575.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/moon.svg" +dest_files=["res://.godot/imported/moon.svg-185e00b2f0506200f6b4a13a7c957575.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/motion_vector.svg b/src/resources/icons/at-icons/motion_vector.svg new file mode 100644 index 00000000..190417ce --- /dev/null +++ b/src/resources/icons/at-icons/motion_vector.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/motion_vector.svg.import b/src/resources/icons/at-icons/motion_vector.svg.import new file mode 100644 index 00000000..c3192e66 --- /dev/null +++ b/src/resources/icons/at-icons/motion_vector.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci21fmfc4icp3" +path="res://.godot/imported/motion_vector.svg-9024ea75669cb4c14264cfe43e28d223.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/motion_vector.svg" +dest_files=["res://.godot/imported/motion_vector.svg-9024ea75669cb4c14264cfe43e28d223.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/mountains.svg b/src/resources/icons/at-icons/mountains.svg new file mode 100644 index 00000000..9c23063e --- /dev/null +++ b/src/resources/icons/at-icons/mountains.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/mountains.svg.import b/src/resources/icons/at-icons/mountains.svg.import new file mode 100644 index 00000000..781b4a88 --- /dev/null +++ b/src/resources/icons/at-icons/mountains.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmqrqny14otd5" +path="res://.godot/imported/mountains.svg-dc84377b18f42244d7a3886638ab32ba.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/mountains.svg" +dest_files=["res://.godot/imported/mountains.svg-dc84377b18f42244d7a3886638ab32ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/mouse.svg b/src/resources/icons/at-icons/mouse.svg new file mode 100644 index 00000000..226db4cf --- /dev/null +++ b/src/resources/icons/at-icons/mouse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/mouse.svg.import b/src/resources/icons/at-icons/mouse.svg.import new file mode 100644 index 00000000..cdbe31d6 --- /dev/null +++ b/src/resources/icons/at-icons/mouse.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbuy8fcajk7a" +path="res://.godot/imported/mouse.svg-c52aba81e1a5f378b3bb12d0d911892c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/mouse.svg" +dest_files=["res://.godot/imported/mouse.svg-c52aba81e1a5f378b3bb12d0d911892c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/move.svg b/src/resources/icons/at-icons/move.svg new file mode 100644 index 00000000..17cd3159 --- /dev/null +++ b/src/resources/icons/at-icons/move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/move.svg.import b/src/resources/icons/at-icons/move.svg.import new file mode 100644 index 00000000..ac6ee11a --- /dev/null +++ b/src/resources/icons/at-icons/move.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbxlqr8kpf5ly" +path="res://.godot/imported/move.svg-4e98c74b149082ef9237ef72f5efb866.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/move.svg" +dest_files=["res://.godot/imported/move.svg-4e98c74b149082ef9237ef72f5efb866.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/moving_platform.svg b/src/resources/icons/at-icons/moving_platform.svg new file mode 100644 index 00000000..0b4e046f --- /dev/null +++ b/src/resources/icons/at-icons/moving_platform.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/moving_platform.svg.import b/src/resources/icons/at-icons/moving_platform.svg.import new file mode 100644 index 00000000..e71c4998 --- /dev/null +++ b/src/resources/icons/at-icons/moving_platform.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb3g667qrl60v" +path="res://.godot/imported/moving_platform.svg-ff631e5867bcf6d8ca3e85762e9c9f0d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/moving_platform.svg" +dest_files=["res://.godot/imported/moving_platform.svg-ff631e5867bcf6d8ca3e85762e9c9f0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/neutral_face.svg b/src/resources/icons/at-icons/neutral_face.svg new file mode 100644 index 00000000..87fab7b3 --- /dev/null +++ b/src/resources/icons/at-icons/neutral_face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/neutral_face.svg.import b/src/resources/icons/at-icons/neutral_face.svg.import new file mode 100644 index 00000000..acc0708d --- /dev/null +++ b/src/resources/icons/at-icons/neutral_face.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddchel0dmfx4v" +path="res://.godot/imported/neutral_face.svg-e251c0f2daf99fe749295dbceef10437.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/neutral_face.svg" +dest_files=["res://.godot/imported/neutral_face.svg-e251c0f2daf99fe749295dbceef10437.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/next.svg b/src/resources/icons/at-icons/next.svg new file mode 100644 index 00000000..5b957272 --- /dev/null +++ b/src/resources/icons/at-icons/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/next.svg.import b/src/resources/icons/at-icons/next.svg.import new file mode 100644 index 00000000..e5748456 --- /dev/null +++ b/src/resources/icons/at-icons/next.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6w6xjwy4h2wh" +path="res://.godot/imported/next.svg-a9bef521265a9225762f82941b7c4a9f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/next.svg" +dest_files=["res://.godot/imported/next.svg-a9bef521265a9225762f82941b7c4a9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/no_entry.svg b/src/resources/icons/at-icons/no_entry.svg new file mode 100644 index 00000000..ac1b9413 --- /dev/null +++ b/src/resources/icons/at-icons/no_entry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/no_entry.svg.import b/src/resources/icons/at-icons/no_entry.svg.import new file mode 100644 index 00000000..f06e9be1 --- /dev/null +++ b/src/resources/icons/at-icons/no_entry.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bht14qjtsc2ca" +path="res://.godot/imported/no_entry.svg-a375c74639a959fdb06c945191d37046.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/no_entry.svg" +dest_files=["res://.godot/imported/no_entry.svg-a375c74639a959fdb06c945191d37046.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/no_symbol.svg b/src/resources/icons/at-icons/no_symbol.svg new file mode 100644 index 00000000..044de649 --- /dev/null +++ b/src/resources/icons/at-icons/no_symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/no_symbol.svg.import b/src/resources/icons/at-icons/no_symbol.svg.import new file mode 100644 index 00000000..7dd2c75c --- /dev/null +++ b/src/resources/icons/at-icons/no_symbol.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7u4hnxnxknon" +path="res://.godot/imported/no_symbol.svg-3c272fb1542745ee1e2b289abf566634.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/no_symbol.svg" +dest_files=["res://.godot/imported/no_symbol.svg-3c272fb1542745ee1e2b289abf566634.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/note.svg b/src/resources/icons/at-icons/note.svg new file mode 100644 index 00000000..904642c8 --- /dev/null +++ b/src/resources/icons/at-icons/note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/note.svg.import b/src/resources/icons/at-icons/note.svg.import new file mode 100644 index 00000000..15449519 --- /dev/null +++ b/src/resources/icons/at-icons/note.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c50nb5f06srwp" +path="res://.godot/imported/note.svg-d424a54c8739760d401ee73548ffd15e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/note.svg" +dest_files=["res://.godot/imported/note.svg-d424a54c8739760d401ee73548ffd15e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/note_double.svg b/src/resources/icons/at-icons/note_double.svg new file mode 100644 index 00000000..5395b150 --- /dev/null +++ b/src/resources/icons/at-icons/note_double.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/note_double.svg.import b/src/resources/icons/at-icons/note_double.svg.import new file mode 100644 index 00000000..01984ef0 --- /dev/null +++ b/src/resources/icons/at-icons/note_double.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqranrgrkmhsa" +path="res://.godot/imported/note_double.svg-892fd21e23a258235ba159be5c19ac45.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/note_double.svg" +dest_files=["res://.godot/imported/note_double.svg-892fd21e23a258235ba159be5c19ac45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/notepad.svg b/src/resources/icons/at-icons/notepad.svg new file mode 100644 index 00000000..0a26e3ef --- /dev/null +++ b/src/resources/icons/at-icons/notepad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/notepad.svg.import b/src/resources/icons/at-icons/notepad.svg.import new file mode 100644 index 00000000..a13d6e90 --- /dev/null +++ b/src/resources/icons/at-icons/notepad.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0wi6dwghinkp" +path="res://.godot/imported/notepad.svg-24f9d7df713575044182ca20e28b6d9c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/notepad.svg" +dest_files=["res://.godot/imported/notepad.svg-24f9d7df713575044182ca20e28b6d9c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/number_sign.svg b/src/resources/icons/at-icons/number_sign.svg new file mode 100644 index 00000000..5be92c80 --- /dev/null +++ b/src/resources/icons/at-icons/number_sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/number_sign.svg.import b/src/resources/icons/at-icons/number_sign.svg.import new file mode 100644 index 00000000..dd353781 --- /dev/null +++ b/src/resources/icons/at-icons/number_sign.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djwilkuaaa3io" +path="res://.godot/imported/number_sign.svg-9e57ec792596da2bda3ce0e8b71ab44a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/number_sign.svg" +dest_files=["res://.godot/imported/number_sign.svg-9e57ec792596da2bda3ce0e8b71ab44a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/numbers.svg b/src/resources/icons/at-icons/numbers.svg new file mode 100644 index 00000000..f80b9414 --- /dev/null +++ b/src/resources/icons/at-icons/numbers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/numbers.svg.import b/src/resources/icons/at-icons/numbers.svg.import new file mode 100644 index 00000000..d38902c6 --- /dev/null +++ b/src/resources/icons/at-icons/numbers.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b822743d7v76o" +path="res://.godot/imported/numbers.svg-e31eb5b5b877b064f0379bcbbaef4f22.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/numbers.svg" +dest_files=["res://.godot/imported/numbers.svg-e31eb5b5b877b064f0379bcbbaef4f22.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/nut_and_bolt.svg b/src/resources/icons/at-icons/nut_and_bolt.svg new file mode 100644 index 00000000..39b54be7 --- /dev/null +++ b/src/resources/icons/at-icons/nut_and_bolt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/nut_and_bolt.svg.import b/src/resources/icons/at-icons/nut_and_bolt.svg.import new file mode 100644 index 00000000..6f3e4bce --- /dev/null +++ b/src/resources/icons/at-icons/nut_and_bolt.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yutl4wvba06k" +path="res://.godot/imported/nut_and_bolt.svg-6de8f267b07a85301a962f3151d49212.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/nut_and_bolt.svg" +dest_files=["res://.godot/imported/nut_and_bolt.svg-6de8f267b07a85301a962f3151d49212.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/octagon.svg b/src/resources/icons/at-icons/octagon.svg new file mode 100644 index 00000000..e736f0ea --- /dev/null +++ b/src/resources/icons/at-icons/octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/octagon.svg.import b/src/resources/icons/at-icons/octagon.svg.import new file mode 100644 index 00000000..b2a4d0f3 --- /dev/null +++ b/src/resources/icons/at-icons/octagon.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpoqae6qjjnfi" +path="res://.godot/imported/octagon.svg-41757610b0634fca27007aab8b528114.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/octagon.svg" +dest_files=["res://.godot/imported/octagon.svg-41757610b0634fca27007aab8b528114.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/orbit.svg b/src/resources/icons/at-icons/orbit.svg new file mode 100644 index 00000000..d219f72e --- /dev/null +++ b/src/resources/icons/at-icons/orbit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/orbit.svg.import b/src/resources/icons/at-icons/orbit.svg.import new file mode 100644 index 00000000..2e41a78e --- /dev/null +++ b/src/resources/icons/at-icons/orbit.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fvoeg2r63058" +path="res://.godot/imported/orbit.svg-31df9ffbdf887ac2861dc6594769473f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/orbit.svg" +dest_files=["res://.godot/imported/orbit.svg-31df9ffbdf887ac2861dc6594769473f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/out_of_bounds.svg b/src/resources/icons/at-icons/out_of_bounds.svg new file mode 100644 index 00000000..9d5d0f7f --- /dev/null +++ b/src/resources/icons/at-icons/out_of_bounds.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/out_of_bounds.svg.import b/src/resources/icons/at-icons/out_of_bounds.svg.import new file mode 100644 index 00000000..68ecaf61 --- /dev/null +++ b/src/resources/icons/at-icons/out_of_bounds.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd3lhupx3g718" +path="res://.godot/imported/out_of_bounds.svg-a36bab742f6657cc5ea1e1775bc010c8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/out_of_bounds.svg" +dest_files=["res://.godot/imported/out_of_bounds.svg-a36bab742f6657cc5ea1e1775bc010c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/oven.svg b/src/resources/icons/at-icons/oven.svg new file mode 100644 index 00000000..47694057 --- /dev/null +++ b/src/resources/icons/at-icons/oven.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/oven.svg.import b/src/resources/icons/at-icons/oven.svg.import new file mode 100644 index 00000000..3027b69e --- /dev/null +++ b/src/resources/icons/at-icons/oven.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n5y0bueaf4tf" +path="res://.godot/imported/oven.svg-668e7e3694ea3d24f10ea93da15df271.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/oven.svg" +dest_files=["res://.godot/imported/oven.svg-668e7e3694ea3d24f10ea93da15df271.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/paint_roller.svg b/src/resources/icons/at-icons/paint_roller.svg new file mode 100644 index 00000000..9a84c368 --- /dev/null +++ b/src/resources/icons/at-icons/paint_roller.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/paint_roller.svg.import b/src/resources/icons/at-icons/paint_roller.svg.import new file mode 100644 index 00000000..92ac274e --- /dev/null +++ b/src/resources/icons/at-icons/paint_roller.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rsgd6xyt788r" +path="res://.godot/imported/paint_roller.svg-f6ef07ac46b8fe7f6bca3f3016fd97e0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/paint_roller.svg" +dest_files=["res://.godot/imported/paint_roller.svg-f6ef07ac46b8fe7f6bca3f3016fd97e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/paintbrush.svg b/src/resources/icons/at-icons/paintbrush.svg new file mode 100644 index 00000000..973dfb62 --- /dev/null +++ b/src/resources/icons/at-icons/paintbrush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/paintbrush.svg.import b/src/resources/icons/at-icons/paintbrush.svg.import new file mode 100644 index 00000000..faa3ea62 --- /dev/null +++ b/src/resources/icons/at-icons/paintbrush.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjdfaqxd5dhyy" +path="res://.godot/imported/paintbrush.svg-081e1c7f2f46170a9de780e5469b7643.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/paintbrush.svg" +dest_files=["res://.godot/imported/paintbrush.svg-081e1c7f2f46170a9de780e5469b7643.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/palette.svg b/src/resources/icons/at-icons/palette.svg new file mode 100644 index 00000000..809b3c53 --- /dev/null +++ b/src/resources/icons/at-icons/palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/palette.svg.import b/src/resources/icons/at-icons/palette.svg.import new file mode 100644 index 00000000..d4210040 --- /dev/null +++ b/src/resources/icons/at-icons/palette.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv3gp1kv5bvk0" +path="res://.godot/imported/palette.svg-e024ba7334f8b1f4f19343e2181fbe7e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/palette.svg" +dest_files=["res://.godot/imported/palette.svg-e024ba7334f8b1f4f19343e2181fbe7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/paper_airplane.svg b/src/resources/icons/at-icons/paper_airplane.svg new file mode 100644 index 00000000..cd1306b3 --- /dev/null +++ b/src/resources/icons/at-icons/paper_airplane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/paper_airplane.svg.import b/src/resources/icons/at-icons/paper_airplane.svg.import new file mode 100644 index 00000000..39408257 --- /dev/null +++ b/src/resources/icons/at-icons/paper_airplane.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bork6aglsojap" +path="res://.godot/imported/paper_airplane.svg-a3336f271ab481c6cf99d91d11786836.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/paper_airplane.svg" +dest_files=["res://.godot/imported/paper_airplane.svg-a3336f271ab481c6cf99d91d11786836.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/paperclip.svg b/src/resources/icons/at-icons/paperclip.svg new file mode 100644 index 00000000..0746dae4 --- /dev/null +++ b/src/resources/icons/at-icons/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/paperclip.svg.import b/src/resources/icons/at-icons/paperclip.svg.import new file mode 100644 index 00000000..f576901c --- /dev/null +++ b/src/resources/icons/at-icons/paperclip.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baosage0wbylj" +path="res://.godot/imported/paperclip.svg-13c32ec251170abe6f3c93c252c18639.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/paperclip.svg" +dest_files=["res://.godot/imported/paperclip.svg-13c32ec251170abe6f3c93c252c18639.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/paragraph.svg b/src/resources/icons/at-icons/paragraph.svg new file mode 100644 index 00000000..f4110eb0 --- /dev/null +++ b/src/resources/icons/at-icons/paragraph.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/paragraph.svg.import b/src/resources/icons/at-icons/paragraph.svg.import new file mode 100644 index 00000000..8287ecc9 --- /dev/null +++ b/src/resources/icons/at-icons/paragraph.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwvxkq5xbng3k" +path="res://.godot/imported/paragraph.svg-6590ee22d47d1607ac39982e49694557.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/paragraph.svg" +dest_files=["res://.godot/imported/paragraph.svg-6590ee22d47d1607ac39982e49694557.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/parking_sign.svg b/src/resources/icons/at-icons/parking_sign.svg new file mode 100644 index 00000000..c2e83521 --- /dev/null +++ b/src/resources/icons/at-icons/parking_sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/parking_sign.svg.import b/src/resources/icons/at-icons/parking_sign.svg.import new file mode 100644 index 00000000..4c19b726 --- /dev/null +++ b/src/resources/icons/at-icons/parking_sign.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0tk0ckw65p3r" +path="res://.godot/imported/parking_sign.svg-f0789e10c2a7670e2cb3427484a92b87.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/parking_sign.svg" +dest_files=["res://.godot/imported/parking_sign.svg-f0789e10c2a7670e2cb3427484a92b87.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pause.svg b/src/resources/icons/at-icons/pause.svg new file mode 100644 index 00000000..1c7a6470 --- /dev/null +++ b/src/resources/icons/at-icons/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pause.svg.import b/src/resources/icons/at-icons/pause.svg.import new file mode 100644 index 00000000..e3e6cff8 --- /dev/null +++ b/src/resources/icons/at-icons/pause.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvqxa30c0gttk" +path="res://.godot/imported/pause.svg-4969a359bde2c7b17352760397312aea.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pause.svg" +dest_files=["res://.godot/imported/pause.svg-4969a359bde2c7b17352760397312aea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/paw_print.svg b/src/resources/icons/at-icons/paw_print.svg new file mode 100644 index 00000000..d12121ce --- /dev/null +++ b/src/resources/icons/at-icons/paw_print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/paw_print.svg.import b/src/resources/icons/at-icons/paw_print.svg.import new file mode 100644 index 00000000..75b2327f --- /dev/null +++ b/src/resources/icons/at-icons/paw_print.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bagaescpphb1r" +path="res://.godot/imported/paw_print.svg-38160608f859dc1f804ad3796291fed2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/paw_print.svg" +dest_files=["res://.godot/imported/paw_print.svg-38160608f859dc1f804ad3796291fed2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pen_nib.svg b/src/resources/icons/at-icons/pen_nib.svg new file mode 100644 index 00000000..69659be3 --- /dev/null +++ b/src/resources/icons/at-icons/pen_nib.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pen_nib.svg.import b/src/resources/icons/at-icons/pen_nib.svg.import new file mode 100644 index 00000000..f95e93d0 --- /dev/null +++ b/src/resources/icons/at-icons/pen_nib.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfn2man882ct3" +path="res://.godot/imported/pen_nib.svg-6edda8a644e7194a4346cdee563dce7a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pen_nib.svg" +dest_files=["res://.godot/imported/pen_nib.svg-6edda8a644e7194a4346cdee563dce7a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pencil.svg b/src/resources/icons/at-icons/pencil.svg new file mode 100644 index 00000000..0c32779e --- /dev/null +++ b/src/resources/icons/at-icons/pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pencil.svg.import b/src/resources/icons/at-icons/pencil.svg.import new file mode 100644 index 00000000..475a69ce --- /dev/null +++ b/src/resources/icons/at-icons/pencil.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgff01ooebpe4" +path="res://.godot/imported/pencil.svg-677bdb772e805bb42657fabf9efba7fd.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pencil.svg" +dest_files=["res://.godot/imported/pencil.svg-677bdb772e805bb42657fabf9efba7fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/photo_camera.svg b/src/resources/icons/at-icons/photo_camera.svg new file mode 100644 index 00000000..fe286f7e --- /dev/null +++ b/src/resources/icons/at-icons/photo_camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/photo_camera.svg.import b/src/resources/icons/at-icons/photo_camera.svg.import new file mode 100644 index 00000000..296933c3 --- /dev/null +++ b/src/resources/icons/at-icons/photo_camera.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmv63pusyoufw" +path="res://.godot/imported/photo_camera.svg-8dbfc78a6dff37ae46735e8782a1a5d4.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/photo_camera.svg" +dest_files=["res://.godot/imported/photo_camera.svg-8dbfc78a6dff37ae46735e8782a1a5d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/piano.svg b/src/resources/icons/at-icons/piano.svg new file mode 100644 index 00000000..9a13a85f --- /dev/null +++ b/src/resources/icons/at-icons/piano.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/piano.svg.import b/src/resources/icons/at-icons/piano.svg.import new file mode 100644 index 00000000..347911d5 --- /dev/null +++ b/src/resources/icons/at-icons/piano.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cupr26h3xbw8f" +path="res://.godot/imported/piano.svg-9adeb4afaa2833b4a620fb9ddb87bf65.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/piano.svg" +dest_files=["res://.godot/imported/piano.svg-9adeb4afaa2833b4a620fb9ddb87bf65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pickaxe.svg b/src/resources/icons/at-icons/pickaxe.svg new file mode 100644 index 00000000..5b61cdc4 --- /dev/null +++ b/src/resources/icons/at-icons/pickaxe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pickaxe.svg.import b/src/resources/icons/at-icons/pickaxe.svg.import new file mode 100644 index 00000000..b18fe5b1 --- /dev/null +++ b/src/resources/icons/at-icons/pickaxe.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rlyc43oxrbsh" +path="res://.godot/imported/pickaxe.svg-b3a4035347196b8f5b02d0173eae2e08.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pickaxe.svg" +dest_files=["res://.godot/imported/pickaxe.svg-b3a4035347196b8f5b02d0173eae2e08.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pie_chart.svg b/src/resources/icons/at-icons/pie_chart.svg new file mode 100644 index 00000000..4a762274 --- /dev/null +++ b/src/resources/icons/at-icons/pie_chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pie_chart.svg.import b/src/resources/icons/at-icons/pie_chart.svg.import new file mode 100644 index 00000000..891ce1c8 --- /dev/null +++ b/src/resources/icons/at-icons/pie_chart.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3h3qh2f4xlgf" +path="res://.godot/imported/pie_chart.svg-ffe97bbc7c6aeb4eead69cca343914b4.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pie_chart.svg" +dest_files=["res://.godot/imported/pie_chart.svg-ffe97bbc7c6aeb4eead69cca343914b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pig.svg b/src/resources/icons/at-icons/pig.svg new file mode 100644 index 00000000..657c8143 --- /dev/null +++ b/src/resources/icons/at-icons/pig.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pig.svg.import b/src/resources/icons/at-icons/pig.svg.import new file mode 100644 index 00000000..65427bbd --- /dev/null +++ b/src/resources/icons/at-icons/pig.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpeglbm4o7b6g" +path="res://.godot/imported/pig.svg-75af22b0d13af2e7e5a283cda1199892.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pig.svg" +dest_files=["res://.godot/imported/pig.svg-75af22b0d13af2e7e5a283cda1199892.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pill.svg b/src/resources/icons/at-icons/pill.svg new file mode 100644 index 00000000..1e6e148b --- /dev/null +++ b/src/resources/icons/at-icons/pill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pill.svg.import b/src/resources/icons/at-icons/pill.svg.import new file mode 100644 index 00000000..2c16dd1e --- /dev/null +++ b/src/resources/icons/at-icons/pill.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh0epj2xfkxro" +path="res://.godot/imported/pill.svg-c4a3f9e79ee030985b91692696b84747.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pill.svg" +dest_files=["res://.godot/imported/pill.svg-c4a3f9e79ee030985b91692696b84747.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pin.svg b/src/resources/icons/at-icons/pin.svg new file mode 100644 index 00000000..3a103544 --- /dev/null +++ b/src/resources/icons/at-icons/pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pin.svg.import b/src/resources/icons/at-icons/pin.svg.import new file mode 100644 index 00000000..9f3cf34c --- /dev/null +++ b/src/resources/icons/at-icons/pin.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://knjyhrd7iah6" +path="res://.godot/imported/pin.svg-ce7d6c5b7c05431128125b2a31fa02c7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pin.svg" +dest_files=["res://.godot/imported/pin.svg-ce7d6c5b7c05431128125b2a31fa02c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pipette.svg b/src/resources/icons/at-icons/pipette.svg new file mode 100644 index 00000000..3d1efb3b --- /dev/null +++ b/src/resources/icons/at-icons/pipette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pipette.svg.import b/src/resources/icons/at-icons/pipette.svg.import new file mode 100644 index 00000000..4449f362 --- /dev/null +++ b/src/resources/icons/at-icons/pipette.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb8r4dedmrag3" +path="res://.godot/imported/pipette.svg-53fce7b3298c92dfde4af0a7f16a8684.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pipette.svg" +dest_files=["res://.godot/imported/pipette.svg-53fce7b3298c92dfde4af0a7f16a8684.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/planet.svg b/src/resources/icons/at-icons/planet.svg new file mode 100644 index 00000000..ce7648d6 --- /dev/null +++ b/src/resources/icons/at-icons/planet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/planet.svg.import b/src/resources/icons/at-icons/planet.svg.import new file mode 100644 index 00000000..6e4d9566 --- /dev/null +++ b/src/resources/icons/at-icons/planet.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cre7j7xfqugpt" +path="res://.godot/imported/planet.svg-260ce959e12e14b114bd337d639e34ce.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/planet.svg" +dest_files=["res://.godot/imported/planet.svg-260ce959e12e14b114bd337d639e34ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/play.svg b/src/resources/icons/at-icons/play.svg new file mode 100644 index 00000000..fd8a1b2b --- /dev/null +++ b/src/resources/icons/at-icons/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/play.svg.import b/src/resources/icons/at-icons/play.svg.import new file mode 100644 index 00000000..50b23f6f --- /dev/null +++ b/src/resources/icons/at-icons/play.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbpkipddteorw" +path="res://.godot/imported/play.svg-620de0a2f75175cf63083f54be62e3b3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/play.svg" +dest_files=["res://.godot/imported/play.svg-620de0a2f75175cf63083f54be62e3b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/playing_card.svg b/src/resources/icons/at-icons/playing_card.svg new file mode 100644 index 00000000..fb66e886 --- /dev/null +++ b/src/resources/icons/at-icons/playing_card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/playing_card.svg.import b/src/resources/icons/at-icons/playing_card.svg.import new file mode 100644 index 00000000..f505315f --- /dev/null +++ b/src/resources/icons/at-icons/playing_card.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b808fds8dfmmq" +path="res://.godot/imported/playing_card.svg-e609e651e654b1df6aba22b66497ded0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/playing_card.svg" +dest_files=["res://.godot/imported/playing_card.svg-e609e651e654b1df6aba22b66497ded0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/plug.svg b/src/resources/icons/at-icons/plug.svg new file mode 100644 index 00000000..47a67591 --- /dev/null +++ b/src/resources/icons/at-icons/plug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/plug.svg.import b/src/resources/icons/at-icons/plug.svg.import new file mode 100644 index 00000000..544ab6f9 --- /dev/null +++ b/src/resources/icons/at-icons/plug.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd8an110sah0y" +path="res://.godot/imported/plug.svg-38bc5b4a860ddadfd88420eece2da688.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/plug.svg" +dest_files=["res://.godot/imported/plug.svg-38bc5b4a860ddadfd88420eece2da688.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/plug_and_socket.svg b/src/resources/icons/at-icons/plug_and_socket.svg new file mode 100644 index 00000000..ef7eb183 --- /dev/null +++ b/src/resources/icons/at-icons/plug_and_socket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/plug_and_socket.svg.import b/src/resources/icons/at-icons/plug_and_socket.svg.import new file mode 100644 index 00000000..c534345e --- /dev/null +++ b/src/resources/icons/at-icons/plug_and_socket.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crub2tgmvlixv" +path="res://.godot/imported/plug_and_socket.svg-c22c13e861edc64d1e7c5b608ab8c753.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/plug_and_socket.svg" +dest_files=["res://.godot/imported/plug_and_socket.svg-c22c13e861edc64d1e7c5b608ab8c753.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/plus.svg b/src/resources/icons/at-icons/plus.svg new file mode 100644 index 00000000..46889974 --- /dev/null +++ b/src/resources/icons/at-icons/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/plus.svg.import b/src/resources/icons/at-icons/plus.svg.import new file mode 100644 index 00000000..51863dbe --- /dev/null +++ b/src/resources/icons/at-icons/plus.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3bhp78m85if7" +path="res://.godot/imported/plus.svg-e914ad1d7dffe796be16be838f17a5c6.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/plus.svg" +dest_files=["res://.godot/imported/plus.svg-e914ad1d7dffe796be16be838f17a5c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/plus_sign_in_square.svg b/src/resources/icons/at-icons/plus_sign_in_square.svg new file mode 100644 index 00000000..96a60d0a --- /dev/null +++ b/src/resources/icons/at-icons/plus_sign_in_square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/plus_sign_in_square.svg.import b/src/resources/icons/at-icons/plus_sign_in_square.svg.import new file mode 100644 index 00000000..0fce6101 --- /dev/null +++ b/src/resources/icons/at-icons/plus_sign_in_square.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf7m0a2krovb6" +path="res://.godot/imported/plus_sign_in_square.svg-59b17eb3ef5e692301bdffa89a723662.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/plus_sign_in_square.svg" +dest_files=["res://.godot/imported/plus_sign_in_square.svg-59b17eb3ef5e692301bdffa89a723662.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pointer.svg b/src/resources/icons/at-icons/pointer.svg new file mode 100644 index 00000000..00cc29c5 --- /dev/null +++ b/src/resources/icons/at-icons/pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pointer.svg.import b/src/resources/icons/at-icons/pointer.svg.import new file mode 100644 index 00000000..12b7c9ae --- /dev/null +++ b/src/resources/icons/at-icons/pointer.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0r246yt5xqo2" +path="res://.godot/imported/pointer.svg-b3308ffb085ecd02db6d6fd5a87437e1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pointer.svg" +dest_files=["res://.godot/imported/pointer.svg-b3308ffb085ecd02db6d6fd5a87437e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/potion.svg b/src/resources/icons/at-icons/potion.svg new file mode 100644 index 00000000..5d3973d3 --- /dev/null +++ b/src/resources/icons/at-icons/potion.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/potion.svg.import b/src/resources/icons/at-icons/potion.svg.import new file mode 100644 index 00000000..784c67e2 --- /dev/null +++ b/src/resources/icons/at-icons/potion.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmpghfb1tyte5" +path="res://.godot/imported/potion.svg-2f09fe8f9683d0b2d276b84fb62d5233.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/potion.svg" +dest_files=["res://.godot/imported/potion.svg-2f09fe8f9683d0b2d276b84fb62d5233.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pouch.svg b/src/resources/icons/at-icons/pouch.svg new file mode 100644 index 00000000..c216f8a5 --- /dev/null +++ b/src/resources/icons/at-icons/pouch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pouch.svg.import b/src/resources/icons/at-icons/pouch.svg.import new file mode 100644 index 00000000..550c1fcf --- /dev/null +++ b/src/resources/icons/at-icons/pouch.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsiugbhltcxh7" +path="res://.godot/imported/pouch.svg-3ed9f6d4f29f80ec2b7afabc91f890d3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pouch.svg" +dest_files=["res://.godot/imported/pouch.svg-3ed9f6d4f29f80ec2b7afabc91f890d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/poultry.svg b/src/resources/icons/at-icons/poultry.svg new file mode 100644 index 00000000..041eef42 --- /dev/null +++ b/src/resources/icons/at-icons/poultry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/poultry.svg.import b/src/resources/icons/at-icons/poultry.svg.import new file mode 100644 index 00000000..ffc4d1c1 --- /dev/null +++ b/src/resources/icons/at-icons/poultry.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg7fj7gaog44n" +path="res://.godot/imported/poultry.svg-d77b08f3dde510a8eddd51634b8e0207.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/poultry.svg" +dest_files=["res://.godot/imported/poultry.svg-d77b08f3dde510a8eddd51634b8e0207.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/poultry_eaten.svg b/src/resources/icons/at-icons/poultry_eaten.svg new file mode 100644 index 00000000..6231aa33 --- /dev/null +++ b/src/resources/icons/at-icons/poultry_eaten.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/poultry_eaten.svg.import b/src/resources/icons/at-icons/poultry_eaten.svg.import new file mode 100644 index 00000000..b05fb904 --- /dev/null +++ b/src/resources/icons/at-icons/poultry_eaten.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sdhqe1ooa7j1" +path="res://.godot/imported/poultry_eaten.svg-eef60601cb8aadfd923c8d09e22899d5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/poultry_eaten.svg" +dest_files=["res://.godot/imported/poultry_eaten.svg-eef60601cb8aadfd923c8d09e22899d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/previous.svg b/src/resources/icons/at-icons/previous.svg new file mode 100644 index 00000000..6ef0ab1f --- /dev/null +++ b/src/resources/icons/at-icons/previous.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/previous.svg.import b/src/resources/icons/at-icons/previous.svg.import new file mode 100644 index 00000000..b3919519 --- /dev/null +++ b/src/resources/icons/at-icons/previous.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b15fwfewp0gct" +path="res://.godot/imported/previous.svg-ea5b862e75e3d4716678c01874f83618.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/previous.svg" +dest_files=["res://.godot/imported/previous.svg-ea5b862e75e3d4716678c01874f83618.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/printer.svg b/src/resources/icons/at-icons/printer.svg new file mode 100644 index 00000000..fe0b0a61 --- /dev/null +++ b/src/resources/icons/at-icons/printer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/printer.svg.import b/src/resources/icons/at-icons/printer.svg.import new file mode 100644 index 00000000..364699e0 --- /dev/null +++ b/src/resources/icons/at-icons/printer.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mcq4alci0jx6" +path="res://.godot/imported/printer.svg-dad82d09d6762d7acbdc30b4db60f1e9.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/printer.svg" +dest_files=["res://.godot/imported/printer.svg-dad82d09d6762d7acbdc30b4db60f1e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/prism.svg b/src/resources/icons/at-icons/prism.svg new file mode 100644 index 00000000..ce8f5e00 --- /dev/null +++ b/src/resources/icons/at-icons/prism.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/prism.svg.import b/src/resources/icons/at-icons/prism.svg.import new file mode 100644 index 00000000..96aae19d --- /dev/null +++ b/src/resources/icons/at-icons/prism.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpfeu0so0eier" +path="res://.godot/imported/prism.svg-3fb754c4cdb6a284c22d3f5c1880c9d8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/prism.svg" +dest_files=["res://.godot/imported/prism.svg-3fb754c4cdb6a284c22d3f5c1880c9d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/projector.svg b/src/resources/icons/at-icons/projector.svg new file mode 100644 index 00000000..eafda4c3 --- /dev/null +++ b/src/resources/icons/at-icons/projector.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/projector.svg.import b/src/resources/icons/at-icons/projector.svg.import new file mode 100644 index 00000000..e53b442f --- /dev/null +++ b/src/resources/icons/at-icons/projector.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmilj2u18ht5u" +path="res://.godot/imported/projector.svg-4c5ed0b72327d31a5ad0b1fc3ee58d6b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/projector.svg" +dest_files=["res://.godot/imported/projector.svg-4c5ed0b72327d31a5ad0b1fc3ee58d6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/push_button.svg b/src/resources/icons/at-icons/push_button.svg new file mode 100644 index 00000000..e5eaf1e4 --- /dev/null +++ b/src/resources/icons/at-icons/push_button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/push_button.svg.import b/src/resources/icons/at-icons/push_button.svg.import new file mode 100644 index 00000000..037906f9 --- /dev/null +++ b/src/resources/icons/at-icons/push_button.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ke0kj67d2edv" +path="res://.godot/imported/push_button.svg-88cf2d63ed831b6b7f40f70cdd3fe03c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/push_button.svg" +dest_files=["res://.godot/imported/push_button.svg-88cf2d63ed831b6b7f40f70cdd3fe03c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/pyramid.svg b/src/resources/icons/at-icons/pyramid.svg new file mode 100644 index 00000000..d2d4c0a6 --- /dev/null +++ b/src/resources/icons/at-icons/pyramid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/pyramid.svg.import b/src/resources/icons/at-icons/pyramid.svg.import new file mode 100644 index 00000000..18db1bbb --- /dev/null +++ b/src/resources/icons/at-icons/pyramid.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brlee7anrgd" +path="res://.godot/imported/pyramid.svg-a39a9ebd1b65f7d0bfc4ee6a8c16217a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/pyramid.svg" +dest_files=["res://.godot/imported/pyramid.svg-a39a9ebd1b65f7d0bfc4ee6a8c16217a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/quotation_marks.svg b/src/resources/icons/at-icons/quotation_marks.svg new file mode 100644 index 00000000..222983af --- /dev/null +++ b/src/resources/icons/at-icons/quotation_marks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/quotation_marks.svg.import b/src/resources/icons/at-icons/quotation_marks.svg.import new file mode 100644 index 00000000..929f9183 --- /dev/null +++ b/src/resources/icons/at-icons/quotation_marks.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8x8yvnjhqmn0" +path="res://.godot/imported/quotation_marks.svg-973638adc58ba144635dc3461784d3e5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/quotation_marks.svg" +dest_files=["res://.godot/imported/quotation_marks.svg-973638adc58ba144635dc3461784d3e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/racing_circuit.svg b/src/resources/icons/at-icons/racing_circuit.svg new file mode 100644 index 00000000..d55a201a --- /dev/null +++ b/src/resources/icons/at-icons/racing_circuit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/racing_circuit.svg.import b/src/resources/icons/at-icons/racing_circuit.svg.import new file mode 100644 index 00000000..1a0e76d0 --- /dev/null +++ b/src/resources/icons/at-icons/racing_circuit.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq0vlutyap4vr" +path="res://.godot/imported/racing_circuit.svg-7d65c3ace45bdd34a4fc8cfacb6c8457.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/racing_circuit.svg" +dest_files=["res://.godot/imported/racing_circuit.svg-7d65c3ace45bdd34a4fc8cfacb6c8457.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/racket.svg b/src/resources/icons/at-icons/racket.svg new file mode 100644 index 00000000..4432c5be --- /dev/null +++ b/src/resources/icons/at-icons/racket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/racket.svg.import b/src/resources/icons/at-icons/racket.svg.import new file mode 100644 index 00000000..4de4faa1 --- /dev/null +++ b/src/resources/icons/at-icons/racket.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpjedua1oa33y" +path="res://.godot/imported/racket.svg-03e5d1f84e05e6aa2359c4bea7bb553c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/racket.svg" +dest_files=["res://.godot/imported/racket.svg-03e5d1f84e05e6aa2359c4bea7bb553c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/radio_button.svg b/src/resources/icons/at-icons/radio_button.svg new file mode 100644 index 00000000..8f9a648e --- /dev/null +++ b/src/resources/icons/at-icons/radio_button.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/radio_button.svg.import b/src/resources/icons/at-icons/radio_button.svg.import new file mode 100644 index 00000000..da27887e --- /dev/null +++ b/src/resources/icons/at-icons/radio_button.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wdkbk13ogvvq" +path="res://.godot/imported/radio_button.svg-e97d289dc7b9c3e2f8f075a23b10cba1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/radio_button.svg" +dest_files=["res://.godot/imported/radio_button.svg-e97d289dc7b9c3e2f8f075a23b10cba1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/radioactive_symbol.svg b/src/resources/icons/at-icons/radioactive_symbol.svg new file mode 100644 index 00000000..f5fdfa5c --- /dev/null +++ b/src/resources/icons/at-icons/radioactive_symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/radioactive_symbol.svg.import b/src/resources/icons/at-icons/radioactive_symbol.svg.import new file mode 100644 index 00000000..cdf9e5cc --- /dev/null +++ b/src/resources/icons/at-icons/radioactive_symbol.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bma3ba253tqlq" +path="res://.godot/imported/radioactive_symbol.svg-ce2e80fb2533abe02f7cac7b5f4999a7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/radioactive_symbol.svg" +dest_files=["res://.godot/imported/radioactive_symbol.svg-ce2e80fb2533abe02f7cac7b5f4999a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/rain.svg b/src/resources/icons/at-icons/rain.svg new file mode 100644 index 00000000..afa822b9 --- /dev/null +++ b/src/resources/icons/at-icons/rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/rain.svg.import b/src/resources/icons/at-icons/rain.svg.import new file mode 100644 index 00000000..a8bf0b05 --- /dev/null +++ b/src/resources/icons/at-icons/rain.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx0465x43khbh" +path="res://.godot/imported/rain.svg-66cd1b4195571425428a7fefb73af1c7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/rain.svg" +dest_files=["res://.godot/imported/rain.svg-66cd1b4195571425428a7fefb73af1c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/razor_blade.svg b/src/resources/icons/at-icons/razor_blade.svg new file mode 100644 index 00000000..e1e229e2 --- /dev/null +++ b/src/resources/icons/at-icons/razor_blade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/razor_blade.svg.import b/src/resources/icons/at-icons/razor_blade.svg.import new file mode 100644 index 00000000..36fb4cb2 --- /dev/null +++ b/src/resources/icons/at-icons/razor_blade.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drexad0aghodn" +path="res://.godot/imported/razor_blade.svg-2cd1b91b54ae552199e550a87ca9bf92.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/razor_blade.svg" +dest_files=["res://.godot/imported/razor_blade.svg-2cd1b91b54ae552199e550a87ca9bf92.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/receiver.svg b/src/resources/icons/at-icons/receiver.svg new file mode 100644 index 00000000..3246cda8 --- /dev/null +++ b/src/resources/icons/at-icons/receiver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/receiver.svg.import b/src/resources/icons/at-icons/receiver.svg.import new file mode 100644 index 00000000..b8a6971b --- /dev/null +++ b/src/resources/icons/at-icons/receiver.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iyh7b3swf3rj" +path="res://.godot/imported/receiver.svg-2382ddc3ee571fa8c6d9608c9950d701.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/receiver.svg" +dest_files=["res://.godot/imported/receiver.svg-2382ddc3ee571fa8c6d9608c9950d701.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/recover.svg b/src/resources/icons/at-icons/recover.svg new file mode 100644 index 00000000..e17b4be9 --- /dev/null +++ b/src/resources/icons/at-icons/recover.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/recover.svg.import b/src/resources/icons/at-icons/recover.svg.import new file mode 100644 index 00000000..2909384c --- /dev/null +++ b/src/resources/icons/at-icons/recover.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://48whl6ql4drm" +path="res://.godot/imported/recover.svg-8d036815f871f35a08851f38bf678ed7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/recover.svg" +dest_files=["res://.godot/imported/recover.svg-8d036815f871f35a08851f38bf678ed7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/recycle.svg b/src/resources/icons/at-icons/recycle.svg new file mode 100644 index 00000000..8b89f576 --- /dev/null +++ b/src/resources/icons/at-icons/recycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/recycle.svg.import b/src/resources/icons/at-icons/recycle.svg.import new file mode 100644 index 00000000..5ec8cd3f --- /dev/null +++ b/src/resources/icons/at-icons/recycle.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv1jrywj7b41t" +path="res://.godot/imported/recycle.svg-557e7a8c75614b4ca9c2ea985b8c8197.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/recycle.svg" +dest_files=["res://.godot/imported/recycle.svg-557e7a8c75614b4ca9c2ea985b8c8197.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/reflect.svg b/src/resources/icons/at-icons/reflect.svg new file mode 100644 index 00000000..c7db06cf --- /dev/null +++ b/src/resources/icons/at-icons/reflect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/reflect.svg.import b/src/resources/icons/at-icons/reflect.svg.import new file mode 100644 index 00000000..885921de --- /dev/null +++ b/src/resources/icons/at-icons/reflect.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0qmulalxr8e" +path="res://.godot/imported/reflect.svg-7d9a11119213d42cf165d0012f5919ce.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/reflect.svg" +dest_files=["res://.godot/imported/reflect.svg-7d9a11119213d42cf165d0012f5919ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/resize.svg b/src/resources/icons/at-icons/resize.svg new file mode 100644 index 00000000..a3e37ec0 --- /dev/null +++ b/src/resources/icons/at-icons/resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/resize.svg.import b/src/resources/icons/at-icons/resize.svg.import new file mode 100644 index 00000000..d1364edb --- /dev/null +++ b/src/resources/icons/at-icons/resize.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj35cskhswd5a" +path="res://.godot/imported/resize.svg-ccac24cc4ba152d766dc50caf57433c1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/resize.svg" +dest_files=["res://.godot/imported/resize.svg-ccac24cc4ba152d766dc50caf57433c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/reticle.svg b/src/resources/icons/at-icons/reticle.svg new file mode 100644 index 00000000..6ad8dda6 --- /dev/null +++ b/src/resources/icons/at-icons/reticle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/reticle.svg.import b/src/resources/icons/at-icons/reticle.svg.import new file mode 100644 index 00000000..02b9d853 --- /dev/null +++ b/src/resources/icons/at-icons/reticle.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds7fs4rqtpbct" +path="res://.godot/imported/reticle.svg-7045c131df4c891da9f914dfb0924b36.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/reticle.svg" +dest_files=["res://.godot/imported/reticle.svg-7045c131df4c891da9f914dfb0924b36.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/reverse.svg b/src/resources/icons/at-icons/reverse.svg new file mode 100644 index 00000000..cedca9f7 --- /dev/null +++ b/src/resources/icons/at-icons/reverse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/reverse.svg.import b/src/resources/icons/at-icons/reverse.svg.import new file mode 100644 index 00000000..5794a0e8 --- /dev/null +++ b/src/resources/icons/at-icons/reverse.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6q6xn5fb3keu" +path="res://.godot/imported/reverse.svg-a2b9b2749777230cbca4134b7b280e07.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/reverse.svg" +dest_files=["res://.godot/imported/reverse.svg-a2b9b2749777230cbca4134b7b280e07.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/rewind.svg b/src/resources/icons/at-icons/rewind.svg new file mode 100644 index 00000000..153cee6a --- /dev/null +++ b/src/resources/icons/at-icons/rewind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/rewind.svg.import b/src/resources/icons/at-icons/rewind.svg.import new file mode 100644 index 00000000..58529895 --- /dev/null +++ b/src/resources/icons/at-icons/rewind.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba2l3d4v3s2vn" +path="res://.godot/imported/rewind.svg-d91acbff539dcb1d3110a98c711424d7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/rewind.svg" +dest_files=["res://.godot/imported/rewind.svg-d91acbff539dcb1d3110a98c711424d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/ring.svg b/src/resources/icons/at-icons/ring.svg new file mode 100644 index 00000000..afef40b9 --- /dev/null +++ b/src/resources/icons/at-icons/ring.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/ring.svg.import b/src/resources/icons/at-icons/ring.svg.import new file mode 100644 index 00000000..2fc2d150 --- /dev/null +++ b/src/resources/icons/at-icons/ring.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdmalyykk58tk" +path="res://.godot/imported/ring.svg-e9ea35fe0fb15e8ff95c37cd13021bcc.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/ring.svg" +dest_files=["res://.godot/imported/ring.svg-e9ea35fe0fb15e8ff95c37cd13021bcc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/road.svg b/src/resources/icons/at-icons/road.svg new file mode 100644 index 00000000..55305b7b --- /dev/null +++ b/src/resources/icons/at-icons/road.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/road.svg.import b/src/resources/icons/at-icons/road.svg.import new file mode 100644 index 00000000..f4c64b3a --- /dev/null +++ b/src/resources/icons/at-icons/road.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo6ktis2ok4jt" +path="res://.godot/imported/road.svg-eed79d2e10bf98adfa64fc3ef1c3ccf8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/road.svg" +dest_files=["res://.godot/imported/road.svg-eed79d2e10bf98adfa64fc3ef1c3ccf8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/roadblock.svg b/src/resources/icons/at-icons/roadblock.svg new file mode 100644 index 00000000..642a2287 --- /dev/null +++ b/src/resources/icons/at-icons/roadblock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/roadblock.svg.import b/src/resources/icons/at-icons/roadblock.svg.import new file mode 100644 index 00000000..7f5b88f2 --- /dev/null +++ b/src/resources/icons/at-icons/roadblock.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7qxa31htmy6y" +path="res://.godot/imported/roadblock.svg-9f7f2ce5aad380e494d4b1405346078d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/roadblock.svg" +dest_files=["res://.godot/imported/roadblock.svg-9f7f2ce5aad380e494d4b1405346078d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/rocketship.svg b/src/resources/icons/at-icons/rocketship.svg new file mode 100644 index 00000000..447492b9 --- /dev/null +++ b/src/resources/icons/at-icons/rocketship.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/rocketship.svg.import b/src/resources/icons/at-icons/rocketship.svg.import new file mode 100644 index 00000000..b0ac941a --- /dev/null +++ b/src/resources/icons/at-icons/rocketship.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb6karp2363a5" +path="res://.godot/imported/rocketship.svg-e6034557175c2ff11faba619ac533e2d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/rocketship.svg" +dest_files=["res://.godot/imported/rocketship.svg-e6034557175c2ff11faba619ac533e2d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/rocks.svg b/src/resources/icons/at-icons/rocks.svg new file mode 100644 index 00000000..f2cc4ef1 --- /dev/null +++ b/src/resources/icons/at-icons/rocks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/rocks.svg.import b/src/resources/icons/at-icons/rocks.svg.import new file mode 100644 index 00000000..1c03e60b --- /dev/null +++ b/src/resources/icons/at-icons/rocks.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rs7d2a2jsqxt" +path="res://.godot/imported/rocks.svg-9f1b33e97da24772226691393f43e658.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/rocks.svg" +dest_files=["res://.godot/imported/rocks.svg-9f1b33e97da24772226691393f43e658.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/rotary_dial.svg b/src/resources/icons/at-icons/rotary_dial.svg new file mode 100644 index 00000000..13043473 --- /dev/null +++ b/src/resources/icons/at-icons/rotary_dial.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/rotary_dial.svg.import b/src/resources/icons/at-icons/rotary_dial.svg.import new file mode 100644 index 00000000..2fbfaac2 --- /dev/null +++ b/src/resources/icons/at-icons/rotary_dial.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3jnx70thaffj" +path="res://.godot/imported/rotary_dial.svg-27a516ca98d98ee1d9a2a33bf1b0862c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/rotary_dial.svg" +dest_files=["res://.godot/imported/rotary_dial.svg-27a516ca98d98ee1d9a2a33bf1b0862c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/rotate.svg b/src/resources/icons/at-icons/rotate.svg new file mode 100644 index 00000000..0d02de3b --- /dev/null +++ b/src/resources/icons/at-icons/rotate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/rotate.svg.import b/src/resources/icons/at-icons/rotate.svg.import new file mode 100644 index 00000000..88651ae9 --- /dev/null +++ b/src/resources/icons/at-icons/rotate.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gqif6657q0vj" +path="res://.godot/imported/rotate.svg-2dff2d837954d1f7707aaa57f0d98e5d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/rotate.svg" +dest_files=["res://.godot/imported/rotate.svg-2dff2d837954d1f7707aaa57f0d98e5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/ruler.svg b/src/resources/icons/at-icons/ruler.svg new file mode 100644 index 00000000..b5e01b80 --- /dev/null +++ b/src/resources/icons/at-icons/ruler.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/ruler.svg.import b/src/resources/icons/at-icons/ruler.svg.import new file mode 100644 index 00000000..98960e04 --- /dev/null +++ b/src/resources/icons/at-icons/ruler.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2yyxsppbtc6v" +path="res://.godot/imported/ruler.svg-9b7034008a3e7ff42bded7ec4b13ae9b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/ruler.svg" +dest_files=["res://.godot/imported/ruler.svg-9b7034008a3e7ff42bded7ec4b13ae9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sailboat.svg b/src/resources/icons/at-icons/sailboat.svg new file mode 100644 index 00000000..ff07d2cf --- /dev/null +++ b/src/resources/icons/at-icons/sailboat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sailboat.svg.import b/src/resources/icons/at-icons/sailboat.svg.import new file mode 100644 index 00000000..9ee28088 --- /dev/null +++ b/src/resources/icons/at-icons/sailboat.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn1k1b2qdhs5p" +path="res://.godot/imported/sailboat.svg-3c7d08b995bb9540599a742f718dd519.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sailboat.svg" +dest_files=["res://.godot/imported/sailboat.svg-3c7d08b995bb9540599a742f718dd519.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sand.svg b/src/resources/icons/at-icons/sand.svg new file mode 100644 index 00000000..131eb88c --- /dev/null +++ b/src/resources/icons/at-icons/sand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sand.svg.import b/src/resources/icons/at-icons/sand.svg.import new file mode 100644 index 00000000..934b5dcc --- /dev/null +++ b/src/resources/icons/at-icons/sand.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwb38fv7iy8jt" +path="res://.godot/imported/sand.svg-2374f75bc639eea8151b4aca777d7397.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sand.svg" +dest_files=["res://.godot/imported/sand.svg-2374f75bc639eea8151b4aca777d7397.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/satellite.svg b/src/resources/icons/at-icons/satellite.svg new file mode 100644 index 00000000..655ec66b --- /dev/null +++ b/src/resources/icons/at-icons/satellite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/satellite.svg.import b/src/resources/icons/at-icons/satellite.svg.import new file mode 100644 index 00000000..b1841b7f --- /dev/null +++ b/src/resources/icons/at-icons/satellite.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1418cg1eric0" +path="res://.godot/imported/satellite.svg-06af4a5c0fde8364a8f952e76e843548.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/satellite.svg" +dest_files=["res://.godot/imported/satellite.svg-06af4a5c0fde8364a8f952e76e843548.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/scales.svg b/src/resources/icons/at-icons/scales.svg new file mode 100644 index 00000000..db539f64 --- /dev/null +++ b/src/resources/icons/at-icons/scales.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/scales.svg.import b/src/resources/icons/at-icons/scales.svg.import new file mode 100644 index 00000000..748b383b --- /dev/null +++ b/src/resources/icons/at-icons/scales.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r1rgnteddqtl" +path="res://.godot/imported/scales.svg-f11aa01c9f6742591028aa89c37dc28a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/scales.svg" +dest_files=["res://.godot/imported/scales.svg-f11aa01c9f6742591028aa89c37dc28a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/scissors.svg b/src/resources/icons/at-icons/scissors.svg new file mode 100644 index 00000000..3fb58928 --- /dev/null +++ b/src/resources/icons/at-icons/scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/scissors.svg.import b/src/resources/icons/at-icons/scissors.svg.import new file mode 100644 index 00000000..b314f348 --- /dev/null +++ b/src/resources/icons/at-icons/scissors.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3xc0tgwhr0vb" +path="res://.godot/imported/scissors.svg-684ccf9e8e086b6d4ee1bcb259920722.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/scissors.svg" +dest_files=["res://.godot/imported/scissors.svg-684ccf9e8e086b6d4ee1bcb259920722.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/scoreboard.svg b/src/resources/icons/at-icons/scoreboard.svg new file mode 100644 index 00000000..4b3fdd4f --- /dev/null +++ b/src/resources/icons/at-icons/scoreboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/scoreboard.svg.import b/src/resources/icons/at-icons/scoreboard.svg.import new file mode 100644 index 00000000..25b032a3 --- /dev/null +++ b/src/resources/icons/at-icons/scoreboard.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxq0qo3gfx572" +path="res://.godot/imported/scoreboard.svg-3d10206cacef89059ec44b6ff801721e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/scoreboard.svg" +dest_files=["res://.godot/imported/scoreboard.svg-3d10206cacef89059ec44b6ff801721e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/screw.svg b/src/resources/icons/at-icons/screw.svg new file mode 100644 index 00000000..c7d9b6e0 --- /dev/null +++ b/src/resources/icons/at-icons/screw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/screw.svg.import b/src/resources/icons/at-icons/screw.svg.import new file mode 100644 index 00000000..7750920d --- /dev/null +++ b/src/resources/icons/at-icons/screw.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7ajndn7d28j1" +path="res://.godot/imported/screw.svg-20cb161c8fef871af1f5de5aafa507b1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/screw.svg" +dest_files=["res://.godot/imported/screw.svg-20cb161c8fef871af1f5de5aafa507b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/screwdriver.svg b/src/resources/icons/at-icons/screwdriver.svg new file mode 100644 index 00000000..9ea9f76e --- /dev/null +++ b/src/resources/icons/at-icons/screwdriver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/screwdriver.svg.import b/src/resources/icons/at-icons/screwdriver.svg.import new file mode 100644 index 00000000..93e2d07b --- /dev/null +++ b/src/resources/icons/at-icons/screwdriver.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7uax7qkueo51" +path="res://.godot/imported/screwdriver.svg-a5f11fd5218b14a1aff52c14af5c2c5e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/screwdriver.svg" +dest_files=["res://.godot/imported/screwdriver.svg-a5f11fd5218b14a1aff52c14af5c2c5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/script.svg b/src/resources/icons/at-icons/script.svg new file mode 100644 index 00000000..22328f74 --- /dev/null +++ b/src/resources/icons/at-icons/script.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/script.svg.import b/src/resources/icons/at-icons/script.svg.import new file mode 100644 index 00000000..23476d78 --- /dev/null +++ b/src/resources/icons/at-icons/script.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bohrtivsvfk4d" +path="res://.godot/imported/script.svg-cc93c276d573db55c0fd31abed285e49.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/script.svg" +dest_files=["res://.godot/imported/script.svg-cc93c276d573db55c0fd31abed285e49.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sea.svg b/src/resources/icons/at-icons/sea.svg new file mode 100644 index 00000000..8ac84a72 --- /dev/null +++ b/src/resources/icons/at-icons/sea.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sea.svg.import b/src/resources/icons/at-icons/sea.svg.import new file mode 100644 index 00000000..3b58d89c --- /dev/null +++ b/src/resources/icons/at-icons/sea.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://13dmr7mavy8h" +path="res://.godot/imported/sea.svg-8e134b1a40bd47b9642b47c0cb550dbf.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sea.svg" +dest_files=["res://.godot/imported/sea.svg-8e134b1a40bd47b9642b47c0cb550dbf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/server.svg b/src/resources/icons/at-icons/server.svg new file mode 100644 index 00000000..62cd3ecf --- /dev/null +++ b/src/resources/icons/at-icons/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/server.svg.import b/src/resources/icons/at-icons/server.svg.import new file mode 100644 index 00000000..c9157547 --- /dev/null +++ b/src/resources/icons/at-icons/server.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbrc6nruckpqs" +path="res://.godot/imported/server.svg-07062a80eb407d748b11cf4fdbe203e7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/server.svg" +dest_files=["res://.godot/imported/server.svg-07062a80eb407d748b11cf4fdbe203e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sheep.svg b/src/resources/icons/at-icons/sheep.svg new file mode 100644 index 00000000..cbec6df2 --- /dev/null +++ b/src/resources/icons/at-icons/sheep.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sheep.svg.import b/src/resources/icons/at-icons/sheep.svg.import new file mode 100644 index 00000000..f9d36b88 --- /dev/null +++ b/src/resources/icons/at-icons/sheep.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c35roqd0lnavd" +path="res://.godot/imported/sheep.svg-98115ebf3bc3792f2328e17647ba43a6.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sheep.svg" +dest_files=["res://.godot/imported/sheep.svg-98115ebf3bc3792f2328e17647ba43a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/shield.svg b/src/resources/icons/at-icons/shield.svg new file mode 100644 index 00000000..b5786b8b --- /dev/null +++ b/src/resources/icons/at-icons/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/shield.svg.import b/src/resources/icons/at-icons/shield.svg.import new file mode 100644 index 00000000..24634785 --- /dev/null +++ b/src/resources/icons/at-icons/shield.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do1fvhodbq26m" +path="res://.godot/imported/shield.svg-120d1d321f5dc5b6d131e24078b64b77.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/shield.svg" +dest_files=["res://.godot/imported/shield.svg-120d1d321f5dc5b6d131e24078b64b77.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/shocked_face.svg b/src/resources/icons/at-icons/shocked_face.svg new file mode 100644 index 00000000..6c68d7b1 --- /dev/null +++ b/src/resources/icons/at-icons/shocked_face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/shocked_face.svg.import b/src/resources/icons/at-icons/shocked_face.svg.import new file mode 100644 index 00000000..5399ac52 --- /dev/null +++ b/src/resources/icons/at-icons/shocked_face.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnlkxeggvx8hr" +path="res://.godot/imported/shocked_face.svg-0b837b757001f327d1d6164d528be0f4.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/shocked_face.svg" +dest_files=["res://.godot/imported/shocked_face.svg-0b837b757001f327d1d6164d528be0f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/shopping_bag.svg b/src/resources/icons/at-icons/shopping_bag.svg new file mode 100644 index 00000000..98e87d79 --- /dev/null +++ b/src/resources/icons/at-icons/shopping_bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/shopping_bag.svg.import b/src/resources/icons/at-icons/shopping_bag.svg.import new file mode 100644 index 00000000..a587b935 --- /dev/null +++ b/src/resources/icons/at-icons/shopping_bag.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdjdcow0sxdxi" +path="res://.godot/imported/shopping_bag.svg-7c142701d110e39fea622130a35d082f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/shopping_bag.svg" +dest_files=["res://.godot/imported/shopping_bag.svg-7c142701d110e39fea622130a35d082f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/shopping_basket.svg b/src/resources/icons/at-icons/shopping_basket.svg new file mode 100644 index 00000000..745daca0 --- /dev/null +++ b/src/resources/icons/at-icons/shopping_basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/shopping_basket.svg.import b/src/resources/icons/at-icons/shopping_basket.svg.import new file mode 100644 index 00000000..db178050 --- /dev/null +++ b/src/resources/icons/at-icons/shopping_basket.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvfofr7yda00b" +path="res://.godot/imported/shopping_basket.svg-33f654430967b06ad75ef5bb46bc4695.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/shopping_basket.svg" +dest_files=["res://.godot/imported/shopping_basket.svg-33f654430967b06ad75ef5bb46bc4695.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/shopping_cart.svg b/src/resources/icons/at-icons/shopping_cart.svg new file mode 100644 index 00000000..d9cd5178 --- /dev/null +++ b/src/resources/icons/at-icons/shopping_cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/shopping_cart.svg.import b/src/resources/icons/at-icons/shopping_cart.svg.import new file mode 100644 index 00000000..3a2a4dc3 --- /dev/null +++ b/src/resources/icons/at-icons/shopping_cart.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3cxvy8q5el1e" +path="res://.godot/imported/shopping_cart.svg-5252fe9f40bf323dd7b3725165bf3f32.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/shopping_cart.svg" +dest_files=["res://.godot/imported/shopping_cart.svg-5252fe9f40bf323dd7b3725165bf3f32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/shovel.svg b/src/resources/icons/at-icons/shovel.svg new file mode 100644 index 00000000..1d01e1d6 --- /dev/null +++ b/src/resources/icons/at-icons/shovel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/shovel.svg.import b/src/resources/icons/at-icons/shovel.svg.import new file mode 100644 index 00000000..769afe27 --- /dev/null +++ b/src/resources/icons/at-icons/shovel.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckar1pyqkyq52" +path="res://.godot/imported/shovel.svg-83f1603469c5923208f7267018b7db78.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/shovel.svg" +dest_files=["res://.godot/imported/shovel.svg-83f1603469c5923208f7267018b7db78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sign_post.svg b/src/resources/icons/at-icons/sign_post.svg new file mode 100644 index 00000000..6cfd3b3a --- /dev/null +++ b/src/resources/icons/at-icons/sign_post.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sign_post.svg.import b/src/resources/icons/at-icons/sign_post.svg.import new file mode 100644 index 00000000..dc599318 --- /dev/null +++ b/src/resources/icons/at-icons/sign_post.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnv3ol68jc4jv" +path="res://.godot/imported/sign_post.svg-06bc4b75c0ef20da154029f667902b62.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sign_post.svg" +dest_files=["res://.godot/imported/sign_post.svg-06bc4b75c0ef20da154029f667902b62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/signal.svg b/src/resources/icons/at-icons/signal.svg new file mode 100644 index 00000000..f3ac3df2 --- /dev/null +++ b/src/resources/icons/at-icons/signal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/signal.svg.import b/src/resources/icons/at-icons/signal.svg.import new file mode 100644 index 00000000..0ccf8a14 --- /dev/null +++ b/src/resources/icons/at-icons/signal.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctdj06rsqjdws" +path="res://.godot/imported/signal.svg-1a689bb69517332041586d1e4751e3ab.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/signal.svg" +dest_files=["res://.godot/imported/signal.svg-1a689bb69517332041586d1e4751e3ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/signal_wave.svg b/src/resources/icons/at-icons/signal_wave.svg new file mode 100644 index 00000000..450f11fe --- /dev/null +++ b/src/resources/icons/at-icons/signal_wave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/signal_wave.svg.import b/src/resources/icons/at-icons/signal_wave.svg.import new file mode 100644 index 00000000..ca13b768 --- /dev/null +++ b/src/resources/icons/at-icons/signal_wave.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crbw5yphhlqwc" +path="res://.godot/imported/signal_wave.svg-8508cd30bfc0c72ab530e26cdbf4dc93.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/signal_wave.svg" +dest_files=["res://.godot/imported/signal_wave.svg-8508cd30bfc0c72ab530e26cdbf4dc93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/skull.svg b/src/resources/icons/at-icons/skull.svg new file mode 100644 index 00000000..0ae5caf5 --- /dev/null +++ b/src/resources/icons/at-icons/skull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/skull.svg.import b/src/resources/icons/at-icons/skull.svg.import new file mode 100644 index 00000000..5d6f5131 --- /dev/null +++ b/src/resources/icons/at-icons/skull.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0jt0ur2a7jdb" +path="res://.godot/imported/skull.svg-3b63e71c4db7ff6152ef36a0fd299b51.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/skull.svg" +dest_files=["res://.godot/imported/skull.svg-3b63e71c4db7ff6152ef36a0fd299b51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/skull_and_crossbones.svg b/src/resources/icons/at-icons/skull_and_crossbones.svg new file mode 100644 index 00000000..75a5aae6 --- /dev/null +++ b/src/resources/icons/at-icons/skull_and_crossbones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/skull_and_crossbones.svg.import b/src/resources/icons/at-icons/skull_and_crossbones.svg.import new file mode 100644 index 00000000..86f68062 --- /dev/null +++ b/src/resources/icons/at-icons/skull_and_crossbones.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lpbc236fj76k" +path="res://.godot/imported/skull_and_crossbones.svg-7696f040ad40614a86aa519128b1c800.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/skull_and_crossbones.svg" +dest_files=["res://.godot/imported/skull_and_crossbones.svg-7696f040ad40614a86aa519128b1c800.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sky.svg b/src/resources/icons/at-icons/sky.svg new file mode 100644 index 00000000..41b59227 --- /dev/null +++ b/src/resources/icons/at-icons/sky.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sky.svg.import b/src/resources/icons/at-icons/sky.svg.import new file mode 100644 index 00000000..81b92eb5 --- /dev/null +++ b/src/resources/icons/at-icons/sky.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmhb2jsq0fbjj" +path="res://.godot/imported/sky.svg-14038f1163e01da78e7cc290725cc4e2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sky.svg" +dest_files=["res://.godot/imported/sky.svg-14038f1163e01da78e7cc290725cc4e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sledgehammer.svg b/src/resources/icons/at-icons/sledgehammer.svg new file mode 100644 index 00000000..1b6926e6 --- /dev/null +++ b/src/resources/icons/at-icons/sledgehammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sledgehammer.svg.import b/src/resources/icons/at-icons/sledgehammer.svg.import new file mode 100644 index 00000000..c4f9eaee --- /dev/null +++ b/src/resources/icons/at-icons/sledgehammer.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr8qtops1jber" +path="res://.godot/imported/sledgehammer.svg-359fcfc102740b2d7c1467fa84913bcf.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sledgehammer.svg" +dest_files=["res://.godot/imported/sledgehammer.svg-359fcfc102740b2d7c1467fa84913bcf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/slide_switch.svg b/src/resources/icons/at-icons/slide_switch.svg new file mode 100644 index 00000000..9b77dc08 --- /dev/null +++ b/src/resources/icons/at-icons/slide_switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/slide_switch.svg.import b/src/resources/icons/at-icons/slide_switch.svg.import new file mode 100644 index 00000000..111fb47f --- /dev/null +++ b/src/resources/icons/at-icons/slide_switch.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mh84jvnd78i5" +path="res://.godot/imported/slide_switch.svg-9cbaefc4bd8616963c96f4659200efcc.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/slide_switch.svg" +dest_files=["res://.godot/imported/slide_switch.svg-9cbaefc4bd8616963c96f4659200efcc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/slider_joint.svg b/src/resources/icons/at-icons/slider_joint.svg new file mode 100644 index 00000000..63c72ad0 --- /dev/null +++ b/src/resources/icons/at-icons/slider_joint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/slider_joint.svg.import b/src/resources/icons/at-icons/slider_joint.svg.import new file mode 100644 index 00000000..14352411 --- /dev/null +++ b/src/resources/icons/at-icons/slider_joint.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkbljiyeadbn4" +path="res://.godot/imported/slider_joint.svg-7b225402da3a21cd01a5e5f35edd17cc.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/slider_joint.svg" +dest_files=["res://.godot/imported/slider_joint.svg-7b225402da3a21cd01a5e5f35edd17cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sliders.svg b/src/resources/icons/at-icons/sliders.svg new file mode 100644 index 00000000..f884b46d --- /dev/null +++ b/src/resources/icons/at-icons/sliders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sliders.svg.import b/src/resources/icons/at-icons/sliders.svg.import new file mode 100644 index 00000000..92a52731 --- /dev/null +++ b/src/resources/icons/at-icons/sliders.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drigpll28mqkl" +path="res://.godot/imported/sliders.svg-9587cfffb4bcfa57fa1cc5f1ce80c4f6.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sliders.svg" +dest_files=["res://.godot/imported/sliders.svg-9587cfffb4bcfa57fa1cc5f1ce80c4f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/smiley_face.svg b/src/resources/icons/at-icons/smiley_face.svg new file mode 100644 index 00000000..3fc62584 --- /dev/null +++ b/src/resources/icons/at-icons/smiley_face.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/smiley_face.svg.import b/src/resources/icons/at-icons/smiley_face.svg.import new file mode 100644 index 00000000..e1e35f7a --- /dev/null +++ b/src/resources/icons/at-icons/smiley_face.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fym6ercmrlns" +path="res://.godot/imported/smiley_face.svg-e3ce78d09e6ba709af9bf3ef033e893a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/smiley_face.svg" +dest_files=["res://.godot/imported/smiley_face.svg-e3ce78d09e6ba709af9bf3ef033e893a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/snow.svg b/src/resources/icons/at-icons/snow.svg new file mode 100644 index 00000000..c8a8ec18 --- /dev/null +++ b/src/resources/icons/at-icons/snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/snow.svg.import b/src/resources/icons/at-icons/snow.svg.import new file mode 100644 index 00000000..9c439fae --- /dev/null +++ b/src/resources/icons/at-icons/snow.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwtriub14nh8l" +path="res://.godot/imported/snow.svg-859b6937fac2ac6afd8b5f7b588d8117.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/snow.svg" +dest_files=["res://.godot/imported/snow.svg-859b6937fac2ac6afd8b5f7b588d8117.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/snowflake.svg b/src/resources/icons/at-icons/snowflake.svg new file mode 100644 index 00000000..72acea00 --- /dev/null +++ b/src/resources/icons/at-icons/snowflake.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/snowflake.svg.import b/src/resources/icons/at-icons/snowflake.svg.import new file mode 100644 index 00000000..c7197181 --- /dev/null +++ b/src/resources/icons/at-icons/snowflake.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqgmkgg6f4cdm" +path="res://.godot/imported/snowflake.svg-022e560ee63353f1a8b2c815cc6eb23c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/snowflake.svg" +dest_files=["res://.godot/imported/snowflake.svg-022e560ee63353f1a8b2c815cc6eb23c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/spade.svg b/src/resources/icons/at-icons/spade.svg new file mode 100644 index 00000000..86f3e9a3 --- /dev/null +++ b/src/resources/icons/at-icons/spade.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/spade.svg.import b/src/resources/icons/at-icons/spade.svg.import new file mode 100644 index 00000000..47b965f9 --- /dev/null +++ b/src/resources/icons/at-icons/spade.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s4u7dyj5n155" +path="res://.godot/imported/spade.svg-156df8d309fe8fc3adfa48fab9ab742c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/spade.svg" +dest_files=["res://.godot/imported/spade.svg-156df8d309fe8fc3adfa48fab9ab742c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/speaker.svg b/src/resources/icons/at-icons/speaker.svg new file mode 100644 index 00000000..869c4edf --- /dev/null +++ b/src/resources/icons/at-icons/speaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/speaker.svg.import b/src/resources/icons/at-icons/speaker.svg.import new file mode 100644 index 00000000..297087ba --- /dev/null +++ b/src/resources/icons/at-icons/speaker.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2ib05yks88ej" +path="res://.godot/imported/speaker.svg-62e5b35033a4860c49818f019ab6dbbd.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/speaker.svg" +dest_files=["res://.godot/imported/speaker.svg-62e5b35033a4860c49818f019ab6dbbd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/speaker_low.svg b/src/resources/icons/at-icons/speaker_low.svg new file mode 100644 index 00000000..d8924faa --- /dev/null +++ b/src/resources/icons/at-icons/speaker_low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/speaker_low.svg.import b/src/resources/icons/at-icons/speaker_low.svg.import new file mode 100644 index 00000000..fc7972d5 --- /dev/null +++ b/src/resources/icons/at-icons/speaker_low.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxwrw604gdi7m" +path="res://.godot/imported/speaker_low.svg-6b00d69ae79d367c73ecdb9057d02d5f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/speaker_low.svg" +dest_files=["res://.godot/imported/speaker_low.svg-6b00d69ae79d367c73ecdb9057d02d5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/speaker_mute.svg b/src/resources/icons/at-icons/speaker_mute.svg new file mode 100644 index 00000000..3e5c6c63 --- /dev/null +++ b/src/resources/icons/at-icons/speaker_mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/speaker_mute.svg.import b/src/resources/icons/at-icons/speaker_mute.svg.import new file mode 100644 index 00000000..b923562e --- /dev/null +++ b/src/resources/icons/at-icons/speaker_mute.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csu55uqi3mrpp" +path="res://.godot/imported/speaker_mute.svg-5e7273140fad1985a9fff8d9463978f4.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/speaker_mute.svg" +dest_files=["res://.godot/imported/speaker_mute.svg-5e7273140fad1985a9fff8d9463978f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/speech_bubble.svg b/src/resources/icons/at-icons/speech_bubble.svg new file mode 100644 index 00000000..01018b9d --- /dev/null +++ b/src/resources/icons/at-icons/speech_bubble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/speech_bubble.svg.import b/src/resources/icons/at-icons/speech_bubble.svg.import new file mode 100644 index 00000000..7f4ef00c --- /dev/null +++ b/src/resources/icons/at-icons/speech_bubble.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbit7x1vr5jrl" +path="res://.godot/imported/speech_bubble.svg-09242233822a863267339931d2bd9192.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/speech_bubble.svg" +dest_files=["res://.godot/imported/speech_bubble.svg-09242233822a863267339931d2bd9192.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/speech_bubble_ellipsis.svg b/src/resources/icons/at-icons/speech_bubble_ellipsis.svg new file mode 100644 index 00000000..9b23fe7f --- /dev/null +++ b/src/resources/icons/at-icons/speech_bubble_ellipsis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/speech_bubble_ellipsis.svg.import b/src/resources/icons/at-icons/speech_bubble_ellipsis.svg.import new file mode 100644 index 00000000..64f6bb1e --- /dev/null +++ b/src/resources/icons/at-icons/speech_bubble_ellipsis.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dad3mteieso4e" +path="res://.godot/imported/speech_bubble_ellipsis.svg-47357d52eadbdbea7fcf16f4afb72d9f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/speech_bubble_ellipsis.svg" +dest_files=["res://.godot/imported/speech_bubble_ellipsis.svg-47357d52eadbdbea7fcf16f4afb72d9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/speech_bubble_exclamation.svg b/src/resources/icons/at-icons/speech_bubble_exclamation.svg new file mode 100644 index 00000000..6c6a1447 --- /dev/null +++ b/src/resources/icons/at-icons/speech_bubble_exclamation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/speech_bubble_exclamation.svg.import b/src/resources/icons/at-icons/speech_bubble_exclamation.svg.import new file mode 100644 index 00000000..e1c4c1aa --- /dev/null +++ b/src/resources/icons/at-icons/speech_bubble_exclamation.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck0bmi1acbtmd" +path="res://.godot/imported/speech_bubble_exclamation.svg-00f37702b88ac0397400f2223ea3a68c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/speech_bubble_exclamation.svg" +dest_files=["res://.godot/imported/speech_bubble_exclamation.svg-00f37702b88ac0397400f2223ea3a68c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/speech_bubble_question.svg b/src/resources/icons/at-icons/speech_bubble_question.svg new file mode 100644 index 00000000..7186670e --- /dev/null +++ b/src/resources/icons/at-icons/speech_bubble_question.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/speech_bubble_question.svg.import b/src/resources/icons/at-icons/speech_bubble_question.svg.import new file mode 100644 index 00000000..79d6bda8 --- /dev/null +++ b/src/resources/icons/at-icons/speech_bubble_question.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duuebuyd763e" +path="res://.godot/imported/speech_bubble_question.svg-db1f4bcd9e7b02023484d09a17e9112b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/speech_bubble_question.svg" +dest_files=["res://.godot/imported/speech_bubble_question.svg-db1f4bcd9e7b02023484d09a17e9112b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sphere.svg b/src/resources/icons/at-icons/sphere.svg new file mode 100644 index 00000000..3473e19a --- /dev/null +++ b/src/resources/icons/at-icons/sphere.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sphere.svg.import b/src/resources/icons/at-icons/sphere.svg.import new file mode 100644 index 00000000..d8bb7f79 --- /dev/null +++ b/src/resources/icons/at-icons/sphere.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyo1560hqj4gv" +path="res://.godot/imported/sphere.svg-a360963720c655f7a8dbade6b6874337.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sphere.svg" +dest_files=["res://.godot/imported/sphere.svg-a360963720c655f7a8dbade6b6874337.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/spiral.svg b/src/resources/icons/at-icons/spiral.svg new file mode 100644 index 00000000..8908abdd --- /dev/null +++ b/src/resources/icons/at-icons/spiral.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/spiral.svg.import b/src/resources/icons/at-icons/spiral.svg.import new file mode 100644 index 00000000..6f1f6fba --- /dev/null +++ b/src/resources/icons/at-icons/spiral.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1y8gsij8ru44" +path="res://.godot/imported/spiral.svg-fa4aefe0c880e5ebeaf4bb24d81ba448.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/spiral.svg" +dest_files=["res://.godot/imported/spiral.svg-fa4aefe0c880e5ebeaf4bb24d81ba448.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sponge.svg b/src/resources/icons/at-icons/sponge.svg new file mode 100644 index 00000000..78cf5134 --- /dev/null +++ b/src/resources/icons/at-icons/sponge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sponge.svg.import b/src/resources/icons/at-icons/sponge.svg.import new file mode 100644 index 00000000..ec5f834b --- /dev/null +++ b/src/resources/icons/at-icons/sponge.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boci4nhxadcxx" +path="res://.godot/imported/sponge.svg-fc3b8dec41116f00b135a93e7489193e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sponge.svg" +dest_files=["res://.godot/imported/sponge.svg-fc3b8dec41116f00b135a93e7489193e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/spray.svg b/src/resources/icons/at-icons/spray.svg new file mode 100644 index 00000000..1b984252 --- /dev/null +++ b/src/resources/icons/at-icons/spray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/spray.svg.import b/src/resources/icons/at-icons/spray.svg.import new file mode 100644 index 00000000..1f6a76e4 --- /dev/null +++ b/src/resources/icons/at-icons/spray.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc8pctrcer0kt" +path="res://.godot/imported/spray.svg-269ef2fdfd5273b68cd75711d842cb8f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/spray.svg" +dest_files=["res://.godot/imported/spray.svg-269ef2fdfd5273b68cd75711d842cb8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/spring_joint.svg b/src/resources/icons/at-icons/spring_joint.svg new file mode 100644 index 00000000..75c2c2af --- /dev/null +++ b/src/resources/icons/at-icons/spring_joint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/spring_joint.svg.import b/src/resources/icons/at-icons/spring_joint.svg.import new file mode 100644 index 00000000..b53c6bfb --- /dev/null +++ b/src/resources/icons/at-icons/spring_joint.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xlvcp0rmipt5" +path="res://.godot/imported/spring_joint.svg-2eebbdb9e80774ec208d9595d4b48fb7.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/spring_joint.svg" +dest_files=["res://.godot/imported/spring_joint.svg-2eebbdb9e80774ec208d9595d4b48fb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sprout.svg b/src/resources/icons/at-icons/sprout.svg new file mode 100644 index 00000000..50bfb774 --- /dev/null +++ b/src/resources/icons/at-icons/sprout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sprout.svg.import b/src/resources/icons/at-icons/sprout.svg.import new file mode 100644 index 00000000..d6d19752 --- /dev/null +++ b/src/resources/icons/at-icons/sprout.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgcyiebtvg61e" +path="res://.godot/imported/sprout.svg-b43589b7216333d09f156d67097693f0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sprout.svg" +dest_files=["res://.godot/imported/sprout.svg-b43589b7216333d09f156d67097693f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/square.svg b/src/resources/icons/at-icons/square.svg new file mode 100644 index 00000000..57a65e0d --- /dev/null +++ b/src/resources/icons/at-icons/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/square.svg.import b/src/resources/icons/at-icons/square.svg.import new file mode 100644 index 00000000..392b275d --- /dev/null +++ b/src/resources/icons/at-icons/square.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ohffgbkl3n05" +path="res://.godot/imported/square.svg-a3941bba169b83424d60965259ff13e3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/square.svg" +dest_files=["res://.godot/imported/square.svg-a3941bba169b83424d60965259ff13e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/square_root.svg b/src/resources/icons/at-icons/square_root.svg new file mode 100644 index 00000000..c8a9ebdf --- /dev/null +++ b/src/resources/icons/at-icons/square_root.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/square_root.svg.import b/src/resources/icons/at-icons/square_root.svg.import new file mode 100644 index 00000000..4ab362da --- /dev/null +++ b/src/resources/icons/at-icons/square_root.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6it6h6cgcx8t" +path="res://.godot/imported/square_root.svg-b94f087c868c2d1f0932585e98f786a6.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/square_root.svg" +dest_files=["res://.godot/imported/square_root.svg-b94f087c868c2d1f0932585e98f786a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/staircase.svg b/src/resources/icons/at-icons/staircase.svg new file mode 100644 index 00000000..084f58f0 --- /dev/null +++ b/src/resources/icons/at-icons/staircase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/staircase.svg.import b/src/resources/icons/at-icons/staircase.svg.import new file mode 100644 index 00000000..d458c91f --- /dev/null +++ b/src/resources/icons/at-icons/staircase.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jhhq4wf2wx0o" +path="res://.godot/imported/staircase.svg-eeac3844216c384d2a72d7dec240b28c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/staircase.svg" +dest_files=["res://.godot/imported/staircase.svg-eeac3844216c384d2a72d7dec240b28c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/staircase_down.svg b/src/resources/icons/at-icons/staircase_down.svg new file mode 100644 index 00000000..c83ad190 --- /dev/null +++ b/src/resources/icons/at-icons/staircase_down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/staircase_down.svg.import b/src/resources/icons/at-icons/staircase_down.svg.import new file mode 100644 index 00000000..2b1e4f48 --- /dev/null +++ b/src/resources/icons/at-icons/staircase_down.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0w4x2suc7yvo" +path="res://.godot/imported/staircase_down.svg-2027a64454d38edd00d55bd7b9d1b62d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/staircase_down.svg" +dest_files=["res://.godot/imported/staircase_down.svg-2027a64454d38edd00d55bd7b9d1b62d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/staircase_up.svg b/src/resources/icons/at-icons/staircase_up.svg new file mode 100644 index 00000000..22c480a4 --- /dev/null +++ b/src/resources/icons/at-icons/staircase_up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/staircase_up.svg.import b/src/resources/icons/at-icons/staircase_up.svg.import new file mode 100644 index 00000000..b8aaaacd --- /dev/null +++ b/src/resources/icons/at-icons/staircase_up.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba7fh525aj371" +path="res://.godot/imported/staircase_up.svg-ae4c4b65611d736d8a3608014f971cb1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/staircase_up.svg" +dest_files=["res://.godot/imported/staircase_up.svg-ae4c4b65611d736d8a3608014f971cb1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/stamp.svg b/src/resources/icons/at-icons/stamp.svg new file mode 100644 index 00000000..207a9bc2 --- /dev/null +++ b/src/resources/icons/at-icons/stamp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/stamp.svg.import b/src/resources/icons/at-icons/stamp.svg.import new file mode 100644 index 00000000..2bb192a2 --- /dev/null +++ b/src/resources/icons/at-icons/stamp.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfwuk214nb55v" +path="res://.godot/imported/stamp.svg-ceab2f4ae597a4574220bcc0251b8137.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/stamp.svg" +dest_files=["res://.godot/imported/stamp.svg-ceab2f4ae597a4574220bcc0251b8137.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/star.svg b/src/resources/icons/at-icons/star.svg new file mode 100644 index 00000000..209cb55b --- /dev/null +++ b/src/resources/icons/at-icons/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/star.svg.import b/src/resources/icons/at-icons/star.svg.import new file mode 100644 index 00000000..e6d93ad9 --- /dev/null +++ b/src/resources/icons/at-icons/star.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cln2ebj2iksdc" +path="res://.godot/imported/star.svg-df05fb4fc6ca25ace205987cd1f47efa.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/star.svg" +dest_files=["res://.godot/imported/star.svg-df05fb4fc6ca25ace205987cd1f47efa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/stars.svg b/src/resources/icons/at-icons/stars.svg new file mode 100644 index 00000000..e7a26445 --- /dev/null +++ b/src/resources/icons/at-icons/stars.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/stars.svg.import b/src/resources/icons/at-icons/stars.svg.import new file mode 100644 index 00000000..1a557650 --- /dev/null +++ b/src/resources/icons/at-icons/stars.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx1sf2hkscgs3" +path="res://.godot/imported/stars.svg-2b6f138d8872debb25bbeb267ca552bd.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/stars.svg" +dest_files=["res://.godot/imported/stars.svg-2b6f138d8872debb25bbeb267ca552bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/steering_wheel.svg b/src/resources/icons/at-icons/steering_wheel.svg new file mode 100644 index 00000000..fda07c75 --- /dev/null +++ b/src/resources/icons/at-icons/steering_wheel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/steering_wheel.svg.import b/src/resources/icons/at-icons/steering_wheel.svg.import new file mode 100644 index 00000000..72b6d371 --- /dev/null +++ b/src/resources/icons/at-icons/steering_wheel.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdtpjdtqo1qch" +path="res://.godot/imported/steering_wheel.svg-175faf0bcd4ee0fe9ed6ecd8ca744008.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/steering_wheel.svg" +dest_files=["res://.godot/imported/steering_wheel.svg-175faf0bcd4ee0fe9ed6ecd8ca744008.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/stepper.svg b/src/resources/icons/at-icons/stepper.svg new file mode 100644 index 00000000..1f0eedae --- /dev/null +++ b/src/resources/icons/at-icons/stepper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/stepper.svg.import b/src/resources/icons/at-icons/stepper.svg.import new file mode 100644 index 00000000..a20dcc87 --- /dev/null +++ b/src/resources/icons/at-icons/stepper.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct0f7nualem0l" +path="res://.godot/imported/stepper.svg-d7e33107e8a4baf230cd1b90bad460b1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/stepper.svg" +dest_files=["res://.godot/imported/stepper.svg-d7e33107e8a4baf230cd1b90bad460b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sticker.svg b/src/resources/icons/at-icons/sticker.svg new file mode 100644 index 00000000..b0bd83ae --- /dev/null +++ b/src/resources/icons/at-icons/sticker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sticker.svg.import b/src/resources/icons/at-icons/sticker.svg.import new file mode 100644 index 00000000..0a526fc8 --- /dev/null +++ b/src/resources/icons/at-icons/sticker.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd7b1touqvuw7" +path="res://.godot/imported/sticker.svg-e6bfda1486fb6b20a543c89beb7b30f8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sticker.svg" +dest_files=["res://.godot/imported/sticker.svg-e6bfda1486fb6b20a543c89beb7b30f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/stop_sign.svg b/src/resources/icons/at-icons/stop_sign.svg new file mode 100644 index 00000000..0edf9c26 --- /dev/null +++ b/src/resources/icons/at-icons/stop_sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/stop_sign.svg.import b/src/resources/icons/at-icons/stop_sign.svg.import new file mode 100644 index 00000000..761e969f --- /dev/null +++ b/src/resources/icons/at-icons/stop_sign.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnr7b1aghmncc" +path="res://.godot/imported/stop_sign.svg-dbe07ffe7645a2e3fec5c9929d436329.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/stop_sign.svg" +dest_files=["res://.godot/imported/stop_sign.svg-dbe07ffe7645a2e3fec5c9929d436329.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/stopwatch.svg b/src/resources/icons/at-icons/stopwatch.svg new file mode 100644 index 00000000..28d8c3ef --- /dev/null +++ b/src/resources/icons/at-icons/stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/stopwatch.svg.import b/src/resources/icons/at-icons/stopwatch.svg.import new file mode 100644 index 00000000..a5fb8e90 --- /dev/null +++ b/src/resources/icons/at-icons/stopwatch.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkfmatda58qtv" +path="res://.godot/imported/stopwatch.svg-3b666626312ee08d80a5361d3bf3dc51.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/stopwatch.svg" +dest_files=["res://.godot/imported/stopwatch.svg-3b666626312ee08d80a5361d3bf3dc51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/storage.svg b/src/resources/icons/at-icons/storage.svg new file mode 100644 index 00000000..13be4a67 --- /dev/null +++ b/src/resources/icons/at-icons/storage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/storage.svg.import b/src/resources/icons/at-icons/storage.svg.import new file mode 100644 index 00000000..ad71e15c --- /dev/null +++ b/src/resources/icons/at-icons/storage.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1d884ff4sply" +path="res://.godot/imported/storage.svg-7e3d14a8decd7f03c60c73269b46d9f2.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/storage.svg" +dest_files=["res://.godot/imported/storage.svg-7e3d14a8decd7f03c60c73269b46d9f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/strikethrough.svg b/src/resources/icons/at-icons/strikethrough.svg new file mode 100644 index 00000000..e15e3cfc --- /dev/null +++ b/src/resources/icons/at-icons/strikethrough.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/strikethrough.svg.import b/src/resources/icons/at-icons/strikethrough.svg.import new file mode 100644 index 00000000..1db7cb44 --- /dev/null +++ b/src/resources/icons/at-icons/strikethrough.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2tgkti0miyxb" +path="res://.godot/imported/strikethrough.svg-1e298348555344c746e1a5586fcdeee5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/strikethrough.svg" +dest_files=["res://.godot/imported/strikethrough.svg-1e298348555344c746e1a5586fcdeee5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/stylus_tap.svg b/src/resources/icons/at-icons/stylus_tap.svg new file mode 100644 index 00000000..909b7f56 --- /dev/null +++ b/src/resources/icons/at-icons/stylus_tap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/stylus_tap.svg.import b/src/resources/icons/at-icons/stylus_tap.svg.import new file mode 100644 index 00000000..634a0f9c --- /dev/null +++ b/src/resources/icons/at-icons/stylus_tap.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://05daqn84fm7o" +path="res://.godot/imported/stylus_tap.svg-5529bade2920811f769b498472e8f594.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/stylus_tap.svg" +dest_files=["res://.godot/imported/stylus_tap.svg-5529bade2920811f769b498472e8f594.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/subdivision.svg b/src/resources/icons/at-icons/subdivision.svg new file mode 100644 index 00000000..3a150cfb --- /dev/null +++ b/src/resources/icons/at-icons/subdivision.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/subdivision.svg.import b/src/resources/icons/at-icons/subdivision.svg.import new file mode 100644 index 00000000..38088acb --- /dev/null +++ b/src/resources/icons/at-icons/subdivision.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwr5qmatpvlqf" +path="res://.godot/imported/subdivision.svg-28a9339c86714f458a5c63d7de9e4b80.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/subdivision.svg" +dest_files=["res://.godot/imported/subdivision.svg-28a9339c86714f458a5c63d7de9e4b80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/subscript.svg b/src/resources/icons/at-icons/subscript.svg new file mode 100644 index 00000000..5cb53455 --- /dev/null +++ b/src/resources/icons/at-icons/subscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/subscript.svg.import b/src/resources/icons/at-icons/subscript.svg.import new file mode 100644 index 00000000..5bb56d78 --- /dev/null +++ b/src/resources/icons/at-icons/subscript.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2dewouyh3u1c" +path="res://.godot/imported/subscript.svg-7a314c2cb89437ad78dba57b578cbc8b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/subscript.svg" +dest_files=["res://.godot/imported/subscript.svg-7a314c2cb89437ad78dba57b578cbc8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sun.svg b/src/resources/icons/at-icons/sun.svg new file mode 100644 index 00000000..2395d2f7 --- /dev/null +++ b/src/resources/icons/at-icons/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sun.svg.import b/src/resources/icons/at-icons/sun.svg.import new file mode 100644 index 00000000..fdcdd27c --- /dev/null +++ b/src/resources/icons/at-icons/sun.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqdaefh8fhgch" +path="res://.godot/imported/sun.svg-53050a9985b7af0e0b7d51d52c400e01.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sun.svg" +dest_files=["res://.godot/imported/sun.svg-53050a9985b7af0e0b7d51d52c400e01.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sun_cloud.svg b/src/resources/icons/at-icons/sun_cloud.svg new file mode 100644 index 00000000..4c1133cd --- /dev/null +++ b/src/resources/icons/at-icons/sun_cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sun_cloud.svg.import b/src/resources/icons/at-icons/sun_cloud.svg.import new file mode 100644 index 00000000..1f728f3c --- /dev/null +++ b/src/resources/icons/at-icons/sun_cloud.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu03kt3ldlj7d" +path="res://.godot/imported/sun_cloud.svg-386d5366984dab8a7101574b0a223392.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sun_cloud.svg" +dest_files=["res://.godot/imported/sun_cloud.svg-386d5366984dab8a7101574b0a223392.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/superscript.svg b/src/resources/icons/at-icons/superscript.svg new file mode 100644 index 00000000..3eeda55a --- /dev/null +++ b/src/resources/icons/at-icons/superscript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/superscript.svg.import b/src/resources/icons/at-icons/superscript.svg.import new file mode 100644 index 00000000..4eb0afd2 --- /dev/null +++ b/src/resources/icons/at-icons/superscript.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3kplv05ovd74" +path="res://.godot/imported/superscript.svg-f3586887c6f8074852bca79082a6f827.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/superscript.svg" +dest_files=["res://.godot/imported/superscript.svg-f3586887c6f8074852bca79082a6f827.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/swatches.svg b/src/resources/icons/at-icons/swatches.svg new file mode 100644 index 00000000..0225e968 --- /dev/null +++ b/src/resources/icons/at-icons/swatches.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/swatches.svg.import b/src/resources/icons/at-icons/swatches.svg.import new file mode 100644 index 00000000..05354d43 --- /dev/null +++ b/src/resources/icons/at-icons/swatches.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gratwf4qgop3" +path="res://.godot/imported/swatches.svg-bdd17d426a9f365b4545d535b3e68350.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/swatches.svg" +dest_files=["res://.godot/imported/swatches.svg-bdd17d426a9f365b4545d535b3e68350.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/switch.svg b/src/resources/icons/at-icons/switch.svg new file mode 100644 index 00000000..52cfa81d --- /dev/null +++ b/src/resources/icons/at-icons/switch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/switch.svg.import b/src/resources/icons/at-icons/switch.svg.import new file mode 100644 index 00000000..912db157 --- /dev/null +++ b/src/resources/icons/at-icons/switch.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d36254767viml" +path="res://.godot/imported/switch.svg-2db34ba611987438cfd3a8fc96e3b6a3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/switch.svg" +dest_files=["res://.godot/imported/switch.svg-2db34ba611987438cfd3a8fc96e3b6a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/sword.svg b/src/resources/icons/at-icons/sword.svg new file mode 100644 index 00000000..a8251ad3 --- /dev/null +++ b/src/resources/icons/at-icons/sword.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/sword.svg.import b/src/resources/icons/at-icons/sword.svg.import new file mode 100644 index 00000000..101aa742 --- /dev/null +++ b/src/resources/icons/at-icons/sword.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b775inq4lge5m" +path="res://.godot/imported/sword.svg-700badadc347b9fe781f780c1f4f7119.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/sword.svg" +dest_files=["res://.godot/imported/sword.svg-700badadc347b9fe781f780c1f4f7119.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/swords.svg b/src/resources/icons/at-icons/swords.svg new file mode 100644 index 00000000..cc10a4b0 --- /dev/null +++ b/src/resources/icons/at-icons/swords.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/swords.svg.import b/src/resources/icons/at-icons/swords.svg.import new file mode 100644 index 00000000..1a00e3af --- /dev/null +++ b/src/resources/icons/at-icons/swords.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxnewy66n1udu" +path="res://.godot/imported/swords.svg-ee0b900e286427e5a48ecbe6f9e573b1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/swords.svg" +dest_files=["res://.godot/imported/swords.svg-ee0b900e286427e5a48ecbe6f9e573b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/syringe.svg b/src/resources/icons/at-icons/syringe.svg new file mode 100644 index 00000000..b399f637 --- /dev/null +++ b/src/resources/icons/at-icons/syringe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/syringe.svg.import b/src/resources/icons/at-icons/syringe.svg.import new file mode 100644 index 00000000..9b3c4dbe --- /dev/null +++ b/src/resources/icons/at-icons/syringe.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boyhyjggxpvwi" +path="res://.godot/imported/syringe.svg-8a98153797fe27e8b73cdfa3c8a648b0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/syringe.svg" +dest_files=["res://.godot/imported/syringe.svg-8a98153797fe27e8b73cdfa3c8a648b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/table.svg b/src/resources/icons/at-icons/table.svg new file mode 100644 index 00000000..4701c483 --- /dev/null +++ b/src/resources/icons/at-icons/table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/table.svg.import b/src/resources/icons/at-icons/table.svg.import new file mode 100644 index 00000000..de07530c --- /dev/null +++ b/src/resources/icons/at-icons/table.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oqsfx7qdge8g" +path="res://.godot/imported/table.svg-94ba2246b5bf724c707d132c7d6e11c5.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/table.svg" +dest_files=["res://.godot/imported/table.svg-94ba2246b5bf724c707d132c7d6e11c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/tablet.svg b/src/resources/icons/at-icons/tablet.svg new file mode 100644 index 00000000..bd9fd04d --- /dev/null +++ b/src/resources/icons/at-icons/tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/tablet.svg.import b/src/resources/icons/at-icons/tablet.svg.import new file mode 100644 index 00000000..1015085b --- /dev/null +++ b/src/resources/icons/at-icons/tablet.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1nwxp2yobdup" +path="res://.godot/imported/tablet.svg-7330f235f99cb81b578ce4aa13b26e67.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/tablet.svg" +dest_files=["res://.godot/imported/tablet.svg-7330f235f99cb81b578ce4aa13b26e67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/tag.svg b/src/resources/icons/at-icons/tag.svg new file mode 100644 index 00000000..3f6e9089 --- /dev/null +++ b/src/resources/icons/at-icons/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/tag.svg.import b/src/resources/icons/at-icons/tag.svg.import new file mode 100644 index 00000000..3cd1f00a --- /dev/null +++ b/src/resources/icons/at-icons/tag.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxxcgyouqlaiq" +path="res://.godot/imported/tag.svg-c6037b9eb1e4753151b9d4f066705936.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/tag.svg" +dest_files=["res://.godot/imported/tag.svg-c6037b9eb1e4753151b9d4f066705936.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/tank.svg b/src/resources/icons/at-icons/tank.svg new file mode 100644 index 00000000..c97e8573 --- /dev/null +++ b/src/resources/icons/at-icons/tank.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/tank.svg.import b/src/resources/icons/at-icons/tank.svg.import new file mode 100644 index 00000000..235b00bf --- /dev/null +++ b/src/resources/icons/at-icons/tank.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxm5d8wqraplx" +path="res://.godot/imported/tank.svg-e8df308f575c42d6a3cc1be0b4ec05d0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/tank.svg" +dest_files=["res://.godot/imported/tank.svg-e8df308f575c42d6a3cc1be0b4ec05d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/tap.svg b/src/resources/icons/at-icons/tap.svg new file mode 100644 index 00000000..1cd0e0aa --- /dev/null +++ b/src/resources/icons/at-icons/tap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/tap.svg.import b/src/resources/icons/at-icons/tap.svg.import new file mode 100644 index 00000000..b6fe39cd --- /dev/null +++ b/src/resources/icons/at-icons/tap.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fm1btt3ofds7" +path="res://.godot/imported/tap.svg-c0699ff6a2d896ba20d342a6752c881c.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/tap.svg" +dest_files=["res://.godot/imported/tap.svg-c0699ff6a2d896ba20d342a6752c881c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/target.svg b/src/resources/icons/at-icons/target.svg new file mode 100644 index 00000000..baea2030 --- /dev/null +++ b/src/resources/icons/at-icons/target.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/target.svg.import b/src/resources/icons/at-icons/target.svg.import new file mode 100644 index 00000000..a24fdde5 --- /dev/null +++ b/src/resources/icons/at-icons/target.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coxoli1ab6vgv" +path="res://.godot/imported/target.svg-458f98e000a4ae5e18d470915d557a0d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/target.svg" +dest_files=["res://.godot/imported/target.svg-458f98e000a4ae5e18d470915d557a0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/television.svg b/src/resources/icons/at-icons/television.svg new file mode 100644 index 00000000..8265aa60 --- /dev/null +++ b/src/resources/icons/at-icons/television.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/television.svg.import b/src/resources/icons/at-icons/television.svg.import new file mode 100644 index 00000000..f4fdcab0 --- /dev/null +++ b/src/resources/icons/at-icons/television.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4ej10x7r1cl3" +path="res://.godot/imported/television.svg-aa904548530ecdd31ff9d7b551e090ea.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/television.svg" +dest_files=["res://.godot/imported/television.svg-aa904548530ecdd31ff9d7b551e090ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/tennis_ball.svg b/src/resources/icons/at-icons/tennis_ball.svg new file mode 100644 index 00000000..ee24cc66 --- /dev/null +++ b/src/resources/icons/at-icons/tennis_ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/tennis_ball.svg.import b/src/resources/icons/at-icons/tennis_ball.svg.import new file mode 100644 index 00000000..787a71f5 --- /dev/null +++ b/src/resources/icons/at-icons/tennis_ball.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btipk76tifadk" +path="res://.godot/imported/tennis_ball.svg-dd2212f50ea01ab19bf5820f5b907730.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/tennis_ball.svg" +dest_files=["res://.godot/imported/tennis_ball.svg-dd2212f50ea01ab19bf5820f5b907730.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/test_tube.svg b/src/resources/icons/at-icons/test_tube.svg new file mode 100644 index 00000000..a5affd2f --- /dev/null +++ b/src/resources/icons/at-icons/test_tube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/test_tube.svg.import b/src/resources/icons/at-icons/test_tube.svg.import new file mode 100644 index 00000000..f60786d7 --- /dev/null +++ b/src/resources/icons/at-icons/test_tube.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bklifr46pent1" +path="res://.godot/imported/test_tube.svg-f2a35c2db47a3c344dc46f946ba4443d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/test_tube.svg" +dest_files=["res://.godot/imported/test_tube.svg-f2a35c2db47a3c344dc46f946ba4443d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/text.svg b/src/resources/icons/at-icons/text.svg new file mode 100644 index 00000000..b0340abd --- /dev/null +++ b/src/resources/icons/at-icons/text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/text.svg.import b/src/resources/icons/at-icons/text.svg.import new file mode 100644 index 00000000..691ad6c0 --- /dev/null +++ b/src/resources/icons/at-icons/text.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k2bcf3q8n0pj" +path="res://.godot/imported/text.svg-45bf35861802d0700cc3af0ac5a98f84.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/text.svg" +dest_files=["res://.godot/imported/text.svg-45bf35861802d0700cc3af0ac5a98f84.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/text_input.svg b/src/resources/icons/at-icons/text_input.svg new file mode 100644 index 00000000..fece6bdd --- /dev/null +++ b/src/resources/icons/at-icons/text_input.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/text_input.svg.import b/src/resources/icons/at-icons/text_input.svg.import new file mode 100644 index 00000000..28dee607 --- /dev/null +++ b/src/resources/icons/at-icons/text_input.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b45uo7vd3qxf1" +path="res://.godot/imported/text_input.svg-39dfaf728b6cf7a60ba5a5ce47a1ab6f.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/text_input.svg" +dest_files=["res://.godot/imported/text_input.svg-39dfaf728b6cf7a60ba5a5ce47a1ab6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/thermometer.svg b/src/resources/icons/at-icons/thermometer.svg new file mode 100644 index 00000000..6ea38eaf --- /dev/null +++ b/src/resources/icons/at-icons/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/thermometer.svg.import b/src/resources/icons/at-icons/thermometer.svg.import new file mode 100644 index 00000000..faae7f6e --- /dev/null +++ b/src/resources/icons/at-icons/thermometer.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqnmra202oxxl" +path="res://.godot/imported/thermometer.svg-7631d8d476c2cce470c2fe08a2eee3ca.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/thermometer.svg" +dest_files=["res://.godot/imported/thermometer.svg-7631d8d476c2cce470c2fe08a2eee3ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/thumbs_down.svg b/src/resources/icons/at-icons/thumbs_down.svg new file mode 100644 index 00000000..4ea92081 --- /dev/null +++ b/src/resources/icons/at-icons/thumbs_down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/thumbs_down.svg.import b/src/resources/icons/at-icons/thumbs_down.svg.import new file mode 100644 index 00000000..e4046c41 --- /dev/null +++ b/src/resources/icons/at-icons/thumbs_down.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7nq5aubuiubn" +path="res://.godot/imported/thumbs_down.svg-732589dd5ca7a27096fbca9bc8c44aa3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/thumbs_down.svg" +dest_files=["res://.godot/imported/thumbs_down.svg-732589dd5ca7a27096fbca9bc8c44aa3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/thumbs_up.svg b/src/resources/icons/at-icons/thumbs_up.svg new file mode 100644 index 00000000..951eb083 --- /dev/null +++ b/src/resources/icons/at-icons/thumbs_up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/thumbs_up.svg.import b/src/resources/icons/at-icons/thumbs_up.svg.import new file mode 100644 index 00000000..2a36598a --- /dev/null +++ b/src/resources/icons/at-icons/thumbs_up.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g71crw7fsx56" +path="res://.godot/imported/thumbs_up.svg-069e171bd7f0e2636f17fe2b832a3c6e.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/thumbs_up.svg" +dest_files=["res://.godot/imported/thumbs_up.svg-069e171bd7f0e2636f17fe2b832a3c6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/thumbtack.svg b/src/resources/icons/at-icons/thumbtack.svg new file mode 100644 index 00000000..58261d7a --- /dev/null +++ b/src/resources/icons/at-icons/thumbtack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/thumbtack.svg.import b/src/resources/icons/at-icons/thumbtack.svg.import new file mode 100644 index 00000000..58130de9 --- /dev/null +++ b/src/resources/icons/at-icons/thumbtack.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7wq3af13hlqg" +path="res://.godot/imported/thumbtack.svg-dd95db758db2a651eda4c83156e4773d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/thumbtack.svg" +dest_files=["res://.godot/imported/thumbtack.svg-dd95db758db2a651eda4c83156e4773d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/thumbtack_diagonal.svg b/src/resources/icons/at-icons/thumbtack_diagonal.svg new file mode 100644 index 00000000..6dbf9926 --- /dev/null +++ b/src/resources/icons/at-icons/thumbtack_diagonal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/thumbtack_diagonal.svg.import b/src/resources/icons/at-icons/thumbtack_diagonal.svg.import new file mode 100644 index 00000000..1a8e5043 --- /dev/null +++ b/src/resources/icons/at-icons/thumbtack_diagonal.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5dvmn400iglg" +path="res://.godot/imported/thumbtack_diagonal.svg-54f00a89495ca39ce063149acd0f9852.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/thumbtack_diagonal.svg" +dest_files=["res://.godot/imported/thumbtack_diagonal.svg-54f00a89495ca39ce063149acd0f9852.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/thunderstorm.svg b/src/resources/icons/at-icons/thunderstorm.svg new file mode 100644 index 00000000..93f9aa5f --- /dev/null +++ b/src/resources/icons/at-icons/thunderstorm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/thunderstorm.svg.import b/src/resources/icons/at-icons/thunderstorm.svg.import new file mode 100644 index 00000000..b929b2f9 --- /dev/null +++ b/src/resources/icons/at-icons/thunderstorm.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deso0r4yjhixj" +path="res://.godot/imported/thunderstorm.svg-9e60c3464e2c7adec4dbd6a5366d5d1d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/thunderstorm.svg" +dest_files=["res://.godot/imported/thunderstorm.svg-9e60c3464e2c7adec4dbd6a5366d5d1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/tilemap.svg b/src/resources/icons/at-icons/tilemap.svg new file mode 100644 index 00000000..0f5eb788 --- /dev/null +++ b/src/resources/icons/at-icons/tilemap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/tilemap.svg.import b/src/resources/icons/at-icons/tilemap.svg.import new file mode 100644 index 00000000..7243c045 --- /dev/null +++ b/src/resources/icons/at-icons/tilemap.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbokk5mh20b42" +path="res://.godot/imported/tilemap.svg-ff0e5ec6eca430ea31400259179d6bf8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/tilemap.svg" +dest_files=["res://.godot/imported/tilemap.svg-ff0e5ec6eca430ea31400259179d6bf8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/tileset.svg b/src/resources/icons/at-icons/tileset.svg new file mode 100644 index 00000000..cfa9fbe4 --- /dev/null +++ b/src/resources/icons/at-icons/tileset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/tileset.svg.import b/src/resources/icons/at-icons/tileset.svg.import new file mode 100644 index 00000000..073f646a --- /dev/null +++ b/src/resources/icons/at-icons/tileset.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wr0f8j8d72e3" +path="res://.godot/imported/tileset.svg-850b1d678bb6c921dc145f403b3eb3b8.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/tileset.svg" +dest_files=["res://.godot/imported/tileset.svg-850b1d678bb6c921dc145f403b3eb3b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/torch.svg b/src/resources/icons/at-icons/torch.svg new file mode 100644 index 00000000..35c07a85 --- /dev/null +++ b/src/resources/icons/at-icons/torch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/torch.svg.import b/src/resources/icons/at-icons/torch.svg.import new file mode 100644 index 00000000..5bebaade --- /dev/null +++ b/src/resources/icons/at-icons/torch.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mwwsrsr0g48g" +path="res://.godot/imported/torch.svg-09fcec09a30eacc4c1141f9d3cb8f66d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/torch.svg" +dest_files=["res://.godot/imported/torch.svg-09fcec09a30eacc4c1141f9d3cb8f66d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/torus.svg b/src/resources/icons/at-icons/torus.svg new file mode 100644 index 00000000..fa4f55a0 --- /dev/null +++ b/src/resources/icons/at-icons/torus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/torus.svg.import b/src/resources/icons/at-icons/torus.svg.import new file mode 100644 index 00000000..c413297f --- /dev/null +++ b/src/resources/icons/at-icons/torus.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://copkglt8ldvw2" +path="res://.godot/imported/torus.svg-4b34f331b2096a2d5bd7ab8cd8f709a0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/torus.svg" +dest_files=["res://.godot/imported/torus.svg-4b34f331b2096a2d5bd7ab8cd8f709a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/tower.svg b/src/resources/icons/at-icons/tower.svg new file mode 100644 index 00000000..2e82a429 --- /dev/null +++ b/src/resources/icons/at-icons/tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/tower.svg.import b/src/resources/icons/at-icons/tower.svg.import new file mode 100644 index 00000000..7d469557 --- /dev/null +++ b/src/resources/icons/at-icons/tower.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clj1fw4pafamy" +path="res://.godot/imported/tower.svg-931c2459a05b5b04403826a0d2296681.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/tower.svg" +dest_files=["res://.godot/imported/tower.svg-931c2459a05b5b04403826a0d2296681.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/traffic_cone.svg b/src/resources/icons/at-icons/traffic_cone.svg new file mode 100644 index 00000000..d8fe1d8d --- /dev/null +++ b/src/resources/icons/at-icons/traffic_cone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/traffic_cone.svg.import b/src/resources/icons/at-icons/traffic_cone.svg.import new file mode 100644 index 00000000..991c3d41 --- /dev/null +++ b/src/resources/icons/at-icons/traffic_cone.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csgq0jb84uypg" +path="res://.godot/imported/traffic_cone.svg-db28df521864f0555791ef27152b6853.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/traffic_cone.svg" +dest_files=["res://.godot/imported/traffic_cone.svg-db28df521864f0555791ef27152b6853.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/traffic_lights.svg b/src/resources/icons/at-icons/traffic_lights.svg new file mode 100644 index 00000000..31fcaa0d --- /dev/null +++ b/src/resources/icons/at-icons/traffic_lights.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/traffic_lights.svg.import b/src/resources/icons/at-icons/traffic_lights.svg.import new file mode 100644 index 00000000..5e519e18 --- /dev/null +++ b/src/resources/icons/at-icons/traffic_lights.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxob2paf16q3d" +path="res://.godot/imported/traffic_lights.svg-1c17d52977b04d8333a99b13f7d75eb0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/traffic_lights.svg" +dest_files=["res://.godot/imported/traffic_lights.svg-1c17d52977b04d8333a99b13f7d75eb0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/tragedy_mask.svg b/src/resources/icons/at-icons/tragedy_mask.svg new file mode 100644 index 00000000..7a70b0d0 --- /dev/null +++ b/src/resources/icons/at-icons/tragedy_mask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/tragedy_mask.svg.import b/src/resources/icons/at-icons/tragedy_mask.svg.import new file mode 100644 index 00000000..66120fb4 --- /dev/null +++ b/src/resources/icons/at-icons/tragedy_mask.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwinmtjuhbr3i" +path="res://.godot/imported/tragedy_mask.svg-41a5c0f3708d957c549ad4b21e3e7911.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/tragedy_mask.svg" +dest_files=["res://.godot/imported/tragedy_mask.svg-41a5c0f3708d957c549ad4b21e3e7911.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/train.svg b/src/resources/icons/at-icons/train.svg new file mode 100644 index 00000000..5db7c054 --- /dev/null +++ b/src/resources/icons/at-icons/train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/train.svg.import b/src/resources/icons/at-icons/train.svg.import new file mode 100644 index 00000000..c581f4ad --- /dev/null +++ b/src/resources/icons/at-icons/train.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu2jg8afhblwk" +path="res://.godot/imported/train.svg-3948f8d4ff2d3840b82c6beacbdc8f5b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/train.svg" +dest_files=["res://.godot/imported/train.svg-3948f8d4ff2d3840b82c6beacbdc8f5b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/translate.svg b/src/resources/icons/at-icons/translate.svg new file mode 100644 index 00000000..e48406cc --- /dev/null +++ b/src/resources/icons/at-icons/translate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/translate.svg.import b/src/resources/icons/at-icons/translate.svg.import new file mode 100644 index 00000000..47029718 --- /dev/null +++ b/src/resources/icons/at-icons/translate.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxyviv0o8u877" +path="res://.godot/imported/translate.svg-48e6604c10c6bf27982c17b66928b0cc.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/translate.svg" +dest_files=["res://.godot/imported/translate.svg-48e6604c10c6bf27982c17b66928b0cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/trash_can.svg b/src/resources/icons/at-icons/trash_can.svg new file mode 100644 index 00000000..8da38bb1 --- /dev/null +++ b/src/resources/icons/at-icons/trash_can.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/trash_can.svg.import b/src/resources/icons/at-icons/trash_can.svg.import new file mode 100644 index 00000000..f6bdb287 --- /dev/null +++ b/src/resources/icons/at-icons/trash_can.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgaokgo4ivbwr" +path="res://.godot/imported/trash_can.svg-cbb48d2671ef8c697524a727a6d048a1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/trash_can.svg" +dest_files=["res://.godot/imported/trash_can.svg-cbb48d2671ef8c697524a727a6d048a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/tree.svg b/src/resources/icons/at-icons/tree.svg new file mode 100644 index 00000000..c9c05cf3 --- /dev/null +++ b/src/resources/icons/at-icons/tree.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/tree.svg.import b/src/resources/icons/at-icons/tree.svg.import new file mode 100644 index 00000000..540e6470 --- /dev/null +++ b/src/resources/icons/at-icons/tree.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfiphosviuieg" +path="res://.godot/imported/tree.svg-29a0acaff6afd544a9c3489b1853c2dc.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/tree.svg" +dest_files=["res://.godot/imported/tree.svg-29a0acaff6afd544a9c3489b1853c2dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/tree_evergreen.svg b/src/resources/icons/at-icons/tree_evergreen.svg new file mode 100644 index 00000000..82b41835 --- /dev/null +++ b/src/resources/icons/at-icons/tree_evergreen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/tree_evergreen.svg.import b/src/resources/icons/at-icons/tree_evergreen.svg.import new file mode 100644 index 00000000..c86e115d --- /dev/null +++ b/src/resources/icons/at-icons/tree_evergreen.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxa2iu125thlf" +path="res://.godot/imported/tree_evergreen.svg-1c19a2dfc4c260f59ccbc1dda590d19d.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/tree_evergreen.svg" +dest_files=["res://.godot/imported/tree_evergreen.svg-1c19a2dfc4c260f59ccbc1dda590d19d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/triangle.svg b/src/resources/icons/at-icons/triangle.svg new file mode 100644 index 00000000..b885bc02 --- /dev/null +++ b/src/resources/icons/at-icons/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/triangle.svg.import b/src/resources/icons/at-icons/triangle.svg.import new file mode 100644 index 00000000..d6dc8a92 --- /dev/null +++ b/src/resources/icons/at-icons/triangle.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbs8ymkuyc0ns" +path="res://.godot/imported/triangle.svg-207ef4dfc17c9c04be4314b5ba0a845a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/triangle.svg" +dest_files=["res://.godot/imported/triangle.svg-207ef4dfc17c9c04be4314b5ba0a845a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/troll.svg b/src/resources/icons/at-icons/troll.svg new file mode 100644 index 00000000..50ad86a5 --- /dev/null +++ b/src/resources/icons/at-icons/troll.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/troll.svg.import b/src/resources/icons/at-icons/troll.svg.import new file mode 100644 index 00000000..36ae1b3e --- /dev/null +++ b/src/resources/icons/at-icons/troll.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbda68mxir8wn" +path="res://.godot/imported/troll.svg-1213867f59af6318b50e41c4f45986c3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/troll.svg" +dest_files=["res://.godot/imported/troll.svg-1213867f59af6318b50e41c4f45986c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/trophy.svg b/src/resources/icons/at-icons/trophy.svg new file mode 100644 index 00000000..eeb7d3d6 --- /dev/null +++ b/src/resources/icons/at-icons/trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/trophy.svg.import b/src/resources/icons/at-icons/trophy.svg.import new file mode 100644 index 00000000..cf49ad65 --- /dev/null +++ b/src/resources/icons/at-icons/trophy.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmdwg0xkbdbp" +path="res://.godot/imported/trophy.svg-45180396b8439cb678624f49ca23ef01.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/trophy.svg" +dest_files=["res://.godot/imported/trophy.svg-45180396b8439cb678624f49ca23ef01.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/umbrella.svg b/src/resources/icons/at-icons/umbrella.svg new file mode 100644 index 00000000..97769878 --- /dev/null +++ b/src/resources/icons/at-icons/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/umbrella.svg.import b/src/resources/icons/at-icons/umbrella.svg.import new file mode 100644 index 00000000..94f24489 --- /dev/null +++ b/src/resources/icons/at-icons/umbrella.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds1rgma72euit" +path="res://.godot/imported/umbrella.svg-2de3c22ba747059932bfefe180d50300.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/umbrella.svg" +dest_files=["res://.godot/imported/umbrella.svg-2de3c22ba747059932bfefe180d50300.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/underline.svg b/src/resources/icons/at-icons/underline.svg new file mode 100644 index 00000000..1bfada82 --- /dev/null +++ b/src/resources/icons/at-icons/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/underline.svg.import b/src/resources/icons/at-icons/underline.svg.import new file mode 100644 index 00000000..73ddd885 --- /dev/null +++ b/src/resources/icons/at-icons/underline.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bodqt8o33vptf" +path="res://.godot/imported/underline.svg-9f993c43d22ec9fba6f23a890a781d10.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/underline.svg" +dest_files=["res://.godot/imported/underline.svg-9f993c43d22ec9fba6f23a890a781d10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/unlock.svg b/src/resources/icons/at-icons/unlock.svg new file mode 100644 index 00000000..ff8d587a --- /dev/null +++ b/src/resources/icons/at-icons/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/unlock.svg.import b/src/resources/icons/at-icons/unlock.svg.import new file mode 100644 index 00000000..436c8d0c --- /dev/null +++ b/src/resources/icons/at-icons/unlock.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn63ercj243bm" +path="res://.godot/imported/unlock.svg-bd79dab4e8b79d1454c14a125d6cc7d3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/unlock.svg" +dest_files=["res://.godot/imported/unlock.svg-bd79dab4e8b79d1454c14a125d6cc7d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/unwrap.svg b/src/resources/icons/at-icons/unwrap.svg new file mode 100644 index 00000000..7be1dd72 --- /dev/null +++ b/src/resources/icons/at-icons/unwrap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/unwrap.svg.import b/src/resources/icons/at-icons/unwrap.svg.import new file mode 100644 index 00000000..bd5d767f --- /dev/null +++ b/src/resources/icons/at-icons/unwrap.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cybnyhs8koar1" +path="res://.godot/imported/unwrap.svg-d3dbd1e50bfd9d2d21b9ce81ee1cd754.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/unwrap.svg" +dest_files=["res://.godot/imported/unwrap.svg-d3dbd1e50bfd9d2d21b9ce81ee1cd754.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/vertex.svg b/src/resources/icons/at-icons/vertex.svg new file mode 100644 index 00000000..6687c2de --- /dev/null +++ b/src/resources/icons/at-icons/vertex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/vertex.svg.import b/src/resources/icons/at-icons/vertex.svg.import new file mode 100644 index 00000000..2c975cbd --- /dev/null +++ b/src/resources/icons/at-icons/vertex.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdibetxxrvtbu" +path="res://.godot/imported/vertex.svg-6612cdc765f8e214040d9bb2f4640d9a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/vertex.svg" +dest_files=["res://.godot/imported/vertex.svg-6612cdc765f8e214040d9bb2f4640d9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/video.svg b/src/resources/icons/at-icons/video.svg new file mode 100644 index 00000000..56932d1b --- /dev/null +++ b/src/resources/icons/at-icons/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/video.svg.import b/src/resources/icons/at-icons/video.svg.import new file mode 100644 index 00000000..1432fa30 --- /dev/null +++ b/src/resources/icons/at-icons/video.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmtnuvt6f5pk0" +path="res://.godot/imported/video.svg-7a9ebb286da6f7e01d49b9bba1e3d847.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/video.svg" +dest_files=["res://.godot/imported/video.svg-7a9ebb286da6f7e01d49b9bba1e3d847.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/video_player.svg b/src/resources/icons/at-icons/video_player.svg new file mode 100644 index 00000000..c7c8c83c --- /dev/null +++ b/src/resources/icons/at-icons/video_player.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/video_player.svg.import b/src/resources/icons/at-icons/video_player.svg.import new file mode 100644 index 00000000..f62efeb3 --- /dev/null +++ b/src/resources/icons/at-icons/video_player.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co3wd8psvewbb" +path="res://.godot/imported/video_player.svg-2d5c17d32c04aa172aca7ec467fe70bd.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/video_player.svg" +dest_files=["res://.godot/imported/video_player.svg-2d5c17d32c04aa172aca7ec467fe70bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/vortex.svg b/src/resources/icons/at-icons/vortex.svg new file mode 100644 index 00000000..9e41a217 --- /dev/null +++ b/src/resources/icons/at-icons/vortex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/vortex.svg.import b/src/resources/icons/at-icons/vortex.svg.import new file mode 100644 index 00000000..2051f043 --- /dev/null +++ b/src/resources/icons/at-icons/vortex.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv2j1u4p3vp8d" +path="res://.godot/imported/vortex.svg-5db2dcb81c4cdf64b01e4f7b8e1ff495.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/vortex.svg" +dest_files=["res://.godot/imported/vortex.svg-5db2dcb81c4cdf64b01e4f7b8e1ff495.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/voxels.svg b/src/resources/icons/at-icons/voxels.svg new file mode 100644 index 00000000..1975c95d --- /dev/null +++ b/src/resources/icons/at-icons/voxels.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/voxels.svg.import b/src/resources/icons/at-icons/voxels.svg.import new file mode 100644 index 00000000..5b1e18f0 --- /dev/null +++ b/src/resources/icons/at-icons/voxels.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd57cbxiu1me2" +path="res://.godot/imported/voxels.svg-e4824b83fa93d6a09acc39d3086f44cb.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/voxels.svg" +dest_files=["res://.godot/imported/voxels.svg-e4824b83fa93d6a09acc39d3086f44cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/vr_headset.svg b/src/resources/icons/at-icons/vr_headset.svg new file mode 100644 index 00000000..f8d8073d --- /dev/null +++ b/src/resources/icons/at-icons/vr_headset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/vr_headset.svg.import b/src/resources/icons/at-icons/vr_headset.svg.import new file mode 100644 index 00000000..4c7da6ed --- /dev/null +++ b/src/resources/icons/at-icons/vr_headset.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bripo0w0elffa" +path="res://.godot/imported/vr_headset.svg-1b6e1508bb66f5a36228639b5ab7a7ab.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/vr_headset.svg" +dest_files=["res://.godot/imported/vr_headset.svg-1b6e1508bb66f5a36228639b5ab7a7ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/wave.svg b/src/resources/icons/at-icons/wave.svg new file mode 100644 index 00000000..3824cbd7 --- /dev/null +++ b/src/resources/icons/at-icons/wave.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/wave.svg.import b/src/resources/icons/at-icons/wave.svg.import new file mode 100644 index 00000000..7206aea7 --- /dev/null +++ b/src/resources/icons/at-icons/wave.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buoaxc86gra4a" +path="res://.godot/imported/wave.svg-41a601f26f858c656d0e66402ec0d048.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/wave.svg" +dest_files=["res://.godot/imported/wave.svg-41a601f26f858c656d0e66402ec0d048.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/weight.svg b/src/resources/icons/at-icons/weight.svg new file mode 100644 index 00000000..cf634fe5 --- /dev/null +++ b/src/resources/icons/at-icons/weight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/weight.svg.import b/src/resources/icons/at-icons/weight.svg.import new file mode 100644 index 00000000..674321ef --- /dev/null +++ b/src/resources/icons/at-icons/weight.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvlkiys0peqr7" +path="res://.godot/imported/weight.svg-5d5a283dff2c2487c7ef234f4c1d3bfb.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/weight.svg" +dest_files=["res://.godot/imported/weight.svg-5d5a283dff2c2487c7ef234f4c1d3bfb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/wheel.svg b/src/resources/icons/at-icons/wheel.svg new file mode 100644 index 00000000..ebeb2f00 --- /dev/null +++ b/src/resources/icons/at-icons/wheel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/wheel.svg.import b/src/resources/icons/at-icons/wheel.svg.import new file mode 100644 index 00000000..50689cdd --- /dev/null +++ b/src/resources/icons/at-icons/wheel.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t2l30yeg5sm3" +path="res://.godot/imported/wheel.svg-9377251717f5ae541a592af4f0b675a3.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/wheel.svg" +dest_files=["res://.godot/imported/wheel.svg-9377251717f5ae541a592af4f0b675a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/wind.svg b/src/resources/icons/at-icons/wind.svg new file mode 100644 index 00000000..affe335e --- /dev/null +++ b/src/resources/icons/at-icons/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/wind.svg.import b/src/resources/icons/at-icons/wind.svg.import new file mode 100644 index 00000000..6adb270d --- /dev/null +++ b/src/resources/icons/at-icons/wind.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqv3b8jneteox" +path="res://.godot/imported/wind.svg-365f5490ba849bad8e3ec4f51db1c2fe.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/wind.svg" +dest_files=["res://.godot/imported/wind.svg-365f5490ba849bad8e3ec4f51db1c2fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/wind_sock.svg b/src/resources/icons/at-icons/wind_sock.svg new file mode 100644 index 00000000..9a911ed7 --- /dev/null +++ b/src/resources/icons/at-icons/wind_sock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/wind_sock.svg.import b/src/resources/icons/at-icons/wind_sock.svg.import new file mode 100644 index 00000000..2ef0e5f7 --- /dev/null +++ b/src/resources/icons/at-icons/wind_sock.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d00yt4twnhmdw" +path="res://.godot/imported/wind_sock.svg-ecc161afe18dd85f3c8f37c86ae96e23.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/wind_sock.svg" +dest_files=["res://.godot/imported/wind_sock.svg-ecc161afe18dd85f3c8f37c86ae96e23.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/window.svg b/src/resources/icons/at-icons/window.svg new file mode 100644 index 00000000..6bb48503 --- /dev/null +++ b/src/resources/icons/at-icons/window.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/window.svg.import b/src/resources/icons/at-icons/window.svg.import new file mode 100644 index 00000000..c3e038bc --- /dev/null +++ b/src/resources/icons/at-icons/window.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ei1kxy0bw6tq" +path="res://.godot/imported/window.svg-790b3df44bf0bab3edc6a917fa79e45a.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/window.svg" +dest_files=["res://.godot/imported/window.svg-790b3df44bf0bab3edc6a917fa79e45a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/window_script.svg b/src/resources/icons/at-icons/window_script.svg new file mode 100644 index 00000000..18393c50 --- /dev/null +++ b/src/resources/icons/at-icons/window_script.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/window_script.svg.import b/src/resources/icons/at-icons/window_script.svg.import new file mode 100644 index 00000000..ca1224cd --- /dev/null +++ b/src/resources/icons/at-icons/window_script.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpq127fna72pl" +path="res://.godot/imported/window_script.svg-6056de0f71fc5c35995854c77571a280.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/window_script.svg" +dest_files=["res://.godot/imported/window_script.svg-6056de0f71fc5c35995854c77571a280.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/window_terminal.svg b/src/resources/icons/at-icons/window_terminal.svg new file mode 100644 index 00000000..a657a5e8 --- /dev/null +++ b/src/resources/icons/at-icons/window_terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/window_terminal.svg.import b/src/resources/icons/at-icons/window_terminal.svg.import new file mode 100644 index 00000000..d18740e2 --- /dev/null +++ b/src/resources/icons/at-icons/window_terminal.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnss4coq2v3ho" +path="res://.godot/imported/window_terminal.svg-01b1f5c2d70815af5a5b077eecd9be73.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/window_terminal.svg" +dest_files=["res://.godot/imported/window_terminal.svg-01b1f5c2d70815af5a5b077eecd9be73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/windows.svg b/src/resources/icons/at-icons/windows.svg new file mode 100644 index 00000000..12627a1e --- /dev/null +++ b/src/resources/icons/at-icons/windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/windows.svg.import b/src/resources/icons/at-icons/windows.svg.import new file mode 100644 index 00000000..3421a6d1 --- /dev/null +++ b/src/resources/icons/at-icons/windows.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cynvd8myjkjnm" +path="res://.godot/imported/windows.svg-b6ddd71a8450a5c13f6451bea38aafe0.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/windows.svg" +dest_files=["res://.godot/imported/windows.svg-b6ddd71a8450a5c13f6451bea38aafe0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/wing.svg b/src/resources/icons/at-icons/wing.svg new file mode 100644 index 00000000..eacbacbd --- /dev/null +++ b/src/resources/icons/at-icons/wing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/wing.svg.import b/src/resources/icons/at-icons/wing.svg.import new file mode 100644 index 00000000..bab65dd3 --- /dev/null +++ b/src/resources/icons/at-icons/wing.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4k28ylcar5j2" +path="res://.godot/imported/wing.svg-890b83c6fde5109704a0b07b8c6d901b.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/wing.svg" +dest_files=["res://.godot/imported/wing.svg-890b83c6fde5109704a0b07b8c6d901b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/at-icons/wrench.svg b/src/resources/icons/at-icons/wrench.svg new file mode 100644 index 00000000..c01cd90d --- /dev/null +++ b/src/resources/icons/at-icons/wrench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/at-icons/wrench.svg.import b/src/resources/icons/at-icons/wrench.svg.import new file mode 100644 index 00000000..c98064c6 --- /dev/null +++ b/src/resources/icons/at-icons/wrench.svg.import @@ -0,0 +1,44 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csi6ucctnlhaf" +path="res://.godot/imported/wrench.svg-1464d968340806ec11e80c5174fa06b1.ctex" +metadata={ +"has_editor_variant": true, +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/at-icons/wrench.svg" +dest_files=["res://.godot/imported/wrench.svg-1464d968340806ec11e80c5174fa06b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=true +editor/convert_colors_with_editor_theme=true diff --git a/src/resources/icons/circus.svg b/src/resources/icons/circus.svg new file mode 100644 index 00000000..575b6773 --- /dev/null +++ b/src/resources/icons/circus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/circus.svg.import b/src/resources/icons/circus.svg.import new file mode 100644 index 00000000..9296b75f --- /dev/null +++ b/src/resources/icons/circus.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0qo67fgifqe8" +path="res://.godot/imported/circus.svg-055ea0232929f7da2d9389531cde2519.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/circus.svg" +dest_files=["res://.godot/imported/circus.svg-055ea0232929f7da2d9389531cde2519.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/contacts.svg b/src/resources/icons/contacts.svg new file mode 100644 index 00000000..ee85868c --- /dev/null +++ b/src/resources/icons/contacts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/contacts.svg.import b/src/resources/icons/contacts.svg.import new file mode 100644 index 00000000..c212229d --- /dev/null +++ b/src/resources/icons/contacts.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfckge3u00boi" +path="res://.godot/imported/contacts.svg-cfa1710a5ebd0d6d19edfd359b5c2f4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/contacts.svg" +dest_files=["res://.godot/imported/contacts.svg-cfa1710a5ebd0d6d19edfd359b5c2f4e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/debug.svg b/src/resources/icons/debug.svg new file mode 100644 index 00000000..cd867222 --- /dev/null +++ b/src/resources/icons/debug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/debug.svg.import b/src/resources/icons/debug.svg.import new file mode 100644 index 00000000..48d27b85 --- /dev/null +++ b/src/resources/icons/debug.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8fed1h3aqw1s" +path="res://.godot/imported/debug.svg-73aced604934a13740a0d50d04426de7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/debug.svg" +dest_files=["res://.godot/imported/debug.svg-73aced604934a13740a0d50d04426de7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/edit.svg b/src/resources/icons/edit.svg new file mode 100644 index 00000000..c97ced37 --- /dev/null +++ b/src/resources/icons/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/edit.svg.import b/src/resources/icons/edit.svg.import new file mode 100644 index 00000000..46a84a5c --- /dev/null +++ b/src/resources/icons/edit.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckoajckje5mq2" +path="res://.godot/imported/edit.svg-eca169d9395b96f7bd6a43743745a869.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/edit.svg" +dest_files=["res://.godot/imported/edit.svg-eca169d9395b96f7bd6a43743745a869.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/environment.svg b/src/resources/icons/environment.svg new file mode 100644 index 00000000..55b530c2 --- /dev/null +++ b/src/resources/icons/environment.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/environment.svg.import b/src/resources/icons/environment.svg.import new file mode 100644 index 00000000..0044528e --- /dev/null +++ b/src/resources/icons/environment.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnhy47i7saehq" +path="res://.godot/imported/environment.svg-e5081c4d8b4cb57b48121ddccbf78859.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/environment.svg" +dest_files=["res://.godot/imported/environment.svg-e5081c4d8b4cb57b48121ddccbf78859.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/exit.svg b/src/resources/icons/exit.svg new file mode 100644 index 00000000..c06c85cd --- /dev/null +++ b/src/resources/icons/exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/exit.svg.import b/src/resources/icons/exit.svg.import new file mode 100644 index 00000000..6686168a --- /dev/null +++ b/src/resources/icons/exit.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8fwxg1ipf0fp" +path="res://.godot/imported/exit.svg-b4526ff8097e7b69e7a3907e51f5cfd2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/exit.svg" +dest_files=["res://.godot/imported/exit.svg-b4526ff8097e7b69e7a3907e51f5cfd2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=8 +process/channel_remap/blue=8 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/flowchart.svg b/src/resources/icons/flowchart.svg new file mode 100644 index 00000000..933c7e50 --- /dev/null +++ b/src/resources/icons/flowchart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/flowchart.svg.import b/src/resources/icons/flowchart.svg.import new file mode 100644 index 00000000..46b7a333 --- /dev/null +++ b/src/resources/icons/flowchart.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddchrocw45muh" +path="res://.godot/imported/flowchart.svg-1dfadc4d5729c8ef52a1ba1899b04c1f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/flowchart.svg" +dest_files=["res://.godot/imported/flowchart.svg-1dfadc4d5729c8ef52a1ba1899b04c1f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/2D.svg b/src/resources/icons/godot/2D.svg new file mode 100644 index 00000000..32c22c25 --- /dev/null +++ b/src/resources/icons/godot/2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/2D.svg.import b/src/resources/icons/godot/2D.svg.import new file mode 100644 index 00000000..27f213fd --- /dev/null +++ b/src/resources/icons/godot/2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h0hbo1m3u2bn" +path="res://.godot/imported/2D.svg-1c7404b18f4ee8dc0fc425350eb6ce1e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/2D.svg" +dest_files=["res://.godot/imported/2D.svg-1c7404b18f4ee8dc0fc425350eb6ce1e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/2DNodes.svg b/src/resources/icons/godot/2DNodes.svg new file mode 100644 index 00000000..2bf2fbc6 --- /dev/null +++ b/src/resources/icons/godot/2DNodes.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/2DNodes.svg.import b/src/resources/icons/godot/2DNodes.svg.import new file mode 100644 index 00000000..aab6c1c4 --- /dev/null +++ b/src/resources/icons/godot/2DNodes.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djxqpgrt2dfuc" +path="res://.godot/imported/2DNodes.svg-c1e2a446f500643836f4a1fb11c4f23c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/2DNodes.svg" +dest_files=["res://.godot/imported/2DNodes.svg-c1e2a446f500643836f4a1fb11c4f23c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/3D.svg b/src/resources/icons/godot/3D.svg new file mode 100644 index 00000000..130df990 --- /dev/null +++ b/src/resources/icons/godot/3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/3D.svg.import b/src/resources/icons/godot/3D.svg.import new file mode 100644 index 00000000..d28e5b1b --- /dev/null +++ b/src/resources/icons/godot/3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6y1h0d0i6r6f" +path="res://.godot/imported/3D.svg-c4289084a7c7251678bb4065494edb14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/3D.svg" +dest_files=["res://.godot/imported/3D.svg-c4289084a7c7251678bb4065494edb14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AABB.svg b/src/resources/icons/godot/AABB.svg new file mode 100644 index 00000000..a624e6c2 --- /dev/null +++ b/src/resources/icons/godot/AABB.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AABB.svg.import b/src/resources/icons/godot/AABB.svg.import new file mode 100644 index 00000000..b8689702 --- /dev/null +++ b/src/resources/icons/godot/AABB.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvqetuywb42x" +path="res://.godot/imported/AABB.svg-3906ce14ebaff780e62beb918f2cfb50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AABB.svg" +dest_files=["res://.godot/imported/AABB.svg-3906ce14ebaff780e62beb918f2cfb50.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AcceptDialog.svg b/src/resources/icons/godot/AcceptDialog.svg new file mode 100644 index 00000000..019d4c88 --- /dev/null +++ b/src/resources/icons/godot/AcceptDialog.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AcceptDialog.svg.import b/src/resources/icons/godot/AcceptDialog.svg.import new file mode 100644 index 00000000..95a4f564 --- /dev/null +++ b/src/resources/icons/godot/AcceptDialog.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1d6lik52nuf8" +path="res://.godot/imported/AcceptDialog.svg-ecbb7966e5dd66a3accc8fc9ba96cf43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AcceptDialog.svg" +dest_files=["res://.godot/imported/AcceptDialog.svg-ecbb7966e5dd66a3accc8fc9ba96cf43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ActionCopy.svg b/src/resources/icons/godot/ActionCopy.svg new file mode 100644 index 00000000..96e5b2bd --- /dev/null +++ b/src/resources/icons/godot/ActionCopy.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ActionCopy.svg.import b/src/resources/icons/godot/ActionCopy.svg.import new file mode 100644 index 00000000..4f2435a1 --- /dev/null +++ b/src/resources/icons/godot/ActionCopy.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnqkwba47x26n" +path="res://.godot/imported/ActionCopy.svg-76b66068badc3ccc79827a81893682cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ActionCopy.svg" +dest_files=["res://.godot/imported/ActionCopy.svg-76b66068badc3ccc79827a81893682cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ActionCut.svg b/src/resources/icons/godot/ActionCut.svg new file mode 100644 index 00000000..29c33ea4 --- /dev/null +++ b/src/resources/icons/godot/ActionCut.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ActionCut.svg.import b/src/resources/icons/godot/ActionCut.svg.import new file mode 100644 index 00000000..5fe97e35 --- /dev/null +++ b/src/resources/icons/godot/ActionCut.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://51h8t366hrgf" +path="res://.godot/imported/ActionCut.svg-74a3a8f183dc109e05f9d952e3bb7e60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ActionCut.svg" +dest_files=["res://.godot/imported/ActionCut.svg-74a3a8f183dc109e05f9d952e3bb7e60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ActionPaste.svg b/src/resources/icons/godot/ActionPaste.svg new file mode 100644 index 00000000..9e4af8cb --- /dev/null +++ b/src/resources/icons/godot/ActionPaste.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ActionPaste.svg.import b/src/resources/icons/godot/ActionPaste.svg.import new file mode 100644 index 00000000..7c501b39 --- /dev/null +++ b/src/resources/icons/godot/ActionPaste.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdg5n7j0h2rmk" +path="res://.godot/imported/ActionPaste.svg-0c884163dcc9fea155283e863a22ef3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ActionPaste.svg" +dest_files=["res://.godot/imported/ActionPaste.svg-0c884163dcc9fea155283e863a22ef3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Add.svg b/src/resources/icons/godot/Add.svg new file mode 100644 index 00000000..d860ce85 --- /dev/null +++ b/src/resources/icons/godot/Add.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Add.svg.import b/src/resources/icons/godot/Add.svg.import new file mode 100644 index 00000000..060d2f96 --- /dev/null +++ b/src/resources/icons/godot/Add.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq2ec6jy8kynp" +path="res://.godot/imported/Add.svg-988e85fe448c5132ce8924553ce6a535.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Add.svg" +dest_files=["res://.godot/imported/Add.svg-988e85fe448c5132ce8924553ce6a535.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AimModifier3D.svg b/src/resources/icons/godot/AimModifier3D.svg new file mode 100644 index 00000000..31c97f9b --- /dev/null +++ b/src/resources/icons/godot/AimModifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AimModifier3D.svg.import b/src/resources/icons/godot/AimModifier3D.svg.import new file mode 100644 index 00000000..f81c9d10 --- /dev/null +++ b/src/resources/icons/godot/AimModifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baetcsktrpjn6" +path="res://.godot/imported/AimModifier3D.svg-fe71ad6e32a071537e2379a904a117e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AimModifier3D.svg" +dest_files=["res://.godot/imported/AimModifier3D.svg-fe71ad6e32a071537e2379a904a117e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Anchor.svg b/src/resources/icons/godot/Anchor.svg new file mode 100644 index 00000000..16f19071 --- /dev/null +++ b/src/resources/icons/godot/Anchor.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Anchor.svg.import b/src/resources/icons/godot/Anchor.svg.import new file mode 100644 index 00000000..8e5b0f48 --- /dev/null +++ b/src/resources/icons/godot/Anchor.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pe7tcgtm8610" +path="res://.godot/imported/Anchor.svg-a927738681af5c0e81d3acbc3439f421.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Anchor.svg" +dest_files=["res://.godot/imported/Anchor.svg-a927738681af5c0e81d3acbc3439f421.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimatableBody2D.svg b/src/resources/icons/godot/AnimatableBody2D.svg new file mode 100644 index 00000000..b84c5219 --- /dev/null +++ b/src/resources/icons/godot/AnimatableBody2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimatableBody2D.svg.import b/src/resources/icons/godot/AnimatableBody2D.svg.import new file mode 100644 index 00000000..43f42795 --- /dev/null +++ b/src/resources/icons/godot/AnimatableBody2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3fwe865unmp6" +path="res://.godot/imported/AnimatableBody2D.svg-f4313076c4a2dc6390955d36d2510626.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimatableBody2D.svg" +dest_files=["res://.godot/imported/AnimatableBody2D.svg-f4313076c4a2dc6390955d36d2510626.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimatableBody3D.svg b/src/resources/icons/godot/AnimatableBody3D.svg new file mode 100644 index 00000000..5cb5b33a --- /dev/null +++ b/src/resources/icons/godot/AnimatableBody3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimatableBody3D.svg.import b/src/resources/icons/godot/AnimatableBody3D.svg.import new file mode 100644 index 00000000..2d5ffc5e --- /dev/null +++ b/src/resources/icons/godot/AnimatableBody3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr43a60j7coo8" +path="res://.godot/imported/AnimatableBody3D.svg-a986f4edffffa876e61b01cf07ce2ab7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimatableBody3D.svg" +dest_files=["res://.godot/imported/AnimatableBody3D.svg-a986f4edffffa876e61b01cf07ce2ab7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimatedSprite2D.svg b/src/resources/icons/godot/AnimatedSprite2D.svg new file mode 100644 index 00000000..fe8a9ffe --- /dev/null +++ b/src/resources/icons/godot/AnimatedSprite2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimatedSprite2D.svg.import b/src/resources/icons/godot/AnimatedSprite2D.svg.import new file mode 100644 index 00000000..e9d660cb --- /dev/null +++ b/src/resources/icons/godot/AnimatedSprite2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj8xtvuwwwu1c" +path="res://.godot/imported/AnimatedSprite2D.svg-ee4a3460b907d8591a885b153e8b352c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimatedSprite2D.svg" +dest_files=["res://.godot/imported/AnimatedSprite2D.svg-ee4a3460b907d8591a885b153e8b352c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimatedSprite3D.svg b/src/resources/icons/godot/AnimatedSprite3D.svg new file mode 100644 index 00000000..1e1bbe55 --- /dev/null +++ b/src/resources/icons/godot/AnimatedSprite3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimatedSprite3D.svg.import b/src/resources/icons/godot/AnimatedSprite3D.svg.import new file mode 100644 index 00000000..dcfd0897 --- /dev/null +++ b/src/resources/icons/godot/AnimatedSprite3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqti7wsnolind" +path="res://.godot/imported/AnimatedSprite3D.svg-fac0317734344e357112915cb799cead.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimatedSprite3D.svg" +dest_files=["res://.godot/imported/AnimatedSprite3D.svg-fac0317734344e357112915cb799cead.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimatedTexture.svg b/src/resources/icons/godot/AnimatedTexture.svg new file mode 100644 index 00000000..389beba1 --- /dev/null +++ b/src/resources/icons/godot/AnimatedTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimatedTexture.svg.import b/src/resources/icons/godot/AnimatedTexture.svg.import new file mode 100644 index 00000000..8f7406da --- /dev/null +++ b/src/resources/icons/godot/AnimatedTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwyvynf8rlwol" +path="res://.godot/imported/AnimatedTexture.svg-611627cb5782ea776bf73f8475941b29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimatedTexture.svg" +dest_files=["res://.godot/imported/AnimatedTexture.svg-611627cb5782ea776bf73f8475941b29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Animation.svg b/src/resources/icons/godot/Animation.svg new file mode 100644 index 00000000..201f87b1 --- /dev/null +++ b/src/resources/icons/godot/Animation.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Animation.svg.import b/src/resources/icons/godot/Animation.svg.import new file mode 100644 index 00000000..df1a306e --- /dev/null +++ b/src/resources/icons/godot/Animation.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuv4fph18d5lc" +path="res://.godot/imported/Animation.svg-58aba804ad3e5a900cb1308ac80dddf5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Animation.svg" +dest_files=["res://.godot/imported/Animation.svg-58aba804ad3e5a900cb1308ac80dddf5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimationAutoFit.svg b/src/resources/icons/godot/AnimationAutoFit.svg new file mode 100644 index 00000000..bb7c9109 --- /dev/null +++ b/src/resources/icons/godot/AnimationAutoFit.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimationAutoFit.svg.import b/src/resources/icons/godot/AnimationAutoFit.svg.import new file mode 100644 index 00000000..ecad713d --- /dev/null +++ b/src/resources/icons/godot/AnimationAutoFit.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4qtyvqne2cfm" +path="res://.godot/imported/AnimationAutoFit.svg-226e3a2f975aecd511ed9c1779629ab6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimationAutoFit.svg" +dest_files=["res://.godot/imported/AnimationAutoFit.svg-226e3a2f975aecd511ed9c1779629ab6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimationAutoFitBezier.svg b/src/resources/icons/godot/AnimationAutoFitBezier.svg new file mode 100644 index 00000000..b9feaa10 --- /dev/null +++ b/src/resources/icons/godot/AnimationAutoFitBezier.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimationAutoFitBezier.svg.import b/src/resources/icons/godot/AnimationAutoFitBezier.svg.import new file mode 100644 index 00000000..b71f95e7 --- /dev/null +++ b/src/resources/icons/godot/AnimationAutoFitBezier.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd2h2gvrbrjkx" +path="res://.godot/imported/AnimationAutoFitBezier.svg-29f6ffece728ad1f6fdddbd37633b496.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimationAutoFitBezier.svg" +dest_files=["res://.godot/imported/AnimationAutoFitBezier.svg-29f6ffece728ad1f6fdddbd37633b496.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimationFilter.svg b/src/resources/icons/godot/AnimationFilter.svg new file mode 100644 index 00000000..a2a04f08 --- /dev/null +++ b/src/resources/icons/godot/AnimationFilter.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimationFilter.svg.import b/src/resources/icons/godot/AnimationFilter.svg.import new file mode 100644 index 00000000..bf3f7236 --- /dev/null +++ b/src/resources/icons/godot/AnimationFilter.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dae45trq7mh5w" +path="res://.godot/imported/AnimationFilter.svg-c8c15ef4191342769a1247406a561d0e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimationFilter.svg" +dest_files=["res://.godot/imported/AnimationFilter.svg-c8c15ef4191342769a1247406a561d0e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimationLibrary.svg b/src/resources/icons/godot/AnimationLibrary.svg new file mode 100644 index 00000000..8d331e23 --- /dev/null +++ b/src/resources/icons/godot/AnimationLibrary.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimationLibrary.svg.import b/src/resources/icons/godot/AnimationLibrary.svg.import new file mode 100644 index 00000000..6634f25e --- /dev/null +++ b/src/resources/icons/godot/AnimationLibrary.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctkw33a4xu8md" +path="res://.godot/imported/AnimationLibrary.svg-a2a5433452efcbfc36ade532e6aafc9d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimationLibrary.svg" +dest_files=["res://.godot/imported/AnimationLibrary.svg-a2a5433452efcbfc36ade532e6aafc9d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimationMixer.svg b/src/resources/icons/godot/AnimationMixer.svg new file mode 100644 index 00000000..2f969191 --- /dev/null +++ b/src/resources/icons/godot/AnimationMixer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimationMixer.svg.import b/src/resources/icons/godot/AnimationMixer.svg.import new file mode 100644 index 00000000..d6a361ba --- /dev/null +++ b/src/resources/icons/godot/AnimationMixer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://conud1247i05t" +path="res://.godot/imported/AnimationMixer.svg-aec93a521c48780f9c95a5a1222c025c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimationMixer.svg" +dest_files=["res://.godot/imported/AnimationMixer.svg-aec93a521c48780f9c95a5a1222c025c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimationPlayer.svg b/src/resources/icons/godot/AnimationPlayer.svg new file mode 100644 index 00000000..3f410a10 --- /dev/null +++ b/src/resources/icons/godot/AnimationPlayer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimationPlayer.svg.import b/src/resources/icons/godot/AnimationPlayer.svg.import new file mode 100644 index 00000000..6f5e2bd1 --- /dev/null +++ b/src/resources/icons/godot/AnimationPlayer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5b583pe3v0bu" +path="res://.godot/imported/AnimationPlayer.svg-2384cf54f472739e4e46dd6e122ba178.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimationPlayer.svg" +dest_files=["res://.godot/imported/AnimationPlayer.svg-2384cf54f472739e4e46dd6e122ba178.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimationTrackGroup.svg b/src/resources/icons/godot/AnimationTrackGroup.svg new file mode 100644 index 00000000..460f0d69 --- /dev/null +++ b/src/resources/icons/godot/AnimationTrackGroup.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimationTrackGroup.svg.import b/src/resources/icons/godot/AnimationTrackGroup.svg.import new file mode 100644 index 00000000..7bb33be1 --- /dev/null +++ b/src/resources/icons/godot/AnimationTrackGroup.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4rxs6kdsbue" +path="res://.godot/imported/AnimationTrackGroup.svg-0a19f2c524e3abacb0d624193863197f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimationTrackGroup.svg" +dest_files=["res://.godot/imported/AnimationTrackGroup.svg-0a19f2c524e3abacb0d624193863197f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimationTrackList.svg b/src/resources/icons/godot/AnimationTrackList.svg new file mode 100644 index 00000000..11ce8289 --- /dev/null +++ b/src/resources/icons/godot/AnimationTrackList.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimationTrackList.svg.import b/src/resources/icons/godot/AnimationTrackList.svg.import new file mode 100644 index 00000000..1bdc8e6f --- /dev/null +++ b/src/resources/icons/godot/AnimationTrackList.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnk2ixvimmxsj" +path="res://.godot/imported/AnimationTrackList.svg-614a46019a29ab497b4330de108ebf58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimationTrackList.svg" +dest_files=["res://.godot/imported/AnimationTrackList.svg-614a46019a29ab497b4330de108ebf58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimationTree.svg b/src/resources/icons/godot/AnimationTree.svg new file mode 100644 index 00000000..e530c321 --- /dev/null +++ b/src/resources/icons/godot/AnimationTree.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimationTree.svg.import b/src/resources/icons/godot/AnimationTree.svg.import new file mode 100644 index 00000000..4cbb20da --- /dev/null +++ b/src/resources/icons/godot/AnimationTree.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xtb5vfjxj3x8" +path="res://.godot/imported/AnimationTree.svg-17cddd2c217efbabb227ed88c40562a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimationTree.svg" +dest_files=["res://.godot/imported/AnimationTree.svg-17cddd2c217efbabb227ed88c40562a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AnimationTreeDock.svg b/src/resources/icons/godot/AnimationTreeDock.svg new file mode 100644 index 00000000..73f7f948 --- /dev/null +++ b/src/resources/icons/godot/AnimationTreeDock.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AnimationTreeDock.svg.import b/src/resources/icons/godot/AnimationTreeDock.svg.import new file mode 100644 index 00000000..b32d9411 --- /dev/null +++ b/src/resources/icons/godot/AnimationTreeDock.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b01po58bw5i5l" +path="res://.godot/imported/AnimationTreeDock.svg-26c239e704dd2fb6ac204e5a3b0105f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AnimationTreeDock.svg" +dest_files=["res://.godot/imported/AnimationTreeDock.svg-26c239e704dd2fb6ac204e5a3b0105f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Area2D.svg b/src/resources/icons/godot/Area2D.svg new file mode 100644 index 00000000..1a39e35b --- /dev/null +++ b/src/resources/icons/godot/Area2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Area2D.svg.import b/src/resources/icons/godot/Area2D.svg.import new file mode 100644 index 00000000..63cbd1e0 --- /dev/null +++ b/src/resources/icons/godot/Area2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8boxrbmrbk30" +path="res://.godot/imported/Area2D.svg-50ac7d032e5d06acf37dee36ca0f8c84.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Area2D.svg" +dest_files=["res://.godot/imported/Area2D.svg-50ac7d032e5d06acf37dee36ca0f8c84.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Area3D.svg b/src/resources/icons/godot/Area3D.svg new file mode 100644 index 00000000..358a141e --- /dev/null +++ b/src/resources/icons/godot/Area3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Area3D.svg.import b/src/resources/icons/godot/Area3D.svg.import new file mode 100644 index 00000000..80d44ef4 --- /dev/null +++ b/src/resources/icons/godot/Area3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjgsup1ktjy52" +path="res://.godot/imported/Area3D.svg-441839d7c5c62fe60d21789e20803baf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Area3D.svg" +dest_files=["res://.godot/imported/Area3D.svg-441839d7c5c62fe60d21789e20803baf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AreaLight3D.svg b/src/resources/icons/godot/AreaLight3D.svg new file mode 100644 index 00000000..50db2959 --- /dev/null +++ b/src/resources/icons/godot/AreaLight3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AreaLight3D.svg.import b/src/resources/icons/godot/AreaLight3D.svg.import new file mode 100644 index 00000000..bafdd6a9 --- /dev/null +++ b/src/resources/icons/godot/AreaLight3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biksoab7b2mrr" +path="res://.godot/imported/AreaLight3D.svg-caa75dc89235e3d9968eb1f1a6834220.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AreaLight3D.svg" +dest_files=["res://.godot/imported/AreaLight3D.svg-caa75dc89235e3d9968eb1f1a6834220.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Array.svg b/src/resources/icons/godot/Array.svg new file mode 100644 index 00000000..db2e61da --- /dev/null +++ b/src/resources/icons/godot/Array.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Array.svg.import b/src/resources/icons/godot/Array.svg.import new file mode 100644 index 00000000..e6f71468 --- /dev/null +++ b/src/resources/icons/godot/Array.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4se42fdgqrjr" +path="res://.godot/imported/Array.svg-be723d09a34573b914c986d5ad3daf60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Array.svg" +dest_files=["res://.godot/imported/Array.svg-be723d09a34573b914c986d5ad3daf60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ArrayMesh.svg b/src/resources/icons/godot/ArrayMesh.svg new file mode 100644 index 00000000..46e308d4 --- /dev/null +++ b/src/resources/icons/godot/ArrayMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ArrayMesh.svg.import b/src/resources/icons/godot/ArrayMesh.svg.import new file mode 100644 index 00000000..38bece6b --- /dev/null +++ b/src/resources/icons/godot/ArrayMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd25j6s7vng4a" +path="res://.godot/imported/ArrayMesh.svg-f31d4440420749e4546f2fc6b601fd00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ArrayMesh.svg" +dest_files=["res://.godot/imported/ArrayMesh.svg-f31d4440420749e4546f2fc6b601fd00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ArrayOccluder3D.svg b/src/resources/icons/godot/ArrayOccluder3D.svg new file mode 100644 index 00000000..6f7393ec --- /dev/null +++ b/src/resources/icons/godot/ArrayOccluder3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ArrayOccluder3D.svg.import b/src/resources/icons/godot/ArrayOccluder3D.svg.import new file mode 100644 index 00000000..e45cff8d --- /dev/null +++ b/src/resources/icons/godot/ArrayOccluder3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddlbr7ssq8qn4" +path="res://.godot/imported/ArrayOccluder3D.svg-811ddf40405065b9418cf8d09aba9c14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ArrayOccluder3D.svg" +dest_files=["res://.godot/imported/ArrayOccluder3D.svg-811ddf40405065b9418cf8d09aba9c14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ArrowDown.svg b/src/resources/icons/godot/ArrowDown.svg new file mode 100644 index 00000000..f5a05937 --- /dev/null +++ b/src/resources/icons/godot/ArrowDown.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ArrowDown.svg.import b/src/resources/icons/godot/ArrowDown.svg.import new file mode 100644 index 00000000..8120306b --- /dev/null +++ b/src/resources/icons/godot/ArrowDown.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8ore0db48fkm" +path="res://.godot/imported/ArrowDown.svg-c67e50fae79c5cc50417dbaa49a1ed38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ArrowDown.svg" +dest_files=["res://.godot/imported/ArrowDown.svg-c67e50fae79c5cc50417dbaa49a1ed38.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ArrowLeft.svg b/src/resources/icons/godot/ArrowLeft.svg new file mode 100644 index 00000000..a2fa4b6a --- /dev/null +++ b/src/resources/icons/godot/ArrowLeft.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ArrowLeft.svg.import b/src/resources/icons/godot/ArrowLeft.svg.import new file mode 100644 index 00000000..d2e5f700 --- /dev/null +++ b/src/resources/icons/godot/ArrowLeft.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5wb7nigp5mtx" +path="res://.godot/imported/ArrowLeft.svg-c5b1652bd3042c50796f4cc329eb9e95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ArrowLeft.svg" +dest_files=["res://.godot/imported/ArrowLeft.svg-c5b1652bd3042c50796f4cc329eb9e95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ArrowRight.svg b/src/resources/icons/godot/ArrowRight.svg new file mode 100644 index 00000000..938a7cab --- /dev/null +++ b/src/resources/icons/godot/ArrowRight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ArrowRight.svg.import b/src/resources/icons/godot/ArrowRight.svg.import new file mode 100644 index 00000000..741882de --- /dev/null +++ b/src/resources/icons/godot/ArrowRight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjqt7dien8o4t" +path="res://.godot/imported/ArrowRight.svg-7a3c9123714ec0964c0eb503415cf306.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ArrowRight.svg" +dest_files=["res://.godot/imported/ArrowRight.svg-7a3c9123714ec0964c0eb503415cf306.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ArrowUp.svg b/src/resources/icons/godot/ArrowUp.svg new file mode 100644 index 00000000..e91fd7f9 --- /dev/null +++ b/src/resources/icons/godot/ArrowUp.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ArrowUp.svg.import b/src/resources/icons/godot/ArrowUp.svg.import new file mode 100644 index 00000000..a2fee35b --- /dev/null +++ b/src/resources/icons/godot/ArrowUp.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpqj8qhfl2pny" +path="res://.godot/imported/ArrowUp.svg-d8560cb1fc53377abad382d4c1ebd36c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ArrowUp.svg" +dest_files=["res://.godot/imported/ArrowUp.svg-d8560cb1fc53377abad382d4c1ebd36c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AspectRatioContainer.svg b/src/resources/icons/godot/AspectRatioContainer.svg new file mode 100644 index 00000000..40267659 --- /dev/null +++ b/src/resources/icons/godot/AspectRatioContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AspectRatioContainer.svg.import b/src/resources/icons/godot/AspectRatioContainer.svg.import new file mode 100644 index 00000000..3396ce45 --- /dev/null +++ b/src/resources/icons/godot/AspectRatioContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwheyyl8m8ni0" +path="res://.godot/imported/AspectRatioContainer.svg-5a195dce63f747e5d58c3bee5ff03435.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AspectRatioContainer.svg" +dest_files=["res://.godot/imported/AspectRatioContainer.svg-5a195dce63f747e5d58c3bee5ff03435.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AssetStore.svg b/src/resources/icons/godot/AssetStore.svg new file mode 100644 index 00000000..9dd73dcc --- /dev/null +++ b/src/resources/icons/godot/AssetStore.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AssetStore.svg.import b/src/resources/icons/godot/AssetStore.svg.import new file mode 100644 index 00000000..646a08e2 --- /dev/null +++ b/src/resources/icons/godot/AssetStore.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uvwn67ccf8op" +path="res://.godot/imported/AssetStore.svg-9e8f0c82af45a9d0714c1ccbcd9f26d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AssetStore.svg" +dest_files=["res://.godot/imported/AssetStore.svg-9e8f0c82af45a9d0714c1ccbcd9f26d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AssetThumbLoading.svg b/src/resources/icons/godot/AssetThumbLoading.svg new file mode 100644 index 00000000..190bb61e --- /dev/null +++ b/src/resources/icons/godot/AssetThumbLoading.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AssetThumbLoading.svg.import b/src/resources/icons/godot/AssetThumbLoading.svg.import new file mode 100644 index 00000000..f5cdb4ce --- /dev/null +++ b/src/resources/icons/godot/AssetThumbLoading.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1yi0a3qufesl" +path="res://.godot/imported/AssetThumbLoading.svg-6e5dc178f8f54d41538650a9ad544bf7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AssetThumbLoading.svg" +dest_files=["res://.godot/imported/AssetThumbLoading.svg-6e5dc178f8f54d41538650a9ad544bf7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AtlasTexture.svg b/src/resources/icons/godot/AtlasTexture.svg new file mode 100644 index 00000000..5b259171 --- /dev/null +++ b/src/resources/icons/godot/AtlasTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AtlasTexture.svg.import b/src/resources/icons/godot/AtlasTexture.svg.import new file mode 100644 index 00000000..0b80c3b3 --- /dev/null +++ b/src/resources/icons/godot/AtlasTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxkyqc1u8k77e" +path="res://.godot/imported/AtlasTexture.svg-5ccdf8b473ed366e41af25cbc3ab3948.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AtlasTexture.svg" +dest_files=["res://.godot/imported/AtlasTexture.svg-5ccdf8b473ed366e41af25cbc3ab3948.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioBusBypass.svg b/src/resources/icons/godot/AudioBusBypass.svg new file mode 100644 index 00000000..34009f5a --- /dev/null +++ b/src/resources/icons/godot/AudioBusBypass.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioBusBypass.svg.import b/src/resources/icons/godot/AudioBusBypass.svg.import new file mode 100644 index 00000000..ed7306f3 --- /dev/null +++ b/src/resources/icons/godot/AudioBusBypass.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvuhvqn03nj20" +path="res://.godot/imported/AudioBusBypass.svg-2ab63fbfa14554297810123f5c3efd0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioBusBypass.svg" +dest_files=["res://.godot/imported/AudioBusBypass.svg-2ab63fbfa14554297810123f5c3efd0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioBusLayout.svg b/src/resources/icons/godot/AudioBusLayout.svg new file mode 100644 index 00000000..9f8bef54 --- /dev/null +++ b/src/resources/icons/godot/AudioBusLayout.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioBusLayout.svg.import b/src/resources/icons/godot/AudioBusLayout.svg.import new file mode 100644 index 00000000..e54df6e3 --- /dev/null +++ b/src/resources/icons/godot/AudioBusLayout.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c30xkroxpd50d" +path="res://.godot/imported/AudioBusLayout.svg-0c32a97a7b0d794c533ff3bdba1c96bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioBusLayout.svg" +dest_files=["res://.godot/imported/AudioBusLayout.svg-0c32a97a7b0d794c533ff3bdba1c96bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioBusMute.svg b/src/resources/icons/godot/AudioBusMute.svg new file mode 100644 index 00000000..0f541c2b --- /dev/null +++ b/src/resources/icons/godot/AudioBusMute.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioBusMute.svg.import b/src/resources/icons/godot/AudioBusMute.svg.import new file mode 100644 index 00000000..47a913bc --- /dev/null +++ b/src/resources/icons/godot/AudioBusMute.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://caby8708axhyg" +path="res://.godot/imported/AudioBusMute.svg-90ad78827ca9923bf4e6b4c2368f3957.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioBusMute.svg" +dest_files=["res://.godot/imported/AudioBusMute.svg-90ad78827ca9923bf4e6b4c2368f3957.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioBusSolo.svg b/src/resources/icons/godot/AudioBusSolo.svg new file mode 100644 index 00000000..a54734ba --- /dev/null +++ b/src/resources/icons/godot/AudioBusSolo.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioBusSolo.svg.import b/src/resources/icons/godot/AudioBusSolo.svg.import new file mode 100644 index 00000000..f2104054 --- /dev/null +++ b/src/resources/icons/godot/AudioBusSolo.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7up1n4h10f2e" +path="res://.godot/imported/AudioBusSolo.svg-c3c47485bf42ddc4bbfe783e54cba07d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioBusSolo.svg" +dest_files=["res://.godot/imported/AudioBusSolo.svg-c3c47485bf42ddc4bbfe783e54cba07d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioListener2D.svg b/src/resources/icons/godot/AudioListener2D.svg new file mode 100644 index 00000000..bb464038 --- /dev/null +++ b/src/resources/icons/godot/AudioListener2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioListener2D.svg.import b/src/resources/icons/godot/AudioListener2D.svg.import new file mode 100644 index 00000000..06b9a47b --- /dev/null +++ b/src/resources/icons/godot/AudioListener2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ditl3i7mqdu0" +path="res://.godot/imported/AudioListener2D.svg-cb065bace135b5615313001841a4aecb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioListener2D.svg" +dest_files=["res://.godot/imported/AudioListener2D.svg-cb065bace135b5615313001841a4aecb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioListener3D.svg b/src/resources/icons/godot/AudioListener3D.svg new file mode 100644 index 00000000..42a79dd2 --- /dev/null +++ b/src/resources/icons/godot/AudioListener3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioListener3D.svg.import b/src/resources/icons/godot/AudioListener3D.svg.import new file mode 100644 index 00000000..67a3cfa5 --- /dev/null +++ b/src/resources/icons/godot/AudioListener3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxwq03kuvcfbk" +path="res://.godot/imported/AudioListener3D.svg-f29b6742626e0e47e5d72ef229be5125.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioListener3D.svg" +dest_files=["res://.godot/imported/AudioListener3D.svg-f29b6742626e0e47e5d72ef229be5125.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioMute.svg b/src/resources/icons/godot/AudioMute.svg new file mode 100644 index 00000000..5c28f051 --- /dev/null +++ b/src/resources/icons/godot/AudioMute.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioMute.svg.import b/src/resources/icons/godot/AudioMute.svg.import new file mode 100644 index 00000000..49d4de4a --- /dev/null +++ b/src/resources/icons/godot/AudioMute.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvt3h5rv0ko82" +path="res://.godot/imported/AudioMute.svg-deba41b9d3ae186ee51cadb04dce8608.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioMute.svg" +dest_files=["res://.godot/imported/AudioMute.svg-deba41b9d3ae186ee51cadb04dce8608.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioStream.svg b/src/resources/icons/godot/AudioStream.svg new file mode 100644 index 00000000..df294e68 --- /dev/null +++ b/src/resources/icons/godot/AudioStream.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioStream.svg.import b/src/resources/icons/godot/AudioStream.svg.import new file mode 100644 index 00000000..53829be0 --- /dev/null +++ b/src/resources/icons/godot/AudioStream.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2ymoscmis4lg" +path="res://.godot/imported/AudioStream.svg-42851f3fc9c32669ede2754ce18e3c42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioStream.svg" +dest_files=["res://.godot/imported/AudioStream.svg-42851f3fc9c32669ede2754ce18e3c42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioStreamGenerator.svg b/src/resources/icons/godot/AudioStreamGenerator.svg new file mode 100644 index 00000000..1bae0efa --- /dev/null +++ b/src/resources/icons/godot/AudioStreamGenerator.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioStreamGenerator.svg.import b/src/resources/icons/godot/AudioStreamGenerator.svg.import new file mode 100644 index 00000000..b08d7986 --- /dev/null +++ b/src/resources/icons/godot/AudioStreamGenerator.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bghuole2m0llj" +path="res://.godot/imported/AudioStreamGenerator.svg-ae2c2341d2e604c042fa185347bdf737.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioStreamGenerator.svg" +dest_files=["res://.godot/imported/AudioStreamGenerator.svg-ae2c2341d2e604c042fa185347bdf737.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioStreamMP3.svg b/src/resources/icons/godot/AudioStreamMP3.svg new file mode 100644 index 00000000..bbdc014e --- /dev/null +++ b/src/resources/icons/godot/AudioStreamMP3.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioStreamMP3.svg.import b/src/resources/icons/godot/AudioStreamMP3.svg.import new file mode 100644 index 00000000..1e05ff33 --- /dev/null +++ b/src/resources/icons/godot/AudioStreamMP3.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bri5awobod3v8" +path="res://.godot/imported/AudioStreamMP3.svg-89a42619ba86f8e59e358370ab95969a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioStreamMP3.svg" +dest_files=["res://.godot/imported/AudioStreamMP3.svg-89a42619ba86f8e59e358370ab95969a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioStreamMicrophone.svg b/src/resources/icons/godot/AudioStreamMicrophone.svg new file mode 100644 index 00000000..02c0df7d --- /dev/null +++ b/src/resources/icons/godot/AudioStreamMicrophone.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioStreamMicrophone.svg.import b/src/resources/icons/godot/AudioStreamMicrophone.svg.import new file mode 100644 index 00000000..378473ae --- /dev/null +++ b/src/resources/icons/godot/AudioStreamMicrophone.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brv1n2vcxov" +path="res://.godot/imported/AudioStreamMicrophone.svg-c71b3c813e2fcbcf634c08481e11d7a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioStreamMicrophone.svg" +dest_files=["res://.godot/imported/AudioStreamMicrophone.svg-c71b3c813e2fcbcf634c08481e11d7a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioStreamOggVorbis.svg b/src/resources/icons/godot/AudioStreamOggVorbis.svg new file mode 100644 index 00000000..bbdc014e --- /dev/null +++ b/src/resources/icons/godot/AudioStreamOggVorbis.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioStreamOggVorbis.svg.import b/src/resources/icons/godot/AudioStreamOggVorbis.svg.import new file mode 100644 index 00000000..6a934ee1 --- /dev/null +++ b/src/resources/icons/godot/AudioStreamOggVorbis.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b00h4trm36g6g" +path="res://.godot/imported/AudioStreamOggVorbis.svg-cb7ba9fed015dd4de1aaee868d5a572b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioStreamOggVorbis.svg" +dest_files=["res://.godot/imported/AudioStreamOggVorbis.svg-cb7ba9fed015dd4de1aaee868d5a572b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioStreamPlayer.svg b/src/resources/icons/godot/AudioStreamPlayer.svg new file mode 100644 index 00000000..da9caca2 --- /dev/null +++ b/src/resources/icons/godot/AudioStreamPlayer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioStreamPlayer.svg.import b/src/resources/icons/godot/AudioStreamPlayer.svg.import new file mode 100644 index 00000000..1e104978 --- /dev/null +++ b/src/resources/icons/godot/AudioStreamPlayer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlt0sct8q18gi" +path="res://.godot/imported/AudioStreamPlayer.svg-f01fb54b8c2659e7dc7724897bd76af9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioStreamPlayer.svg" +dest_files=["res://.godot/imported/AudioStreamPlayer.svg-f01fb54b8c2659e7dc7724897bd76af9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioStreamPlayer2D.svg b/src/resources/icons/godot/AudioStreamPlayer2D.svg new file mode 100644 index 00000000..d576f414 --- /dev/null +++ b/src/resources/icons/godot/AudioStreamPlayer2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioStreamPlayer2D.svg.import b/src/resources/icons/godot/AudioStreamPlayer2D.svg.import new file mode 100644 index 00000000..44e02b9d --- /dev/null +++ b/src/resources/icons/godot/AudioStreamPlayer2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsdgdu22ynxh" +path="res://.godot/imported/AudioStreamPlayer2D.svg-38610eee4aa6ded0f7ebb617bcced298.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioStreamPlayer2D.svg" +dest_files=["res://.godot/imported/AudioStreamPlayer2D.svg-38610eee4aa6ded0f7ebb617bcced298.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioStreamPlayer3D.svg b/src/resources/icons/godot/AudioStreamPlayer3D.svg new file mode 100644 index 00000000..b8f59217 --- /dev/null +++ b/src/resources/icons/godot/AudioStreamPlayer3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioStreamPlayer3D.svg.import b/src/resources/icons/godot/AudioStreamPlayer3D.svg.import new file mode 100644 index 00000000..b4dbd7dd --- /dev/null +++ b/src/resources/icons/godot/AudioStreamPlayer3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://te47q2d2wd8w" +path="res://.godot/imported/AudioStreamPlayer3D.svg-5da616352e96df1adee6314cd825e3c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioStreamPlayer3D.svg" +dest_files=["res://.godot/imported/AudioStreamPlayer3D.svg-5da616352e96df1adee6314cd825e3c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioStreamPolyphonic.svg b/src/resources/icons/godot/AudioStreamPolyphonic.svg new file mode 100644 index 00000000..2648cca3 --- /dev/null +++ b/src/resources/icons/godot/AudioStreamPolyphonic.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioStreamPolyphonic.svg.import b/src/resources/icons/godot/AudioStreamPolyphonic.svg.import new file mode 100644 index 00000000..6a1dd443 --- /dev/null +++ b/src/resources/icons/godot/AudioStreamPolyphonic.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dchcet5ju4ll1" +path="res://.godot/imported/AudioStreamPolyphonic.svg-6f3be220088182da73bfbb13595d7ffc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioStreamPolyphonic.svg" +dest_files=["res://.godot/imported/AudioStreamPolyphonic.svg-6f3be220088182da73bfbb13595d7ffc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioStreamRandomizer.svg b/src/resources/icons/godot/AudioStreamRandomizer.svg new file mode 100644 index 00000000..7331edb8 --- /dev/null +++ b/src/resources/icons/godot/AudioStreamRandomizer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioStreamRandomizer.svg.import b/src/resources/icons/godot/AudioStreamRandomizer.svg.import new file mode 100644 index 00000000..aef3f09d --- /dev/null +++ b/src/resources/icons/godot/AudioStreamRandomizer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cleu0e1ltguri" +path="res://.godot/imported/AudioStreamRandomizer.svg-fa85d8cdecd608bf25504f7d8dccf1a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioStreamRandomizer.svg" +dest_files=["res://.godot/imported/AudioStreamRandomizer.svg-fa85d8cdecd608bf25504f7d8dccf1a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AudioStreamWAV.svg b/src/resources/icons/godot/AudioStreamWAV.svg new file mode 100644 index 00000000..bbdc014e --- /dev/null +++ b/src/resources/icons/godot/AudioStreamWAV.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AudioStreamWAV.svg.import b/src/resources/icons/godot/AudioStreamWAV.svg.import new file mode 100644 index 00000000..f11f0b90 --- /dev/null +++ b/src/resources/icons/godot/AudioStreamWAV.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1p07s2kun2nu" +path="res://.godot/imported/AudioStreamWAV.svg-69bd8402d2ebf8f2e1942017f4f49043.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AudioStreamWAV.svg" +dest_files=["res://.godot/imported/AudioStreamWAV.svg-69bd8402d2ebf8f2e1942017f4f49043.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AutoEnd.svg b/src/resources/icons/godot/AutoEnd.svg new file mode 100644 index 00000000..e3125dc1 --- /dev/null +++ b/src/resources/icons/godot/AutoEnd.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AutoEnd.svg.import b/src/resources/icons/godot/AutoEnd.svg.import new file mode 100644 index 00000000..40dfba7a --- /dev/null +++ b/src/resources/icons/godot/AutoEnd.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdyje8qgoduax" +path="res://.godot/imported/AutoEnd.svg-9e1b49985aaabcb2558c1f60666bdc73.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AutoEnd.svg" +dest_files=["res://.godot/imported/AutoEnd.svg-9e1b49985aaabcb2558c1f60666bdc73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AutoKey.svg b/src/resources/icons/godot/AutoKey.svg new file mode 100644 index 00000000..5377205e --- /dev/null +++ b/src/resources/icons/godot/AutoKey.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AutoKey.svg.import b/src/resources/icons/godot/AutoKey.svg.import new file mode 100644 index 00000000..65c827d7 --- /dev/null +++ b/src/resources/icons/godot/AutoKey.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bulvbiq3merlb" +path="res://.godot/imported/AutoKey.svg-ad34984c4280a8025f9f4ea31c42328b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AutoKey.svg" +dest_files=["res://.godot/imported/AutoKey.svg-ad34984c4280a8025f9f4ea31c42328b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AutoPlay.svg b/src/resources/icons/godot/AutoPlay.svg new file mode 100644 index 00000000..51e7a24e --- /dev/null +++ b/src/resources/icons/godot/AutoPlay.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AutoPlay.svg.import b/src/resources/icons/godot/AutoPlay.svg.import new file mode 100644 index 00000000..5ab35de9 --- /dev/null +++ b/src/resources/icons/godot/AutoPlay.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctqlc80qb17bm" +path="res://.godot/imported/AutoPlay.svg-68775b86d6734832dc3f82a487b16131.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AutoPlay.svg" +dest_files=["res://.godot/imported/AutoPlay.svg-68775b86d6734832dc3f82a487b16131.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/AutoTriangle.svg b/src/resources/icons/godot/AutoTriangle.svg new file mode 100644 index 00000000..b5a7d0ee --- /dev/null +++ b/src/resources/icons/godot/AutoTriangle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/AutoTriangle.svg.import b/src/resources/icons/godot/AutoTriangle.svg.import new file mode 100644 index 00000000..2b8d3880 --- /dev/null +++ b/src/resources/icons/godot/AutoTriangle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcj3374fm04o0" +path="res://.godot/imported/AutoTriangle.svg-cf9cbd24d41e0ca12e32d1f35a59df0a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/AutoTriangle.svg" +dest_files=["res://.godot/imported/AutoTriangle.svg-cf9cbd24d41e0ca12e32d1f35a59df0a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Back.svg b/src/resources/icons/godot/Back.svg new file mode 100644 index 00000000..0bed4c35 --- /dev/null +++ b/src/resources/icons/godot/Back.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Back.svg.import b/src/resources/icons/godot/Back.svg.import new file mode 100644 index 00000000..7ec14dce --- /dev/null +++ b/src/resources/icons/godot/Back.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cecuwqxr6vpai" +path="res://.godot/imported/Back.svg-c5431df0cf57fb5b8ed18163b0da2199.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Back.svg" +dest_files=["res://.godot/imported/Back.svg-c5431df0cf57fb5b8ed18163b0da2199.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BackBufferCopy.svg b/src/resources/icons/godot/BackBufferCopy.svg new file mode 100644 index 00000000..9523245f --- /dev/null +++ b/src/resources/icons/godot/BackBufferCopy.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BackBufferCopy.svg.import b/src/resources/icons/godot/BackBufferCopy.svg.import new file mode 100644 index 00000000..1ae7fdad --- /dev/null +++ b/src/resources/icons/godot/BackBufferCopy.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hfq3jb801mt3" +path="res://.godot/imported/BackBufferCopy.svg-697a54b68be896e354e3f73d84c99734.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BackBufferCopy.svg" +dest_files=["res://.godot/imported/BackBufferCopy.svg-697a54b68be896e354e3f73d84c99734.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BackStart.svg b/src/resources/icons/godot/BackStart.svg new file mode 100644 index 00000000..9025d584 --- /dev/null +++ b/src/resources/icons/godot/BackStart.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BackStart.svg.import b/src/resources/icons/godot/BackStart.svg.import new file mode 100644 index 00000000..fb53b92f --- /dev/null +++ b/src/resources/icons/godot/BackStart.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpslivspiuhyo" +path="res://.godot/imported/BackStart.svg-3c1cb86495ed0e2dd52fcec4a1dac799.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BackStart.svg" +dest_files=["res://.godot/imported/BackStart.svg-3c1cb86495ed0e2dd52fcec4a1dac799.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Bake.svg b/src/resources/icons/godot/Bake.svg new file mode 100644 index 00000000..db812e8b --- /dev/null +++ b/src/resources/icons/godot/Bake.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Bake.svg.import b/src/resources/icons/godot/Bake.svg.import new file mode 100644 index 00000000..0c48b628 --- /dev/null +++ b/src/resources/icons/godot/Bake.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e8p61rlqpl75" +path="res://.godot/imported/Bake.svg-9b90ca140059a2979db3d907cc1353ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Bake.svg" +dest_files=["res://.godot/imported/Bake.svg-9b90ca140059a2979db3d907cc1353ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BaseButton.svg b/src/resources/icons/godot/BaseButton.svg new file mode 100644 index 00000000..ae37346c --- /dev/null +++ b/src/resources/icons/godot/BaseButton.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BaseButton.svg.import b/src/resources/icons/godot/BaseButton.svg.import new file mode 100644 index 00000000..19c05d71 --- /dev/null +++ b/src/resources/icons/godot/BaseButton.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwv3ckbrgjg8j" +path="res://.godot/imported/BaseButton.svg-a77d761db7961f2b54aa93cdfaefbe7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BaseButton.svg" +dest_files=["res://.godot/imported/BaseButton.svg-a77d761db7961f2b54aa93cdfaefbe7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Basis.svg b/src/resources/icons/godot/Basis.svg new file mode 100644 index 00000000..37c8224f --- /dev/null +++ b/src/resources/icons/godot/Basis.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Basis.svg.import b/src/resources/icons/godot/Basis.svg.import new file mode 100644 index 00000000..b57debeb --- /dev/null +++ b/src/resources/icons/godot/Basis.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chf3tesoqycih" +path="res://.godot/imported/Basis.svg-18d686184d86c1c72aa46406cab4064e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Basis.svg" +dest_files=["res://.godot/imported/Basis.svg-18d686184d86c1c72aa46406cab4064e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BezierHandlesBalanced.svg b/src/resources/icons/godot/BezierHandlesBalanced.svg new file mode 100644 index 00000000..508b9a51 --- /dev/null +++ b/src/resources/icons/godot/BezierHandlesBalanced.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BezierHandlesBalanced.svg.import b/src/resources/icons/godot/BezierHandlesBalanced.svg.import new file mode 100644 index 00000000..f800ba4b --- /dev/null +++ b/src/resources/icons/godot/BezierHandlesBalanced.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by86efwt4twa1" +path="res://.godot/imported/BezierHandlesBalanced.svg-f040caf606211341ee3ae1e0683b9276.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BezierHandlesBalanced.svg" +dest_files=["res://.godot/imported/BezierHandlesBalanced.svg-f040caf606211341ee3ae1e0683b9276.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BezierHandlesFree.svg b/src/resources/icons/godot/BezierHandlesFree.svg new file mode 100644 index 00000000..3e62159b --- /dev/null +++ b/src/resources/icons/godot/BezierHandlesFree.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BezierHandlesFree.svg.import b/src/resources/icons/godot/BezierHandlesFree.svg.import new file mode 100644 index 00000000..79811ce8 --- /dev/null +++ b/src/resources/icons/godot/BezierHandlesFree.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2edbr8c21125" +path="res://.godot/imported/BezierHandlesFree.svg-a56a0c798d45c45a9f5aeb811c68b83f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BezierHandlesFree.svg" +dest_files=["res://.godot/imported/BezierHandlesFree.svg-a56a0c798d45c45a9f5aeb811c68b83f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BezierHandlesLinear.svg b/src/resources/icons/godot/BezierHandlesLinear.svg new file mode 100644 index 00000000..ddce62cc --- /dev/null +++ b/src/resources/icons/godot/BezierHandlesLinear.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BezierHandlesLinear.svg.import b/src/resources/icons/godot/BezierHandlesLinear.svg.import new file mode 100644 index 00000000..7cee9440 --- /dev/null +++ b/src/resources/icons/godot/BezierHandlesLinear.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cavmt4lgj20is" +path="res://.godot/imported/BezierHandlesLinear.svg-b0c3da9c6a92224b42d0f3d798ad48bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BezierHandlesLinear.svg" +dest_files=["res://.godot/imported/BezierHandlesLinear.svg-b0c3da9c6a92224b42d0f3d798ad48bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BezierHandlesMirror.svg b/src/resources/icons/godot/BezierHandlesMirror.svg new file mode 100644 index 00000000..25e74930 --- /dev/null +++ b/src/resources/icons/godot/BezierHandlesMirror.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BezierHandlesMirror.svg.import b/src/resources/icons/godot/BezierHandlesMirror.svg.import new file mode 100644 index 00000000..90fdfe10 --- /dev/null +++ b/src/resources/icons/godot/BezierHandlesMirror.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3huy5fea808i" +path="res://.godot/imported/BezierHandlesMirror.svg-0f77f3480ebecab50b9153963f920a0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BezierHandlesMirror.svg" +dest_files=["res://.godot/imported/BezierHandlesMirror.svg-0f77f3480ebecab50b9153963f920a0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BitMap.svg b/src/resources/icons/godot/BitMap.svg new file mode 100644 index 00000000..73b1158c --- /dev/null +++ b/src/resources/icons/godot/BitMap.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BitMap.svg.import b/src/resources/icons/godot/BitMap.svg.import new file mode 100644 index 00000000..ade19cc4 --- /dev/null +++ b/src/resources/icons/godot/BitMap.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch6fjw8vc6g81" +path="res://.godot/imported/BitMap.svg-3a81d485398d10cc38fdf46ae50cd3d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BitMap.svg" +dest_files=["res://.godot/imported/BitMap.svg-3a81d485398d10cc38fdf46ae50cd3d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Blend.svg b/src/resources/icons/godot/Blend.svg new file mode 100644 index 00000000..17023e9e --- /dev/null +++ b/src/resources/icons/godot/Blend.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Blend.svg.import b/src/resources/icons/godot/Blend.svg.import new file mode 100644 index 00000000..81a6cb6f --- /dev/null +++ b/src/resources/icons/godot/Blend.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vnaw7ug36obv" +path="res://.godot/imported/Blend.svg-2ccba0634ad86b5a3a8f47f20dcefa92.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Blend.svg" +dest_files=["res://.godot/imported/Blend.svg-2ccba0634ad86b5a3a8f47f20dcefa92.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BlitMaterial.svg b/src/resources/icons/godot/BlitMaterial.svg new file mode 100644 index 00000000..b46db60c --- /dev/null +++ b/src/resources/icons/godot/BlitMaterial.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BlitMaterial.svg.import b/src/resources/icons/godot/BlitMaterial.svg.import new file mode 100644 index 00000000..ba8a3302 --- /dev/null +++ b/src/resources/icons/godot/BlitMaterial.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jglv0178b3oh" +path="res://.godot/imported/BlitMaterial.svg-f27276b87372fea7876dfcb5e1407093.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BlitMaterial.svg" +dest_files=["res://.godot/imported/BlitMaterial.svg-f27276b87372fea7876dfcb5e1407093.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Bone.svg b/src/resources/icons/godot/Bone.svg new file mode 100644 index 00000000..b1059d49 --- /dev/null +++ b/src/resources/icons/godot/Bone.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Bone.svg.import b/src/resources/icons/godot/Bone.svg.import new file mode 100644 index 00000000..49e00054 --- /dev/null +++ b/src/resources/icons/godot/Bone.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbowpnqb7ljmu" +path="res://.godot/imported/Bone.svg-47f08d2cca2e2d812bbf4de8bb07d63d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Bone.svg" +dest_files=["res://.godot/imported/Bone.svg-47f08d2cca2e2d812bbf4de8bb07d63d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Bone2D.svg b/src/resources/icons/godot/Bone2D.svg new file mode 100644 index 00000000..2f1868ab --- /dev/null +++ b/src/resources/icons/godot/Bone2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Bone2D.svg.import b/src/resources/icons/godot/Bone2D.svg.import new file mode 100644 index 00000000..35f0617d --- /dev/null +++ b/src/resources/icons/godot/Bone2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buwlk30mbpb5u" +path="res://.godot/imported/Bone2D.svg-fbb684b74c05624dcf4c82cd86c8f579.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Bone2D.svg" +dest_files=["res://.godot/imported/Bone2D.svg-fbb684b74c05624dcf4c82cd86c8f579.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoneAttachment3D.svg b/src/resources/icons/godot/BoneAttachment3D.svg new file mode 100644 index 00000000..4dd33946 --- /dev/null +++ b/src/resources/icons/godot/BoneAttachment3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoneAttachment3D.svg.import b/src/resources/icons/godot/BoneAttachment3D.svg.import new file mode 100644 index 00000000..7a97ebfe --- /dev/null +++ b/src/resources/icons/godot/BoneAttachment3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmco0scckh83o" +path="res://.godot/imported/BoneAttachment3D.svg-a8931f0ddcc19b18d86be2bbce80a99d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoneAttachment3D.svg" +dest_files=["res://.godot/imported/BoneAttachment3D.svg-a8931f0ddcc19b18d86be2bbce80a99d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoneConstraint3D.svg b/src/resources/icons/godot/BoneConstraint3D.svg new file mode 100644 index 00000000..1a7f77bf --- /dev/null +++ b/src/resources/icons/godot/BoneConstraint3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoneConstraint3D.svg.import b/src/resources/icons/godot/BoneConstraint3D.svg.import new file mode 100644 index 00000000..0fa09011 --- /dev/null +++ b/src/resources/icons/godot/BoneConstraint3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgybvovci5r5f" +path="res://.godot/imported/BoneConstraint3D.svg-bfba852a9372146912dcbd4f5436fcd5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoneConstraint3D.svg" +dest_files=["res://.godot/imported/BoneConstraint3D.svg-bfba852a9372146912dcbd4f5436fcd5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoneMapHumanBody.svg b/src/resources/icons/godot/BoneMapHumanBody.svg new file mode 100644 index 00000000..abe199db --- /dev/null +++ b/src/resources/icons/godot/BoneMapHumanBody.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoneMapHumanBody.svg.import b/src/resources/icons/godot/BoneMapHumanBody.svg.import new file mode 100644 index 00000000..cafa5e4a --- /dev/null +++ b/src/resources/icons/godot/BoneMapHumanBody.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxhbbv81e06sh" +path="res://.godot/imported/BoneMapHumanBody.svg-5a6092fda47c1fd5233ff6703dc3a59d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoneMapHumanBody.svg" +dest_files=["res://.godot/imported/BoneMapHumanBody.svg-5a6092fda47c1fd5233ff6703dc3a59d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoneMapHumanFace.svg b/src/resources/icons/godot/BoneMapHumanFace.svg new file mode 100644 index 00000000..69926429 --- /dev/null +++ b/src/resources/icons/godot/BoneMapHumanFace.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoneMapHumanFace.svg.import b/src/resources/icons/godot/BoneMapHumanFace.svg.import new file mode 100644 index 00000000..e9f30530 --- /dev/null +++ b/src/resources/icons/godot/BoneMapHumanFace.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crha3w0x35sms" +path="res://.godot/imported/BoneMapHumanFace.svg-2bcc4638ae86f9aecf8a282db899d689.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoneMapHumanFace.svg" +dest_files=["res://.godot/imported/BoneMapHumanFace.svg-2bcc4638ae86f9aecf8a282db899d689.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoneMapHumanLeftHand.svg b/src/resources/icons/godot/BoneMapHumanLeftHand.svg new file mode 100644 index 00000000..eeefcbb7 --- /dev/null +++ b/src/resources/icons/godot/BoneMapHumanLeftHand.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoneMapHumanLeftHand.svg.import b/src/resources/icons/godot/BoneMapHumanLeftHand.svg.import new file mode 100644 index 00000000..08978f07 --- /dev/null +++ b/src/resources/icons/godot/BoneMapHumanLeftHand.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuvq07rlnobto" +path="res://.godot/imported/BoneMapHumanLeftHand.svg-75cc8eadcef34318e9af74200b10cf3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoneMapHumanLeftHand.svg" +dest_files=["res://.godot/imported/BoneMapHumanLeftHand.svg-75cc8eadcef34318e9af74200b10cf3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoneMapHumanRightHand.svg b/src/resources/icons/godot/BoneMapHumanRightHand.svg new file mode 100644 index 00000000..ddd0418e --- /dev/null +++ b/src/resources/icons/godot/BoneMapHumanRightHand.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoneMapHumanRightHand.svg.import b/src/resources/icons/godot/BoneMapHumanRightHand.svg.import new file mode 100644 index 00000000..7ba7350a --- /dev/null +++ b/src/resources/icons/godot/BoneMapHumanRightHand.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbhc71e4p70xf" +path="res://.godot/imported/BoneMapHumanRightHand.svg-66238b5d8fc6cf8fb62966787a07f92d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoneMapHumanRightHand.svg" +dest_files=["res://.godot/imported/BoneMapHumanRightHand.svg-66238b5d8fc6cf8fb62966787a07f92d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoneMapperHandle.svg b/src/resources/icons/godot/BoneMapperHandle.svg new file mode 100644 index 00000000..db3cf384 --- /dev/null +++ b/src/resources/icons/godot/BoneMapperHandle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoneMapperHandle.svg.import b/src/resources/icons/godot/BoneMapperHandle.svg.import new file mode 100644 index 00000000..44291352 --- /dev/null +++ b/src/resources/icons/godot/BoneMapperHandle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dinhgobvwg5li" +path="res://.godot/imported/BoneMapperHandle.svg-a970b7fc695282bbbfd8111122d24550.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoneMapperHandle.svg" +dest_files=["res://.godot/imported/BoneMapperHandle.svg-a970b7fc695282bbbfd8111122d24550.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoneMapperHandleCircle.svg b/src/resources/icons/godot/BoneMapperHandleCircle.svg new file mode 100644 index 00000000..bd5fbc37 --- /dev/null +++ b/src/resources/icons/godot/BoneMapperHandleCircle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoneMapperHandleCircle.svg.import b/src/resources/icons/godot/BoneMapperHandleCircle.svg.import new file mode 100644 index 00000000..2ca4a794 --- /dev/null +++ b/src/resources/icons/godot/BoneMapperHandleCircle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkqo3ubm1hk26" +path="res://.godot/imported/BoneMapperHandleCircle.svg-79265ce6d863b91a25c0a97d3e41e728.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoneMapperHandleCircle.svg" +dest_files=["res://.godot/imported/BoneMapperHandleCircle.svg-79265ce6d863b91a25c0a97d3e41e728.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoneMapperHandleSelected.svg b/src/resources/icons/godot/BoneMapperHandleSelected.svg new file mode 100644 index 00000000..f4a5c435 --- /dev/null +++ b/src/resources/icons/godot/BoneMapperHandleSelected.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoneMapperHandleSelected.svg.import b/src/resources/icons/godot/BoneMapperHandleSelected.svg.import new file mode 100644 index 00000000..9999684c --- /dev/null +++ b/src/resources/icons/godot/BoneMapperHandleSelected.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drlfoxrbe7pov" +path="res://.godot/imported/BoneMapperHandleSelected.svg-923f1c8c8b0d074bd4fa06fc4f62c83d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoneMapperHandleSelected.svg" +dest_files=["res://.godot/imported/BoneMapperHandleSelected.svg-923f1c8c8b0d074bd4fa06fc4f62c83d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoneTwistDisperser3D.svg b/src/resources/icons/godot/BoneTwistDisperser3D.svg new file mode 100644 index 00000000..e8d2307e --- /dev/null +++ b/src/resources/icons/godot/BoneTwistDisperser3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoneTwistDisperser3D.svg.import b/src/resources/icons/godot/BoneTwistDisperser3D.svg.import new file mode 100644 index 00000000..6bb8fef7 --- /dev/null +++ b/src/resources/icons/godot/BoneTwistDisperser3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw31a4wavdgfd" +path="res://.godot/imported/BoneTwistDisperser3D.svg-66e4d5cd65d5a246f3f323e903fc9542.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoneTwistDisperser3D.svg" +dest_files=["res://.godot/imported/BoneTwistDisperser3D.svg-66e4d5cd65d5a246f3f323e903fc9542.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoxContainer.svg b/src/resources/icons/godot/BoxContainer.svg new file mode 100644 index 00000000..1c231c3c --- /dev/null +++ b/src/resources/icons/godot/BoxContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoxContainer.svg.import b/src/resources/icons/godot/BoxContainer.svg.import new file mode 100644 index 00000000..03e2a7cb --- /dev/null +++ b/src/resources/icons/godot/BoxContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cysis5y4j8ehx" +path="res://.godot/imported/BoxContainer.svg-1d9355ae319d9a1a74567b525f10a48d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoxContainer.svg" +dest_files=["res://.godot/imported/BoxContainer.svg-1d9355ae319d9a1a74567b525f10a48d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoxMesh.svg b/src/resources/icons/godot/BoxMesh.svg new file mode 100644 index 00000000..fe1fb3dd --- /dev/null +++ b/src/resources/icons/godot/BoxMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoxMesh.svg.import b/src/resources/icons/godot/BoxMesh.svg.import new file mode 100644 index 00000000..533e3d59 --- /dev/null +++ b/src/resources/icons/godot/BoxMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccgcedigypkdw" +path="res://.godot/imported/BoxMesh.svg-f84c1f4c6107c139ca9be46d21d261c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoxMesh.svg" +dest_files=["res://.godot/imported/BoxMesh.svg-f84c1f4c6107c139ca9be46d21d261c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoxOccluder3D.svg b/src/resources/icons/godot/BoxOccluder3D.svg new file mode 100644 index 00000000..f974b9eb --- /dev/null +++ b/src/resources/icons/godot/BoxOccluder3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoxOccluder3D.svg.import b/src/resources/icons/godot/BoxOccluder3D.svg.import new file mode 100644 index 00000000..ab26bb55 --- /dev/null +++ b/src/resources/icons/godot/BoxOccluder3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbcuyihydyeid" +path="res://.godot/imported/BoxOccluder3D.svg-c52e6ae7ed06649ee0208615ea314d85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoxOccluder3D.svg" +dest_files=["res://.godot/imported/BoxOccluder3D.svg-c52e6ae7ed06649ee0208615ea314d85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/BoxShape3D.svg b/src/resources/icons/godot/BoxShape3D.svg new file mode 100644 index 00000000..3ac50c5e --- /dev/null +++ b/src/resources/icons/godot/BoxShape3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/BoxShape3D.svg.import b/src/resources/icons/godot/BoxShape3D.svg.import new file mode 100644 index 00000000..b846de35 --- /dev/null +++ b/src/resources/icons/godot/BoxShape3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg1mcueqj8rsu" +path="res://.godot/imported/BoxShape3D.svg-a1a9f2693f94a46c0235e5da01b5ee1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/BoxShape3D.svg" +dest_files=["res://.godot/imported/BoxShape3D.svg-a1a9f2693f94a46c0235e5da01b5ee1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Breakpoint.svg b/src/resources/icons/godot/Breakpoint.svg new file mode 100644 index 00000000..2d79f94b --- /dev/null +++ b/src/resources/icons/godot/Breakpoint.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Breakpoint.svg.import b/src/resources/icons/godot/Breakpoint.svg.import new file mode 100644 index 00000000..56e85e90 --- /dev/null +++ b/src/resources/icons/godot/Breakpoint.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://umqg22phuw4w" +path="res://.godot/imported/Breakpoint.svg-70e04a8e6d9ec8f978486431f8991656.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Breakpoint.svg" +dest_files=["res://.godot/imported/Breakpoint.svg-70e04a8e6d9ec8f978486431f8991656.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Bucket.svg b/src/resources/icons/godot/Bucket.svg new file mode 100644 index 00000000..6128c6c8 --- /dev/null +++ b/src/resources/icons/godot/Bucket.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Bucket.svg.import b/src/resources/icons/godot/Bucket.svg.import new file mode 100644 index 00000000..1c083601 --- /dev/null +++ b/src/resources/icons/godot/Bucket.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vbv7pb3y6p4m" +path="res://.godot/imported/Bucket.svg-65fcee063c8205a2429054977c01c456.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Bucket.svg" +dest_files=["res://.godot/imported/Bucket.svg-65fcee063c8205a2429054977c01c456.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Button.svg b/src/resources/icons/godot/Button.svg new file mode 100644 index 00000000..20d60336 --- /dev/null +++ b/src/resources/icons/godot/Button.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Button.svg.import b/src/resources/icons/godot/Button.svg.import new file mode 100644 index 00000000..0cff705e --- /dev/null +++ b/src/resources/icons/godot/Button.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmn54e4uu3xxv" +path="res://.godot/imported/Button.svg-2812a0390236e92f2c1c38a3c22078d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Button.svg" +dest_files=["res://.godot/imported/Button.svg-2812a0390236e92f2c1c38a3c22078d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ButtonGroup.svg b/src/resources/icons/godot/ButtonGroup.svg new file mode 100644 index 00000000..a377d0c1 --- /dev/null +++ b/src/resources/icons/godot/ButtonGroup.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ButtonGroup.svg.import b/src/resources/icons/godot/ButtonGroup.svg.import new file mode 100644 index 00000000..cbc16805 --- /dev/null +++ b/src/resources/icons/godot/ButtonGroup.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdftpecm78ldi" +path="res://.godot/imported/ButtonGroup.svg-b228625f0d94176d2e74a3638e5def51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ButtonGroup.svg" +dest_files=["res://.godot/imported/ButtonGroup.svg-b228625f0d94176d2e74a3638e5def51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CCDIK3D.svg b/src/resources/icons/godot/CCDIK3D.svg new file mode 100644 index 00000000..c2b5229f --- /dev/null +++ b/src/resources/icons/godot/CCDIK3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CCDIK3D.svg.import b/src/resources/icons/godot/CCDIK3D.svg.import new file mode 100644 index 00000000..2a3bd372 --- /dev/null +++ b/src/resources/icons/godot/CCDIK3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj5krtc7h6dio" +path="res://.godot/imported/CCDIK3D.svg-675037221e14c5e2231479fbc9d48c7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CCDIK3D.svg" +dest_files=["res://.godot/imported/CCDIK3D.svg-675037221e14c5e2231479fbc9d48c7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CPUParticles2D.svg b/src/resources/icons/godot/CPUParticles2D.svg new file mode 100644 index 00000000..151ad672 --- /dev/null +++ b/src/resources/icons/godot/CPUParticles2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CPUParticles2D.svg.import b/src/resources/icons/godot/CPUParticles2D.svg.import new file mode 100644 index 00000000..d3c37c3c --- /dev/null +++ b/src/resources/icons/godot/CPUParticles2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5jhig1fhj2yd" +path="res://.godot/imported/CPUParticles2D.svg-03fbe3969dd57fe2a8040adc87d10ab5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CPUParticles2D.svg" +dest_files=["res://.godot/imported/CPUParticles2D.svg-03fbe3969dd57fe2a8040adc87d10ab5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CPUParticles3D.svg b/src/resources/icons/godot/CPUParticles3D.svg new file mode 100644 index 00000000..4ea46f16 --- /dev/null +++ b/src/resources/icons/godot/CPUParticles3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CPUParticles3D.svg.import b/src/resources/icons/godot/CPUParticles3D.svg.import new file mode 100644 index 00000000..1d97d26a --- /dev/null +++ b/src/resources/icons/godot/CPUParticles3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vne0aob6wt5h" +path="res://.godot/imported/CPUParticles3D.svg-19db1a5c125a5ec2fcb2ec4db282caea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CPUParticles3D.svg" +dest_files=["res://.godot/imported/CPUParticles3D.svg-19db1a5c125a5ec2fcb2ec4db282caea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Callable.svg b/src/resources/icons/godot/Callable.svg new file mode 100644 index 00000000..35c4d3fb --- /dev/null +++ b/src/resources/icons/godot/Callable.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Callable.svg.import b/src/resources/icons/godot/Callable.svg.import new file mode 100644 index 00000000..1283297b --- /dev/null +++ b/src/resources/icons/godot/Callable.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwu05murjem1k" +path="res://.godot/imported/Callable.svg-68b94d03b6fa0fda82e3aeca2d231b2e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Callable.svg" +dest_files=["res://.godot/imported/Callable.svg-68b94d03b6fa0fda82e3aeca2d231b2e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Camera.svg b/src/resources/icons/godot/Camera.svg new file mode 100644 index 00000000..2a9ecb2f --- /dev/null +++ b/src/resources/icons/godot/Camera.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Camera.svg.import b/src/resources/icons/godot/Camera.svg.import new file mode 100644 index 00000000..5e0bde5d --- /dev/null +++ b/src/resources/icons/godot/Camera.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbger73tmdxlr" +path="res://.godot/imported/Camera.svg-841006679fd5be65386e13abc796e6af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Camera.svg" +dest_files=["res://.godot/imported/Camera.svg-841006679fd5be65386e13abc796e6af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Camera2D.svg b/src/resources/icons/godot/Camera2D.svg new file mode 100644 index 00000000..721ec4fc --- /dev/null +++ b/src/resources/icons/godot/Camera2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Camera2D.svg.import b/src/resources/icons/godot/Camera2D.svg.import new file mode 100644 index 00000000..fa262cf4 --- /dev/null +++ b/src/resources/icons/godot/Camera2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5kcdyu7n2pat" +path="res://.godot/imported/Camera2D.svg-3eca89598071eb71dca4b52a4c0bbb33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Camera2D.svg" +dest_files=["res://.godot/imported/Camera2D.svg-3eca89598071eb71dca4b52a4c0bbb33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Camera3D.svg b/src/resources/icons/godot/Camera3D.svg new file mode 100644 index 00000000..1f0e771a --- /dev/null +++ b/src/resources/icons/godot/Camera3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Camera3D.svg.import b/src/resources/icons/godot/Camera3D.svg.import new file mode 100644 index 00000000..cb6c50dd --- /dev/null +++ b/src/resources/icons/godot/Camera3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3wc32mjtjx0t" +path="res://.godot/imported/Camera3D.svg-21443cbefedda48fa934154b1fed6b5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Camera3D.svg" +dest_files=["res://.godot/imported/Camera3D.svg-21443cbefedda48fa934154b1fed6b5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Camera3DDarkBackground.svg b/src/resources/icons/godot/Camera3DDarkBackground.svg new file mode 100644 index 00000000..1f0e771a --- /dev/null +++ b/src/resources/icons/godot/Camera3DDarkBackground.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Camera3DDarkBackground.svg.import b/src/resources/icons/godot/Camera3DDarkBackground.svg.import new file mode 100644 index 00000000..47d418a9 --- /dev/null +++ b/src/resources/icons/godot/Camera3DDarkBackground.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnwxadduc568a" +path="res://.godot/imported/Camera3DDarkBackground.svg-93422cf51bfb3649381a919886e30c66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Camera3DDarkBackground.svg" +dest_files=["res://.godot/imported/Camera3DDarkBackground.svg-93422cf51bfb3649381a919886e30c66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CameraAttributes.svg b/src/resources/icons/godot/CameraAttributes.svg new file mode 100644 index 00000000..eb0c9069 --- /dev/null +++ b/src/resources/icons/godot/CameraAttributes.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CameraAttributes.svg.import b/src/resources/icons/godot/CameraAttributes.svg.import new file mode 100644 index 00000000..ca75fc4a --- /dev/null +++ b/src/resources/icons/godot/CameraAttributes.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ll1l3gibcsh3" +path="res://.godot/imported/CameraAttributes.svg-5796ed6a871f3aac2e85ff9cc03860da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CameraAttributes.svg" +dest_files=["res://.godot/imported/CameraAttributes.svg-5796ed6a871f3aac2e85ff9cc03860da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CameraAttributesPhysical.svg b/src/resources/icons/godot/CameraAttributesPhysical.svg new file mode 100644 index 00000000..b577f733 --- /dev/null +++ b/src/resources/icons/godot/CameraAttributesPhysical.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CameraAttributesPhysical.svg.import b/src/resources/icons/godot/CameraAttributesPhysical.svg.import new file mode 100644 index 00000000..d755ea3f --- /dev/null +++ b/src/resources/icons/godot/CameraAttributesPhysical.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rigiurjb7fgf" +path="res://.godot/imported/CameraAttributesPhysical.svg-7291e2a18cc42e00fbd5f6bd985ef1d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CameraAttributesPhysical.svg" +dest_files=["res://.godot/imported/CameraAttributesPhysical.svg-7291e2a18cc42e00fbd5f6bd985ef1d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CameraAttributesPractical.svg b/src/resources/icons/godot/CameraAttributesPractical.svg new file mode 100644 index 00000000..9cdc14cc --- /dev/null +++ b/src/resources/icons/godot/CameraAttributesPractical.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CameraAttributesPractical.svg.import b/src/resources/icons/godot/CameraAttributesPractical.svg.import new file mode 100644 index 00000000..42b63110 --- /dev/null +++ b/src/resources/icons/godot/CameraAttributesPractical.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byk6yxt7hq08n" +path="res://.godot/imported/CameraAttributesPractical.svg-aa995378f82cac8dad85d85da663cc9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CameraAttributesPractical.svg" +dest_files=["res://.godot/imported/CameraAttributesPractical.svg-aa995378f82cac8dad85d85da663cc9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CameraTexture.svg b/src/resources/icons/godot/CameraTexture.svg new file mode 100644 index 00000000..042c4290 --- /dev/null +++ b/src/resources/icons/godot/CameraTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CameraTexture.svg.import b/src/resources/icons/godot/CameraTexture.svg.import new file mode 100644 index 00000000..ddacb4b9 --- /dev/null +++ b/src/resources/icons/godot/CameraTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdjelafw74k86" +path="res://.godot/imported/CameraTexture.svg-8ee30be26d0b076ba06339b7a399e0fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CameraTexture.svg" +dest_files=["res://.godot/imported/CameraTexture.svg-8ee30be26d0b076ba06339b7a399e0fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CanvasGroup.svg b/src/resources/icons/godot/CanvasGroup.svg new file mode 100644 index 00000000..8d36d76c --- /dev/null +++ b/src/resources/icons/godot/CanvasGroup.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CanvasGroup.svg.import b/src/resources/icons/godot/CanvasGroup.svg.import new file mode 100644 index 00000000..653eae15 --- /dev/null +++ b/src/resources/icons/godot/CanvasGroup.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci3ewoldpeli0" +path="res://.godot/imported/CanvasGroup.svg-43b4a9bcfe5ee7e64918a6bdcbc35bb0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CanvasGroup.svg" +dest_files=["res://.godot/imported/CanvasGroup.svg-43b4a9bcfe5ee7e64918a6bdcbc35bb0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CanvasItem.svg b/src/resources/icons/godot/CanvasItem.svg new file mode 100644 index 00000000..8fa12d98 --- /dev/null +++ b/src/resources/icons/godot/CanvasItem.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CanvasItem.svg.import b/src/resources/icons/godot/CanvasItem.svg.import new file mode 100644 index 00000000..24e8a142 --- /dev/null +++ b/src/resources/icons/godot/CanvasItem.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be56q2oao6jbj" +path="res://.godot/imported/CanvasItem.svg-7541c6f635f3af81dc732721491586c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CanvasItem.svg" +dest_files=["res://.godot/imported/CanvasItem.svg-7541c6f635f3af81dc732721491586c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CanvasItemMaterial.svg b/src/resources/icons/godot/CanvasItemMaterial.svg new file mode 100644 index 00000000..69d1a977 --- /dev/null +++ b/src/resources/icons/godot/CanvasItemMaterial.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CanvasItemMaterial.svg.import b/src/resources/icons/godot/CanvasItemMaterial.svg.import new file mode 100644 index 00000000..55de7198 --- /dev/null +++ b/src/resources/icons/godot/CanvasItemMaterial.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh0j6lxdkmsrk" +path="res://.godot/imported/CanvasItemMaterial.svg-c4f162b0cf345c0f23d11e44dd63c1f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CanvasItemMaterial.svg" +dest_files=["res://.godot/imported/CanvasItemMaterial.svg-c4f162b0cf345c0f23d11e44dd63c1f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CanvasLayer.svg b/src/resources/icons/godot/CanvasLayer.svg new file mode 100644 index 00000000..1b90f095 --- /dev/null +++ b/src/resources/icons/godot/CanvasLayer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CanvasLayer.svg.import b/src/resources/icons/godot/CanvasLayer.svg.import new file mode 100644 index 00000000..b6fc9bc5 --- /dev/null +++ b/src/resources/icons/godot/CanvasLayer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctpccfw4ga45p" +path="res://.godot/imported/CanvasLayer.svg-776412d9aad0a9c645df7074022bb286.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CanvasLayer.svg" +dest_files=["res://.godot/imported/CanvasLayer.svg-776412d9aad0a9c645df7074022bb286.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CanvasModulate.svg b/src/resources/icons/godot/CanvasModulate.svg new file mode 100644 index 00000000..971d7e6e --- /dev/null +++ b/src/resources/icons/godot/CanvasModulate.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CanvasModulate.svg.import b/src/resources/icons/godot/CanvasModulate.svg.import new file mode 100644 index 00000000..721b5f72 --- /dev/null +++ b/src/resources/icons/godot/CanvasModulate.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3h2avgsqdy0c" +path="res://.godot/imported/CanvasModulate.svg-3f1bbb81997abe91954e733f3dfbfcec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CanvasModulate.svg" +dest_files=["res://.godot/imported/CanvasModulate.svg-3f1bbb81997abe91954e733f3dfbfcec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CanvasTexture.svg b/src/resources/icons/godot/CanvasTexture.svg new file mode 100644 index 00000000..f51dd6df --- /dev/null +++ b/src/resources/icons/godot/CanvasTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CanvasTexture.svg.import b/src/resources/icons/godot/CanvasTexture.svg.import new file mode 100644 index 00000000..ea725760 --- /dev/null +++ b/src/resources/icons/godot/CanvasTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0ju7sxva682q" +path="res://.godot/imported/CanvasTexture.svg-6516d16b69055371ca9648a1a73a8324.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CanvasTexture.svg" +dest_files=["res://.godot/imported/CanvasTexture.svg-6516d16b69055371ca9648a1a73a8324.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CapsuleMesh.svg b/src/resources/icons/godot/CapsuleMesh.svg new file mode 100644 index 00000000..480ef18b --- /dev/null +++ b/src/resources/icons/godot/CapsuleMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CapsuleMesh.svg.import b/src/resources/icons/godot/CapsuleMesh.svg.import new file mode 100644 index 00000000..bc07b843 --- /dev/null +++ b/src/resources/icons/godot/CapsuleMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8dhtfsq2wvt5" +path="res://.godot/imported/CapsuleMesh.svg-1289d34f9725b174bda9766cd7b5e1c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CapsuleMesh.svg" +dest_files=["res://.godot/imported/CapsuleMesh.svg-1289d34f9725b174bda9766cd7b5e1c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CapsuleShape2D.svg b/src/resources/icons/godot/CapsuleShape2D.svg new file mode 100644 index 00000000..09a3a182 --- /dev/null +++ b/src/resources/icons/godot/CapsuleShape2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CapsuleShape2D.svg.import b/src/resources/icons/godot/CapsuleShape2D.svg.import new file mode 100644 index 00000000..ab1e3263 --- /dev/null +++ b/src/resources/icons/godot/CapsuleShape2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkhx3of6bexpq" +path="res://.godot/imported/CapsuleShape2D.svg-b3078389789daf127b3a8e0e10a3ac35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CapsuleShape2D.svg" +dest_files=["res://.godot/imported/CapsuleShape2D.svg-b3078389789daf127b3a8e0e10a3ac35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CapsuleShape3D.svg b/src/resources/icons/godot/CapsuleShape3D.svg new file mode 100644 index 00000000..562e7bd8 --- /dev/null +++ b/src/resources/icons/godot/CapsuleShape3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CapsuleShape3D.svg.import b/src/resources/icons/godot/CapsuleShape3D.svg.import new file mode 100644 index 00000000..2b650414 --- /dev/null +++ b/src/resources/icons/godot/CapsuleShape3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://unm5g0x4owyg" +path="res://.godot/imported/CapsuleShape3D.svg-d536d1ee3ce061770dfc47e7fb54f35a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CapsuleShape3D.svg" +dest_files=["res://.godot/imported/CapsuleShape3D.svg-d536d1ee3ce061770dfc47e7fb54f35a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CenterContainer.svg b/src/resources/icons/godot/CenterContainer.svg new file mode 100644 index 00000000..e26dcf96 --- /dev/null +++ b/src/resources/icons/godot/CenterContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CenterContainer.svg.import b/src/resources/icons/godot/CenterContainer.svg.import new file mode 100644 index 00000000..90c9260c --- /dev/null +++ b/src/resources/icons/godot/CenterContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxbu5g1kp83e4" +path="res://.godot/imported/CenterContainer.svg-62ded31dc47195d837401d9f5d9a085b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CenterContainer.svg" +dest_files=["res://.godot/imported/CenterContainer.svg-62ded31dc47195d837401d9f5d9a085b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CenterView.svg b/src/resources/icons/godot/CenterView.svg new file mode 100644 index 00000000..9b3e8253 --- /dev/null +++ b/src/resources/icons/godot/CenterView.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CenterView.svg.import b/src/resources/icons/godot/CenterView.svg.import new file mode 100644 index 00000000..b0defc64 --- /dev/null +++ b/src/resources/icons/godot/CenterView.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmjk4owt1h6xn" +path="res://.godot/imported/CenterView.svg-af4e0e047a08b0d7cc914385584296eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CenterView.svg" +dest_files=["res://.godot/imported/CenterView.svg-af4e0e047a08b0d7cc914385584296eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ChainIK3D.svg b/src/resources/icons/godot/ChainIK3D.svg new file mode 100644 index 00000000..9247410c --- /dev/null +++ b/src/resources/icons/godot/ChainIK3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ChainIK3D.svg.import b/src/resources/icons/godot/ChainIK3D.svg.import new file mode 100644 index 00000000..8a28b576 --- /dev/null +++ b/src/resources/icons/godot/ChainIK3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw05bi8ud8os2" +path="res://.godot/imported/ChainIK3D.svg-fea99493ad6f744cba95c2ed2a4c6b31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ChainIK3D.svg" +dest_files=["res://.godot/imported/ChainIK3D.svg-fea99493ad6f744cba95c2ed2a4c6b31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CharacterBody2D.svg b/src/resources/icons/godot/CharacterBody2D.svg new file mode 100644 index 00000000..917bc0ed --- /dev/null +++ b/src/resources/icons/godot/CharacterBody2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CharacterBody2D.svg.import b/src/resources/icons/godot/CharacterBody2D.svg.import new file mode 100644 index 00000000..ed18474c --- /dev/null +++ b/src/resources/icons/godot/CharacterBody2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u5tccjdy1trd" +path="res://.godot/imported/CharacterBody2D.svg-6307f29679b555888a682066392a4bab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CharacterBody2D.svg" +dest_files=["res://.godot/imported/CharacterBody2D.svg-6307f29679b555888a682066392a4bab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CharacterBody3D.svg b/src/resources/icons/godot/CharacterBody3D.svg new file mode 100644 index 00000000..887e276a --- /dev/null +++ b/src/resources/icons/godot/CharacterBody3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CharacterBody3D.svg.import b/src/resources/icons/godot/CharacterBody3D.svg.import new file mode 100644 index 00000000..ee00dd9d --- /dev/null +++ b/src/resources/icons/godot/CharacterBody3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx7irvaofgk6n" +path="res://.godot/imported/CharacterBody3D.svg-5f4e21cf2c5de8d0cb6545af2036d208.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CharacterBody3D.svg" +dest_files=["res://.godot/imported/CharacterBody3D.svg-5f4e21cf2c5de8d0cb6545af2036d208.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CheckBox.svg b/src/resources/icons/godot/CheckBox.svg new file mode 100644 index 00000000..c57a2341 --- /dev/null +++ b/src/resources/icons/godot/CheckBox.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CheckBox.svg.import b/src/resources/icons/godot/CheckBox.svg.import new file mode 100644 index 00000000..0ca26b77 --- /dev/null +++ b/src/resources/icons/godot/CheckBox.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ypypwi84vybs" +path="res://.godot/imported/CheckBox.svg-1392d31c03cc58cb965e9e76c18aee73.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CheckBox.svg" +dest_files=["res://.godot/imported/CheckBox.svg-1392d31c03cc58cb965e9e76c18aee73.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CheckButton.svg b/src/resources/icons/godot/CheckButton.svg new file mode 100644 index 00000000..78663b9c --- /dev/null +++ b/src/resources/icons/godot/CheckButton.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CheckButton.svg.import b/src/resources/icons/godot/CheckButton.svg.import new file mode 100644 index 00000000..87268609 --- /dev/null +++ b/src/resources/icons/godot/CheckButton.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjtm08jny22a8" +path="res://.godot/imported/CheckButton.svg-ec6bbf195421933b8f5bf76501821a24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CheckButton.svg" +dest_files=["res://.godot/imported/CheckButton.svg-ec6bbf195421933b8f5bf76501821a24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Checkerboard.svg b/src/resources/icons/godot/Checkerboard.svg new file mode 100644 index 00000000..18b67ac6 --- /dev/null +++ b/src/resources/icons/godot/Checkerboard.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Checkerboard.svg.import b/src/resources/icons/godot/Checkerboard.svg.import new file mode 100644 index 00000000..224c4553 --- /dev/null +++ b/src/resources/icons/godot/Checkerboard.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0ohjyijb2wvx" +path="res://.godot/imported/Checkerboard.svg-3374494c858a1e63ddfb70d739b2b7f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Checkerboard.svg" +dest_files=["res://.godot/imported/Checkerboard.svg-3374494c858a1e63ddfb70d739b2b7f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CircleShape2D.svg b/src/resources/icons/godot/CircleShape2D.svg new file mode 100644 index 00000000..c3760c33 --- /dev/null +++ b/src/resources/icons/godot/CircleShape2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CircleShape2D.svg.import b/src/resources/icons/godot/CircleShape2D.svg.import new file mode 100644 index 00000000..31cdb3f4 --- /dev/null +++ b/src/resources/icons/godot/CircleShape2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqyr6fjqhsimj" +path="res://.godot/imported/CircleShape2D.svg-cda7786694ea3fd6e1faade61c5e987d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CircleShape2D.svg" +dest_files=["res://.godot/imported/CircleShape2D.svg-cda7786694ea3fd6e1faade61c5e987d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ClassList.svg b/src/resources/icons/godot/ClassList.svg new file mode 100644 index 00000000..f60ad9be --- /dev/null +++ b/src/resources/icons/godot/ClassList.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ClassList.svg.import b/src/resources/icons/godot/ClassList.svg.import new file mode 100644 index 00000000..c21c1cc2 --- /dev/null +++ b/src/resources/icons/godot/ClassList.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c37fg2gb0bkqv" +path="res://.godot/imported/ClassList.svg-2b3ffc6ef782e5250a05fb5308c15669.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ClassList.svg" +dest_files=["res://.godot/imported/ClassList.svg-2b3ffc6ef782e5250a05fb5308c15669.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Clear.svg b/src/resources/icons/godot/Clear.svg new file mode 100644 index 00000000..06a3ca14 --- /dev/null +++ b/src/resources/icons/godot/Clear.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Clear.svg.import b/src/resources/icons/godot/Clear.svg.import new file mode 100644 index 00000000..d73c347b --- /dev/null +++ b/src/resources/icons/godot/Clear.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmcd1g77au1eg" +path="res://.godot/imported/Clear.svg-4a321a61ea482402d3c1662006a7ba22.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Clear.svg" +dest_files=["res://.godot/imported/Clear.svg-4a321a61ea482402d3c1662006a7ba22.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Close.svg b/src/resources/icons/godot/Close.svg new file mode 100644 index 00000000..f52657f4 --- /dev/null +++ b/src/resources/icons/godot/Close.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Close.svg.import b/src/resources/icons/godot/Close.svg.import new file mode 100644 index 00000000..2858dfcc --- /dev/null +++ b/src/resources/icons/godot/Close.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmjw8t1c6bi75" +path="res://.godot/imported/Close.svg-7830d1e4a00c3a47262369009aead594.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Close.svg" +dest_files=["res://.godot/imported/Close.svg-7830d1e4a00c3a47262369009aead594.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CodeEdit.svg b/src/resources/icons/godot/CodeEdit.svg new file mode 100644 index 00000000..915c275d --- /dev/null +++ b/src/resources/icons/godot/CodeEdit.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CodeEdit.svg.import b/src/resources/icons/godot/CodeEdit.svg.import new file mode 100644 index 00000000..b33e615d --- /dev/null +++ b/src/resources/icons/godot/CodeEdit.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc4myewbvky7a" +path="res://.godot/imported/CodeEdit.svg-b7b49233cd138e155cc9098126adb6e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CodeEdit.svg" +dest_files=["res://.godot/imported/CodeEdit.svg-b7b49233cd138e155cc9098126adb6e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CodeFoldDownArrow.svg b/src/resources/icons/godot/CodeFoldDownArrow.svg new file mode 100644 index 00000000..07d2d37f --- /dev/null +++ b/src/resources/icons/godot/CodeFoldDownArrow.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CodeFoldDownArrow.svg.import b/src/resources/icons/godot/CodeFoldDownArrow.svg.import new file mode 100644 index 00000000..2c92363f --- /dev/null +++ b/src/resources/icons/godot/CodeFoldDownArrow.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bumtc8n5fohf4" +path="res://.godot/imported/CodeFoldDownArrow.svg-0362d152866eaab0eede297dae683073.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CodeFoldDownArrow.svg" +dest_files=["res://.godot/imported/CodeFoldDownArrow.svg-0362d152866eaab0eede297dae683073.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CodeFoldedRightArrow.svg b/src/resources/icons/godot/CodeFoldedRightArrow.svg new file mode 100644 index 00000000..cd8bb131 --- /dev/null +++ b/src/resources/icons/godot/CodeFoldedRightArrow.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CodeFoldedRightArrow.svg.import b/src/resources/icons/godot/CodeFoldedRightArrow.svg.import new file mode 100644 index 00000000..1a1bd98d --- /dev/null +++ b/src/resources/icons/godot/CodeFoldedRightArrow.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drxlugmhl0gl3" +path="res://.godot/imported/CodeFoldedRightArrow.svg-d95d00523eb1a49bb7088e638aed90d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CodeFoldedRightArrow.svg" +dest_files=["res://.godot/imported/CodeFoldedRightArrow.svg-d95d00523eb1a49bb7088e638aed90d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CodeHighlighter.svg b/src/resources/icons/godot/CodeHighlighter.svg new file mode 100644 index 00000000..6101391a --- /dev/null +++ b/src/resources/icons/godot/CodeHighlighter.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CodeHighlighter.svg.import b/src/resources/icons/godot/CodeHighlighter.svg.import new file mode 100644 index 00000000..46f61877 --- /dev/null +++ b/src/resources/icons/godot/CodeHighlighter.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg1vyxbkxpd7x" +path="res://.godot/imported/CodeHighlighter.svg-06ed91fcb42487e874b701d745957d9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CodeHighlighter.svg" +dest_files=["res://.godot/imported/CodeHighlighter.svg-06ed91fcb42487e874b701d745957d9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CodeRegionFoldDownArrow.svg b/src/resources/icons/godot/CodeRegionFoldDownArrow.svg new file mode 100644 index 00000000..e03cb9ae --- /dev/null +++ b/src/resources/icons/godot/CodeRegionFoldDownArrow.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CodeRegionFoldDownArrow.svg.import b/src/resources/icons/godot/CodeRegionFoldDownArrow.svg.import new file mode 100644 index 00000000..a3ade4cf --- /dev/null +++ b/src/resources/icons/godot/CodeRegionFoldDownArrow.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djx67qjribq3f" +path="res://.godot/imported/CodeRegionFoldDownArrow.svg-e3b59c53694f7abf189fd621d5627b91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CodeRegionFoldDownArrow.svg" +dest_files=["res://.godot/imported/CodeRegionFoldDownArrow.svg-e3b59c53694f7abf189fd621d5627b91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CodeRegionFoldedRightArrow.svg b/src/resources/icons/godot/CodeRegionFoldedRightArrow.svg new file mode 100644 index 00000000..9cb49cf3 --- /dev/null +++ b/src/resources/icons/godot/CodeRegionFoldedRightArrow.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CodeRegionFoldedRightArrow.svg.import b/src/resources/icons/godot/CodeRegionFoldedRightArrow.svg.import new file mode 100644 index 00000000..93e7fe79 --- /dev/null +++ b/src/resources/icons/godot/CodeRegionFoldedRightArrow.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwxnmf8i3giho" +path="res://.godot/imported/CodeRegionFoldedRightArrow.svg-6eec1f1eff503f8ffef73928a994fb14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CodeRegionFoldedRightArrow.svg" +dest_files=["res://.godot/imported/CodeRegionFoldedRightArrow.svg-6eec1f1eff503f8ffef73928a994fb14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Collapse.svg b/src/resources/icons/godot/Collapse.svg new file mode 100644 index 00000000..f1529b57 --- /dev/null +++ b/src/resources/icons/godot/Collapse.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Collapse.svg.import b/src/resources/icons/godot/Collapse.svg.import new file mode 100644 index 00000000..0e331d3e --- /dev/null +++ b/src/resources/icons/godot/Collapse.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qeveb0gepcm1" +path="res://.godot/imported/Collapse.svg-481f213ee1edcda987542122ca913841.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Collapse.svg" +dest_files=["res://.godot/imported/Collapse.svg-481f213ee1edcda987542122ca913841.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CollapseTree.svg b/src/resources/icons/godot/CollapseTree.svg new file mode 100644 index 00000000..d353e999 --- /dev/null +++ b/src/resources/icons/godot/CollapseTree.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CollapseTree.svg.import b/src/resources/icons/godot/CollapseTree.svg.import new file mode 100644 index 00000000..2cbdbb95 --- /dev/null +++ b/src/resources/icons/godot/CollapseTree.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbg6wavg0smbc" +path="res://.godot/imported/CollapseTree.svg-31d1a09d4da4d4981ef1f6d71c46c400.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CollapseTree.svg" +dest_files=["res://.godot/imported/CollapseTree.svg-31d1a09d4da4d4981ef1f6d71c46c400.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CollisionObject2D.svg b/src/resources/icons/godot/CollisionObject2D.svg new file mode 100644 index 00000000..7e9a6735 --- /dev/null +++ b/src/resources/icons/godot/CollisionObject2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CollisionObject2D.svg.import b/src/resources/icons/godot/CollisionObject2D.svg.import new file mode 100644 index 00000000..4949ff46 --- /dev/null +++ b/src/resources/icons/godot/CollisionObject2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://726571nt4pul" +path="res://.godot/imported/CollisionObject2D.svg-a40dc2e760785d584ec4306fd88ef775.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CollisionObject2D.svg" +dest_files=["res://.godot/imported/CollisionObject2D.svg-a40dc2e760785d584ec4306fd88ef775.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CollisionObject3D.svg b/src/resources/icons/godot/CollisionObject3D.svg new file mode 100644 index 00000000..6a12215e --- /dev/null +++ b/src/resources/icons/godot/CollisionObject3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CollisionObject3D.svg.import b/src/resources/icons/godot/CollisionObject3D.svg.import new file mode 100644 index 00000000..bdebd333 --- /dev/null +++ b/src/resources/icons/godot/CollisionObject3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://balvmmd3k3rf5" +path="res://.godot/imported/CollisionObject3D.svg-b31a53bfe039ea4cc3304312a2aec8da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CollisionObject3D.svg" +dest_files=["res://.godot/imported/CollisionObject3D.svg-b31a53bfe039ea4cc3304312a2aec8da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CollisionPolygon2D.svg b/src/resources/icons/godot/CollisionPolygon2D.svg new file mode 100644 index 00000000..25f8b392 --- /dev/null +++ b/src/resources/icons/godot/CollisionPolygon2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CollisionPolygon2D.svg.import b/src/resources/icons/godot/CollisionPolygon2D.svg.import new file mode 100644 index 00000000..637b9259 --- /dev/null +++ b/src/resources/icons/godot/CollisionPolygon2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mstlrcubop6y" +path="res://.godot/imported/CollisionPolygon2D.svg-c367824e7f14605cdf71f7a57ecc8fae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CollisionPolygon2D.svg" +dest_files=["res://.godot/imported/CollisionPolygon2D.svg-c367824e7f14605cdf71f7a57ecc8fae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CollisionPolygon3D.svg b/src/resources/icons/godot/CollisionPolygon3D.svg new file mode 100644 index 00000000..9b8cf6bb --- /dev/null +++ b/src/resources/icons/godot/CollisionPolygon3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CollisionPolygon3D.svg.import b/src/resources/icons/godot/CollisionPolygon3D.svg.import new file mode 100644 index 00000000..a2772d49 --- /dev/null +++ b/src/resources/icons/godot/CollisionPolygon3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc0xfdxr8fw55" +path="res://.godot/imported/CollisionPolygon3D.svg-bbbe107d7347ffc214b8a2440086e53f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CollisionPolygon3D.svg" +dest_files=["res://.godot/imported/CollisionPolygon3D.svg-bbbe107d7347ffc214b8a2440086e53f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CollisionShape2D.svg b/src/resources/icons/godot/CollisionShape2D.svg new file mode 100644 index 00000000..4de21c11 --- /dev/null +++ b/src/resources/icons/godot/CollisionShape2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CollisionShape2D.svg.import b/src/resources/icons/godot/CollisionShape2D.svg.import new file mode 100644 index 00000000..b10cfa0d --- /dev/null +++ b/src/resources/icons/godot/CollisionShape2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coyuvk6d4m1hx" +path="res://.godot/imported/CollisionShape2D.svg-54e2ad662c306e963d6bed63285216b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CollisionShape2D.svg" +dest_files=["res://.godot/imported/CollisionShape2D.svg-54e2ad662c306e963d6bed63285216b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CollisionShape3D.svg b/src/resources/icons/godot/CollisionShape3D.svg new file mode 100644 index 00000000..05cc3734 --- /dev/null +++ b/src/resources/icons/godot/CollisionShape3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CollisionShape3D.svg.import b/src/resources/icons/godot/CollisionShape3D.svg.import new file mode 100644 index 00000000..bc0b1111 --- /dev/null +++ b/src/resources/icons/godot/CollisionShape3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dne85si18hukb" +path="res://.godot/imported/CollisionShape3D.svg-fa272df0e54b4b552196366053ce1a0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CollisionShape3D.svg" +dest_files=["res://.godot/imported/CollisionShape3D.svg-fa272df0e54b4b552196366053ce1a0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Color.svg b/src/resources/icons/godot/Color.svg new file mode 100644 index 00000000..1c42243c --- /dev/null +++ b/src/resources/icons/godot/Color.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Color.svg.import b/src/resources/icons/godot/Color.svg.import new file mode 100644 index 00000000..64cb4fec --- /dev/null +++ b/src/resources/icons/godot/Color.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://joilo8811u7d" +path="res://.godot/imported/Color.svg-7f2b33c6fc000e9ca560ed0aefaadf34.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Color.svg" +dest_files=["res://.godot/imported/Color.svg-7f2b33c6fc000e9ca560ed0aefaadf34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ColorPick.svg b/src/resources/icons/godot/ColorPick.svg new file mode 100644 index 00000000..a56e868d --- /dev/null +++ b/src/resources/icons/godot/ColorPick.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ColorPick.svg.import b/src/resources/icons/godot/ColorPick.svg.import new file mode 100644 index 00000000..212c5d0c --- /dev/null +++ b/src/resources/icons/godot/ColorPick.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbimc24cm8tl2" +path="res://.godot/imported/ColorPick.svg-a4fce6debadced02597c18c8d4f846d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ColorPick.svg" +dest_files=["res://.godot/imported/ColorPick.svg-a4fce6debadced02597c18c8d4f846d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ColorPicker.svg b/src/resources/icons/godot/ColorPicker.svg new file mode 100644 index 00000000..ff25482b --- /dev/null +++ b/src/resources/icons/godot/ColorPicker.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ColorPicker.svg.import b/src/resources/icons/godot/ColorPicker.svg.import new file mode 100644 index 00000000..76d993a5 --- /dev/null +++ b/src/resources/icons/godot/ColorPicker.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg5nnvjci4m6n" +path="res://.godot/imported/ColorPicker.svg-62fc345cfdd039cb706143763ae15f9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ColorPicker.svg" +dest_files=["res://.godot/imported/ColorPicker.svg-62fc345cfdd039cb706143763ae15f9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ColorPickerBarArrow.svg b/src/resources/icons/godot/ColorPickerBarArrow.svg new file mode 100644 index 00000000..51aed983 --- /dev/null +++ b/src/resources/icons/godot/ColorPickerBarArrow.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ColorPickerBarArrow.svg.import b/src/resources/icons/godot/ColorPickerBarArrow.svg.import new file mode 100644 index 00000000..15a14a1b --- /dev/null +++ b/src/resources/icons/godot/ColorPickerBarArrow.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bettd0bp3j2k" +path="res://.godot/imported/ColorPickerBarArrow.svg-75d9497316ce7c9a2b332584fa42a2cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ColorPickerBarArrow.svg" +dest_files=["res://.godot/imported/ColorPickerBarArrow.svg-75d9497316ce7c9a2b332584fa42a2cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ColorPickerButton.svg b/src/resources/icons/godot/ColorPickerButton.svg new file mode 100644 index 00000000..b43d363e --- /dev/null +++ b/src/resources/icons/godot/ColorPickerButton.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ColorPickerButton.svg.import b/src/resources/icons/godot/ColorPickerButton.svg.import new file mode 100644 index 00000000..a65ee5d7 --- /dev/null +++ b/src/resources/icons/godot/ColorPickerButton.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0r0cbipoegq4" +path="res://.godot/imported/ColorPickerButton.svg-d10c2e59931f39a0dbc8b1c8ec4bf076.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ColorPickerButton.svg" +dest_files=["res://.godot/imported/ColorPickerButton.svg-d10c2e59931f39a0dbc8b1c8ec4bf076.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ColorRect.svg b/src/resources/icons/godot/ColorRect.svg new file mode 100644 index 00000000..176ee60d --- /dev/null +++ b/src/resources/icons/godot/ColorRect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ColorRect.svg.import b/src/resources/icons/godot/ColorRect.svg.import new file mode 100644 index 00000000..91cbb65d --- /dev/null +++ b/src/resources/icons/godot/ColorRect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8jck5owqe5hp" +path="res://.godot/imported/ColorRect.svg-e1d60c8704a53fc4953defe7d8ec0fad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ColorRect.svg" +dest_files=["res://.godot/imported/ColorRect.svg-e1d60c8704a53fc4953defe7d8ec0fad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ColorTrackVu.svg b/src/resources/icons/godot/ColorTrackVu.svg new file mode 100644 index 00000000..e449c3db --- /dev/null +++ b/src/resources/icons/godot/ColorTrackVu.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ColorTrackVu.svg.import b/src/resources/icons/godot/ColorTrackVu.svg.import new file mode 100644 index 00000000..691a1a57 --- /dev/null +++ b/src/resources/icons/godot/ColorTrackVu.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pxii3avme4ax" +path="res://.godot/imported/ColorTrackVu.svg-05f77c615a50ff226732c08d53ae21d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ColorTrackVu.svg" +dest_files=["res://.godot/imported/ColorTrackVu.svg-05f77c615a50ff226732c08d53ae21d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CombineLines.svg b/src/resources/icons/godot/CombineLines.svg new file mode 100644 index 00000000..b133e8be --- /dev/null +++ b/src/resources/icons/godot/CombineLines.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CombineLines.svg.import b/src/resources/icons/godot/CombineLines.svg.import new file mode 100644 index 00000000..bd75fece --- /dev/null +++ b/src/resources/icons/godot/CombineLines.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bra6sm43p86o5" +path="res://.godot/imported/CombineLines.svg-ecfcc58236c7a44cace0bae5c4794022.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CombineLines.svg" +dest_files=["res://.godot/imported/CombineLines.svg-ecfcc58236c7a44cace0bae5c4794022.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CompressedTexture2D.svg b/src/resources/icons/godot/CompressedTexture2D.svg new file mode 100644 index 00000000..51e8c7e9 --- /dev/null +++ b/src/resources/icons/godot/CompressedTexture2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CompressedTexture2D.svg.import b/src/resources/icons/godot/CompressedTexture2D.svg.import new file mode 100644 index 00000000..e790d553 --- /dev/null +++ b/src/resources/icons/godot/CompressedTexture2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drdmjogo0g14n" +path="res://.godot/imported/CompressedTexture2D.svg-4218c84af5717c71f898bc2323014a66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CompressedTexture2D.svg" +dest_files=["res://.godot/imported/CompressedTexture2D.svg-4218c84af5717c71f898bc2323014a66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CompressedTexture3D.svg b/src/resources/icons/godot/CompressedTexture3D.svg new file mode 100644 index 00000000..5db72b8f --- /dev/null +++ b/src/resources/icons/godot/CompressedTexture3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CompressedTexture3D.svg.import b/src/resources/icons/godot/CompressedTexture3D.svg.import new file mode 100644 index 00000000..801f060c --- /dev/null +++ b/src/resources/icons/godot/CompressedTexture3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btrhwyvg516qb" +path="res://.godot/imported/CompressedTexture3D.svg-cc24ce444b75935c1c85ffcedd507436.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CompressedTexture3D.svg" +dest_files=["res://.godot/imported/CompressedTexture3D.svg-cc24ce444b75935c1c85ffcedd507436.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ConcavePolygonShape2D.svg b/src/resources/icons/godot/ConcavePolygonShape2D.svg new file mode 100644 index 00000000..cd57109c --- /dev/null +++ b/src/resources/icons/godot/ConcavePolygonShape2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ConcavePolygonShape2D.svg.import b/src/resources/icons/godot/ConcavePolygonShape2D.svg.import new file mode 100644 index 00000000..017f9f09 --- /dev/null +++ b/src/resources/icons/godot/ConcavePolygonShape2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw5uv3udpakgi" +path="res://.godot/imported/ConcavePolygonShape2D.svg-3ad56eec8726cae9ac52c023529810ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ConcavePolygonShape2D.svg" +dest_files=["res://.godot/imported/ConcavePolygonShape2D.svg-3ad56eec8726cae9ac52c023529810ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ConcavePolygonShape3D.svg b/src/resources/icons/godot/ConcavePolygonShape3D.svg new file mode 100644 index 00000000..36b34796 --- /dev/null +++ b/src/resources/icons/godot/ConcavePolygonShape3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ConcavePolygonShape3D.svg.import b/src/resources/icons/godot/ConcavePolygonShape3D.svg.import new file mode 100644 index 00000000..d68d528a --- /dev/null +++ b/src/resources/icons/godot/ConcavePolygonShape3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3b33hpxgnvk5" +path="res://.godot/imported/ConcavePolygonShape3D.svg-c51fc66d718fb012c43bf546823120d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ConcavePolygonShape3D.svg" +dest_files=["res://.godot/imported/ConcavePolygonShape3D.svg-c51fc66d718fb012c43bf546823120d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ConeTwistJoint3D.svg b/src/resources/icons/godot/ConeTwistJoint3D.svg new file mode 100644 index 00000000..54c7766c --- /dev/null +++ b/src/resources/icons/godot/ConeTwistJoint3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ConeTwistJoint3D.svg.import b/src/resources/icons/godot/ConeTwistJoint3D.svg.import new file mode 100644 index 00000000..15175ac7 --- /dev/null +++ b/src/resources/icons/godot/ConeTwistJoint3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0j7aufknxig3" +path="res://.godot/imported/ConeTwistJoint3D.svg-16e08223cbefdd6698ccba52314e81bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ConeTwistJoint3D.svg" +dest_files=["res://.godot/imported/ConeTwistJoint3D.svg-16e08223cbefdd6698ccba52314e81bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ConfirmationDialog.svg b/src/resources/icons/godot/ConfirmationDialog.svg new file mode 100644 index 00000000..75711b6a --- /dev/null +++ b/src/resources/icons/godot/ConfirmationDialog.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ConfirmationDialog.svg.import b/src/resources/icons/godot/ConfirmationDialog.svg.import new file mode 100644 index 00000000..de3210d8 --- /dev/null +++ b/src/resources/icons/godot/ConfirmationDialog.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rvdymgyeciq4" +path="res://.godot/imported/ConfirmationDialog.svg-eda047ef3b66b58123cb8a78b67cd7c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ConfirmationDialog.svg" +dest_files=["res://.godot/imported/ConfirmationDialog.svg-eda047ef3b66b58123cb8a78b67cd7c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Container.svg b/src/resources/icons/godot/Container.svg new file mode 100644 index 00000000..29058b61 --- /dev/null +++ b/src/resources/icons/godot/Container.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Container.svg.import b/src/resources/icons/godot/Container.svg.import new file mode 100644 index 00000000..ac1c4405 --- /dev/null +++ b/src/resources/icons/godot/Container.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dluf5b7tis3ug" +path="res://.godot/imported/Container.svg-78adecff9dceb29f22fa3c852d32e64d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Container.svg" +dest_files=["res://.godot/imported/Container.svg-78adecff9dceb29f22fa3c852d32e64d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ContainerLayout.svg b/src/resources/icons/godot/ContainerLayout.svg new file mode 100644 index 00000000..0fc05356 --- /dev/null +++ b/src/resources/icons/godot/ContainerLayout.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ContainerLayout.svg.import b/src/resources/icons/godot/ContainerLayout.svg.import new file mode 100644 index 00000000..c3788afb --- /dev/null +++ b/src/resources/icons/godot/ContainerLayout.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwiv1c4wgdscr" +path="res://.godot/imported/ContainerLayout.svg-c16e9844270bc03c4a6e004b3f1dd1a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ContainerLayout.svg" +dest_files=["res://.godot/imported/ContainerLayout.svg-c16e9844270bc03c4a6e004b3f1dd1a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Control.svg b/src/resources/icons/godot/Control.svg new file mode 100644 index 00000000..6fb41e12 --- /dev/null +++ b/src/resources/icons/godot/Control.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Control.svg.import b/src/resources/icons/godot/Control.svg.import new file mode 100644 index 00000000..fa0553cd --- /dev/null +++ b/src/resources/icons/godot/Control.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b05p40u13l47" +path="res://.godot/imported/Control.svg-597581c933a05904414fb9afe4871da8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Control.svg" +dest_files=["res://.godot/imported/Control.svg-597581c933a05904414fb9afe4871da8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignBottomLeft.svg b/src/resources/icons/godot/ControlAlignBottomLeft.svg new file mode 100644 index 00000000..c52df534 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignBottomLeft.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignBottomLeft.svg.import b/src/resources/icons/godot/ControlAlignBottomLeft.svg.import new file mode 100644 index 00000000..395eb7f8 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignBottomLeft.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cktcejuulhppi" +path="res://.godot/imported/ControlAlignBottomLeft.svg-20e7a2f4b90c5163fe5e70c4e5c7813d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignBottomLeft.svg" +dest_files=["res://.godot/imported/ControlAlignBottomLeft.svg-20e7a2f4b90c5163fe5e70c4e5c7813d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignBottomRight.svg b/src/resources/icons/godot/ControlAlignBottomRight.svg new file mode 100644 index 00000000..3d4da209 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignBottomRight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignBottomRight.svg.import b/src/resources/icons/godot/ControlAlignBottomRight.svg.import new file mode 100644 index 00000000..933c7727 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignBottomRight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0ngphd7exops" +path="res://.godot/imported/ControlAlignBottomRight.svg-237ea2880bc0d313a43b653681f77a31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignBottomRight.svg" +dest_files=["res://.godot/imported/ControlAlignBottomRight.svg-237ea2880bc0d313a43b653681f77a31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignBottomWide.svg b/src/resources/icons/godot/ControlAlignBottomWide.svg new file mode 100644 index 00000000..cc65de39 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignBottomWide.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignBottomWide.svg.import b/src/resources/icons/godot/ControlAlignBottomWide.svg.import new file mode 100644 index 00000000..b1f7fdae --- /dev/null +++ b/src/resources/icons/godot/ControlAlignBottomWide.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgerwnyd2mwfx" +path="res://.godot/imported/ControlAlignBottomWide.svg-18827ef604d66d459b8e657c08676df0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignBottomWide.svg" +dest_files=["res://.godot/imported/ControlAlignBottomWide.svg-18827ef604d66d459b8e657c08676df0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignCenter.svg b/src/resources/icons/godot/ControlAlignCenter.svg new file mode 100644 index 00000000..f8495c44 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignCenter.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignCenter.svg.import b/src/resources/icons/godot/ControlAlignCenter.svg.import new file mode 100644 index 00000000..e1e16ff7 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignCenter.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bynqknubvx01f" +path="res://.godot/imported/ControlAlignCenter.svg-a250fa6e203fb9ff1414b6c69b6a10b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignCenter.svg" +dest_files=["res://.godot/imported/ControlAlignCenter.svg-a250fa6e203fb9ff1414b6c69b6a10b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignCenterBottom.svg b/src/resources/icons/godot/ControlAlignCenterBottom.svg new file mode 100644 index 00000000..3a3d4d83 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignCenterBottom.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignCenterBottom.svg.import b/src/resources/icons/godot/ControlAlignCenterBottom.svg.import new file mode 100644 index 00000000..f67e6fc1 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignCenterBottom.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwinvauktboy2" +path="res://.godot/imported/ControlAlignCenterBottom.svg-8bfd940ca6e2f754016febfc0ebcebfb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignCenterBottom.svg" +dest_files=["res://.godot/imported/ControlAlignCenterBottom.svg-8bfd940ca6e2f754016febfc0ebcebfb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignCenterLeft.svg b/src/resources/icons/godot/ControlAlignCenterLeft.svg new file mode 100644 index 00000000..6b9509b8 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignCenterLeft.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignCenterLeft.svg.import b/src/resources/icons/godot/ControlAlignCenterLeft.svg.import new file mode 100644 index 00000000..6c6f4217 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignCenterLeft.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ofn131m50243" +path="res://.godot/imported/ControlAlignCenterLeft.svg-a53708760de30f255671d2f402727957.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignCenterLeft.svg" +dest_files=["res://.godot/imported/ControlAlignCenterLeft.svg-a53708760de30f255671d2f402727957.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignCenterRight.svg b/src/resources/icons/godot/ControlAlignCenterRight.svg new file mode 100644 index 00000000..d9e5a11e --- /dev/null +++ b/src/resources/icons/godot/ControlAlignCenterRight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignCenterRight.svg.import b/src/resources/icons/godot/ControlAlignCenterRight.svg.import new file mode 100644 index 00000000..86d2a2cf --- /dev/null +++ b/src/resources/icons/godot/ControlAlignCenterRight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b43x4eyirrbna" +path="res://.godot/imported/ControlAlignCenterRight.svg-08c49893c4a58aa2c51500ac92cbed19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignCenterRight.svg" +dest_files=["res://.godot/imported/ControlAlignCenterRight.svg-08c49893c4a58aa2c51500ac92cbed19.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignCenterTop.svg b/src/resources/icons/godot/ControlAlignCenterTop.svg new file mode 100644 index 00000000..2902e71b --- /dev/null +++ b/src/resources/icons/godot/ControlAlignCenterTop.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignCenterTop.svg.import b/src/resources/icons/godot/ControlAlignCenterTop.svg.import new file mode 100644 index 00000000..f4a0056d --- /dev/null +++ b/src/resources/icons/godot/ControlAlignCenterTop.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckxdul312oy2d" +path="res://.godot/imported/ControlAlignCenterTop.svg-3b6a508bc49c348ccf67dbb19d7681d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignCenterTop.svg" +dest_files=["res://.godot/imported/ControlAlignCenterTop.svg-3b6a508bc49c348ccf67dbb19d7681d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignFullRect.svg b/src/resources/icons/godot/ControlAlignFullRect.svg new file mode 100644 index 00000000..b967bf4f --- /dev/null +++ b/src/resources/icons/godot/ControlAlignFullRect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignFullRect.svg.import b/src/resources/icons/godot/ControlAlignFullRect.svg.import new file mode 100644 index 00000000..b65286a1 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignFullRect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp67gvra3xahx" +path="res://.godot/imported/ControlAlignFullRect.svg-526d5f51bbb8d497f4f006a7a5a3e42c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignFullRect.svg" +dest_files=["res://.godot/imported/ControlAlignFullRect.svg-526d5f51bbb8d497f4f006a7a5a3e42c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignHCenterWide.svg b/src/resources/icons/godot/ControlAlignHCenterWide.svg new file mode 100644 index 00000000..bd25cc71 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignHCenterWide.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignHCenterWide.svg.import b/src/resources/icons/godot/ControlAlignHCenterWide.svg.import new file mode 100644 index 00000000..8879dd1b --- /dev/null +++ b/src/resources/icons/godot/ControlAlignHCenterWide.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://x5voufrwle7p" +path="res://.godot/imported/ControlAlignHCenterWide.svg-573bb8ed9ca0e831e2571e6370540001.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignHCenterWide.svg" +dest_files=["res://.godot/imported/ControlAlignHCenterWide.svg-573bb8ed9ca0e831e2571e6370540001.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignLeftWide.svg b/src/resources/icons/godot/ControlAlignLeftWide.svg new file mode 100644 index 00000000..d21342db --- /dev/null +++ b/src/resources/icons/godot/ControlAlignLeftWide.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignLeftWide.svg.import b/src/resources/icons/godot/ControlAlignLeftWide.svg.import new file mode 100644 index 00000000..40d79042 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignLeftWide.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://266nxdx1nkql" +path="res://.godot/imported/ControlAlignLeftWide.svg-05647068f76db229daf72ac71774398a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignLeftWide.svg" +dest_files=["res://.godot/imported/ControlAlignLeftWide.svg-05647068f76db229daf72ac71774398a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignRightWide.svg b/src/resources/icons/godot/ControlAlignRightWide.svg new file mode 100644 index 00000000..cdfdf702 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignRightWide.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignRightWide.svg.import b/src/resources/icons/godot/ControlAlignRightWide.svg.import new file mode 100644 index 00000000..f688583b --- /dev/null +++ b/src/resources/icons/godot/ControlAlignRightWide.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bah0v6dg6fmmx" +path="res://.godot/imported/ControlAlignRightWide.svg-4137af9705fbe96b4fe10413b489e8f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignRightWide.svg" +dest_files=["res://.godot/imported/ControlAlignRightWide.svg-4137af9705fbe96b4fe10413b489e8f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignTopLeft.svg b/src/resources/icons/godot/ControlAlignTopLeft.svg new file mode 100644 index 00000000..8d814893 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignTopLeft.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignTopLeft.svg.import b/src/resources/icons/godot/ControlAlignTopLeft.svg.import new file mode 100644 index 00000000..49acfb9f --- /dev/null +++ b/src/resources/icons/godot/ControlAlignTopLeft.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmd0w6qfgk4vu" +path="res://.godot/imported/ControlAlignTopLeft.svg-602aecd715cd98b4d5730bdb57c67e80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignTopLeft.svg" +dest_files=["res://.godot/imported/ControlAlignTopLeft.svg-602aecd715cd98b4d5730bdb57c67e80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignTopRight.svg b/src/resources/icons/godot/ControlAlignTopRight.svg new file mode 100644 index 00000000..4f4456b2 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignTopRight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignTopRight.svg.import b/src/resources/icons/godot/ControlAlignTopRight.svg.import new file mode 100644 index 00000000..4481d282 --- /dev/null +++ b/src/resources/icons/godot/ControlAlignTopRight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chbatlkr61sio" +path="res://.godot/imported/ControlAlignTopRight.svg-6c61dbf1c665418b9026dd69717eba7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignTopRight.svg" +dest_files=["res://.godot/imported/ControlAlignTopRight.svg-6c61dbf1c665418b9026dd69717eba7a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignTopWide.svg b/src/resources/icons/godot/ControlAlignTopWide.svg new file mode 100644 index 00000000..ff31beca --- /dev/null +++ b/src/resources/icons/godot/ControlAlignTopWide.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignTopWide.svg.import b/src/resources/icons/godot/ControlAlignTopWide.svg.import new file mode 100644 index 00000000..cf7ad4de --- /dev/null +++ b/src/resources/icons/godot/ControlAlignTopWide.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc1wytytkmrul" +path="res://.godot/imported/ControlAlignTopWide.svg-2eb03a955f1e5c30c5dd3cb079b04912.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignTopWide.svg" +dest_files=["res://.godot/imported/ControlAlignTopWide.svg-2eb03a955f1e5c30c5dd3cb079b04912.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlAlignVCenterWide.svg b/src/resources/icons/godot/ControlAlignVCenterWide.svg new file mode 100644 index 00000000..d702b65f --- /dev/null +++ b/src/resources/icons/godot/ControlAlignVCenterWide.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlAlignVCenterWide.svg.import b/src/resources/icons/godot/ControlAlignVCenterWide.svg.import new file mode 100644 index 00000000..fd04cabc --- /dev/null +++ b/src/resources/icons/godot/ControlAlignVCenterWide.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co1jebckad4pr" +path="res://.godot/imported/ControlAlignVCenterWide.svg-8764749e686c62a2044250285c1c1c3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlAlignVCenterWide.svg" +dest_files=["res://.godot/imported/ControlAlignVCenterWide.svg-8764749e686c62a2044250285c1c1c3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ControlLayout.svg b/src/resources/icons/godot/ControlLayout.svg new file mode 100644 index 00000000..9575d07c --- /dev/null +++ b/src/resources/icons/godot/ControlLayout.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ControlLayout.svg.import b/src/resources/icons/godot/ControlLayout.svg.import new file mode 100644 index 00000000..15f358e6 --- /dev/null +++ b/src/resources/icons/godot/ControlLayout.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dijr5r6vmhg43" +path="res://.godot/imported/ControlLayout.svg-f88e6b217d63a91ef4dd95e4bd2c3d7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ControlLayout.svg" +dest_files=["res://.godot/imported/ControlLayout.svg-f88e6b217d63a91ef4dd95e4bd2c3d7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ConvertTransformModifier3D.svg b/src/resources/icons/godot/ConvertTransformModifier3D.svg new file mode 100644 index 00000000..0b5976d2 --- /dev/null +++ b/src/resources/icons/godot/ConvertTransformModifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ConvertTransformModifier3D.svg.import b/src/resources/icons/godot/ConvertTransformModifier3D.svg.import new file mode 100644 index 00000000..11913559 --- /dev/null +++ b/src/resources/icons/godot/ConvertTransformModifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt1cavvhcnr8" +path="res://.godot/imported/ConvertTransformModifier3D.svg-813f0188d7e2e16368d945487b7d10f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ConvertTransformModifier3D.svg" +dest_files=["res://.godot/imported/ConvertTransformModifier3D.svg-813f0188d7e2e16368d945487b7d10f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ConvexPolygonShape2D.svg b/src/resources/icons/godot/ConvexPolygonShape2D.svg new file mode 100644 index 00000000..1448e169 --- /dev/null +++ b/src/resources/icons/godot/ConvexPolygonShape2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ConvexPolygonShape2D.svg.import b/src/resources/icons/godot/ConvexPolygonShape2D.svg.import new file mode 100644 index 00000000..d4b42e26 --- /dev/null +++ b/src/resources/icons/godot/ConvexPolygonShape2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dflxasbx7a37a" +path="res://.godot/imported/ConvexPolygonShape2D.svg-f2ef55667a656849edc6bf1bf7d30a91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ConvexPolygonShape2D.svg" +dest_files=["res://.godot/imported/ConvexPolygonShape2D.svg-f2ef55667a656849edc6bf1bf7d30a91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ConvexPolygonShape3D.svg b/src/resources/icons/godot/ConvexPolygonShape3D.svg new file mode 100644 index 00000000..8f3cac5e --- /dev/null +++ b/src/resources/icons/godot/ConvexPolygonShape3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ConvexPolygonShape3D.svg.import b/src/resources/icons/godot/ConvexPolygonShape3D.svg.import new file mode 100644 index 00000000..0c066ff3 --- /dev/null +++ b/src/resources/icons/godot/ConvexPolygonShape3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cihlfmeuk177p" +path="res://.godot/imported/ConvexPolygonShape3D.svg-479b6567bb7d5b26faae63fecfa239a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ConvexPolygonShape3D.svg" +dest_files=["res://.godot/imported/ConvexPolygonShape3D.svg-479b6567bb7d5b26faae63fecfa239a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CopyNodePath.svg b/src/resources/icons/godot/CopyNodePath.svg new file mode 100644 index 00000000..6f0e3bc6 --- /dev/null +++ b/src/resources/icons/godot/CopyNodePath.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CopyNodePath.svg.import b/src/resources/icons/godot/CopyNodePath.svg.import new file mode 100644 index 00000000..36ac58d8 --- /dev/null +++ b/src/resources/icons/godot/CopyNodePath.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c443jcrqm2lyg" +path="res://.godot/imported/CopyNodePath.svg-825f71422414d26bbc39b1f91f6d7cd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CopyNodePath.svg" +dest_files=["res://.godot/imported/CopyNodePath.svg-825f71422414d26bbc39b1f91f6d7cd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CopyTransformModifier3D.svg b/src/resources/icons/godot/CopyTransformModifier3D.svg new file mode 100644 index 00000000..2b87f37a --- /dev/null +++ b/src/resources/icons/godot/CopyTransformModifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CopyTransformModifier3D.svg.import b/src/resources/icons/godot/CopyTransformModifier3D.svg.import new file mode 100644 index 00000000..4341c076 --- /dev/null +++ b/src/resources/icons/godot/CopyTransformModifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvfxubp8ultc8" +path="res://.godot/imported/CopyTransformModifier3D.svg-7d2f24c60b29442a93658ecd3b508a3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CopyTransformModifier3D.svg" +dest_files=["res://.godot/imported/CopyTransformModifier3D.svg-7d2f24c60b29442a93658ecd3b508a3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CreateNewSceneFrom.svg b/src/resources/icons/godot/CreateNewSceneFrom.svg new file mode 100644 index 00000000..c202826b --- /dev/null +++ b/src/resources/icons/godot/CreateNewSceneFrom.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CreateNewSceneFrom.svg.import b/src/resources/icons/godot/CreateNewSceneFrom.svg.import new file mode 100644 index 00000000..3409c3aa --- /dev/null +++ b/src/resources/icons/godot/CreateNewSceneFrom.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvnndv2alnsa8" +path="res://.godot/imported/CreateNewSceneFrom.svg-889f01080bc770801f0b6aab585fb7a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CreateNewSceneFrom.svg" +dest_files=["res://.godot/imported/CreateNewSceneFrom.svg-889f01080bc770801f0b6aab585fb7a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CryptoKey.svg b/src/resources/icons/godot/CryptoKey.svg new file mode 100644 index 00000000..2dc0347f --- /dev/null +++ b/src/resources/icons/godot/CryptoKey.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CryptoKey.svg.import b/src/resources/icons/godot/CryptoKey.svg.import new file mode 100644 index 00000000..b8f724c7 --- /dev/null +++ b/src/resources/icons/godot/CryptoKey.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0283krygebvw" +path="res://.godot/imported/CryptoKey.svg-5d6a0baddc8a9f929dd3934d346dba78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CryptoKey.svg" +dest_files=["res://.godot/imported/CryptoKey.svg-5d6a0baddc8a9f929dd3934d346dba78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Cubemap.svg b/src/resources/icons/godot/Cubemap.svg new file mode 100644 index 00000000..d0f35711 --- /dev/null +++ b/src/resources/icons/godot/Cubemap.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Cubemap.svg.import b/src/resources/icons/godot/Cubemap.svg.import new file mode 100644 index 00000000..db8ded97 --- /dev/null +++ b/src/resources/icons/godot/Cubemap.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3w1nf31fu7kj" +path="res://.godot/imported/Cubemap.svg-f80a389aa05242e08ce62f91fe6e949c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Cubemap.svg" +dest_files=["res://.godot/imported/Cubemap.svg-f80a389aa05242e08ce62f91fe6e949c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CubemapArray.svg b/src/resources/icons/godot/CubemapArray.svg new file mode 100644 index 00000000..62ad5a38 --- /dev/null +++ b/src/resources/icons/godot/CubemapArray.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CubemapArray.svg.import b/src/resources/icons/godot/CubemapArray.svg.import new file mode 100644 index 00000000..884646c9 --- /dev/null +++ b/src/resources/icons/godot/CubemapArray.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbhov40s54l43" +path="res://.godot/imported/CubemapArray.svg-ae1b1a12ecd8da5455ff2c121fe18557.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CubemapArray.svg" +dest_files=["res://.godot/imported/CubemapArray.svg-ae1b1a12ecd8da5455ff2c121fe18557.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Curve.svg b/src/resources/icons/godot/Curve.svg new file mode 100644 index 00000000..bdaf4798 --- /dev/null +++ b/src/resources/icons/godot/Curve.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Curve.svg.import b/src/resources/icons/godot/Curve.svg.import new file mode 100644 index 00000000..f91f73d3 --- /dev/null +++ b/src/resources/icons/godot/Curve.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd4bx5m8auwnm" +path="res://.godot/imported/Curve.svg-4c04fef00fd03e34cc0f60a9b6f26013.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Curve.svg" +dest_files=["res://.godot/imported/Curve.svg-4c04fef00fd03e34cc0f60a9b6f26013.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Curve2D.svg b/src/resources/icons/godot/Curve2D.svg new file mode 100644 index 00000000..a473518c --- /dev/null +++ b/src/resources/icons/godot/Curve2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Curve2D.svg.import b/src/resources/icons/godot/Curve2D.svg.import new file mode 100644 index 00000000..c91c528a --- /dev/null +++ b/src/resources/icons/godot/Curve2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cck7bvqrg6o77" +path="res://.godot/imported/Curve2D.svg-c97f50cd3f2bc18b7d1469603f24a46a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Curve2D.svg" +dest_files=["res://.godot/imported/Curve2D.svg-c97f50cd3f2bc18b7d1469603f24a46a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Curve3D.svg b/src/resources/icons/godot/Curve3D.svg new file mode 100644 index 00000000..c6eddc6c --- /dev/null +++ b/src/resources/icons/godot/Curve3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Curve3D.svg.import b/src/resources/icons/godot/Curve3D.svg.import new file mode 100644 index 00000000..c871f250 --- /dev/null +++ b/src/resources/icons/godot/Curve3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgoeiy7sxppwl" +path="res://.godot/imported/Curve3D.svg-aa9a1f0640cfea11280e1a791beed0d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Curve3D.svg" +dest_files=["res://.godot/imported/Curve3D.svg-aa9a1f0640cfea11280e1a791beed0d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveCenter.svg b/src/resources/icons/godot/CurveCenter.svg new file mode 100644 index 00000000..3272ca3f --- /dev/null +++ b/src/resources/icons/godot/CurveCenter.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveCenter.svg.import b/src/resources/icons/godot/CurveCenter.svg.import new file mode 100644 index 00000000..bcd9f04d --- /dev/null +++ b/src/resources/icons/godot/CurveCenter.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds34jbsvtgtfx" +path="res://.godot/imported/CurveCenter.svg-b0c0cace4c313affaf08fcea6bba3df9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveCenter.svg" +dest_files=["res://.godot/imported/CurveCenter.svg-b0c0cace4c313affaf08fcea6bba3df9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveClose.svg b/src/resources/icons/godot/CurveClose.svg new file mode 100644 index 00000000..3454bfed --- /dev/null +++ b/src/resources/icons/godot/CurveClose.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveClose.svg.import b/src/resources/icons/godot/CurveClose.svg.import new file mode 100644 index 00000000..1c5691b1 --- /dev/null +++ b/src/resources/icons/godot/CurveClose.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3dx71t0h8jie" +path="res://.godot/imported/CurveClose.svg-7b1ad15f7190008610f010abe635ce13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveClose.svg" +dest_files=["res://.godot/imported/CurveClose.svg-7b1ad15f7190008610f010abe635ce13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveConstant.svg b/src/resources/icons/godot/CurveConstant.svg new file mode 100644 index 00000000..5efd6a7c --- /dev/null +++ b/src/resources/icons/godot/CurveConstant.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveConstant.svg.import b/src/resources/icons/godot/CurveConstant.svg.import new file mode 100644 index 00000000..afaef21b --- /dev/null +++ b/src/resources/icons/godot/CurveConstant.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc6owegvnlcdv" +path="res://.godot/imported/CurveConstant.svg-d6e146715016b4c57f95e58d42d970ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveConstant.svg" +dest_files=["res://.godot/imported/CurveConstant.svg-d6e146715016b4c57f95e58d42d970ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveCreate.svg b/src/resources/icons/godot/CurveCreate.svg new file mode 100644 index 00000000..8bb49cd8 --- /dev/null +++ b/src/resources/icons/godot/CurveCreate.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveCreate.svg.import b/src/resources/icons/godot/CurveCreate.svg.import new file mode 100644 index 00000000..78ea4128 --- /dev/null +++ b/src/resources/icons/godot/CurveCreate.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b76fmdj078xau" +path="res://.godot/imported/CurveCreate.svg-1289b928553c434dd44aee692623de40.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveCreate.svg" +dest_files=["res://.godot/imported/CurveCreate.svg-1289b928553c434dd44aee692623de40.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveCurve.svg b/src/resources/icons/godot/CurveCurve.svg new file mode 100644 index 00000000..73c42ff0 --- /dev/null +++ b/src/resources/icons/godot/CurveCurve.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveCurve.svg.import b/src/resources/icons/godot/CurveCurve.svg.import new file mode 100644 index 00000000..8a84355c --- /dev/null +++ b/src/resources/icons/godot/CurveCurve.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duifvqv3x11t" +path="res://.godot/imported/CurveCurve.svg-a5c0f09726a923d57a5191cae5d01b13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveCurve.svg" +dest_files=["res://.godot/imported/CurveCurve.svg-a5c0f09726a923d57a5191cae5d01b13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveDelete.svg b/src/resources/icons/godot/CurveDelete.svg new file mode 100644 index 00000000..a67031ab --- /dev/null +++ b/src/resources/icons/godot/CurveDelete.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveDelete.svg.import b/src/resources/icons/godot/CurveDelete.svg.import new file mode 100644 index 00000000..8cb2ea98 --- /dev/null +++ b/src/resources/icons/godot/CurveDelete.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k4mbjj8r7nt2" +path="res://.godot/imported/CurveDelete.svg-f9a9f83426507e76e2d7b6999c9071f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveDelete.svg" +dest_files=["res://.godot/imported/CurveDelete.svg-f9a9f83426507e76e2d7b6999c9071f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveEdit.svg b/src/resources/icons/godot/CurveEdit.svg new file mode 100644 index 00000000..b8c0a0d4 --- /dev/null +++ b/src/resources/icons/godot/CurveEdit.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveEdit.svg.import b/src/resources/icons/godot/CurveEdit.svg.import new file mode 100644 index 00000000..394d3882 --- /dev/null +++ b/src/resources/icons/godot/CurveEdit.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ngg01ay18h2y" +path="res://.godot/imported/CurveEdit.svg-634e5b97909ccb60643200e6e3538c1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveEdit.svg" +dest_files=["res://.godot/imported/CurveEdit.svg-634e5b97909ccb60643200e6e3538c1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveIn.svg b/src/resources/icons/godot/CurveIn.svg new file mode 100644 index 00000000..2ce1e7d4 --- /dev/null +++ b/src/resources/icons/godot/CurveIn.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveIn.svg.import b/src/resources/icons/godot/CurveIn.svg.import new file mode 100644 index 00000000..9c102392 --- /dev/null +++ b/src/resources/icons/godot/CurveIn.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6vgekpex6p1e" +path="res://.godot/imported/CurveIn.svg-97ae54560e520e355e6e948d85348c63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveIn.svg" +dest_files=["res://.godot/imported/CurveIn.svg-97ae54560e520e355e6e948d85348c63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveInOut.svg b/src/resources/icons/godot/CurveInOut.svg new file mode 100644 index 00000000..244e4319 --- /dev/null +++ b/src/resources/icons/godot/CurveInOut.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveInOut.svg.import b/src/resources/icons/godot/CurveInOut.svg.import new file mode 100644 index 00000000..09f4d542 --- /dev/null +++ b/src/resources/icons/godot/CurveInOut.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://x8epijaa6l5q" +path="res://.godot/imported/CurveInOut.svg-f7efb28dec801562fbcc1b9a8e5adc50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveInOut.svg" +dest_files=["res://.godot/imported/CurveInOut.svg-f7efb28dec801562fbcc1b9a8e5adc50.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveLinear.svg b/src/resources/icons/godot/CurveLinear.svg new file mode 100644 index 00000000..f7fd16ea --- /dev/null +++ b/src/resources/icons/godot/CurveLinear.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveLinear.svg.import b/src/resources/icons/godot/CurveLinear.svg.import new file mode 100644 index 00000000..9364670c --- /dev/null +++ b/src/resources/icons/godot/CurveLinear.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccg1245nvjldl" +path="res://.godot/imported/CurveLinear.svg-982a8c3164d3855af35a0c3fdb0f2d13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveLinear.svg" +dest_files=["res://.godot/imported/CurveLinear.svg-982a8c3164d3855af35a0c3fdb0f2d13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveOut.svg b/src/resources/icons/godot/CurveOut.svg new file mode 100644 index 00000000..4dda2ee4 --- /dev/null +++ b/src/resources/icons/godot/CurveOut.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveOut.svg.import b/src/resources/icons/godot/CurveOut.svg.import new file mode 100644 index 00000000..ed202a2f --- /dev/null +++ b/src/resources/icons/godot/CurveOut.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btei3vy61ip3e" +path="res://.godot/imported/CurveOut.svg-2604c0866fef45751ee0e569ce0cc0f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveOut.svg" +dest_files=["res://.godot/imported/CurveOut.svg-2604c0866fef45751ee0e569ce0cc0f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveOutIn.svg b/src/resources/icons/godot/CurveOutIn.svg new file mode 100644 index 00000000..1cb3f9fe --- /dev/null +++ b/src/resources/icons/godot/CurveOutIn.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveOutIn.svg.import b/src/resources/icons/godot/CurveOutIn.svg.import new file mode 100644 index 00000000..7a5b976c --- /dev/null +++ b/src/resources/icons/godot/CurveOutIn.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc37ihtprgd0d" +path="res://.godot/imported/CurveOutIn.svg-c789074429ddba5ed741ac66f3143978.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveOutIn.svg" +dest_files=["res://.godot/imported/CurveOutIn.svg-c789074429ddba5ed741ac66f3143978.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveTexture.svg b/src/resources/icons/godot/CurveTexture.svg new file mode 100644 index 00000000..7d9459d0 --- /dev/null +++ b/src/resources/icons/godot/CurveTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveTexture.svg.import b/src/resources/icons/godot/CurveTexture.svg.import new file mode 100644 index 00000000..4c8297d7 --- /dev/null +++ b/src/resources/icons/godot/CurveTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crq51vxiigm3l" +path="res://.godot/imported/CurveTexture.svg-d4e985cf884950ace6526530972a8376.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveTexture.svg" +dest_files=["res://.godot/imported/CurveTexture.svg-d4e985cf884950ace6526530972a8376.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveTilt.svg b/src/resources/icons/godot/CurveTilt.svg new file mode 100644 index 00000000..192e1297 --- /dev/null +++ b/src/resources/icons/godot/CurveTilt.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveTilt.svg.import b/src/resources/icons/godot/CurveTilt.svg.import new file mode 100644 index 00000000..1f5a0bcd --- /dev/null +++ b/src/resources/icons/godot/CurveTilt.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmwi5xw83rxt" +path="res://.godot/imported/CurveTilt.svg-f31da11f50abf67cc6d8bc7f949538a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveTilt.svg" +dest_files=["res://.godot/imported/CurveTilt.svg-f31da11f50abf67cc6d8bc7f949538a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CurveXYZTexture.svg b/src/resources/icons/godot/CurveXYZTexture.svg new file mode 100644 index 00000000..4a32e27f --- /dev/null +++ b/src/resources/icons/godot/CurveXYZTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CurveXYZTexture.svg.import b/src/resources/icons/godot/CurveXYZTexture.svg.import new file mode 100644 index 00000000..eb5bcd2f --- /dev/null +++ b/src/resources/icons/godot/CurveXYZTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3htb1ctfn72k" +path="res://.godot/imported/CurveXYZTexture.svg-bf9edd4abc24aa0caea45796501af8bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CurveXYZTexture.svg" +dest_files=["res://.godot/imported/CurveXYZTexture.svg-bf9edd4abc24aa0caea45796501af8bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CylinderMesh.svg b/src/resources/icons/godot/CylinderMesh.svg new file mode 100644 index 00000000..6d2095ed --- /dev/null +++ b/src/resources/icons/godot/CylinderMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CylinderMesh.svg.import b/src/resources/icons/godot/CylinderMesh.svg.import new file mode 100644 index 00000000..6e09c12a --- /dev/null +++ b/src/resources/icons/godot/CylinderMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4c01ac010wu4" +path="res://.godot/imported/CylinderMesh.svg-6fd04751feca081333ff7cc9d94a3b59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CylinderMesh.svg" +dest_files=["res://.godot/imported/CylinderMesh.svg-6fd04751feca081333ff7cc9d94a3b59.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/CylinderShape3D.svg b/src/resources/icons/godot/CylinderShape3D.svg new file mode 100644 index 00000000..82538bbd --- /dev/null +++ b/src/resources/icons/godot/CylinderShape3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/CylinderShape3D.svg.import b/src/resources/icons/godot/CylinderShape3D.svg.import new file mode 100644 index 00000000..4959c9c0 --- /dev/null +++ b/src/resources/icons/godot/CylinderShape3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yyimlq7hvq1l" +path="res://.godot/imported/CylinderShape3D.svg-129f9dbcb51fcff5bdef3bb388ec217d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/CylinderShape3D.svg" +dest_files=["res://.godot/imported/CylinderShape3D.svg-129f9dbcb51fcff5bdef3bb388ec217d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DPITexture.svg b/src/resources/icons/godot/DPITexture.svg new file mode 100644 index 00000000..c44a76a3 --- /dev/null +++ b/src/resources/icons/godot/DPITexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DPITexture.svg.import b/src/resources/icons/godot/DPITexture.svg.import new file mode 100644 index 00000000..f0dfa416 --- /dev/null +++ b/src/resources/icons/godot/DPITexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcc05ikudgljv" +path="res://.godot/imported/DPITexture.svg-ae968759e27c6aa17e080aeebefef1fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DPITexture.svg" +dest_files=["res://.godot/imported/DPITexture.svg-ae968759e27c6aa17e080aeebefef1fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DampedSpringJoint2D.svg b/src/resources/icons/godot/DampedSpringJoint2D.svg new file mode 100644 index 00000000..6ce68524 --- /dev/null +++ b/src/resources/icons/godot/DampedSpringJoint2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DampedSpringJoint2D.svg.import b/src/resources/icons/godot/DampedSpringJoint2D.svg.import new file mode 100644 index 00000000..392c552a --- /dev/null +++ b/src/resources/icons/godot/DampedSpringJoint2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d111iestsdf8o" +path="res://.godot/imported/DampedSpringJoint2D.svg-f8f970cba435c9d5d998233f8cef22e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DampedSpringJoint2D.svg" +dest_files=["res://.godot/imported/DampedSpringJoint2D.svg-f8f970cba435c9d5d998233f8cef22e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Debug.svg b/src/resources/icons/godot/Debug.svg new file mode 100644 index 00000000..995bd8a8 --- /dev/null +++ b/src/resources/icons/godot/Debug.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Debug.svg.import b/src/resources/icons/godot/Debug.svg.import new file mode 100644 index 00000000..e6846df1 --- /dev/null +++ b/src/resources/icons/godot/Debug.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bumw2jjbw40to" +path="res://.godot/imported/Debug.svg-cca18517dee0384a3bc30bd4dfe922c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Debug.svg" +dest_files=["res://.godot/imported/Debug.svg-cca18517dee0384a3bc30bd4dfe922c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DebugContinue.svg b/src/resources/icons/godot/DebugContinue.svg new file mode 100644 index 00000000..80328642 --- /dev/null +++ b/src/resources/icons/godot/DebugContinue.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DebugContinue.svg.import b/src/resources/icons/godot/DebugContinue.svg.import new file mode 100644 index 00000000..631468bd --- /dev/null +++ b/src/resources/icons/godot/DebugContinue.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr1d7q4tedjbj" +path="res://.godot/imported/DebugContinue.svg-ac426dbb843064246a860d8ee0249eed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DebugContinue.svg" +dest_files=["res://.godot/imported/DebugContinue.svg-ac426dbb843064246a860d8ee0249eed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DebugNext.svg b/src/resources/icons/godot/DebugNext.svg new file mode 100644 index 00000000..7af030b2 --- /dev/null +++ b/src/resources/icons/godot/DebugNext.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DebugNext.svg.import b/src/resources/icons/godot/DebugNext.svg.import new file mode 100644 index 00000000..b2a11dd6 --- /dev/null +++ b/src/resources/icons/godot/DebugNext.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gsp1flkxk00v" +path="res://.godot/imported/DebugNext.svg-1b19ba4cc6b3e500402f825adeff5c12.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DebugNext.svg" +dest_files=["res://.godot/imported/DebugNext.svg-1b19ba4cc6b3e500402f825adeff5c12.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DebugOut.svg b/src/resources/icons/godot/DebugOut.svg new file mode 100644 index 00000000..d70903e0 --- /dev/null +++ b/src/resources/icons/godot/DebugOut.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DebugOut.svg.import b/src/resources/icons/godot/DebugOut.svg.import new file mode 100644 index 00000000..96c2a11e --- /dev/null +++ b/src/resources/icons/godot/DebugOut.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfffs1sck2ht4" +path="res://.godot/imported/DebugOut.svg-4a7f4112f7398b8212b7c299384f8208.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DebugOut.svg" +dest_files=["res://.godot/imported/DebugOut.svg-4a7f4112f7398b8212b7c299384f8208.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DebugSkipBreakpointsOff.svg b/src/resources/icons/godot/DebugSkipBreakpointsOff.svg new file mode 100644 index 00000000..31fa129a --- /dev/null +++ b/src/resources/icons/godot/DebugSkipBreakpointsOff.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DebugSkipBreakpointsOff.svg.import b/src/resources/icons/godot/DebugSkipBreakpointsOff.svg.import new file mode 100644 index 00000000..c5dd6934 --- /dev/null +++ b/src/resources/icons/godot/DebugSkipBreakpointsOff.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da67fjsatkxwk" +path="res://.godot/imported/DebugSkipBreakpointsOff.svg-e704ed7b973afc00a1adbd677dabf5b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DebugSkipBreakpointsOff.svg" +dest_files=["res://.godot/imported/DebugSkipBreakpointsOff.svg-e704ed7b973afc00a1adbd677dabf5b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DebugSkipBreakpointsOn.svg b/src/resources/icons/godot/DebugSkipBreakpointsOn.svg new file mode 100644 index 00000000..32713e46 --- /dev/null +++ b/src/resources/icons/godot/DebugSkipBreakpointsOn.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DebugSkipBreakpointsOn.svg.import b/src/resources/icons/godot/DebugSkipBreakpointsOn.svg.import new file mode 100644 index 00000000..7bf6e7ad --- /dev/null +++ b/src/resources/icons/godot/DebugSkipBreakpointsOn.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c73o0jojigggy" +path="res://.godot/imported/DebugSkipBreakpointsOn.svg-d42af95fc991a83b48c297e153a814ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DebugSkipBreakpointsOn.svg" +dest_files=["res://.godot/imported/DebugSkipBreakpointsOn.svg-d42af95fc991a83b48c297e153a814ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DebugStep.svg b/src/resources/icons/godot/DebugStep.svg new file mode 100644 index 00000000..25f4642f --- /dev/null +++ b/src/resources/icons/godot/DebugStep.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DebugStep.svg.import b/src/resources/icons/godot/DebugStep.svg.import new file mode 100644 index 00000000..13f6a9b6 --- /dev/null +++ b/src/resources/icons/godot/DebugStep.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnchxsmv6ee8j" +path="res://.godot/imported/DebugStep.svg-2bd652f040a663fac227b0f635961b1f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DebugStep.svg" +dest_files=["res://.godot/imported/DebugStep.svg-2bd652f040a663fac227b0f635961b1f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Decal.svg b/src/resources/icons/godot/Decal.svg new file mode 100644 index 00000000..dd215b0f --- /dev/null +++ b/src/resources/icons/godot/Decal.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Decal.svg.import b/src/resources/icons/godot/Decal.svg.import new file mode 100644 index 00000000..4cfba91d --- /dev/null +++ b/src/resources/icons/godot/Decal.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfphf2psbfti8" +path="res://.godot/imported/Decal.svg-daaf70ff0949ae69da1af98b39d566ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Decal.svg" +dest_files=["res://.godot/imported/Decal.svg-daaf70ff0949ae69da1af98b39d566ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DefaultProjectIcon.svg b/src/resources/icons/godot/DefaultProjectIcon.svg new file mode 100644 index 00000000..c6bbb7d8 --- /dev/null +++ b/src/resources/icons/godot/DefaultProjectIcon.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DefaultProjectIcon.svg.import b/src/resources/icons/godot/DefaultProjectIcon.svg.import new file mode 100644 index 00000000..b7cc7d0d --- /dev/null +++ b/src/resources/icons/godot/DefaultProjectIcon.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0pkf766n0s1f" +path="res://.godot/imported/DefaultProjectIcon.svg-083d35bb8c92c30533e041efc8b93dd9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DefaultProjectIcon.svg" +dest_files=["res://.godot/imported/DefaultProjectIcon.svg-083d35bb8c92c30533e041efc8b93dd9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Dictionary.svg b/src/resources/icons/godot/Dictionary.svg new file mode 100644 index 00000000..9c8741f3 --- /dev/null +++ b/src/resources/icons/godot/Dictionary.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Dictionary.svg.import b/src/resources/icons/godot/Dictionary.svg.import new file mode 100644 index 00000000..28dd38c9 --- /dev/null +++ b/src/resources/icons/godot/Dictionary.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8k500xrdlgkc" +path="res://.godot/imported/Dictionary.svg-67d8f6b596dea321bf71f3ca8302d46a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Dictionary.svg" +dest_files=["res://.godot/imported/Dictionary.svg-67d8f6b596dea321bf71f3ca8302d46a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DirAccess.svg b/src/resources/icons/godot/DirAccess.svg new file mode 100644 index 00000000..a2e0af9f --- /dev/null +++ b/src/resources/icons/godot/DirAccess.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DirAccess.svg.import b/src/resources/icons/godot/DirAccess.svg.import new file mode 100644 index 00000000..2aeca148 --- /dev/null +++ b/src/resources/icons/godot/DirAccess.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bug6ef6u24518" +path="res://.godot/imported/DirAccess.svg-687dd5b35c60bbaf66e8ae61bb470600.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DirAccess.svg" +dest_files=["res://.godot/imported/DirAccess.svg-687dd5b35c60bbaf66e8ae61bb470600.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DirectionalLight2D.svg b/src/resources/icons/godot/DirectionalLight2D.svg new file mode 100644 index 00000000..3abd5a30 --- /dev/null +++ b/src/resources/icons/godot/DirectionalLight2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DirectionalLight2D.svg.import b/src/resources/icons/godot/DirectionalLight2D.svg.import new file mode 100644 index 00000000..df5d82c6 --- /dev/null +++ b/src/resources/icons/godot/DirectionalLight2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccu7b8v2vy0r2" +path="res://.godot/imported/DirectionalLight2D.svg-ee1f5394aa032a428991a6f8f8b09897.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DirectionalLight2D.svg" +dest_files=["res://.godot/imported/DirectionalLight2D.svg-ee1f5394aa032a428991a6f8f8b09897.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DirectionalLight3D.svg b/src/resources/icons/godot/DirectionalLight3D.svg new file mode 100644 index 00000000..62880610 --- /dev/null +++ b/src/resources/icons/godot/DirectionalLight3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DirectionalLight3D.svg.import b/src/resources/icons/godot/DirectionalLight3D.svg.import new file mode 100644 index 00000000..a3e5ff8f --- /dev/null +++ b/src/resources/icons/godot/DirectionalLight3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://up8kij3wesul" +path="res://.godot/imported/DirectionalLight3D.svg-b857b6facd40dbff2b8498270c6fab8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DirectionalLight3D.svg" +dest_files=["res://.godot/imported/DirectionalLight3D.svg-b857b6facd40dbff2b8498270c6fab8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DistractionFree.svg b/src/resources/icons/godot/DistractionFree.svg new file mode 100644 index 00000000..0115216e --- /dev/null +++ b/src/resources/icons/godot/DistractionFree.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DistractionFree.svg.import b/src/resources/icons/godot/DistractionFree.svg.import new file mode 100644 index 00000000..728d5d87 --- /dev/null +++ b/src/resources/icons/godot/DistractionFree.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyib4lgpipdll" +path="res://.godot/imported/DistractionFree.svg-427210d311ffd991c2675e717d383522.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DistractionFree.svg" +dest_files=["res://.godot/imported/DistractionFree.svg-427210d311ffd991c2675e717d383522.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DragHandle.svg b/src/resources/icons/godot/DragHandle.svg new file mode 100644 index 00000000..d57c70f2 --- /dev/null +++ b/src/resources/icons/godot/DragHandle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DragHandle.svg.import b/src/resources/icons/godot/DragHandle.svg.import new file mode 100644 index 00000000..0c2dd5b9 --- /dev/null +++ b/src/resources/icons/godot/DragHandle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bklsk253pny6m" +path="res://.godot/imported/DragHandle.svg-5ae9966d6b7a922e2e8145795ac4e798.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DragHandle.svg" +dest_files=["res://.godot/imported/DragHandle.svg-5ae9966d6b7a922e2e8145795ac4e798.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/DrawableTexture2D.svg b/src/resources/icons/godot/DrawableTexture2D.svg new file mode 100644 index 00000000..695d709c --- /dev/null +++ b/src/resources/icons/godot/DrawableTexture2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/DrawableTexture2D.svg.import b/src/resources/icons/godot/DrawableTexture2D.svg.import new file mode 100644 index 00000000..a591e484 --- /dev/null +++ b/src/resources/icons/godot/DrawableTexture2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6owmtc2hu325" +path="res://.godot/imported/DrawableTexture2D.svg-442a098400bf1ac47ede97ac14afb54c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/DrawableTexture2D.svg" +dest_files=["res://.godot/imported/DrawableTexture2D.svg-442a098400bf1ac47ede97ac14afb54c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Duplicate.svg b/src/resources/icons/godot/Duplicate.svg new file mode 100644 index 00000000..f3eb523a --- /dev/null +++ b/src/resources/icons/godot/Duplicate.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Duplicate.svg.import b/src/resources/icons/godot/Duplicate.svg.import new file mode 100644 index 00000000..983dd060 --- /dev/null +++ b/src/resources/icons/godot/Duplicate.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sma46yhvcwsq" +path="res://.godot/imported/Duplicate.svg-0b3f4739326bbc5f19856b890246a305.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Duplicate.svg" +dest_files=["res://.godot/imported/Duplicate.svg-0b3f4739326bbc5f19856b890246a305.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Edit.svg b/src/resources/icons/godot/Edit.svg new file mode 100644 index 00000000..b80d4529 --- /dev/null +++ b/src/resources/icons/godot/Edit.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Edit.svg.import b/src/resources/icons/godot/Edit.svg.import new file mode 100644 index 00000000..25ec232b --- /dev/null +++ b/src/resources/icons/godot/Edit.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtwfvglraa8t7" +path="res://.godot/imported/Edit.svg-249c8a5cc2708bfe217dbf27816db464.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Edit.svg" +dest_files=["res://.godot/imported/Edit.svg-249c8a5cc2708bfe217dbf27816db464.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditAddRemove.svg b/src/resources/icons/godot/EditAddRemove.svg new file mode 100644 index 00000000..cf55f922 --- /dev/null +++ b/src/resources/icons/godot/EditAddRemove.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditAddRemove.svg.import b/src/resources/icons/godot/EditAddRemove.svg.import new file mode 100644 index 00000000..6de8414e --- /dev/null +++ b/src/resources/icons/godot/EditAddRemove.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://enpqnt7d6cuc" +path="res://.godot/imported/EditAddRemove.svg-80399512a86f88c8cac472752c2999b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditAddRemove.svg" +dest_files=["res://.godot/imported/EditAddRemove.svg-80399512a86f88c8cac472752c2999b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditBezier.svg b/src/resources/icons/godot/EditBezier.svg new file mode 100644 index 00000000..5ad8348b --- /dev/null +++ b/src/resources/icons/godot/EditBezier.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditBezier.svg.import b/src/resources/icons/godot/EditBezier.svg.import new file mode 100644 index 00000000..23d1d4d5 --- /dev/null +++ b/src/resources/icons/godot/EditBezier.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3o38bpb1a40b" +path="res://.godot/imported/EditBezier.svg-05c00a13a7c006fff16dd28d2c46e1d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditBezier.svg" +dest_files=["res://.godot/imported/EditBezier.svg-05c00a13a7c006fff16dd28d2c46e1d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditInternal.svg b/src/resources/icons/godot/EditInternal.svg new file mode 100644 index 00000000..d9385d2a --- /dev/null +++ b/src/resources/icons/godot/EditInternal.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditInternal.svg.import b/src/resources/icons/godot/EditInternal.svg.import new file mode 100644 index 00000000..9415d330 --- /dev/null +++ b/src/resources/icons/godot/EditInternal.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iftklxvmq0ij" +path="res://.godot/imported/EditInternal.svg-f0f1d7324aeb0178658b0bb07b40e126.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditInternal.svg" +dest_files=["res://.godot/imported/EditInternal.svg-f0f1d7324aeb0178658b0bb07b40e126.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditKey.svg b/src/resources/icons/godot/EditKey.svg new file mode 100644 index 00000000..17f31563 --- /dev/null +++ b/src/resources/icons/godot/EditKey.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditKey.svg.import b/src/resources/icons/godot/EditKey.svg.import new file mode 100644 index 00000000..512c9963 --- /dev/null +++ b/src/resources/icons/godot/EditKey.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmsxuwwmgskk1" +path="res://.godot/imported/EditKey.svg-6111ebd34ae63499c9fdc841061daaa8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditKey.svg" +dest_files=["res://.godot/imported/EditKey.svg-6111ebd34ae63499c9fdc841061daaa8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditPivot.svg b/src/resources/icons/godot/EditPivot.svg new file mode 100644 index 00000000..2c15b1e6 --- /dev/null +++ b/src/resources/icons/godot/EditPivot.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditPivot.svg.import b/src/resources/icons/godot/EditPivot.svg.import new file mode 100644 index 00000000..a81b7e82 --- /dev/null +++ b/src/resources/icons/godot/EditPivot.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1che3y65ymt2" +path="res://.godot/imported/EditPivot.svg-2859590ea1b26ffab223d5f08fcf86d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditPivot.svg" +dest_files=["res://.godot/imported/EditPivot.svg-2859590ea1b26ffab223d5f08fcf86d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Editor3DHandle.svg b/src/resources/icons/godot/Editor3DHandle.svg new file mode 100644 index 00000000..f526d1a8 --- /dev/null +++ b/src/resources/icons/godot/Editor3DHandle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Editor3DHandle.svg.import b/src/resources/icons/godot/Editor3DHandle.svg.import new file mode 100644 index 00000000..2d2287f7 --- /dev/null +++ b/src/resources/icons/godot/Editor3DHandle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gcrkpencvxp6" +path="res://.godot/imported/Editor3DHandle.svg-f35a7f8380ca61a20fb1cb50f0c3b41b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Editor3DHandle.svg" +dest_files=["res://.godot/imported/Editor3DHandle.svg-f35a7f8380ca61a20fb1cb50f0c3b41b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorBoneHandle.svg b/src/resources/icons/godot/EditorBoneHandle.svg new file mode 100644 index 00000000..078fb3e3 --- /dev/null +++ b/src/resources/icons/godot/EditorBoneHandle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorBoneHandle.svg.import b/src/resources/icons/godot/EditorBoneHandle.svg.import new file mode 100644 index 00000000..675c94e5 --- /dev/null +++ b/src/resources/icons/godot/EditorBoneHandle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnl1ydfsoi7tr" +path="res://.godot/imported/EditorBoneHandle.svg-cd0beb0e51d6cdfec0692d04b6b02ea2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorBoneHandle.svg" +dest_files=["res://.godot/imported/EditorBoneHandle.svg-cd0beb0e51d6cdfec0692d04b6b02ea2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorCommandPalette.svg b/src/resources/icons/godot/EditorCommandPalette.svg new file mode 100644 index 00000000..63380613 --- /dev/null +++ b/src/resources/icons/godot/EditorCommandPalette.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorCommandPalette.svg.import b/src/resources/icons/godot/EditorCommandPalette.svg.import new file mode 100644 index 00000000..381b6beb --- /dev/null +++ b/src/resources/icons/godot/EditorCommandPalette.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct6v8o3vaq373" +path="res://.godot/imported/EditorCommandPalette.svg-a23952723014ef0d098974a405a128b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorCommandPalette.svg" +dest_files=["res://.godot/imported/EditorCommandPalette.svg-a23952723014ef0d098974a405a128b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorControlAnchor.svg b/src/resources/icons/godot/EditorControlAnchor.svg new file mode 100644 index 00000000..ffc07d93 --- /dev/null +++ b/src/resources/icons/godot/EditorControlAnchor.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorControlAnchor.svg.import b/src/resources/icons/godot/EditorControlAnchor.svg.import new file mode 100644 index 00000000..9274c6cd --- /dev/null +++ b/src/resources/icons/godot/EditorControlAnchor.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca4fy7yneispe" +path="res://.godot/imported/EditorControlAnchor.svg-d6e197927b6e44d980445368e97ab83a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorControlAnchor.svg" +dest_files=["res://.godot/imported/EditorControlAnchor.svg-d6e197927b6e44d980445368e97ab83a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorCurveHandle.svg b/src/resources/icons/godot/EditorCurveHandle.svg new file mode 100644 index 00000000..8e12be9f --- /dev/null +++ b/src/resources/icons/godot/EditorCurveHandle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorCurveHandle.svg.import b/src/resources/icons/godot/EditorCurveHandle.svg.import new file mode 100644 index 00000000..832cb8bc --- /dev/null +++ b/src/resources/icons/godot/EditorCurveHandle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfsy782cd3df3" +path="res://.godot/imported/EditorCurveHandle.svg-169984d4d7a00303162f03f48a32b8ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorCurveHandle.svg" +dest_files=["res://.godot/imported/EditorCurveHandle.svg-169984d4d7a00303162f03f48a32b8ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorDock.svg b/src/resources/icons/godot/EditorDock.svg new file mode 100644 index 00000000..56a728c5 --- /dev/null +++ b/src/resources/icons/godot/EditorDock.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorDock.svg.import b/src/resources/icons/godot/EditorDock.svg.import new file mode 100644 index 00000000..ae5aa15c --- /dev/null +++ b/src/resources/icons/godot/EditorDock.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnfoan8amxtpv" +path="res://.godot/imported/EditorDock.svg-bfa73a4ecb831d2433ec05bebf9270fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorDock.svg" +dest_files=["res://.godot/imported/EditorDock.svg-bfa73a4ecb831d2433ec05bebf9270fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorFileDialog.svg b/src/resources/icons/godot/EditorFileDialog.svg new file mode 100644 index 00000000..845eeaa9 --- /dev/null +++ b/src/resources/icons/godot/EditorFileDialog.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorFileDialog.svg.import b/src/resources/icons/godot/EditorFileDialog.svg.import new file mode 100644 index 00000000..2f1988fb --- /dev/null +++ b/src/resources/icons/godot/EditorFileDialog.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chicqeycdkoh3" +path="res://.godot/imported/EditorFileDialog.svg-f2656e20afd6a1ffe002a3e93e454285.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorFileDialog.svg" +dest_files=["res://.godot/imported/EditorFileDialog.svg-f2656e20afd6a1ffe002a3e93e454285.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorHandle.svg b/src/resources/icons/godot/EditorHandle.svg new file mode 100644 index 00000000..b4cc81aa --- /dev/null +++ b/src/resources/icons/godot/EditorHandle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorHandle.svg.import b/src/resources/icons/godot/EditorHandle.svg.import new file mode 100644 index 00000000..2884c821 --- /dev/null +++ b/src/resources/icons/godot/EditorHandle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vureb53jrcqb" +path="res://.godot/imported/EditorHandle.svg-73aaffa8ea2abbb369b52110f33cabd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorHandle.svg" +dest_files=["res://.godot/imported/EditorHandle.svg-73aaffa8ea2abbb369b52110f33cabd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorHandleAdd.svg b/src/resources/icons/godot/EditorHandleAdd.svg new file mode 100644 index 00000000..ad127657 --- /dev/null +++ b/src/resources/icons/godot/EditorHandleAdd.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorHandleAdd.svg.import b/src/resources/icons/godot/EditorHandleAdd.svg.import new file mode 100644 index 00000000..bbb06bc0 --- /dev/null +++ b/src/resources/icons/godot/EditorHandleAdd.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beqbjvrdoatsp" +path="res://.godot/imported/EditorHandleAdd.svg-6e8ef125f283b6a33d43a76a91200701.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorHandleAdd.svg" +dest_files=["res://.godot/imported/EditorHandleAdd.svg-6e8ef125f283b6a33d43a76a91200701.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorHandleDisabled.svg b/src/resources/icons/godot/EditorHandleDisabled.svg new file mode 100644 index 00000000..f816030b --- /dev/null +++ b/src/resources/icons/godot/EditorHandleDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorHandleDisabled.svg.import b/src/resources/icons/godot/EditorHandleDisabled.svg.import new file mode 100644 index 00000000..5ab14fc7 --- /dev/null +++ b/src/resources/icons/godot/EditorHandleDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckvvrix2vqfkb" +path="res://.godot/imported/EditorHandleDisabled.svg-cdd7422c996f06b85dcf4d704deaa386.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorHandleDisabled.svg" +dest_files=["res://.godot/imported/EditorHandleDisabled.svg-cdd7422c996f06b85dcf4d704deaa386.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorInspector.svg b/src/resources/icons/godot/EditorInspector.svg new file mode 100644 index 00000000..3df6d35d --- /dev/null +++ b/src/resources/icons/godot/EditorInspector.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorInspector.svg.import b/src/resources/icons/godot/EditorInspector.svg.import new file mode 100644 index 00000000..600f43a1 --- /dev/null +++ b/src/resources/icons/godot/EditorInspector.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3rleylwa4pj2" +path="res://.godot/imported/EditorInspector.svg-26b6e279fd15111b772258c7bb27b01b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorInspector.svg" +dest_files=["res://.godot/imported/EditorInspector.svg-26b6e279fd15111b772258c7bb27b01b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorPathNullHandle.svg b/src/resources/icons/godot/EditorPathNullHandle.svg new file mode 100644 index 00000000..b3d997f5 --- /dev/null +++ b/src/resources/icons/godot/EditorPathNullHandle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorPathNullHandle.svg.import b/src/resources/icons/godot/EditorPathNullHandle.svg.import new file mode 100644 index 00000000..82975c1b --- /dev/null +++ b/src/resources/icons/godot/EditorPathNullHandle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcny5gyiepojb" +path="res://.godot/imported/EditorPathNullHandle.svg-fe5749c8825d752a73c0beff99ba0f12.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorPathNullHandle.svg" +dest_files=["res://.godot/imported/EditorPathNullHandle.svg-fe5749c8825d752a73c0beff99ba0f12.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorPathSharpHandle.svg b/src/resources/icons/godot/EditorPathSharpHandle.svg new file mode 100644 index 00000000..9a9fe3cb --- /dev/null +++ b/src/resources/icons/godot/EditorPathSharpHandle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorPathSharpHandle.svg.import b/src/resources/icons/godot/EditorPathSharpHandle.svg.import new file mode 100644 index 00000000..ab926b32 --- /dev/null +++ b/src/resources/icons/godot/EditorPathSharpHandle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfvd06iteqyu7" +path="res://.godot/imported/EditorPathSharpHandle.svg-1041d11a39c2518e94d296f7c7a7dc94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorPathSharpHandle.svg" +dest_files=["res://.godot/imported/EditorPathSharpHandle.svg-1041d11a39c2518e94d296f7c7a7dc94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorPathSmoothHandle.svg b/src/resources/icons/godot/EditorPathSmoothHandle.svg new file mode 100644 index 00000000..03a3acac --- /dev/null +++ b/src/resources/icons/godot/EditorPathSmoothHandle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorPathSmoothHandle.svg.import b/src/resources/icons/godot/EditorPathSmoothHandle.svg.import new file mode 100644 index 00000000..0933aa9f --- /dev/null +++ b/src/resources/icons/godot/EditorPathSmoothHandle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b80ctywd6tqv0" +path="res://.godot/imported/EditorPathSmoothHandle.svg-9921df3dc118c276b77987ba08922fb4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorPathSmoothHandle.svg" +dest_files=["res://.godot/imported/EditorPathSmoothHandle.svg-9921df3dc118c276b77987ba08922fb4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorPivot.svg b/src/resources/icons/godot/EditorPivot.svg new file mode 100644 index 00000000..3fb37c1f --- /dev/null +++ b/src/resources/icons/godot/EditorPivot.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorPivot.svg.import b/src/resources/icons/godot/EditorPivot.svg.import new file mode 100644 index 00000000..c43ac1e4 --- /dev/null +++ b/src/resources/icons/godot/EditorPivot.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nn6l07db3p3c" +path="res://.godot/imported/EditorPivot.svg-e88ad8e7a5f624aa0e2a989431b238ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorPivot.svg" +dest_files=["res://.godot/imported/EditorPivot.svg-e88ad8e7a5f624aa0e2a989431b238ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorPlugin.svg b/src/resources/icons/godot/EditorPlugin.svg new file mode 100644 index 00000000..2e33a83e --- /dev/null +++ b/src/resources/icons/godot/EditorPlugin.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorPlugin.svg.import b/src/resources/icons/godot/EditorPlugin.svg.import new file mode 100644 index 00000000..9b01f343 --- /dev/null +++ b/src/resources/icons/godot/EditorPlugin.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dex1ul6mi57ah" +path="res://.godot/imported/EditorPlugin.svg-02d940beab38d55f6b5672aceae28301.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorPlugin.svg" +dest_files=["res://.godot/imported/EditorPlugin.svg-02d940beab38d55f6b5672aceae28301.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorPosition.svg b/src/resources/icons/godot/EditorPosition.svg new file mode 100644 index 00000000..a937b28d --- /dev/null +++ b/src/resources/icons/godot/EditorPosition.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorPosition.svg.import b/src/resources/icons/godot/EditorPosition.svg.import new file mode 100644 index 00000000..dec1cf31 --- /dev/null +++ b/src/resources/icons/godot/EditorPosition.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbg7i70h2jlij" +path="res://.godot/imported/EditorPosition.svg-82873aa0e5b9bb733687276efeaa9754.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorPosition.svg" +dest_files=["res://.godot/imported/EditorPosition.svg-82873aa0e5b9bb733687276efeaa9754.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorPositionPrevious.svg b/src/resources/icons/godot/EditorPositionPrevious.svg new file mode 100644 index 00000000..cc9c1dca --- /dev/null +++ b/src/resources/icons/godot/EditorPositionPrevious.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorPositionPrevious.svg.import b/src/resources/icons/godot/EditorPositionPrevious.svg.import new file mode 100644 index 00000000..3f2d9a91 --- /dev/null +++ b/src/resources/icons/godot/EditorPositionPrevious.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddjmchjsgus4q" +path="res://.godot/imported/EditorPositionPrevious.svg-df7665a2620d6c872b9db4ea6354d5f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorPositionPrevious.svg" +dest_files=["res://.godot/imported/EditorPositionPrevious.svg-df7665a2620d6c872b9db4ea6354d5f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorPositionUnselected.svg b/src/resources/icons/godot/EditorPositionUnselected.svg new file mode 100644 index 00000000..b4fee894 --- /dev/null +++ b/src/resources/icons/godot/EditorPositionUnselected.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorPositionUnselected.svg.import b/src/resources/icons/godot/EditorPositionUnselected.svg.import new file mode 100644 index 00000000..d824847e --- /dev/null +++ b/src/resources/icons/godot/EditorPositionUnselected.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dubaw8n0xen1g" +path="res://.godot/imported/EditorPositionUnselected.svg-e320fff90d31d0d9cb0974d2750e2c1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorPositionUnselected.svg" +dest_files=["res://.godot/imported/EditorPositionUnselected.svg-e320fff90d31d0d9cb0974d2750e2c1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorProperty.svg b/src/resources/icons/godot/EditorProperty.svg new file mode 100644 index 00000000..0556771f --- /dev/null +++ b/src/resources/icons/godot/EditorProperty.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorProperty.svg.import b/src/resources/icons/godot/EditorProperty.svg.import new file mode 100644 index 00000000..e190f3af --- /dev/null +++ b/src/resources/icons/godot/EditorProperty.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bebjf1c8wqapb" +path="res://.godot/imported/EditorProperty.svg-392253dbb2c0349ec9d46480f7a4663b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorProperty.svg" +dest_files=["res://.godot/imported/EditorProperty.svg-392253dbb2c0349ec9d46480f7a4663b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorResourcePicker.svg b/src/resources/icons/godot/EditorResourcePicker.svg new file mode 100644 index 00000000..02288a9e --- /dev/null +++ b/src/resources/icons/godot/EditorResourcePicker.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorResourcePicker.svg.import b/src/resources/icons/godot/EditorResourcePicker.svg.import new file mode 100644 index 00000000..db15aacc --- /dev/null +++ b/src/resources/icons/godot/EditorResourcePicker.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dopi5iydtgtyo" +path="res://.godot/imported/EditorResourcePicker.svg-f4dbab63152d852e0719c36d84f725bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorResourcePicker.svg" +dest_files=["res://.godot/imported/EditorResourcePicker.svg-f4dbab63152d852e0719c36d84f725bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorScriptPicker.svg b/src/resources/icons/godot/EditorScriptPicker.svg new file mode 100644 index 00000000..6badd406 --- /dev/null +++ b/src/resources/icons/godot/EditorScriptPicker.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorScriptPicker.svg.import b/src/resources/icons/godot/EditorScriptPicker.svg.import new file mode 100644 index 00000000..83c219af --- /dev/null +++ b/src/resources/icons/godot/EditorScriptPicker.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw70gio3r0txb" +path="res://.godot/imported/EditorScriptPicker.svg-7fd0ed57cbf67efafb612e8f29ff3f15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorScriptPicker.svg" +dest_files=["res://.godot/imported/EditorScriptPicker.svg-7fd0ed57cbf67efafb612e8f29ff3f15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/EditorSpinSlider.svg b/src/resources/icons/godot/EditorSpinSlider.svg new file mode 100644 index 00000000..7e6e9b69 --- /dev/null +++ b/src/resources/icons/godot/EditorSpinSlider.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/EditorSpinSlider.svg.import b/src/resources/icons/godot/EditorSpinSlider.svg.import new file mode 100644 index 00000000..00ca8b13 --- /dev/null +++ b/src/resources/icons/godot/EditorSpinSlider.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgrf6nyop8ps7" +path="res://.godot/imported/EditorSpinSlider.svg-12fd1a05c534c6c0ea1e4e51631a9f17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/EditorSpinSlider.svg" +dest_files=["res://.godot/imported/EditorSpinSlider.svg-12fd1a05c534c6c0ea1e4e51631a9f17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Enum.svg b/src/resources/icons/godot/Enum.svg new file mode 100644 index 00000000..e6fc1efc --- /dev/null +++ b/src/resources/icons/godot/Enum.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Enum.svg.import b/src/resources/icons/godot/Enum.svg.import new file mode 100644 index 00000000..7145727a --- /dev/null +++ b/src/resources/icons/godot/Enum.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwubsnqc8eebn" +path="res://.godot/imported/Enum.svg-d21a62a01a98848592381a9938434515.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Enum.svg" +dest_files=["res://.godot/imported/Enum.svg-d21a62a01a98848592381a9938434515.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Environment.svg b/src/resources/icons/godot/Environment.svg new file mode 100644 index 00000000..9909a77c --- /dev/null +++ b/src/resources/icons/godot/Environment.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Environment.svg.import b/src/resources/icons/godot/Environment.svg.import new file mode 100644 index 00000000..dc150850 --- /dev/null +++ b/src/resources/icons/godot/Environment.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds4f4nbewemx0" +path="res://.godot/imported/Environment.svg-b8a342b700479f586e6d4d39c2d5d4c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Environment.svg" +dest_files=["res://.godot/imported/Environment.svg-b8a342b700479f586e6d4d39c2d5d4c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Eraser.svg b/src/resources/icons/godot/Eraser.svg new file mode 100644 index 00000000..af60e775 --- /dev/null +++ b/src/resources/icons/godot/Eraser.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Eraser.svg.import b/src/resources/icons/godot/Eraser.svg.import new file mode 100644 index 00000000..58f90e3f --- /dev/null +++ b/src/resources/icons/godot/Eraser.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckmvkmqbdodd0" +path="res://.godot/imported/Eraser.svg-51ccf92d8cf447023aeab7592715d871.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Eraser.svg" +dest_files=["res://.godot/imported/Eraser.svg-51ccf92d8cf447023aeab7592715d871.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Error.svg b/src/resources/icons/godot/Error.svg new file mode 100644 index 00000000..d0a831b0 --- /dev/null +++ b/src/resources/icons/godot/Error.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Error.svg.import b/src/resources/icons/godot/Error.svg.import new file mode 100644 index 00000000..509f9aab --- /dev/null +++ b/src/resources/icons/godot/Error.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m8l5vx1j58kj" +path="res://.godot/imported/Error.svg-a2cbd2f837b40c5fa2b030c81adf4b17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Error.svg" +dest_files=["res://.godot/imported/Error.svg-a2cbd2f837b40c5fa2b030c81adf4b17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ErrorWarning.svg b/src/resources/icons/godot/ErrorWarning.svg new file mode 100644 index 00000000..0aee304c --- /dev/null +++ b/src/resources/icons/godot/ErrorWarning.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ErrorWarning.svg.import b/src/resources/icons/godot/ErrorWarning.svg.import new file mode 100644 index 00000000..63b893cd --- /dev/null +++ b/src/resources/icons/godot/ErrorWarning.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2rg3oir61dyp" +path="res://.godot/imported/ErrorWarning.svg-0b78b75942cfd74aeca9230943f74520.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ErrorWarning.svg" +dest_files=["res://.godot/imported/ErrorWarning.svg-0b78b75942cfd74aeca9230943f74520.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ExpandBottomDock.svg b/src/resources/icons/godot/ExpandBottomDock.svg new file mode 100644 index 00000000..80025119 --- /dev/null +++ b/src/resources/icons/godot/ExpandBottomDock.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ExpandBottomDock.svg.import b/src/resources/icons/godot/ExpandBottomDock.svg.import new file mode 100644 index 00000000..53fe1377 --- /dev/null +++ b/src/resources/icons/godot/ExpandBottomDock.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv6042x6gg8xx" +path="res://.godot/imported/ExpandBottomDock.svg-24820eccdafb4e21cba69dbd8b9cef27.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ExpandBottomDock.svg" +dest_files=["res://.godot/imported/ExpandBottomDock.svg-24820eccdafb4e21cba69dbd8b9cef27.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ExpandTree.svg b/src/resources/icons/godot/ExpandTree.svg new file mode 100644 index 00000000..bf23621b --- /dev/null +++ b/src/resources/icons/godot/ExpandTree.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ExpandTree.svg.import b/src/resources/icons/godot/ExpandTree.svg.import new file mode 100644 index 00000000..de31f011 --- /dev/null +++ b/src/resources/icons/godot/ExpandTree.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfu81y6o5ho2m" +path="res://.godot/imported/ExpandTree.svg-9e54eacd828cb44b6187326375fdd9f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ExpandTree.svg" +dest_files=["res://.godot/imported/ExpandTree.svg-9e54eacd828cb44b6187326375fdd9f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ExternalLink.svg b/src/resources/icons/godot/ExternalLink.svg new file mode 100644 index 00000000..a5c8e54a --- /dev/null +++ b/src/resources/icons/godot/ExternalLink.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ExternalLink.svg.import b/src/resources/icons/godot/ExternalLink.svg.import new file mode 100644 index 00000000..ce3c4a2f --- /dev/null +++ b/src/resources/icons/godot/ExternalLink.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb05jip3vvv4w" +path="res://.godot/imported/ExternalLink.svg-5c3f2614546af88f72e3ac9ba0a4b8f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ExternalLink.svg" +dest_files=["res://.godot/imported/ExternalLink.svg-5c3f2614546af88f72e3ac9ba0a4b8f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FABRIK3D.svg b/src/resources/icons/godot/FABRIK3D.svg new file mode 100644 index 00000000..f2271f26 --- /dev/null +++ b/src/resources/icons/godot/FABRIK3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FABRIK3D.svg.import b/src/resources/icons/godot/FABRIK3D.svg.import new file mode 100644 index 00000000..5b2d624a --- /dev/null +++ b/src/resources/icons/godot/FABRIK3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://owvw6r2nfgpu" +path="res://.godot/imported/FABRIK3D.svg-a5218e048a3b5813fcdfa1409699cf17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FABRIK3D.svg" +dest_files=["res://.godot/imported/FABRIK3D.svg-a5218e048a3b5813fcdfa1409699cf17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FPS.svg b/src/resources/icons/godot/FPS.svg new file mode 100644 index 00000000..a0c28578 --- /dev/null +++ b/src/resources/icons/godot/FPS.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FPS.svg.import b/src/resources/icons/godot/FPS.svg.import new file mode 100644 index 00000000..f8574697 --- /dev/null +++ b/src/resources/icons/godot/FPS.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1xsdv5ekxe45" +path="res://.godot/imported/FPS.svg-79b3426d1cfb4a144cdd212b35336272.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FPS.svg" +dest_files=["res://.godot/imported/FPS.svg-79b3426d1cfb4a144cdd212b35336272.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FadeCross.svg b/src/resources/icons/godot/FadeCross.svg new file mode 100644 index 00000000..8b8a46df --- /dev/null +++ b/src/resources/icons/godot/FadeCross.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FadeCross.svg.import b/src/resources/icons/godot/FadeCross.svg.import new file mode 100644 index 00000000..d012f2fe --- /dev/null +++ b/src/resources/icons/godot/FadeCross.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb7u7xutx42sy" +path="res://.godot/imported/FadeCross.svg-d213f008f21d9e3b44186884acc08c6d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FadeCross.svg" +dest_files=["res://.godot/imported/FadeCross.svg-d213f008f21d9e3b44186884acc08c6d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FadeDisabled.svg b/src/resources/icons/godot/FadeDisabled.svg new file mode 100644 index 00000000..d39e4aeb --- /dev/null +++ b/src/resources/icons/godot/FadeDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FadeDisabled.svg.import b/src/resources/icons/godot/FadeDisabled.svg.import new file mode 100644 index 00000000..b6940725 --- /dev/null +++ b/src/resources/icons/godot/FadeDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4cshflbnlw3u" +path="res://.godot/imported/FadeDisabled.svg-117c0a1d3c1e07f1f1505cae5430eaf6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FadeDisabled.svg" +dest_files=["res://.godot/imported/FadeDisabled.svg-117c0a1d3c1e07f1f1505cae5430eaf6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FadeIn.svg b/src/resources/icons/godot/FadeIn.svg new file mode 100644 index 00000000..477d5ec2 --- /dev/null +++ b/src/resources/icons/godot/FadeIn.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FadeIn.svg.import b/src/resources/icons/godot/FadeIn.svg.import new file mode 100644 index 00000000..b0366da1 --- /dev/null +++ b/src/resources/icons/godot/FadeIn.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm8vqvit14d0i" +path="res://.godot/imported/FadeIn.svg-a93402f01e4c3b4bafc557fc84bdcfe5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FadeIn.svg" +dest_files=["res://.godot/imported/FadeIn.svg-a93402f01e4c3b4bafc557fc84bdcfe5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FadeOut.svg b/src/resources/icons/godot/FadeOut.svg new file mode 100644 index 00000000..b38f065d --- /dev/null +++ b/src/resources/icons/godot/FadeOut.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FadeOut.svg.import b/src/resources/icons/godot/FadeOut.svg.import new file mode 100644 index 00000000..b0fc8bf4 --- /dev/null +++ b/src/resources/icons/godot/FadeOut.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ynd7my2glg8w" +path="res://.godot/imported/FadeOut.svg-b5cd3145633342c90289e779ff2f0044.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FadeOut.svg" +dest_files=["res://.godot/imported/FadeOut.svg-b5cd3145633342c90289e779ff2f0044.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Favorites.svg b/src/resources/icons/godot/Favorites.svg new file mode 100644 index 00000000..3595265d --- /dev/null +++ b/src/resources/icons/godot/Favorites.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Favorites.svg.import b/src/resources/icons/godot/Favorites.svg.import new file mode 100644 index 00000000..dcfb40cb --- /dev/null +++ b/src/resources/icons/godot/Favorites.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bddqf4wdunsqa" +path="res://.godot/imported/Favorites.svg-671534cae5596362799a4360b10689b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Favorites.svg" +dest_files=["res://.godot/imported/Favorites.svg-671534cae5596362799a4360b10689b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/File.svg b/src/resources/icons/godot/File.svg new file mode 100644 index 00000000..63fd97bf --- /dev/null +++ b/src/resources/icons/godot/File.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/File.svg.import b/src/resources/icons/godot/File.svg.import new file mode 100644 index 00000000..be6ca409 --- /dev/null +++ b/src/resources/icons/godot/File.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de5ue81n74s81" +path="res://.godot/imported/File.svg-e912360603f6e620dbe99582c8bf355f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/File.svg" +dest_files=["res://.godot/imported/File.svg-e912360603f6e620dbe99582c8bf355f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileAccess.svg b/src/resources/icons/godot/FileAccess.svg new file mode 100644 index 00000000..d69df0c7 --- /dev/null +++ b/src/resources/icons/godot/FileAccess.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileAccess.svg.import b/src/resources/icons/godot/FileAccess.svg.import new file mode 100644 index 00000000..5b26e9b4 --- /dev/null +++ b/src/resources/icons/godot/FileAccess.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lovr12myxx3c" +path="res://.godot/imported/FileAccess.svg-31c55c366a45ba1f1435c66e9c27b01e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileAccess.svg" +dest_files=["res://.godot/imported/FileAccess.svg-31c55c366a45ba1f1435c66e9c27b01e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileBigThumb.svg b/src/resources/icons/godot/FileBigThumb.svg new file mode 100644 index 00000000..034f8b8a --- /dev/null +++ b/src/resources/icons/godot/FileBigThumb.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileBigThumb.svg.import b/src/resources/icons/godot/FileBigThumb.svg.import new file mode 100644 index 00000000..e60f8a1e --- /dev/null +++ b/src/resources/icons/godot/FileBigThumb.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4k61raqojpxr" +path="res://.godot/imported/FileBigThumb.svg-b3868a88c995079c7d847fc59c604533.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileBigThumb.svg" +dest_files=["res://.godot/imported/FileBigThumb.svg-b3868a88c995079c7d847fc59c604533.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileBroken.svg b/src/resources/icons/godot/FileBroken.svg new file mode 100644 index 00000000..0b52af04 --- /dev/null +++ b/src/resources/icons/godot/FileBroken.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileBroken.svg.import b/src/resources/icons/godot/FileBroken.svg.import new file mode 100644 index 00000000..b77617c0 --- /dev/null +++ b/src/resources/icons/godot/FileBroken.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctnvxh7yiwrpu" +path="res://.godot/imported/FileBroken.svg-ae6f241d5ecd021a450f34433bf2fc63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileBroken.svg" +dest_files=["res://.godot/imported/FileBroken.svg-ae6f241d5ecd021a450f34433bf2fc63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileBrokenBigThumb.svg b/src/resources/icons/godot/FileBrokenBigThumb.svg new file mode 100644 index 00000000..defc1c6d --- /dev/null +++ b/src/resources/icons/godot/FileBrokenBigThumb.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileBrokenBigThumb.svg.import b/src/resources/icons/godot/FileBrokenBigThumb.svg.import new file mode 100644 index 00000000..7388ba06 --- /dev/null +++ b/src/resources/icons/godot/FileBrokenBigThumb.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1rxssrwjioy6" +path="res://.godot/imported/FileBrokenBigThumb.svg-da207cd552487bce0dff3bb13cb0576d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileBrokenBigThumb.svg" +dest_files=["res://.godot/imported/FileBrokenBigThumb.svg-da207cd552487bce0dff3bb13cb0576d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileBrowse.svg b/src/resources/icons/godot/FileBrowse.svg new file mode 100644 index 00000000..01e796a3 --- /dev/null +++ b/src/resources/icons/godot/FileBrowse.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileBrowse.svg.import b/src/resources/icons/godot/FileBrowse.svg.import new file mode 100644 index 00000000..43e063dd --- /dev/null +++ b/src/resources/icons/godot/FileBrowse.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diwbt7saiwich" +path="res://.godot/imported/FileBrowse.svg-673a706f4c7359bff3b4eb029cbc5ef5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileBrowse.svg" +dest_files=["res://.godot/imported/FileBrowse.svg-673a706f4c7359bff3b4eb029cbc5ef5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileDead.svg b/src/resources/icons/godot/FileDead.svg new file mode 100644 index 00000000..4e7b33c9 --- /dev/null +++ b/src/resources/icons/godot/FileDead.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileDead.svg.import b/src/resources/icons/godot/FileDead.svg.import new file mode 100644 index 00000000..a5a0215e --- /dev/null +++ b/src/resources/icons/godot/FileDead.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g88ss2k4rqgd" +path="res://.godot/imported/FileDead.svg-d64e359f48a7ba85a97b620869b28d58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileDead.svg" +dest_files=["res://.godot/imported/FileDead.svg-d64e359f48a7ba85a97b620869b28d58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileDeadBigThumb.svg b/src/resources/icons/godot/FileDeadBigThumb.svg new file mode 100644 index 00000000..c5a6a24a --- /dev/null +++ b/src/resources/icons/godot/FileDeadBigThumb.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileDeadBigThumb.svg.import b/src/resources/icons/godot/FileDeadBigThumb.svg.import new file mode 100644 index 00000000..8a603675 --- /dev/null +++ b/src/resources/icons/godot/FileDeadBigThumb.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvqyfq0xdtlgn" +path="res://.godot/imported/FileDeadBigThumb.svg-f8ef0e95e8451bfdfd0b7928534af545.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileDeadBigThumb.svg" +dest_files=["res://.godot/imported/FileDeadBigThumb.svg-f8ef0e95e8451bfdfd0b7928534af545.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileDeadMediumThumb.svg b/src/resources/icons/godot/FileDeadMediumThumb.svg new file mode 100644 index 00000000..07ed2120 --- /dev/null +++ b/src/resources/icons/godot/FileDeadMediumThumb.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileDeadMediumThumb.svg.import b/src/resources/icons/godot/FileDeadMediumThumb.svg.import new file mode 100644 index 00000000..d11accfc --- /dev/null +++ b/src/resources/icons/godot/FileDeadMediumThumb.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gl503o7726vl" +path="res://.godot/imported/FileDeadMediumThumb.svg-00a8ad393179bf216541a0ba3bbad8a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileDeadMediumThumb.svg" +dest_files=["res://.godot/imported/FileDeadMediumThumb.svg-00a8ad393179bf216541a0ba3bbad8a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileDialog.svg b/src/resources/icons/godot/FileDialog.svg new file mode 100644 index 00000000..02d89ffa --- /dev/null +++ b/src/resources/icons/godot/FileDialog.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileDialog.svg.import b/src/resources/icons/godot/FileDialog.svg.import new file mode 100644 index 00000000..9dc8483f --- /dev/null +++ b/src/resources/icons/godot/FileDialog.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdu1mk7yhwq2n" +path="res://.godot/imported/FileDialog.svg-4c7f7d81444c632b7a1929566a36db60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileDialog.svg" +dest_files=["res://.godot/imported/FileDialog.svg-4c7f7d81444c632b7a1929566a36db60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileList.svg b/src/resources/icons/godot/FileList.svg new file mode 100644 index 00000000..11ce8289 --- /dev/null +++ b/src/resources/icons/godot/FileList.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileList.svg.import b/src/resources/icons/godot/FileList.svg.import new file mode 100644 index 00000000..c90f9623 --- /dev/null +++ b/src/resources/icons/godot/FileList.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyu4b4f7m1ovv" +path="res://.godot/imported/FileList.svg-94d2393940f404ad287d569b383e46ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileList.svg" +dest_files=["res://.godot/imported/FileList.svg-94d2393940f404ad287d569b383e46ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileMediumThumb.svg b/src/resources/icons/godot/FileMediumThumb.svg new file mode 100644 index 00000000..1fde71b6 --- /dev/null +++ b/src/resources/icons/godot/FileMediumThumb.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileMediumThumb.svg.import b/src/resources/icons/godot/FileMediumThumb.svg.import new file mode 100644 index 00000000..cfbdcb5b --- /dev/null +++ b/src/resources/icons/godot/FileMediumThumb.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ghkckd31psu6" +path="res://.godot/imported/FileMediumThumb.svg-3d1b32bbcfcdf7aadf27a89ef2bb6185.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileMediumThumb.svg" +dest_files=["res://.godot/imported/FileMediumThumb.svg-3d1b32bbcfcdf7aadf27a89ef2bb6185.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileThumbnail.svg b/src/resources/icons/godot/FileThumbnail.svg new file mode 100644 index 00000000..b99c1097 --- /dev/null +++ b/src/resources/icons/godot/FileThumbnail.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileThumbnail.svg.import b/src/resources/icons/godot/FileThumbnail.svg.import new file mode 100644 index 00000000..88590a2a --- /dev/null +++ b/src/resources/icons/godot/FileThumbnail.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xb16mhf6r6ok" +path="res://.godot/imported/FileThumbnail.svg-b7a9f45b72f1c8b8f17b7674252cc715.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileThumbnail.svg" +dest_files=["res://.godot/imported/FileThumbnail.svg-b7a9f45b72f1c8b8f17b7674252cc715.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FileTree.svg b/src/resources/icons/godot/FileTree.svg new file mode 100644 index 00000000..910b5f8b --- /dev/null +++ b/src/resources/icons/godot/FileTree.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FileTree.svg.import b/src/resources/icons/godot/FileTree.svg.import new file mode 100644 index 00000000..e264bd1a --- /dev/null +++ b/src/resources/icons/godot/FileTree.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boapcoejdhpdb" +path="res://.godot/imported/FileTree.svg-0d76d80a2cbbe878b7ef3eb8d7ec36ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FileTree.svg" +dest_files=["res://.godot/imported/FileTree.svg-0d76d80a2cbbe878b7ef3eb8d7ec36ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FilenameFilter.svg b/src/resources/icons/godot/FilenameFilter.svg new file mode 100644 index 00000000..03bd8ca8 --- /dev/null +++ b/src/resources/icons/godot/FilenameFilter.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FilenameFilter.svg.import b/src/resources/icons/godot/FilenameFilter.svg.import new file mode 100644 index 00000000..953f9f23 --- /dev/null +++ b/src/resources/icons/godot/FilenameFilter.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5qw7um6ceyr" +path="res://.godot/imported/FilenameFilter.svg-fff93690e7b6d4651de7d7461eaa71b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FilenameFilter.svg" +dest_files=["res://.godot/imported/FilenameFilter.svg-fff93690e7b6d4651de7d7461eaa71b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Filesystem.svg b/src/resources/icons/godot/Filesystem.svg new file mode 100644 index 00000000..8fcad079 --- /dev/null +++ b/src/resources/icons/godot/Filesystem.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Filesystem.svg.import b/src/resources/icons/godot/Filesystem.svg.import new file mode 100644 index 00000000..5989f1b1 --- /dev/null +++ b/src/resources/icons/godot/Filesystem.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjnrysjav6ecp" +path="res://.godot/imported/Filesystem.svg-79b29da694f96b7e7499640d819a179f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Filesystem.svg" +dest_files=["res://.godot/imported/Filesystem.svg-79b29da694f96b7e7499640d819a179f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FixedSize.svg b/src/resources/icons/godot/FixedSize.svg new file mode 100644 index 00000000..3ea5e214 --- /dev/null +++ b/src/resources/icons/godot/FixedSize.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FixedSize.svg.import b/src/resources/icons/godot/FixedSize.svg.import new file mode 100644 index 00000000..924a5170 --- /dev/null +++ b/src/resources/icons/godot/FixedSize.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bngcnvdx48rgq" +path="res://.godot/imported/FixedSize.svg-7eb988141cde848e36fb4db2a877ea16.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FixedSize.svg" +dest_files=["res://.godot/imported/FixedSize.svg-7eb988141cde848e36fb4db2a877ea16.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FlipWinding.svg b/src/resources/icons/godot/FlipWinding.svg new file mode 100644 index 00000000..511f21b3 --- /dev/null +++ b/src/resources/icons/godot/FlipWinding.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FlipWinding.svg.import b/src/resources/icons/godot/FlipWinding.svg.import new file mode 100644 index 00000000..299630cb --- /dev/null +++ b/src/resources/icons/godot/FlipWinding.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1sumfl3spxw3" +path="res://.godot/imported/FlipWinding.svg-b9108d1982fb142525b2609a37c329c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FlipWinding.svg" +dest_files=["res://.godot/imported/FlipWinding.svg-b9108d1982fb142525b2609a37c329c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FlowContainer.svg b/src/resources/icons/godot/FlowContainer.svg new file mode 100644 index 00000000..f1ac882b --- /dev/null +++ b/src/resources/icons/godot/FlowContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FlowContainer.svg.import b/src/resources/icons/godot/FlowContainer.svg.import new file mode 100644 index 00000000..dbb2d833 --- /dev/null +++ b/src/resources/icons/godot/FlowContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnlmhqpf4flr0" +path="res://.godot/imported/FlowContainer.svg-be4538156b2bbd4d307a7a0a351874d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FlowContainer.svg" +dest_files=["res://.godot/imported/FlowContainer.svg-be4538156b2bbd4d307a7a0a351874d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FogMaterial.svg b/src/resources/icons/godot/FogMaterial.svg new file mode 100644 index 00000000..6bca53a2 --- /dev/null +++ b/src/resources/icons/godot/FogMaterial.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FogMaterial.svg.import b/src/resources/icons/godot/FogMaterial.svg.import new file mode 100644 index 00000000..2b173e12 --- /dev/null +++ b/src/resources/icons/godot/FogMaterial.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgjet01jskp52" +path="res://.godot/imported/FogMaterial.svg-e3163102163975b734e919eb7649bb1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FogMaterial.svg" +dest_files=["res://.godot/imported/FogMaterial.svg-e3163102163975b734e919eb7649bb1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FogVolume.svg b/src/resources/icons/godot/FogVolume.svg new file mode 100644 index 00000000..87dd4095 --- /dev/null +++ b/src/resources/icons/godot/FogVolume.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FogVolume.svg.import b/src/resources/icons/godot/FogVolume.svg.import new file mode 100644 index 00000000..329a0c94 --- /dev/null +++ b/src/resources/icons/godot/FogVolume.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0phosm6ww633" +path="res://.godot/imported/FogVolume.svg-192cb738448b0aecbff5cba5f3fe94f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FogVolume.svg" +dest_files=["res://.godot/imported/FogVolume.svg-192cb738448b0aecbff5cba5f3fe94f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FoldableContainer.svg b/src/resources/icons/godot/FoldableContainer.svg new file mode 100644 index 00000000..85817467 --- /dev/null +++ b/src/resources/icons/godot/FoldableContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FoldableContainer.svg.import b/src/resources/icons/godot/FoldableContainer.svg.import new file mode 100644 index 00000000..a50c1ccd --- /dev/null +++ b/src/resources/icons/godot/FoldableContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5gbv4omlko65" +path="res://.godot/imported/FoldableContainer.svg-15cd380e7725fbeb02d4584df389a640.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FoldableContainer.svg" +dest_files=["res://.godot/imported/FoldableContainer.svg-15cd380e7725fbeb02d4584df389a640.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Folder.svg b/src/resources/icons/godot/Folder.svg new file mode 100644 index 00000000..464dcc00 --- /dev/null +++ b/src/resources/icons/godot/Folder.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Folder.svg.import b/src/resources/icons/godot/Folder.svg.import new file mode 100644 index 00000000..9ea546e5 --- /dev/null +++ b/src/resources/icons/godot/Folder.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhu1ybhbfu7uh" +path="res://.godot/imported/Folder.svg-8d01519e8008c638f81f3cbfe07d128f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Folder.svg" +dest_files=["res://.godot/imported/Folder.svg-8d01519e8008c638f81f3cbfe07d128f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FolderBigThumb.svg b/src/resources/icons/godot/FolderBigThumb.svg new file mode 100644 index 00000000..db256910 --- /dev/null +++ b/src/resources/icons/godot/FolderBigThumb.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FolderBigThumb.svg.import b/src/resources/icons/godot/FolderBigThumb.svg.import new file mode 100644 index 00000000..f45ceab1 --- /dev/null +++ b/src/resources/icons/godot/FolderBigThumb.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw6cqj5ulwdx2" +path="res://.godot/imported/FolderBigThumb.svg-f1c93f2ab7a60d6832980ad24c82b6ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FolderBigThumb.svg" +dest_files=["res://.godot/imported/FolderBigThumb.svg-f1c93f2ab7a60d6832980ad24c82b6ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FolderBrowse.svg b/src/resources/icons/godot/FolderBrowse.svg new file mode 100644 index 00000000..24ce0783 --- /dev/null +++ b/src/resources/icons/godot/FolderBrowse.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FolderBrowse.svg.import b/src/resources/icons/godot/FolderBrowse.svg.import new file mode 100644 index 00000000..12a6a1a8 --- /dev/null +++ b/src/resources/icons/godot/FolderBrowse.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnh2wgtphfx6v" +path="res://.godot/imported/FolderBrowse.svg-367782654424736714efb5723583fc10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FolderBrowse.svg" +dest_files=["res://.godot/imported/FolderBrowse.svg-367782654424736714efb5723583fc10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FolderCreate.svg b/src/resources/icons/godot/FolderCreate.svg new file mode 100644 index 00000000..b1731cac --- /dev/null +++ b/src/resources/icons/godot/FolderCreate.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FolderCreate.svg.import b/src/resources/icons/godot/FolderCreate.svg.import new file mode 100644 index 00000000..e8ff7c41 --- /dev/null +++ b/src/resources/icons/godot/FolderCreate.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1xu4cwtikosb" +path="res://.godot/imported/FolderCreate.svg-21fa18f1f11f895968bc2002b16b7da2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FolderCreate.svg" +dest_files=["res://.godot/imported/FolderCreate.svg-21fa18f1f11f895968bc2002b16b7da2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FolderMediumThumb.svg b/src/resources/icons/godot/FolderMediumThumb.svg new file mode 100644 index 00000000..98baca65 --- /dev/null +++ b/src/resources/icons/godot/FolderMediumThumb.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FolderMediumThumb.svg.import b/src/resources/icons/godot/FolderMediumThumb.svg.import new file mode 100644 index 00000000..e19d11f6 --- /dev/null +++ b/src/resources/icons/godot/FolderMediumThumb.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bato4i2vcceo0" +path="res://.godot/imported/FolderMediumThumb.svg-6560c5ecc8d0aa4e82d13c3c423608c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FolderMediumThumb.svg" +dest_files=["res://.godot/imported/FolderMediumThumb.svg-6560c5ecc8d0aa4e82d13c3c423608c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Font.svg b/src/resources/icons/godot/Font.svg new file mode 100644 index 00000000..ff65147b --- /dev/null +++ b/src/resources/icons/godot/Font.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Font.svg.import b/src/resources/icons/godot/Font.svg.import new file mode 100644 index 00000000..79122e90 --- /dev/null +++ b/src/resources/icons/godot/Font.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxv420nirehkv" +path="res://.godot/imported/Font.svg-8fd1a7d88ecbc4edd3de23e74aae4c29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Font.svg" +dest_files=["res://.godot/imported/Font.svg-8fd1a7d88ecbc4edd3de23e74aae4c29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FontFile.svg b/src/resources/icons/godot/FontFile.svg new file mode 100644 index 00000000..89be108d --- /dev/null +++ b/src/resources/icons/godot/FontFile.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FontFile.svg.import b/src/resources/icons/godot/FontFile.svg.import new file mode 100644 index 00000000..644331c9 --- /dev/null +++ b/src/resources/icons/godot/FontFile.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by37skma83scv" +path="res://.godot/imported/FontFile.svg-bc17c67b15fc711622cd7932bda808a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FontFile.svg" +dest_files=["res://.godot/imported/FontFile.svg-bc17c67b15fc711622cd7932bda808a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FontItem.svg b/src/resources/icons/godot/FontItem.svg new file mode 100644 index 00000000..6bee7198 --- /dev/null +++ b/src/resources/icons/godot/FontItem.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FontItem.svg.import b/src/resources/icons/godot/FontItem.svg.import new file mode 100644 index 00000000..2ccd03d1 --- /dev/null +++ b/src/resources/icons/godot/FontItem.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cggdosmseqwog" +path="res://.godot/imported/FontItem.svg-44488331a95b68d189c7ce04a62afcaa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FontItem.svg" +dest_files=["res://.godot/imported/FontItem.svg-44488331a95b68d189c7ce04a62afcaa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FontSize.svg b/src/resources/icons/godot/FontSize.svg new file mode 100644 index 00000000..bad6b9ff --- /dev/null +++ b/src/resources/icons/godot/FontSize.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FontSize.svg.import b/src/resources/icons/godot/FontSize.svg.import new file mode 100644 index 00000000..f46589c8 --- /dev/null +++ b/src/resources/icons/godot/FontSize.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8i8jw62hikms" +path="res://.godot/imported/FontSize.svg-2923dd505cf568986e77d774abfc3d30.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FontSize.svg" +dest_files=["res://.godot/imported/FontSize.svg-2923dd505cf568986e77d774abfc3d30.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/FontVariation.svg b/src/resources/icons/godot/FontVariation.svg new file mode 100644 index 00000000..cee12009 --- /dev/null +++ b/src/resources/icons/godot/FontVariation.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/FontVariation.svg.import b/src/resources/icons/godot/FontVariation.svg.import new file mode 100644 index 00000000..097fbe92 --- /dev/null +++ b/src/resources/icons/godot/FontVariation.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4dop3i5m6h8q" +path="res://.godot/imported/FontVariation.svg-c420615a5453fedc96095c4d444346c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/FontVariation.svg" +dest_files=["res://.godot/imported/FontVariation.svg-c420615a5453fedc96095c4d444346c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Forward.svg b/src/resources/icons/godot/Forward.svg new file mode 100644 index 00000000..230f0726 --- /dev/null +++ b/src/resources/icons/godot/Forward.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Forward.svg.import b/src/resources/icons/godot/Forward.svg.import new file mode 100644 index 00000000..1bc11c5a --- /dev/null +++ b/src/resources/icons/godot/Forward.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fn5jp5we8fbu" +path="res://.godot/imported/Forward.svg-acf76f82e276a78d2803207bfd2edc5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Forward.svg" +dest_files=["res://.godot/imported/Forward.svg-acf76f82e276a78d2803207bfd2edc5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ForwardEnd.svg b/src/resources/icons/godot/ForwardEnd.svg new file mode 100644 index 00000000..6a5a59f0 --- /dev/null +++ b/src/resources/icons/godot/ForwardEnd.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ForwardEnd.svg.import b/src/resources/icons/godot/ForwardEnd.svg.import new file mode 100644 index 00000000..5c658f07 --- /dev/null +++ b/src/resources/icons/godot/ForwardEnd.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddhx3nx68ht6k" +path="res://.godot/imported/ForwardEnd.svg-141970da3a1c33b714b46104f16c5ea3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ForwardEnd.svg" +dest_files=["res://.godot/imported/ForwardEnd.svg-141970da3a1c33b714b46104f16c5ea3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GPUParticles2D.svg b/src/resources/icons/godot/GPUParticles2D.svg new file mode 100644 index 00000000..981ed923 --- /dev/null +++ b/src/resources/icons/godot/GPUParticles2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GPUParticles2D.svg.import b/src/resources/icons/godot/GPUParticles2D.svg.import new file mode 100644 index 00000000..e762b80c --- /dev/null +++ b/src/resources/icons/godot/GPUParticles2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e0i0aeck8t7n" +path="res://.godot/imported/GPUParticles2D.svg-c186759f91cc29ba2d82db6c8a1f5359.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GPUParticles2D.svg" +dest_files=["res://.godot/imported/GPUParticles2D.svg-c186759f91cc29ba2d82db6c8a1f5359.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GPUParticles3D.svg b/src/resources/icons/godot/GPUParticles3D.svg new file mode 100644 index 00000000..b57117b3 --- /dev/null +++ b/src/resources/icons/godot/GPUParticles3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GPUParticles3D.svg.import b/src/resources/icons/godot/GPUParticles3D.svg.import new file mode 100644 index 00000000..87705fcc --- /dev/null +++ b/src/resources/icons/godot/GPUParticles3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkdfvgq3iqkiy" +path="res://.godot/imported/GPUParticles3D.svg-6e9e6f8996f2169e13e30d34ae325221.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GPUParticles3D.svg" +dest_files=["res://.godot/imported/GPUParticles3D.svg-6e9e6f8996f2169e13e30d34ae325221.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GPUParticlesAttractorBox3D.svg b/src/resources/icons/godot/GPUParticlesAttractorBox3D.svg new file mode 100644 index 00000000..62be278f --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesAttractorBox3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GPUParticlesAttractorBox3D.svg.import b/src/resources/icons/godot/GPUParticlesAttractorBox3D.svg.import new file mode 100644 index 00000000..923c3153 --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesAttractorBox3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0dpdhx0swamv" +path="res://.godot/imported/GPUParticlesAttractorBox3D.svg-22a290f5ceb6e671d217d2e48d45c9a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GPUParticlesAttractorBox3D.svg" +dest_files=["res://.godot/imported/GPUParticlesAttractorBox3D.svg-22a290f5ceb6e671d217d2e48d45c9a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GPUParticlesAttractorSphere3D.svg b/src/resources/icons/godot/GPUParticlesAttractorSphere3D.svg new file mode 100644 index 00000000..345f8496 --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesAttractorSphere3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GPUParticlesAttractorSphere3D.svg.import b/src/resources/icons/godot/GPUParticlesAttractorSphere3D.svg.import new file mode 100644 index 00000000..b5090790 --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesAttractorSphere3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daipjsdpx4m6e" +path="res://.godot/imported/GPUParticlesAttractorSphere3D.svg-11c47f0ac07f1af88a7e044633783782.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GPUParticlesAttractorSphere3D.svg" +dest_files=["res://.godot/imported/GPUParticlesAttractorSphere3D.svg-11c47f0ac07f1af88a7e044633783782.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GPUParticlesAttractorVectorField3D.svg b/src/resources/icons/godot/GPUParticlesAttractorVectorField3D.svg new file mode 100644 index 00000000..2a312f1d --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesAttractorVectorField3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GPUParticlesAttractorVectorField3D.svg.import b/src/resources/icons/godot/GPUParticlesAttractorVectorField3D.svg.import new file mode 100644 index 00000000..e363c590 --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesAttractorVectorField3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d10ry4eg7d25f" +path="res://.godot/imported/GPUParticlesAttractorVectorField3D.svg-a8860c6d70f926c1755193f8aacac426.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GPUParticlesAttractorVectorField3D.svg" +dest_files=["res://.godot/imported/GPUParticlesAttractorVectorField3D.svg-a8860c6d70f926c1755193f8aacac426.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GPUParticlesCollisionBox3D.svg b/src/resources/icons/godot/GPUParticlesCollisionBox3D.svg new file mode 100644 index 00000000..9aa41e3b --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesCollisionBox3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GPUParticlesCollisionBox3D.svg.import b/src/resources/icons/godot/GPUParticlesCollisionBox3D.svg.import new file mode 100644 index 00000000..d18e30cf --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesCollisionBox3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwgmagao6lvu7" +path="res://.godot/imported/GPUParticlesCollisionBox3D.svg-194e6b5aa609ee4f0aa3fc82d452731c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GPUParticlesCollisionBox3D.svg" +dest_files=["res://.godot/imported/GPUParticlesCollisionBox3D.svg-194e6b5aa609ee4f0aa3fc82d452731c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GPUParticlesCollisionHeightField3D.svg b/src/resources/icons/godot/GPUParticlesCollisionHeightField3D.svg new file mode 100644 index 00000000..8a9fdc75 --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesCollisionHeightField3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GPUParticlesCollisionHeightField3D.svg.import b/src/resources/icons/godot/GPUParticlesCollisionHeightField3D.svg.import new file mode 100644 index 00000000..8389c5c5 --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesCollisionHeightField3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2jgf7m8xwar0" +path="res://.godot/imported/GPUParticlesCollisionHeightField3D.svg-9243f33a4ef177da32d8770e89353fc6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GPUParticlesCollisionHeightField3D.svg" +dest_files=["res://.godot/imported/GPUParticlesCollisionHeightField3D.svg-9243f33a4ef177da32d8770e89353fc6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GPUParticlesCollisionSDF3D.svg b/src/resources/icons/godot/GPUParticlesCollisionSDF3D.svg new file mode 100644 index 00000000..e51d69b0 --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesCollisionSDF3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GPUParticlesCollisionSDF3D.svg.import b/src/resources/icons/godot/GPUParticlesCollisionSDF3D.svg.import new file mode 100644 index 00000000..c8c29365 --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesCollisionSDF3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b37f76fib5ll7" +path="res://.godot/imported/GPUParticlesCollisionSDF3D.svg-6aa717743cb0074e7f7961b3cb9f3b26.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GPUParticlesCollisionSDF3D.svg" +dest_files=["res://.godot/imported/GPUParticlesCollisionSDF3D.svg-6aa717743cb0074e7f7961b3cb9f3b26.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GPUParticlesCollisionSphere3D.svg b/src/resources/icons/godot/GPUParticlesCollisionSphere3D.svg new file mode 100644 index 00000000..fad034ad --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesCollisionSphere3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GPUParticlesCollisionSphere3D.svg.import b/src/resources/icons/godot/GPUParticlesCollisionSphere3D.svg.import new file mode 100644 index 00000000..44b98b50 --- /dev/null +++ b/src/resources/icons/godot/GPUParticlesCollisionSphere3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt0tckq0gts1i" +path="res://.godot/imported/GPUParticlesCollisionSphere3D.svg-be06bff9103385b093e15b67dc3c28b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GPUParticlesCollisionSphere3D.svg" +dest_files=["res://.godot/imported/GPUParticlesCollisionSphere3D.svg-be06bff9103385b093e15b67dc3c28b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Game.svg b/src/resources/icons/godot/Game.svg new file mode 100644 index 00000000..287770ee --- /dev/null +++ b/src/resources/icons/godot/Game.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Game.svg.import b/src/resources/icons/godot/Game.svg.import new file mode 100644 index 00000000..b2f19fd4 --- /dev/null +++ b/src/resources/icons/godot/Game.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv46nk8alv6pi" +path="res://.godot/imported/Game.svg-8cfdfe79a9d16602da196b482d5f21a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Game.svg" +dest_files=["res://.godot/imported/Game.svg-8cfdfe79a9d16602da196b482d5f21a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Generic6DOFJoint3D.svg b/src/resources/icons/godot/Generic6DOFJoint3D.svg new file mode 100644 index 00000000..14fe70f3 --- /dev/null +++ b/src/resources/icons/godot/Generic6DOFJoint3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Generic6DOFJoint3D.svg.import b/src/resources/icons/godot/Generic6DOFJoint3D.svg.import new file mode 100644 index 00000000..ae4a4b52 --- /dev/null +++ b/src/resources/icons/godot/Generic6DOFJoint3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j66i7xum3tc2" +path="res://.godot/imported/Generic6DOFJoint3D.svg-117f291a109872b850eb0198f652e71a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Generic6DOFJoint3D.svg" +dest_files=["res://.godot/imported/Generic6DOFJoint3D.svg-117f291a109872b850eb0198f652e71a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Geometry2D.svg b/src/resources/icons/godot/Geometry2D.svg new file mode 100644 index 00000000..4a52948a --- /dev/null +++ b/src/resources/icons/godot/Geometry2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Geometry2D.svg.import b/src/resources/icons/godot/Geometry2D.svg.import new file mode 100644 index 00000000..ca15544d --- /dev/null +++ b/src/resources/icons/godot/Geometry2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck0w3tfgmhfn5" +path="res://.godot/imported/Geometry2D.svg-5ffe160a582443b577d45d3fae3ecc3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Geometry2D.svg" +dest_files=["res://.godot/imported/Geometry2D.svg-5ffe160a582443b577d45d3fae3ecc3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Geometry3D.svg b/src/resources/icons/godot/Geometry3D.svg new file mode 100644 index 00000000..a390e612 --- /dev/null +++ b/src/resources/icons/godot/Geometry3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Geometry3D.svg.import b/src/resources/icons/godot/Geometry3D.svg.import new file mode 100644 index 00000000..5c8e0f74 --- /dev/null +++ b/src/resources/icons/godot/Geometry3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv2juct8n5gj7" +path="res://.godot/imported/Geometry3D.svg-ebccbabb6e32662eb4c8ed8c0614314b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Geometry3D.svg" +dest_files=["res://.godot/imported/Geometry3D.svg-ebccbabb6e32662eb4c8ed8c0614314b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GeometryInstance3D.svg b/src/resources/icons/godot/GeometryInstance3D.svg new file mode 100644 index 00000000..5184a48a --- /dev/null +++ b/src/resources/icons/godot/GeometryInstance3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GeometryInstance3D.svg.import b/src/resources/icons/godot/GeometryInstance3D.svg.import new file mode 100644 index 00000000..aac1336a --- /dev/null +++ b/src/resources/icons/godot/GeometryInstance3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd80k5w3eomt3" +path="res://.godot/imported/GeometryInstance3D.svg-c7ad92c65bbfb2a904b48283b0e9cbe1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GeometryInstance3D.svg" +dest_files=["res://.godot/imported/GeometryInstance3D.svg-c7ad92c65bbfb2a904b48283b0e9cbe1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Gizmo3DSamplePlayer.svg b/src/resources/icons/godot/Gizmo3DSamplePlayer.svg new file mode 100644 index 00000000..c43d0572 --- /dev/null +++ b/src/resources/icons/godot/Gizmo3DSamplePlayer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Gizmo3DSamplePlayer.svg.import b/src/resources/icons/godot/Gizmo3DSamplePlayer.svg.import new file mode 100644 index 00000000..4b68567b --- /dev/null +++ b/src/resources/icons/godot/Gizmo3DSamplePlayer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cflxowd1ma0nn" +path="res://.godot/imported/Gizmo3DSamplePlayer.svg-7e60142a0620ccb90abb9a32af2a875f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Gizmo3DSamplePlayer.svg" +dest_files=["res://.godot/imported/Gizmo3DSamplePlayer.svg-7e60142a0620ccb90abb9a32af2a875f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoAreaLight.svg b/src/resources/icons/godot/GizmoAreaLight.svg new file mode 100644 index 00000000..a9bc5efb --- /dev/null +++ b/src/resources/icons/godot/GizmoAreaLight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoAreaLight.svg.import b/src/resources/icons/godot/GizmoAreaLight.svg.import new file mode 100644 index 00000000..edf3452b --- /dev/null +++ b/src/resources/icons/godot/GizmoAreaLight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2k5ap81elwdh" +path="res://.godot/imported/GizmoAreaLight.svg-108fb533506ab6c72807071843b54169.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoAreaLight.svg" +dest_files=["res://.godot/imported/GizmoAreaLight.svg-108fb533506ab6c72807071843b54169.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoAudioListener3D.svg b/src/resources/icons/godot/GizmoAudioListener3D.svg new file mode 100644 index 00000000..b9b1c8cd --- /dev/null +++ b/src/resources/icons/godot/GizmoAudioListener3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoAudioListener3D.svg.import b/src/resources/icons/godot/GizmoAudioListener3D.svg.import new file mode 100644 index 00000000..3ce63e0d --- /dev/null +++ b/src/resources/icons/godot/GizmoAudioListener3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://usa52nspesjd" +path="res://.godot/imported/GizmoAudioListener3D.svg-e55bf6b59335db6023de3c5e568e095a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoAudioListener3D.svg" +dest_files=["res://.godot/imported/GizmoAudioListener3D.svg-e55bf6b59335db6023de3c5e568e095a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoCPUParticles3D.svg b/src/resources/icons/godot/GizmoCPUParticles3D.svg new file mode 100644 index 00000000..af1979ee --- /dev/null +++ b/src/resources/icons/godot/GizmoCPUParticles3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoCPUParticles3D.svg.import b/src/resources/icons/godot/GizmoCPUParticles3D.svg.import new file mode 100644 index 00000000..3cfc2921 --- /dev/null +++ b/src/resources/icons/godot/GizmoCPUParticles3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fn05w7ibcnxq" +path="res://.godot/imported/GizmoCPUParticles3D.svg-5db3aa97593eac04f881790db6ce6f05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoCPUParticles3D.svg" +dest_files=["res://.godot/imported/GizmoCPUParticles3D.svg-5db3aa97593eac04f881790db6ce6f05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoCamera3D.svg b/src/resources/icons/godot/GizmoCamera3D.svg new file mode 100644 index 00000000..924f04e5 --- /dev/null +++ b/src/resources/icons/godot/GizmoCamera3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoCamera3D.svg.import b/src/resources/icons/godot/GizmoCamera3D.svg.import new file mode 100644 index 00000000..c5087ef3 --- /dev/null +++ b/src/resources/icons/godot/GizmoCamera3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw2qrg75txpl4" +path="res://.godot/imported/GizmoCamera3D.svg-5752e4c5e6b9f04b9771e516f7c1a852.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoCamera3D.svg" +dest_files=["res://.godot/imported/GizmoCamera3D.svg-5752e4c5e6b9f04b9771e516f7c1a852.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoDecal.svg b/src/resources/icons/godot/GizmoDecal.svg new file mode 100644 index 00000000..5db0f9be --- /dev/null +++ b/src/resources/icons/godot/GizmoDecal.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoDecal.svg.import b/src/resources/icons/godot/GizmoDecal.svg.import new file mode 100644 index 00000000..ebdc6ca7 --- /dev/null +++ b/src/resources/icons/godot/GizmoDecal.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk7lpy41ts2py" +path="res://.godot/imported/GizmoDecal.svg-b65bd4125b00cb92b73ef4f9992b219f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoDecal.svg" +dest_files=["res://.godot/imported/GizmoDecal.svg-b65bd4125b00cb92b73ef4f9992b219f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoDirectionalLight.svg b/src/resources/icons/godot/GizmoDirectionalLight.svg new file mode 100644 index 00000000..d3d32825 --- /dev/null +++ b/src/resources/icons/godot/GizmoDirectionalLight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoDirectionalLight.svg.import b/src/resources/icons/godot/GizmoDirectionalLight.svg.import new file mode 100644 index 00000000..e05364dc --- /dev/null +++ b/src/resources/icons/godot/GizmoDirectionalLight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh1vue5usvkad" +path="res://.godot/imported/GizmoDirectionalLight.svg-77526459c46a7dd0e2702740d4bb304f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoDirectionalLight.svg" +dest_files=["res://.godot/imported/GizmoDirectionalLight.svg-77526459c46a7dd0e2702740d4bb304f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoFogVolume.svg b/src/resources/icons/godot/GizmoFogVolume.svg new file mode 100644 index 00000000..83de0550 --- /dev/null +++ b/src/resources/icons/godot/GizmoFogVolume.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoFogVolume.svg.import b/src/resources/icons/godot/GizmoFogVolume.svg.import new file mode 100644 index 00000000..3f94e71c --- /dev/null +++ b/src/resources/icons/godot/GizmoFogVolume.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://devidhkae4onv" +path="res://.godot/imported/GizmoFogVolume.svg-aadbced076e23254c3c98f03d10d9f65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoFogVolume.svg" +dest_files=["res://.godot/imported/GizmoFogVolume.svg-aadbced076e23254c3c98f03d10d9f65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoGPUParticles3D.svg b/src/resources/icons/godot/GizmoGPUParticles3D.svg new file mode 100644 index 00000000..8cd558ad --- /dev/null +++ b/src/resources/icons/godot/GizmoGPUParticles3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoGPUParticles3D.svg.import b/src/resources/icons/godot/GizmoGPUParticles3D.svg.import new file mode 100644 index 00000000..b1bba62d --- /dev/null +++ b/src/resources/icons/godot/GizmoGPUParticles3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b40re7gde825s" +path="res://.godot/imported/GizmoGPUParticles3D.svg-81accaf4d12ad0b31d1e1439f41c97b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoGPUParticles3D.svg" +dest_files=["res://.godot/imported/GizmoGPUParticles3D.svg-81accaf4d12ad0b31d1e1439f41c97b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoLight.svg b/src/resources/icons/godot/GizmoLight.svg new file mode 100644 index 00000000..ba13268b --- /dev/null +++ b/src/resources/icons/godot/GizmoLight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoLight.svg.import b/src/resources/icons/godot/GizmoLight.svg.import new file mode 100644 index 00000000..4de01e6a --- /dev/null +++ b/src/resources/icons/godot/GizmoLight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4q403idux7uf" +path="res://.godot/imported/GizmoLight.svg-5cefd6f0fd8311e5188a41634f7f8bbd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoLight.svg" +dest_files=["res://.godot/imported/GizmoLight.svg-5cefd6f0fd8311e5188a41634f7f8bbd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoLightmapGI.svg b/src/resources/icons/godot/GizmoLightmapGI.svg new file mode 100644 index 00000000..85563202 --- /dev/null +++ b/src/resources/icons/godot/GizmoLightmapGI.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoLightmapGI.svg.import b/src/resources/icons/godot/GizmoLightmapGI.svg.import new file mode 100644 index 00000000..76557807 --- /dev/null +++ b/src/resources/icons/godot/GizmoLightmapGI.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk1hs7tywymvp" +path="res://.godot/imported/GizmoLightmapGI.svg-d63bf772a543e066f62c35e6c7f58f6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoLightmapGI.svg" +dest_files=["res://.godot/imported/GizmoLightmapGI.svg-d63bf772a543e066f62c35e6c7f58f6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoLightmapProbe.svg b/src/resources/icons/godot/GizmoLightmapProbe.svg new file mode 100644 index 00000000..d73bbd5e --- /dev/null +++ b/src/resources/icons/godot/GizmoLightmapProbe.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoLightmapProbe.svg.import b/src/resources/icons/godot/GizmoLightmapProbe.svg.import new file mode 100644 index 00000000..7c632121 --- /dev/null +++ b/src/resources/icons/godot/GizmoLightmapProbe.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b828pt1ig11w5" +path="res://.godot/imported/GizmoLightmapProbe.svg-f3d7f06be69e1f2303d15be90db49569.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoLightmapProbe.svg" +dest_files=["res://.godot/imported/GizmoLightmapProbe.svg-f3d7f06be69e1f2303d15be90db49569.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoReflectionProbe.svg b/src/resources/icons/godot/GizmoReflectionProbe.svg new file mode 100644 index 00000000..39dfab9d --- /dev/null +++ b/src/resources/icons/godot/GizmoReflectionProbe.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoReflectionProbe.svg.import b/src/resources/icons/godot/GizmoReflectionProbe.svg.import new file mode 100644 index 00000000..a72f9a74 --- /dev/null +++ b/src/resources/icons/godot/GizmoReflectionProbe.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c38h72j7gfwu8" +path="res://.godot/imported/GizmoReflectionProbe.svg-85ceaff1af2b49c27a3da338aad98cc6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoReflectionProbe.svg" +dest_files=["res://.godot/imported/GizmoReflectionProbe.svg-85ceaff1af2b49c27a3da338aad98cc6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoSpotLight.svg b/src/resources/icons/godot/GizmoSpotLight.svg new file mode 100644 index 00000000..aa659649 --- /dev/null +++ b/src/resources/icons/godot/GizmoSpotLight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoSpotLight.svg.import b/src/resources/icons/godot/GizmoSpotLight.svg.import new file mode 100644 index 00000000..7537b6b5 --- /dev/null +++ b/src/resources/icons/godot/GizmoSpotLight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd0iwkvi2ukj0" +path="res://.godot/imported/GizmoSpotLight.svg-d8d90f6592f06fe42cee7f06fd65c1af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoSpotLight.svg" +dest_files=["res://.godot/imported/GizmoSpotLight.svg-d8d90f6592f06fe42cee7f06fd65c1af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GizmoVoxelGI.svg b/src/resources/icons/godot/GizmoVoxelGI.svg new file mode 100644 index 00000000..3712d36f --- /dev/null +++ b/src/resources/icons/godot/GizmoVoxelGI.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GizmoVoxelGI.svg.import b/src/resources/icons/godot/GizmoVoxelGI.svg.import new file mode 100644 index 00000000..c8841c75 --- /dev/null +++ b/src/resources/icons/godot/GizmoVoxelGI.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnhfa0ftctuf0" +path="res://.godot/imported/GizmoVoxelGI.svg-5c10d2b812d3f5f9a05edf57f9b8de8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GizmoVoxelGI.svg" +dest_files=["res://.godot/imported/GizmoVoxelGI.svg-5c10d2b812d3f5f9a05edf57f9b8de8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Godot.svg b/src/resources/icons/godot/Godot.svg new file mode 100644 index 00000000..1b18dd6a --- /dev/null +++ b/src/resources/icons/godot/Godot.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Godot.svg.import b/src/resources/icons/godot/Godot.svg.import new file mode 100644 index 00000000..e1133c21 --- /dev/null +++ b/src/resources/icons/godot/Godot.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy55y3tri04br" +path="res://.godot/imported/Godot.svg-1340b04f8e3f9ccda1f6f9cf42d54096.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Godot.svg" +dest_files=["res://.godot/imported/Godot.svg-1340b04f8e3f9ccda1f6f9cf42d54096.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GodotFile.svg b/src/resources/icons/godot/GodotFile.svg new file mode 100644 index 00000000..61404e4c --- /dev/null +++ b/src/resources/icons/godot/GodotFile.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GodotFile.svg.import b/src/resources/icons/godot/GodotFile.svg.import new file mode 100644 index 00000000..9b52bf55 --- /dev/null +++ b/src/resources/icons/godot/GodotFile.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nkrro8ua0h5d" +path="res://.godot/imported/GodotFile.svg-1404a8700f9ea58f50be20d4a90fae57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GodotFile.svg" +dest_files=["res://.godot/imported/GodotFile.svg-1404a8700f9ea58f50be20d4a90fae57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GodotMonochrome.svg b/src/resources/icons/godot/GodotMonochrome.svg new file mode 100644 index 00000000..d5474ece --- /dev/null +++ b/src/resources/icons/godot/GodotMonochrome.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GodotMonochrome.svg.import b/src/resources/icons/godot/GodotMonochrome.svg.import new file mode 100644 index 00000000..4e6065b6 --- /dev/null +++ b/src/resources/icons/godot/GodotMonochrome.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjhie463qyo0t" +path="res://.godot/imported/GodotMonochrome.svg-825ef93b0477508a0011e9f67b5443a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GodotMonochrome.svg" +dest_files=["res://.godot/imported/GodotMonochrome.svg-825ef93b0477508a0011e9f67b5443a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Gradient.svg b/src/resources/icons/godot/Gradient.svg new file mode 100644 index 00000000..498c2199 --- /dev/null +++ b/src/resources/icons/godot/Gradient.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Gradient.svg.import b/src/resources/icons/godot/Gradient.svg.import new file mode 100644 index 00000000..608ed569 --- /dev/null +++ b/src/resources/icons/godot/Gradient.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3ylca4ypk3yw" +path="res://.godot/imported/Gradient.svg-723d3a2844c7175e72f5626116e2c1a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Gradient.svg" +dest_files=["res://.godot/imported/Gradient.svg-723d3a2844c7175e72f5626116e2c1a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GradientTexture1D.svg b/src/resources/icons/godot/GradientTexture1D.svg new file mode 100644 index 00000000..59cd3b07 --- /dev/null +++ b/src/resources/icons/godot/GradientTexture1D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GradientTexture1D.svg.import b/src/resources/icons/godot/GradientTexture1D.svg.import new file mode 100644 index 00000000..1588c91c --- /dev/null +++ b/src/resources/icons/godot/GradientTexture1D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3vkkeotxyjq1" +path="res://.godot/imported/GradientTexture1D.svg-ca5a5c4c621123db3f65813968be7318.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GradientTexture1D.svg" +dest_files=["res://.godot/imported/GradientTexture1D.svg-ca5a5c4c621123db3f65813968be7318.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GradientTexture2D.svg b/src/resources/icons/godot/GradientTexture2D.svg new file mode 100644 index 00000000..2b4f017c --- /dev/null +++ b/src/resources/icons/godot/GradientTexture2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GradientTexture2D.svg.import b/src/resources/icons/godot/GradientTexture2D.svg.import new file mode 100644 index 00000000..23ec8f45 --- /dev/null +++ b/src/resources/icons/godot/GradientTexture2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6wgnxdneb145" +path="res://.godot/imported/GradientTexture2D.svg-719a8130374985891ee5428b85dde29e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GradientTexture2D.svg" +dest_files=["res://.godot/imported/GradientTexture2D.svg-719a8130374985891ee5428b85dde29e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GraphEdit.svg b/src/resources/icons/godot/GraphEdit.svg new file mode 100644 index 00000000..c4db9244 --- /dev/null +++ b/src/resources/icons/godot/GraphEdit.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GraphEdit.svg.import b/src/resources/icons/godot/GraphEdit.svg.import new file mode 100644 index 00000000..16ddb02c --- /dev/null +++ b/src/resources/icons/godot/GraphEdit.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://umemywrl3qqo" +path="res://.godot/imported/GraphEdit.svg-bcaa54560ab09afe23d8b8e5f9551cdb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GraphEdit.svg" +dest_files=["res://.godot/imported/GraphEdit.svg-bcaa54560ab09afe23d8b8e5f9551cdb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GraphElement.svg b/src/resources/icons/godot/GraphElement.svg new file mode 100644 index 00000000..c615e47f --- /dev/null +++ b/src/resources/icons/godot/GraphElement.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GraphElement.svg.import b/src/resources/icons/godot/GraphElement.svg.import new file mode 100644 index 00000000..2338d175 --- /dev/null +++ b/src/resources/icons/godot/GraphElement.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtsc5bnk5sw7f" +path="res://.godot/imported/GraphElement.svg-4b2d122ecd67b22cb21430f35ed80461.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GraphElement.svg" +dest_files=["res://.godot/imported/GraphElement.svg-4b2d122ecd67b22cb21430f35ed80461.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GraphFrame.svg b/src/resources/icons/godot/GraphFrame.svg new file mode 100644 index 00000000..532fd005 --- /dev/null +++ b/src/resources/icons/godot/GraphFrame.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GraphFrame.svg.import b/src/resources/icons/godot/GraphFrame.svg.import new file mode 100644 index 00000000..71dad350 --- /dev/null +++ b/src/resources/icons/godot/GraphFrame.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpo4avhk8x7iu" +path="res://.godot/imported/GraphFrame.svg-f85b7dec242cce4e284942de0d160814.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GraphFrame.svg" +dest_files=["res://.godot/imported/GraphFrame.svg-f85b7dec242cce4e284942de0d160814.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GraphNode.svg b/src/resources/icons/godot/GraphNode.svg new file mode 100644 index 00000000..82abf5bb --- /dev/null +++ b/src/resources/icons/godot/GraphNode.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GraphNode.svg.import b/src/resources/icons/godot/GraphNode.svg.import new file mode 100644 index 00000000..90c0411b --- /dev/null +++ b/src/resources/icons/godot/GraphNode.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mvr0bdmlwedr" +path="res://.godot/imported/GraphNode.svg-dcda1cf7730917cd973579da52d8e53a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GraphNode.svg" +dest_files=["res://.godot/imported/GraphNode.svg-dcda1cf7730917cd973579da52d8e53a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Grid.svg b/src/resources/icons/godot/Grid.svg new file mode 100644 index 00000000..349ab5a8 --- /dev/null +++ b/src/resources/icons/godot/Grid.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Grid.svg.import b/src/resources/icons/godot/Grid.svg.import new file mode 100644 index 00000000..e5d98b35 --- /dev/null +++ b/src/resources/icons/godot/Grid.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvtnw0octkpq8" +path="res://.godot/imported/Grid.svg-ecd7d3d994394cb0d8e95bc5a9763354.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Grid.svg" +dest_files=["res://.godot/imported/Grid.svg-ecd7d3d994394cb0d8e95bc5a9763354.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GridContainer.svg b/src/resources/icons/godot/GridContainer.svg new file mode 100644 index 00000000..24492518 --- /dev/null +++ b/src/resources/icons/godot/GridContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GridContainer.svg.import b/src/resources/icons/godot/GridContainer.svg.import new file mode 100644 index 00000000..a4536f5e --- /dev/null +++ b/src/resources/icons/godot/GridContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b52fbfpguuc6f" +path="res://.godot/imported/GridContainer.svg-a98c8b69ecc0de3e16b6454f510864e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GridContainer.svg" +dest_files=["res://.godot/imported/GridContainer.svg-a98c8b69ecc0de3e16b6454f510864e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GridLayout.svg b/src/resources/icons/godot/GridLayout.svg new file mode 100644 index 00000000..bcfa6016 --- /dev/null +++ b/src/resources/icons/godot/GridLayout.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GridLayout.svg.import b/src/resources/icons/godot/GridLayout.svg.import new file mode 100644 index 00000000..c845b71c --- /dev/null +++ b/src/resources/icons/godot/GridLayout.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr8kr65b4j5ht" +path="res://.godot/imported/GridLayout.svg-f3d24c09827a9d4169b255e5b96c1ba7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GridLayout.svg" +dest_files=["res://.godot/imported/GridLayout.svg-f3d24c09827a9d4169b255e5b96c1ba7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GridMinimap.svg b/src/resources/icons/godot/GridMinimap.svg new file mode 100644 index 00000000..9bbd8621 --- /dev/null +++ b/src/resources/icons/godot/GridMinimap.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GridMinimap.svg.import b/src/resources/icons/godot/GridMinimap.svg.import new file mode 100644 index 00000000..063c81c1 --- /dev/null +++ b/src/resources/icons/godot/GridMinimap.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4bj4t3cp6fef" +path="res://.godot/imported/GridMinimap.svg-07e5dfc6cc9118cdfd1e4ec73a82c20d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GridMinimap.svg" +dest_files=["res://.godot/imported/GridMinimap.svg-07e5dfc6cc9118cdfd1e4ec73a82c20d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GridToggle.svg b/src/resources/icons/godot/GridToggle.svg new file mode 100644 index 00000000..23a2a335 --- /dev/null +++ b/src/resources/icons/godot/GridToggle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GridToggle.svg.import b/src/resources/icons/godot/GridToggle.svg.import new file mode 100644 index 00000000..b9be440a --- /dev/null +++ b/src/resources/icons/godot/GridToggle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bte8r8htbka8c" +path="res://.godot/imported/GridToggle.svg-5aa9d3065e758fbd21e059e40405b522.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GridToggle.svg" +dest_files=["res://.godot/imported/GridToggle.svg-5aa9d3065e758fbd21e059e40405b522.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GrooveJoint2D.svg b/src/resources/icons/godot/GrooveJoint2D.svg new file mode 100644 index 00000000..a9fb8cdb --- /dev/null +++ b/src/resources/icons/godot/GrooveJoint2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GrooveJoint2D.svg.import b/src/resources/icons/godot/GrooveJoint2D.svg.import new file mode 100644 index 00000000..7664edb5 --- /dev/null +++ b/src/resources/icons/godot/GrooveJoint2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3ce6panpauqx" +path="res://.godot/imported/GrooveJoint2D.svg-bd7288040b6740f93462fb82bc4cceed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GrooveJoint2D.svg" +dest_files=["res://.godot/imported/GrooveJoint2D.svg-bd7288040b6740f93462fb82bc4cceed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Group.svg b/src/resources/icons/godot/Group.svg new file mode 100644 index 00000000..31bd999c --- /dev/null +++ b/src/resources/icons/godot/Group.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Group.svg.import b/src/resources/icons/godot/Group.svg.import new file mode 100644 index 00000000..e1e3a51a --- /dev/null +++ b/src/resources/icons/godot/Group.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbqn63d1sirwe" +path="res://.godot/imported/Group.svg-22e048abe751b37747704923d22170a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Group.svg" +dest_files=["res://.godot/imported/Group.svg-22e048abe751b37747704923d22170a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GroupViewport.svg b/src/resources/icons/godot/GroupViewport.svg new file mode 100644 index 00000000..9d758614 --- /dev/null +++ b/src/resources/icons/godot/GroupViewport.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GroupViewport.svg.import b/src/resources/icons/godot/GroupViewport.svg.import new file mode 100644 index 00000000..63004282 --- /dev/null +++ b/src/resources/icons/godot/GroupViewport.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://otv8ta852i1w" +path="res://.godot/imported/GroupViewport.svg-c3ee10a7565f253b3d9169221bd36221.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GroupViewport.svg" +dest_files=["res://.godot/imported/GroupViewport.svg-c3ee10a7565f253b3d9169221bd36221.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Groups.svg b/src/resources/icons/godot/Groups.svg new file mode 100644 index 00000000..9a922a10 --- /dev/null +++ b/src/resources/icons/godot/Groups.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Groups.svg.import b/src/resources/icons/godot/Groups.svg.import new file mode 100644 index 00000000..6f17e4b0 --- /dev/null +++ b/src/resources/icons/godot/Groups.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqtf4qs8esjdg" +path="res://.godot/imported/Groups.svg-0818181a4ab836e4d9901d09f3b40a51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Groups.svg" +dest_files=["res://.godot/imported/Groups.svg-0818181a4ab836e4d9901d09f3b40a51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiArrowUp.svg b/src/resources/icons/godot/GuiArrowUp.svg new file mode 100644 index 00000000..84edf2d9 --- /dev/null +++ b/src/resources/icons/godot/GuiArrowUp.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiArrowUp.svg.import b/src/resources/icons/godot/GuiArrowUp.svg.import new file mode 100644 index 00000000..eef79747 --- /dev/null +++ b/src/resources/icons/godot/GuiArrowUp.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cseowlyngdguy" +path="res://.godot/imported/GuiArrowUp.svg-af963ae5cb3ce90d3bce49f778942c66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiArrowUp.svg" +dest_files=["res://.godot/imported/GuiArrowUp.svg-af963ae5cb3ce90d3bce49f778942c66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiChecked.svg b/src/resources/icons/godot/GuiChecked.svg new file mode 100644 index 00000000..4a1c4bd2 --- /dev/null +++ b/src/resources/icons/godot/GuiChecked.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiChecked.svg.import b/src/resources/icons/godot/GuiChecked.svg.import new file mode 100644 index 00000000..f2d2a7b3 --- /dev/null +++ b/src/resources/icons/godot/GuiChecked.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfq2dipoctbui" +path="res://.godot/imported/GuiChecked.svg-216729424bf642ffa3dcd339c62842e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiChecked.svg" +dest_files=["res://.godot/imported/GuiChecked.svg-216729424bf642ffa3dcd339c62842e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiCheckedDisabled.svg b/src/resources/icons/godot/GuiCheckedDisabled.svg new file mode 100644 index 00000000..e3bae398 --- /dev/null +++ b/src/resources/icons/godot/GuiCheckedDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiCheckedDisabled.svg.import b/src/resources/icons/godot/GuiCheckedDisabled.svg.import new file mode 100644 index 00000000..4baa7ac7 --- /dev/null +++ b/src/resources/icons/godot/GuiCheckedDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6fhg1y8ad3cn" +path="res://.godot/imported/GuiCheckedDisabled.svg-b642e8fd1dd8d1664755fe4c4c92bf48.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiCheckedDisabled.svg" +dest_files=["res://.godot/imported/GuiCheckedDisabled.svg-b642e8fd1dd8d1664755fe4c4c92bf48.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiClose.svg b/src/resources/icons/godot/GuiClose.svg new file mode 100644 index 00000000..9a800e96 --- /dev/null +++ b/src/resources/icons/godot/GuiClose.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiClose.svg.import b/src/resources/icons/godot/GuiClose.svg.import new file mode 100644 index 00000000..de2534fb --- /dev/null +++ b/src/resources/icons/godot/GuiClose.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k7uppeifpmsm" +path="res://.godot/imported/GuiClose.svg-1834e0e1d017cf315cf8508ec3d069a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiClose.svg" +dest_files=["res://.godot/imported/GuiClose.svg-1834e0e1d017cf315cf8508ec3d069a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiDropdown.svg b/src/resources/icons/godot/GuiDropdown.svg new file mode 100644 index 00000000..64f9ca52 --- /dev/null +++ b/src/resources/icons/godot/GuiDropdown.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiDropdown.svg.import b/src/resources/icons/godot/GuiDropdown.svg.import new file mode 100644 index 00000000..1088a241 --- /dev/null +++ b/src/resources/icons/godot/GuiDropdown.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu8i7rocx1hm5" +path="res://.godot/imported/GuiDropdown.svg-ad617806936ba70836f8632c1045e4ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiDropdown.svg" +dest_files=["res://.godot/imported/GuiDropdown.svg-ad617806936ba70836f8632c1045e4ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiEllipsis.svg b/src/resources/icons/godot/GuiEllipsis.svg new file mode 100644 index 00000000..03242cbc --- /dev/null +++ b/src/resources/icons/godot/GuiEllipsis.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiEllipsis.svg.import b/src/resources/icons/godot/GuiEllipsis.svg.import new file mode 100644 index 00000000..024d57b9 --- /dev/null +++ b/src/resources/icons/godot/GuiEllipsis.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo3wmctg7dc70" +path="res://.godot/imported/GuiEllipsis.svg-a474816678e2ff573b312470fea8295b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiEllipsis.svg" +dest_files=["res://.godot/imported/GuiEllipsis.svg-a474816678e2ff573b312470fea8295b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiGraphNodePort.svg b/src/resources/icons/godot/GuiGraphNodePort.svg new file mode 100644 index 00000000..bd57d613 --- /dev/null +++ b/src/resources/icons/godot/GuiGraphNodePort.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiGraphNodePort.svg.import b/src/resources/icons/godot/GuiGraphNodePort.svg.import new file mode 100644 index 00000000..4e64ac7a --- /dev/null +++ b/src/resources/icons/godot/GuiGraphNodePort.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dshgvqeurcn6n" +path="res://.godot/imported/GuiGraphNodePort.svg-94665b69b646b1a3e584bbc89055e4d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiGraphNodePort.svg" +dest_files=["res://.godot/imported/GuiGraphNodePort.svg-94665b69b646b1a3e584bbc89055e4d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiHsplitter.svg b/src/resources/icons/godot/GuiHsplitter.svg new file mode 100644 index 00000000..4d9d5eae --- /dev/null +++ b/src/resources/icons/godot/GuiHsplitter.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiHsplitter.svg.import b/src/resources/icons/godot/GuiHsplitter.svg.import new file mode 100644 index 00000000..a0d7cede --- /dev/null +++ b/src/resources/icons/godot/GuiHsplitter.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://y1ct6rcg6cml" +path="res://.godot/imported/GuiHsplitter.svg-5e0c7ff28c025ba182eea3ba5a17c8f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiHsplitter.svg" +dest_files=["res://.godot/imported/GuiHsplitter.svg-5e0c7ff28c025ba182eea3ba5a17c8f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiIndeterminate.svg b/src/resources/icons/godot/GuiIndeterminate.svg new file mode 100644 index 00000000..e606268f --- /dev/null +++ b/src/resources/icons/godot/GuiIndeterminate.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiIndeterminate.svg.import b/src/resources/icons/godot/GuiIndeterminate.svg.import new file mode 100644 index 00000000..5960ec6c --- /dev/null +++ b/src/resources/icons/godot/GuiIndeterminate.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciwhsgqyftjub" +path="res://.godot/imported/GuiIndeterminate.svg-eb030fca81d7f554059fb3f0aa71836f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiIndeterminate.svg" +dest_files=["res://.godot/imported/GuiIndeterminate.svg-eb030fca81d7f554059fb3f0aa71836f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiIndeterminateDisabled.svg b/src/resources/icons/godot/GuiIndeterminateDisabled.svg new file mode 100644 index 00000000..2ede6080 --- /dev/null +++ b/src/resources/icons/godot/GuiIndeterminateDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiIndeterminateDisabled.svg.import b/src/resources/icons/godot/GuiIndeterminateDisabled.svg.import new file mode 100644 index 00000000..a3a554d6 --- /dev/null +++ b/src/resources/icons/godot/GuiIndeterminateDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djfiqacc2i0bp" +path="res://.godot/imported/GuiIndeterminateDisabled.svg-5b72ffe9f123d3f50ba155e3376c3536.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiIndeterminateDisabled.svg" +dest_files=["res://.godot/imported/GuiIndeterminateDisabled.svg-5b72ffe9f123d3f50ba155e3376c3536.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiMiniCheckerboard.svg b/src/resources/icons/godot/GuiMiniCheckerboard.svg new file mode 100644 index 00000000..9c0515d7 --- /dev/null +++ b/src/resources/icons/godot/GuiMiniCheckerboard.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiMiniCheckerboard.svg.import b/src/resources/icons/godot/GuiMiniCheckerboard.svg.import new file mode 100644 index 00000000..3cb93043 --- /dev/null +++ b/src/resources/icons/godot/GuiMiniCheckerboard.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0mw1nrnpu5c2" +path="res://.godot/imported/GuiMiniCheckerboard.svg-256b1cc2890070e1eef759e7aedb5ae8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiMiniCheckerboard.svg" +dest_files=["res://.godot/imported/GuiMiniCheckerboard.svg-256b1cc2890070e1eef759e7aedb5ae8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiOptionArrow.svg b/src/resources/icons/godot/GuiOptionArrow.svg new file mode 100644 index 00000000..8c541938 --- /dev/null +++ b/src/resources/icons/godot/GuiOptionArrow.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiOptionArrow.svg.import b/src/resources/icons/godot/GuiOptionArrow.svg.import new file mode 100644 index 00000000..7f6573a5 --- /dev/null +++ b/src/resources/icons/godot/GuiOptionArrow.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du3h7ipyu3j77" +path="res://.godot/imported/GuiOptionArrow.svg-7899c2496ae6513ee19ce1aaac5090eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiOptionArrow.svg" +dest_files=["res://.godot/imported/GuiOptionArrow.svg-7899c2496ae6513ee19ce1aaac5090eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiProgressBar.svg b/src/resources/icons/godot/GuiProgressBar.svg new file mode 100644 index 00000000..256a09fe --- /dev/null +++ b/src/resources/icons/godot/GuiProgressBar.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiProgressBar.svg.import b/src/resources/icons/godot/GuiProgressBar.svg.import new file mode 100644 index 00000000..b68ccd3d --- /dev/null +++ b/src/resources/icons/godot/GuiProgressBar.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w8up8hhikwxe" +path="res://.godot/imported/GuiProgressBar.svg-29e91f22973b88d465e5d9737639ef02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiProgressBar.svg" +dest_files=["res://.godot/imported/GuiProgressBar.svg-29e91f22973b88d465e5d9737639ef02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiProgressFill.svg b/src/resources/icons/godot/GuiProgressFill.svg new file mode 100644 index 00000000..e206b45d --- /dev/null +++ b/src/resources/icons/godot/GuiProgressFill.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiProgressFill.svg.import b/src/resources/icons/godot/GuiProgressFill.svg.import new file mode 100644 index 00000000..fd80251b --- /dev/null +++ b/src/resources/icons/godot/GuiProgressFill.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmfxhywmdwsfn" +path="res://.godot/imported/GuiProgressFill.svg-a98fca0b2963216eb8550cb5e8e37286.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiProgressFill.svg" +dest_files=["res://.godot/imported/GuiProgressFill.svg-a98fca0b2963216eb8550cb5e8e37286.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiRadioChecked.svg b/src/resources/icons/godot/GuiRadioChecked.svg new file mode 100644 index 00000000..b96ef7ee --- /dev/null +++ b/src/resources/icons/godot/GuiRadioChecked.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiRadioChecked.svg.import b/src/resources/icons/godot/GuiRadioChecked.svg.import new file mode 100644 index 00000000..6c10ae2a --- /dev/null +++ b/src/resources/icons/godot/GuiRadioChecked.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cso7n0mcosq3o" +path="res://.godot/imported/GuiRadioChecked.svg-2c3997421f06dc471ab9bcaa40153c20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiRadioChecked.svg" +dest_files=["res://.godot/imported/GuiRadioChecked.svg-2c3997421f06dc471ab9bcaa40153c20.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiRadioCheckedDisabled.svg b/src/resources/icons/godot/GuiRadioCheckedDisabled.svg new file mode 100644 index 00000000..56f80510 --- /dev/null +++ b/src/resources/icons/godot/GuiRadioCheckedDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiRadioCheckedDisabled.svg.import b/src/resources/icons/godot/GuiRadioCheckedDisabled.svg.import new file mode 100644 index 00000000..03d06e41 --- /dev/null +++ b/src/resources/icons/godot/GuiRadioCheckedDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bggygru1rhqo6" +path="res://.godot/imported/GuiRadioCheckedDisabled.svg-046367c053f6ac2ffc483d1ee473ac67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiRadioCheckedDisabled.svg" +dest_files=["res://.godot/imported/GuiRadioCheckedDisabled.svg-046367c053f6ac2ffc483d1ee473ac67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiRadioUnchecked.svg b/src/resources/icons/godot/GuiRadioUnchecked.svg new file mode 100644 index 00000000..d57cda7b --- /dev/null +++ b/src/resources/icons/godot/GuiRadioUnchecked.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiRadioUnchecked.svg.import b/src/resources/icons/godot/GuiRadioUnchecked.svg.import new file mode 100644 index 00000000..2ecb0e30 --- /dev/null +++ b/src/resources/icons/godot/GuiRadioUnchecked.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ond88j76k1jp" +path="res://.godot/imported/GuiRadioUnchecked.svg-2fb78ec834e1b56e918f0f8ff593fdd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiRadioUnchecked.svg" +dest_files=["res://.godot/imported/GuiRadioUnchecked.svg-2fb78ec834e1b56e918f0f8ff593fdd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiRadioUncheckedDisabled.svg b/src/resources/icons/godot/GuiRadioUncheckedDisabled.svg new file mode 100644 index 00000000..ea189fe2 --- /dev/null +++ b/src/resources/icons/godot/GuiRadioUncheckedDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiRadioUncheckedDisabled.svg.import b/src/resources/icons/godot/GuiRadioUncheckedDisabled.svg.import new file mode 100644 index 00000000..600b9165 --- /dev/null +++ b/src/resources/icons/godot/GuiRadioUncheckedDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cst116l34ggll" +path="res://.godot/imported/GuiRadioUncheckedDisabled.svg-8864005a21b392b822b750e0b3f54683.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiRadioUncheckedDisabled.svg" +dest_files=["res://.godot/imported/GuiRadioUncheckedDisabled.svg-8864005a21b392b822b750e0b3f54683.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiResizer.svg b/src/resources/icons/godot/GuiResizer.svg new file mode 100644 index 00000000..ff94092c --- /dev/null +++ b/src/resources/icons/godot/GuiResizer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiResizer.svg.import b/src/resources/icons/godot/GuiResizer.svg.import new file mode 100644 index 00000000..cf8c6efb --- /dev/null +++ b/src/resources/icons/godot/GuiResizer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqtf1nqitf3v7" +path="res://.godot/imported/GuiResizer.svg-e369bc959eba7b3ef9193f35cd283a06.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiResizer.svg" +dest_files=["res://.godot/imported/GuiResizer.svg-e369bc959eba7b3ef9193f35cd283a06.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiResizerTopLeft.svg b/src/resources/icons/godot/GuiResizerTopLeft.svg new file mode 100644 index 00000000..79492a9c --- /dev/null +++ b/src/resources/icons/godot/GuiResizerTopLeft.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiResizerTopLeft.svg.import b/src/resources/icons/godot/GuiResizerTopLeft.svg.import new file mode 100644 index 00000000..604f45f4 --- /dev/null +++ b/src/resources/icons/godot/GuiResizerTopLeft.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2gwsxyk0wdo4" +path="res://.godot/imported/GuiResizerTopLeft.svg-c679ce9dae41d5db33769c32c17f92e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiResizerTopLeft.svg" +dest_files=["res://.godot/imported/GuiResizerTopLeft.svg-c679ce9dae41d5db33769c32c17f92e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiScrollArrowLeft.svg b/src/resources/icons/godot/GuiScrollArrowLeft.svg new file mode 100644 index 00000000..9f2b50d3 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollArrowLeft.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiScrollArrowLeft.svg.import b/src/resources/icons/godot/GuiScrollArrowLeft.svg.import new file mode 100644 index 00000000..e8010662 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollArrowLeft.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c721egpuxkt87" +path="res://.godot/imported/GuiScrollArrowLeft.svg-69dd046e62767fff865bf110ef94117a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiScrollArrowLeft.svg" +dest_files=["res://.godot/imported/GuiScrollArrowLeft.svg-69dd046e62767fff865bf110ef94117a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiScrollArrowLeftHl.svg b/src/resources/icons/godot/GuiScrollArrowLeftHl.svg new file mode 100644 index 00000000..3120c2d2 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollArrowLeftHl.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiScrollArrowLeftHl.svg.import b/src/resources/icons/godot/GuiScrollArrowLeftHl.svg.import new file mode 100644 index 00000000..17932599 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollArrowLeftHl.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6gt7rqsvpuny" +path="res://.godot/imported/GuiScrollArrowLeftHl.svg-d610121493668131a3a7697a13cbbba9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiScrollArrowLeftHl.svg" +dest_files=["res://.godot/imported/GuiScrollArrowLeftHl.svg-d610121493668131a3a7697a13cbbba9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiScrollArrowRight.svg b/src/resources/icons/godot/GuiScrollArrowRight.svg new file mode 100644 index 00000000..a0da11ff --- /dev/null +++ b/src/resources/icons/godot/GuiScrollArrowRight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiScrollArrowRight.svg.import b/src/resources/icons/godot/GuiScrollArrowRight.svg.import new file mode 100644 index 00000000..76fb17d9 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollArrowRight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6kx1kdpd5uob" +path="res://.godot/imported/GuiScrollArrowRight.svg-607bbff430e24770073156f2b0ac80dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiScrollArrowRight.svg" +dest_files=["res://.godot/imported/GuiScrollArrowRight.svg-607bbff430e24770073156f2b0ac80dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiScrollArrowRightHl.svg b/src/resources/icons/godot/GuiScrollArrowRightHl.svg new file mode 100644 index 00000000..f1aad966 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollArrowRightHl.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiScrollArrowRightHl.svg.import b/src/resources/icons/godot/GuiScrollArrowRightHl.svg.import new file mode 100644 index 00000000..2df6aeb4 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollArrowRightHl.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7kg6v7llc1vt" +path="res://.godot/imported/GuiScrollArrowRightHl.svg-aa37c0fc578a4b006ce103cb1fea796b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiScrollArrowRightHl.svg" +dest_files=["res://.godot/imported/GuiScrollArrowRightHl.svg-aa37c0fc578a4b006ce103cb1fea796b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiScrollBg.svg b/src/resources/icons/godot/GuiScrollBg.svg new file mode 100644 index 00000000..5d80bb44 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollBg.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiScrollBg.svg.import b/src/resources/icons/godot/GuiScrollBg.svg.import new file mode 100644 index 00000000..da3bfe69 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollBg.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gyk6xf0pqmhy" +path="res://.godot/imported/GuiScrollBg.svg-b11c4d75cfd920b19c6407162cd39cd3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiScrollBg.svg" +dest_files=["res://.godot/imported/GuiScrollBg.svg-b11c4d75cfd920b19c6407162cd39cd3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiScrollGrabber.svg b/src/resources/icons/godot/GuiScrollGrabber.svg new file mode 100644 index 00000000..05d94731 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollGrabber.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiScrollGrabber.svg.import b/src/resources/icons/godot/GuiScrollGrabber.svg.import new file mode 100644 index 00000000..272d931a --- /dev/null +++ b/src/resources/icons/godot/GuiScrollGrabber.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwhrvdnrcouc1" +path="res://.godot/imported/GuiScrollGrabber.svg-342771f62d9ba9da9d4fc5d3370c0356.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiScrollGrabber.svg" +dest_files=["res://.godot/imported/GuiScrollGrabber.svg-342771f62d9ba9da9d4fc5d3370c0356.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiScrollGrabberHl.svg b/src/resources/icons/godot/GuiScrollGrabberHl.svg new file mode 100644 index 00000000..7380ff23 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollGrabberHl.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiScrollGrabberHl.svg.import b/src/resources/icons/godot/GuiScrollGrabberHl.svg.import new file mode 100644 index 00000000..6c4e2bca --- /dev/null +++ b/src/resources/icons/godot/GuiScrollGrabberHl.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5anbtjtef7xp" +path="res://.godot/imported/GuiScrollGrabberHl.svg-c65f1e81bbab0f21550e8b93bf23f7b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiScrollGrabberHl.svg" +dest_files=["res://.godot/imported/GuiScrollGrabberHl.svg-c65f1e81bbab0f21550e8b93bf23f7b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiScrollGrabberPressed.svg b/src/resources/icons/godot/GuiScrollGrabberPressed.svg new file mode 100644 index 00000000..e8684bb7 --- /dev/null +++ b/src/resources/icons/godot/GuiScrollGrabberPressed.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiScrollGrabberPressed.svg.import b/src/resources/icons/godot/GuiScrollGrabberPressed.svg.import new file mode 100644 index 00000000..fc4d93bf --- /dev/null +++ b/src/resources/icons/godot/GuiScrollGrabberPressed.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bng4wrihxbdcp" +path="res://.godot/imported/GuiScrollGrabberPressed.svg-9ab01ee72b43451868d0b45ef44dccf0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiScrollGrabberPressed.svg" +dest_files=["res://.godot/imported/GuiScrollGrabberPressed.svg-9ab01ee72b43451868d0b45ef44dccf0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiSliderGrabber.svg b/src/resources/icons/godot/GuiSliderGrabber.svg new file mode 100644 index 00000000..37d0db3c --- /dev/null +++ b/src/resources/icons/godot/GuiSliderGrabber.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiSliderGrabber.svg.import b/src/resources/icons/godot/GuiSliderGrabber.svg.import new file mode 100644 index 00000000..1ad4760a --- /dev/null +++ b/src/resources/icons/godot/GuiSliderGrabber.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xu3w2mw47r3a" +path="res://.godot/imported/GuiSliderGrabber.svg-e0f11f22f869d823ed85f7748ce1f532.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiSliderGrabber.svg" +dest_files=["res://.godot/imported/GuiSliderGrabber.svg-e0f11f22f869d823ed85f7748ce1f532.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiSliderGrabberHl.svg b/src/resources/icons/godot/GuiSliderGrabberHl.svg new file mode 100644 index 00000000..22150d61 --- /dev/null +++ b/src/resources/icons/godot/GuiSliderGrabberHl.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiSliderGrabberHl.svg.import b/src/resources/icons/godot/GuiSliderGrabberHl.svg.import new file mode 100644 index 00000000..721feaa8 --- /dev/null +++ b/src/resources/icons/godot/GuiSliderGrabberHl.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpmn62vfs77r1" +path="res://.godot/imported/GuiSliderGrabberHl.svg-93cfa3bd416c355b3c60ebd805a601db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiSliderGrabberHl.svg" +dest_files=["res://.godot/imported/GuiSliderGrabberHl.svg-93cfa3bd416c355b3c60ebd805a601db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiSpace.svg b/src/resources/icons/godot/GuiSpace.svg new file mode 100644 index 00000000..8d9f1317 --- /dev/null +++ b/src/resources/icons/godot/GuiSpace.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiSpace.svg.import b/src/resources/icons/godot/GuiSpace.svg.import new file mode 100644 index 00000000..84bf5b23 --- /dev/null +++ b/src/resources/icons/godot/GuiSpace.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg2j423vwnykf" +path="res://.godot/imported/GuiSpace.svg-feaa1c4586b4cd34c5cbd966be28d48d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiSpace.svg" +dest_files=["res://.godot/imported/GuiSpace.svg-feaa1c4586b4cd34c5cbd966be28d48d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiSpinboxDown.svg b/src/resources/icons/godot/GuiSpinboxDown.svg new file mode 100644 index 00000000..e64452b0 --- /dev/null +++ b/src/resources/icons/godot/GuiSpinboxDown.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiSpinboxDown.svg.import b/src/resources/icons/godot/GuiSpinboxDown.svg.import new file mode 100644 index 00000000..ad87f475 --- /dev/null +++ b/src/resources/icons/godot/GuiSpinboxDown.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vswaw8iwbjv1" +path="res://.godot/imported/GuiSpinboxDown.svg-cf2eb9b2c95dacad566eedd932158bdf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiSpinboxDown.svg" +dest_files=["res://.godot/imported/GuiSpinboxDown.svg-cf2eb9b2c95dacad566eedd932158bdf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiSpinboxUp.svg b/src/resources/icons/godot/GuiSpinboxUp.svg new file mode 100644 index 00000000..1c7be3d3 --- /dev/null +++ b/src/resources/icons/godot/GuiSpinboxUp.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiSpinboxUp.svg.import b/src/resources/icons/godot/GuiSpinboxUp.svg.import new file mode 100644 index 00000000..f81ad13e --- /dev/null +++ b/src/resources/icons/godot/GuiSpinboxUp.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cats73qorro0q" +path="res://.godot/imported/GuiSpinboxUp.svg-5fc89c555f6f32bf69cd0b2e8b172062.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiSpinboxUp.svg" +dest_files=["res://.godot/imported/GuiSpinboxUp.svg-5fc89c555f6f32bf69cd0b2e8b172062.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiSpinboxUpdown.svg b/src/resources/icons/godot/GuiSpinboxUpdown.svg new file mode 100644 index 00000000..7d0f4905 --- /dev/null +++ b/src/resources/icons/godot/GuiSpinboxUpdown.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiSpinboxUpdown.svg.import b/src/resources/icons/godot/GuiSpinboxUpdown.svg.import new file mode 100644 index 00000000..2f75573d --- /dev/null +++ b/src/resources/icons/godot/GuiSpinboxUpdown.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cso5q5v4llvnu" +path="res://.godot/imported/GuiSpinboxUpdown.svg-d7ff1cd6e460de280a39a17aad92d421.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiSpinboxUpdown.svg" +dest_files=["res://.godot/imported/GuiSpinboxUpdown.svg-d7ff1cd6e460de280a39a17aad92d421.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiSpinboxUpdownDisabled.svg b/src/resources/icons/godot/GuiSpinboxUpdownDisabled.svg new file mode 100644 index 00000000..7b6464a7 --- /dev/null +++ b/src/resources/icons/godot/GuiSpinboxUpdownDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiSpinboxUpdownDisabled.svg.import b/src/resources/icons/godot/GuiSpinboxUpdownDisabled.svg.import new file mode 100644 index 00000000..cb30a73e --- /dev/null +++ b/src/resources/icons/godot/GuiSpinboxUpdownDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v8vkfwl2ogm6" +path="res://.godot/imported/GuiSpinboxUpdownDisabled.svg-777d4487b136e522bba8738b4abcce56.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiSpinboxUpdownDisabled.svg" +dest_files=["res://.godot/imported/GuiSpinboxUpdownDisabled.svg-777d4487b136e522bba8738b4abcce56.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiTab.svg b/src/resources/icons/godot/GuiTab.svg new file mode 100644 index 00000000..504429a0 --- /dev/null +++ b/src/resources/icons/godot/GuiTab.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiTab.svg.import b/src/resources/icons/godot/GuiTab.svg.import new file mode 100644 index 00000000..c4edc275 --- /dev/null +++ b/src/resources/icons/godot/GuiTab.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6xn7w3g1elbi" +path="res://.godot/imported/GuiTab.svg-b8c220693fe72bb35547289e3d7c9549.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiTab.svg" +dest_files=["res://.godot/imported/GuiTab.svg-b8c220693fe72bb35547289e3d7c9549.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiTabDropMark.svg b/src/resources/icons/godot/GuiTabDropMark.svg new file mode 100644 index 00000000..00029f4d --- /dev/null +++ b/src/resources/icons/godot/GuiTabDropMark.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiTabDropMark.svg.import b/src/resources/icons/godot/GuiTabDropMark.svg.import new file mode 100644 index 00000000..a5169822 --- /dev/null +++ b/src/resources/icons/godot/GuiTabDropMark.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpgmp8u3546il" +path="res://.godot/imported/GuiTabDropMark.svg-8d797c38b2422e6a487beb51c144571f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiTabDropMark.svg" +dest_files=["res://.godot/imported/GuiTabDropMark.svg-8d797c38b2422e6a487beb51c144571f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiTabMenu.svg b/src/resources/icons/godot/GuiTabMenu.svg new file mode 100644 index 00000000..d382dc26 --- /dev/null +++ b/src/resources/icons/godot/GuiTabMenu.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiTabMenu.svg.import b/src/resources/icons/godot/GuiTabMenu.svg.import new file mode 100644 index 00000000..35164f89 --- /dev/null +++ b/src/resources/icons/godot/GuiTabMenu.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfmbb08ds0foq" +path="res://.godot/imported/GuiTabMenu.svg-538e954ce60da7b7eb4afbf6f1fb396a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiTabMenu.svg" +dest_files=["res://.godot/imported/GuiTabMenu.svg-538e954ce60da7b7eb4afbf6f1fb396a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiTabMenuHl.svg b/src/resources/icons/godot/GuiTabMenuHl.svg new file mode 100644 index 00000000..ab995aec --- /dev/null +++ b/src/resources/icons/godot/GuiTabMenuHl.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiTabMenuHl.svg.import b/src/resources/icons/godot/GuiTabMenuHl.svg.import new file mode 100644 index 00000000..b3ca4196 --- /dev/null +++ b/src/resources/icons/godot/GuiTabMenuHl.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgw6u364vn7dm" +path="res://.godot/imported/GuiTabMenuHl.svg-57ee11f016d970f151a8a12e0b6d0423.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiTabMenuHl.svg" +dest_files=["res://.godot/imported/GuiTabMenuHl.svg-57ee11f016d970f151a8a12e0b6d0423.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiTabMenuHlDarkBackground.svg b/src/resources/icons/godot/GuiTabMenuHlDarkBackground.svg new file mode 100644 index 00000000..ab995aec --- /dev/null +++ b/src/resources/icons/godot/GuiTabMenuHlDarkBackground.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiTabMenuHlDarkBackground.svg.import b/src/resources/icons/godot/GuiTabMenuHlDarkBackground.svg.import new file mode 100644 index 00000000..ecd4a488 --- /dev/null +++ b/src/resources/icons/godot/GuiTabMenuHlDarkBackground.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckq1cxxol06y6" +path="res://.godot/imported/GuiTabMenuHlDarkBackground.svg-383c3b1a49fde31e83b4fc2fba45b518.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiTabMenuHlDarkBackground.svg" +dest_files=["res://.godot/imported/GuiTabMenuHlDarkBackground.svg-383c3b1a49fde31e83b4fc2fba45b518.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiToggleOff.svg b/src/resources/icons/godot/GuiToggleOff.svg new file mode 100644 index 00000000..fc14fda6 --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOff.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiToggleOff.svg.import b/src/resources/icons/godot/GuiToggleOff.svg.import new file mode 100644 index 00000000..0c3f35a6 --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOff.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q2hop5i83m2n" +path="res://.godot/imported/GuiToggleOff.svg-a9eab56153c4854061b729e95e2e8c6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiToggleOff.svg" +dest_files=["res://.godot/imported/GuiToggleOff.svg-a9eab56153c4854061b729e95e2e8c6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiToggleOffDisabled.svg b/src/resources/icons/godot/GuiToggleOffDisabled.svg new file mode 100644 index 00000000..2a6ba8d5 --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOffDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiToggleOffDisabled.svg.import b/src/resources/icons/godot/GuiToggleOffDisabled.svg.import new file mode 100644 index 00000000..cbee25ef --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOffDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgoxm0ykyq23d" +path="res://.godot/imported/GuiToggleOffDisabled.svg-9de77244a257d3777c42f7a401abe2f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiToggleOffDisabled.svg" +dest_files=["res://.godot/imported/GuiToggleOffDisabled.svg-9de77244a257d3777c42f7a401abe2f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiToggleOffDisabledMirrored.svg b/src/resources/icons/godot/GuiToggleOffDisabledMirrored.svg new file mode 100644 index 00000000..96c51713 --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOffDisabledMirrored.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiToggleOffDisabledMirrored.svg.import b/src/resources/icons/godot/GuiToggleOffDisabledMirrored.svg.import new file mode 100644 index 00000000..d98f385f --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOffDisabledMirrored.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf35obxdg5y4c" +path="res://.godot/imported/GuiToggleOffDisabledMirrored.svg-42eb170b8e6570116c53210f3763cc36.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiToggleOffDisabledMirrored.svg" +dest_files=["res://.godot/imported/GuiToggleOffDisabledMirrored.svg-42eb170b8e6570116c53210f3763cc36.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiToggleOffMirrored.svg b/src/resources/icons/godot/GuiToggleOffMirrored.svg new file mode 100644 index 00000000..0884c3bc --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOffMirrored.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiToggleOffMirrored.svg.import b/src/resources/icons/godot/GuiToggleOffMirrored.svg.import new file mode 100644 index 00000000..dfeb55b5 --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOffMirrored.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oi423mlyg6b0" +path="res://.godot/imported/GuiToggleOffMirrored.svg-2e84a4c5383bb4106b28c4014c25977b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiToggleOffMirrored.svg" +dest_files=["res://.godot/imported/GuiToggleOffMirrored.svg-2e84a4c5383bb4106b28c4014c25977b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiToggleOn.svg b/src/resources/icons/godot/GuiToggleOn.svg new file mode 100644 index 00000000..d543101a --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOn.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiToggleOn.svg.import b/src/resources/icons/godot/GuiToggleOn.svg.import new file mode 100644 index 00000000..8ce6591a --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOn.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvua4k0x2vbbh" +path="res://.godot/imported/GuiToggleOn.svg-540c310ff828ac5c610392de57812e97.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiToggleOn.svg" +dest_files=["res://.godot/imported/GuiToggleOn.svg-540c310ff828ac5c610392de57812e97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiToggleOnDisabled.svg b/src/resources/icons/godot/GuiToggleOnDisabled.svg new file mode 100644 index 00000000..83e3b5f0 --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOnDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiToggleOnDisabled.svg.import b/src/resources/icons/godot/GuiToggleOnDisabled.svg.import new file mode 100644 index 00000000..82d50723 --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOnDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qpkkt8km7p4c" +path="res://.godot/imported/GuiToggleOnDisabled.svg-276a22e39c97f92d4188f61679e68101.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiToggleOnDisabled.svg" +dest_files=["res://.godot/imported/GuiToggleOnDisabled.svg-276a22e39c97f92d4188f61679e68101.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiToggleOnDisabledMirrored.svg b/src/resources/icons/godot/GuiToggleOnDisabledMirrored.svg new file mode 100644 index 00000000..70dbdd79 --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOnDisabledMirrored.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiToggleOnDisabledMirrored.svg.import b/src/resources/icons/godot/GuiToggleOnDisabledMirrored.svg.import new file mode 100644 index 00000000..c1397df7 --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOnDisabledMirrored.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7jas4uwixlws" +path="res://.godot/imported/GuiToggleOnDisabledMirrored.svg-f7f19468e6d55445a8239f5a14673774.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiToggleOnDisabledMirrored.svg" +dest_files=["res://.godot/imported/GuiToggleOnDisabledMirrored.svg-f7f19468e6d55445a8239f5a14673774.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiToggleOnMirrored.svg b/src/resources/icons/godot/GuiToggleOnMirrored.svg new file mode 100644 index 00000000..f2c870d2 --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOnMirrored.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiToggleOnMirrored.svg.import b/src/resources/icons/godot/GuiToggleOnMirrored.svg.import new file mode 100644 index 00000000..9d78e689 --- /dev/null +++ b/src/resources/icons/godot/GuiToggleOnMirrored.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br7f8blvt3ma2" +path="res://.godot/imported/GuiToggleOnMirrored.svg-ddefbb59d65517dc427b3981cb8535a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiToggleOnMirrored.svg" +dest_files=["res://.godot/imported/GuiToggleOnMirrored.svg-ddefbb59d65517dc427b3981cb8535a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiTreeArrowDown.svg b/src/resources/icons/godot/GuiTreeArrowDown.svg new file mode 100644 index 00000000..571aa605 --- /dev/null +++ b/src/resources/icons/godot/GuiTreeArrowDown.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiTreeArrowDown.svg.import b/src/resources/icons/godot/GuiTreeArrowDown.svg.import new file mode 100644 index 00000000..ac4eb46d --- /dev/null +++ b/src/resources/icons/godot/GuiTreeArrowDown.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djxutrphxx3yf" +path="res://.godot/imported/GuiTreeArrowDown.svg-df4c0380ac99dd124c248e04474f5256.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiTreeArrowDown.svg" +dest_files=["res://.godot/imported/GuiTreeArrowDown.svg-df4c0380ac99dd124c248e04474f5256.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiTreeArrowLeft.svg b/src/resources/icons/godot/GuiTreeArrowLeft.svg new file mode 100644 index 00000000..8f8f0915 --- /dev/null +++ b/src/resources/icons/godot/GuiTreeArrowLeft.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiTreeArrowLeft.svg.import b/src/resources/icons/godot/GuiTreeArrowLeft.svg.import new file mode 100644 index 00000000..e1edee17 --- /dev/null +++ b/src/resources/icons/godot/GuiTreeArrowLeft.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0jke56vm1k5w" +path="res://.godot/imported/GuiTreeArrowLeft.svg-ca4181539197552da1beae958de2c6fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiTreeArrowLeft.svg" +dest_files=["res://.godot/imported/GuiTreeArrowLeft.svg-ca4181539197552da1beae958de2c6fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiTreeArrowRight.svg b/src/resources/icons/godot/GuiTreeArrowRight.svg new file mode 100644 index 00000000..e4a94735 --- /dev/null +++ b/src/resources/icons/godot/GuiTreeArrowRight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiTreeArrowRight.svg.import b/src/resources/icons/godot/GuiTreeArrowRight.svg.import new file mode 100644 index 00000000..c20da606 --- /dev/null +++ b/src/resources/icons/godot/GuiTreeArrowRight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4ksb5hdpaftj" +path="res://.godot/imported/GuiTreeArrowRight.svg-6eadf8704424f3c670dc0e2ec70c73a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiTreeArrowRight.svg" +dest_files=["res://.godot/imported/GuiTreeArrowRight.svg-6eadf8704424f3c670dc0e2ec70c73a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiTreeUpdown.svg b/src/resources/icons/godot/GuiTreeUpdown.svg new file mode 100644 index 00000000..dc688ff5 --- /dev/null +++ b/src/resources/icons/godot/GuiTreeUpdown.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiTreeUpdown.svg.import b/src/resources/icons/godot/GuiTreeUpdown.svg.import new file mode 100644 index 00000000..d948147f --- /dev/null +++ b/src/resources/icons/godot/GuiTreeUpdown.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b43qvb7vxase5" +path="res://.godot/imported/GuiTreeUpdown.svg-b1658c2fc6bc9f306f81a79f665ade48.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiTreeUpdown.svg" +dest_files=["res://.godot/imported/GuiTreeUpdown.svg-b1658c2fc6bc9f306f81a79f665ade48.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiUnchecked.svg b/src/resources/icons/godot/GuiUnchecked.svg new file mode 100644 index 00000000..4caa29a6 --- /dev/null +++ b/src/resources/icons/godot/GuiUnchecked.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiUnchecked.svg.import b/src/resources/icons/godot/GuiUnchecked.svg.import new file mode 100644 index 00000000..9ff5f813 --- /dev/null +++ b/src/resources/icons/godot/GuiUnchecked.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p7qxilyfv62f" +path="res://.godot/imported/GuiUnchecked.svg-8617c356a8c16b8559108c9614b27b43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiUnchecked.svg" +dest_files=["res://.godot/imported/GuiUnchecked.svg-8617c356a8c16b8559108c9614b27b43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiUncheckedDisabled.svg b/src/resources/icons/godot/GuiUncheckedDisabled.svg new file mode 100644 index 00000000..e96653f1 --- /dev/null +++ b/src/resources/icons/godot/GuiUncheckedDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiUncheckedDisabled.svg.import b/src/resources/icons/godot/GuiUncheckedDisabled.svg.import new file mode 100644 index 00000000..d293f235 --- /dev/null +++ b/src/resources/icons/godot/GuiUncheckedDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkrchitq2hp2x" +path="res://.godot/imported/GuiUncheckedDisabled.svg-66e354a77483259ae88f53b271683a9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiUncheckedDisabled.svg" +dest_files=["res://.godot/imported/GuiUncheckedDisabled.svg-66e354a77483259ae88f53b271683a9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiVisibilityHidden.svg b/src/resources/icons/godot/GuiVisibilityHidden.svg new file mode 100644 index 00000000..56e51f41 --- /dev/null +++ b/src/resources/icons/godot/GuiVisibilityHidden.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiVisibilityHidden.svg.import b/src/resources/icons/godot/GuiVisibilityHidden.svg.import new file mode 100644 index 00000000..66076b4c --- /dev/null +++ b/src/resources/icons/godot/GuiVisibilityHidden.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1ibsv8a6ujlt" +path="res://.godot/imported/GuiVisibilityHidden.svg-9d5b6d776ca2ca4def0918a232f050b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiVisibilityHidden.svg" +dest_files=["res://.godot/imported/GuiVisibilityHidden.svg-9d5b6d776ca2ca4def0918a232f050b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiVisibilityVisible.svg b/src/resources/icons/godot/GuiVisibilityVisible.svg new file mode 100644 index 00000000..b88f86ee --- /dev/null +++ b/src/resources/icons/godot/GuiVisibilityVisible.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiVisibilityVisible.svg.import b/src/resources/icons/godot/GuiVisibilityVisible.svg.import new file mode 100644 index 00000000..f91231ed --- /dev/null +++ b/src/resources/icons/godot/GuiVisibilityVisible.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc5ag0wy7nhmj" +path="res://.godot/imported/GuiVisibilityVisible.svg-5d337d41c31d662b428119bc3309451a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiVisibilityVisible.svg" +dest_files=["res://.godot/imported/GuiVisibilityVisible.svg-5d337d41c31d662b428119bc3309451a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiVisibilityXray.svg b/src/resources/icons/godot/GuiVisibilityXray.svg new file mode 100644 index 00000000..6ed0797d --- /dev/null +++ b/src/resources/icons/godot/GuiVisibilityXray.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiVisibilityXray.svg.import b/src/resources/icons/godot/GuiVisibilityXray.svg.import new file mode 100644 index 00000000..71b24ae5 --- /dev/null +++ b/src/resources/icons/godot/GuiVisibilityXray.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3a236urb305" +path="res://.godot/imported/GuiVisibilityXray.svg-692a83dd909a776ba02553ce5eea25fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiVisibilityXray.svg" +dest_files=["res://.godot/imported/GuiVisibilityXray.svg-692a83dd909a776ba02553ce5eea25fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/GuiVsplitter.svg b/src/resources/icons/godot/GuiVsplitter.svg new file mode 100644 index 00000000..2a5426e7 --- /dev/null +++ b/src/resources/icons/godot/GuiVsplitter.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/GuiVsplitter.svg.import b/src/resources/icons/godot/GuiVsplitter.svg.import new file mode 100644 index 00000000..aa6a6244 --- /dev/null +++ b/src/resources/icons/godot/GuiVsplitter.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxisx61gkhnys" +path="res://.godot/imported/GuiVsplitter.svg-defc05acca046fa67beb0d07fccd5b09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/GuiVsplitter.svg" +dest_files=["res://.godot/imported/GuiVsplitter.svg-defc05acca046fa67beb0d07fccd5b09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/HBoxContainer.svg b/src/resources/icons/godot/HBoxContainer.svg new file mode 100644 index 00000000..eb35599f --- /dev/null +++ b/src/resources/icons/godot/HBoxContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/HBoxContainer.svg.import b/src/resources/icons/godot/HBoxContainer.svg.import new file mode 100644 index 00000000..5238008d --- /dev/null +++ b/src/resources/icons/godot/HBoxContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuad52erjfa3m" +path="res://.godot/imported/HBoxContainer.svg-b7a7edaa152360b9c2db08d723a87c45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/HBoxContainer.svg" +dest_files=["res://.godot/imported/HBoxContainer.svg-b7a7edaa152360b9c2db08d723a87c45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/HFlowContainer.svg b/src/resources/icons/godot/HFlowContainer.svg new file mode 100644 index 00000000..c3510e98 --- /dev/null +++ b/src/resources/icons/godot/HFlowContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/HFlowContainer.svg.import b/src/resources/icons/godot/HFlowContainer.svg.import new file mode 100644 index 00000000..1fe17654 --- /dev/null +++ b/src/resources/icons/godot/HFlowContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do6wnoeqmtr4m" +path="res://.godot/imported/HFlowContainer.svg-841e78d7c8bcac1721d00e8584a25dbd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/HFlowContainer.svg" +dest_files=["res://.godot/imported/HFlowContainer.svg-841e78d7c8bcac1721d00e8584a25dbd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/HScrollBar.svg b/src/resources/icons/godot/HScrollBar.svg new file mode 100644 index 00000000..0203189c --- /dev/null +++ b/src/resources/icons/godot/HScrollBar.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/HScrollBar.svg.import b/src/resources/icons/godot/HScrollBar.svg.import new file mode 100644 index 00000000..9e7ccb91 --- /dev/null +++ b/src/resources/icons/godot/HScrollBar.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsq24rktamiad" +path="res://.godot/imported/HScrollBar.svg-dc11447d936e08f8bb91da2c0f7bd03f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/HScrollBar.svg" +dest_files=["res://.godot/imported/HScrollBar.svg-dc11447d936e08f8bb91da2c0f7bd03f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/HSeparator.svg b/src/resources/icons/godot/HSeparator.svg new file mode 100644 index 00000000..f807bc3c --- /dev/null +++ b/src/resources/icons/godot/HSeparator.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/HSeparator.svg.import b/src/resources/icons/godot/HSeparator.svg.import new file mode 100644 index 00000000..78989b85 --- /dev/null +++ b/src/resources/icons/godot/HSeparator.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bduld7tm1ctc1" +path="res://.godot/imported/HSeparator.svg-f82ecb5ba3fe3368ff654b56cb0df083.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/HSeparator.svg" +dest_files=["res://.godot/imported/HSeparator.svg-f82ecb5ba3fe3368ff654b56cb0df083.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/HSlider.svg b/src/resources/icons/godot/HSlider.svg new file mode 100644 index 00000000..932a2e3e --- /dev/null +++ b/src/resources/icons/godot/HSlider.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/HSlider.svg.import b/src/resources/icons/godot/HSlider.svg.import new file mode 100644 index 00000000..356c16bb --- /dev/null +++ b/src/resources/icons/godot/HSlider.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lospgfq842j0" +path="res://.godot/imported/HSlider.svg-534901ca53686bf48064f7c46cc1208f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/HSlider.svg" +dest_files=["res://.godot/imported/HSlider.svg-534901ca53686bf48064f7c46cc1208f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/HSplitContainer.svg b/src/resources/icons/godot/HSplitContainer.svg new file mode 100644 index 00000000..e279943d --- /dev/null +++ b/src/resources/icons/godot/HSplitContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/HSplitContainer.svg.import b/src/resources/icons/godot/HSplitContainer.svg.import new file mode 100644 index 00000000..82d0f2fa --- /dev/null +++ b/src/resources/icons/godot/HSplitContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://242n0pj05gku" +path="res://.godot/imported/HSplitContainer.svg-a1b893be9ebd327f5461ac1dadc41d8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/HSplitContainer.svg" +dest_files=["res://.godot/imported/HSplitContainer.svg-a1b893be9ebd327f5461ac1dadc41d8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/HTTPRequest.svg b/src/resources/icons/godot/HTTPRequest.svg new file mode 100644 index 00000000..d3e3d1bc --- /dev/null +++ b/src/resources/icons/godot/HTTPRequest.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/HTTPRequest.svg.import b/src/resources/icons/godot/HTTPRequest.svg.import new file mode 100644 index 00000000..5923bc13 --- /dev/null +++ b/src/resources/icons/godot/HTTPRequest.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4mk2qhciif7o" +path="res://.godot/imported/HTTPRequest.svg-0fdbe2460aadf31a0db400f04b58738f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/HTTPRequest.svg" +dest_files=["res://.godot/imported/HTTPRequest.svg-0fdbe2460aadf31a0db400f04b58738f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Heart.svg b/src/resources/icons/godot/Heart.svg new file mode 100644 index 00000000..8830eee3 --- /dev/null +++ b/src/resources/icons/godot/Heart.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Heart.svg.import b/src/resources/icons/godot/Heart.svg.import new file mode 100644 index 00000000..3b0b5240 --- /dev/null +++ b/src/resources/icons/godot/Heart.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0dwx4dom6h72" +path="res://.godot/imported/Heart.svg-b033a7d01386f586acf80c3d4be9d45e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Heart.svg" +dest_files=["res://.godot/imported/Heart.svg-b033a7d01386f586acf80c3d4be9d45e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/HeightMapShape3D.svg b/src/resources/icons/godot/HeightMapShape3D.svg new file mode 100644 index 00000000..3be4694c --- /dev/null +++ b/src/resources/icons/godot/HeightMapShape3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/HeightMapShape3D.svg.import b/src/resources/icons/godot/HeightMapShape3D.svg.import new file mode 100644 index 00000000..51617d05 --- /dev/null +++ b/src/resources/icons/godot/HeightMapShape3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kpbtymgeu71i" +path="res://.godot/imported/HeightMapShape3D.svg-60ee630b11535f6642998785d684a507.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/HeightMapShape3D.svg" +dest_files=["res://.godot/imported/HeightMapShape3D.svg-60ee630b11535f6642998785d684a507.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Help.svg b/src/resources/icons/godot/Help.svg new file mode 100644 index 00000000..428e5b0d --- /dev/null +++ b/src/resources/icons/godot/Help.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Help.svg.import b/src/resources/icons/godot/Help.svg.import new file mode 100644 index 00000000..b052a524 --- /dev/null +++ b/src/resources/icons/godot/Help.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk8dwrjm8ndym" +path="res://.godot/imported/Help.svg-c51349b2f776ea12f69d7126f3fea761.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Help.svg" +dest_files=["res://.godot/imported/Help.svg-c51349b2f776ea12f69d7126f3fea761.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/HelpSearch.svg b/src/resources/icons/godot/HelpSearch.svg new file mode 100644 index 00000000..8106e73c --- /dev/null +++ b/src/resources/icons/godot/HelpSearch.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/HelpSearch.svg.import b/src/resources/icons/godot/HelpSearch.svg.import new file mode 100644 index 00000000..544d72e3 --- /dev/null +++ b/src/resources/icons/godot/HelpSearch.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgvusma3h2vnl" +path="res://.godot/imported/HelpSearch.svg-0cb29b69b636739a33f7bad0647bd2e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/HelpSearch.svg" +dest_files=["res://.godot/imported/HelpSearch.svg-0cb29b69b636739a33f7bad0647bd2e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Hierarchy.svg b/src/resources/icons/godot/Hierarchy.svg new file mode 100644 index 00000000..5a00864e --- /dev/null +++ b/src/resources/icons/godot/Hierarchy.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Hierarchy.svg.import b/src/resources/icons/godot/Hierarchy.svg.import new file mode 100644 index 00000000..a3bd7d41 --- /dev/null +++ b/src/resources/icons/godot/Hierarchy.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8ahma1xk6klb" +path="res://.godot/imported/Hierarchy.svg-80503694482f07f14536a38aa18be311.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Hierarchy.svg" +dest_files=["res://.godot/imported/Hierarchy.svg-80503694482f07f14536a38aa18be311.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/HingeJoint3D.svg b/src/resources/icons/godot/HingeJoint3D.svg new file mode 100644 index 00000000..6f16ede6 --- /dev/null +++ b/src/resources/icons/godot/HingeJoint3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/HingeJoint3D.svg.import b/src/resources/icons/godot/HingeJoint3D.svg.import new file mode 100644 index 00000000..53190d16 --- /dev/null +++ b/src/resources/icons/godot/HingeJoint3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bift0oqrnfn7t" +path="res://.godot/imported/HingeJoint3D.svg-12cb0bd620c26a7b3da5b32064c0d4b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/HingeJoint3D.svg" +dest_files=["res://.godot/imported/HingeJoint3D.svg-12cb0bd620c26a7b3da5b32064c0d4b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/History.svg b/src/resources/icons/godot/History.svg new file mode 100644 index 00000000..032f7196 --- /dev/null +++ b/src/resources/icons/godot/History.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/History.svg.import b/src/resources/icons/godot/History.svg.import new file mode 100644 index 00000000..93011aab --- /dev/null +++ b/src/resources/icons/godot/History.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ye01v3gyve5u" +path="res://.godot/imported/History.svg-05361f3d5d62c542ceb41e8bf46ff928.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/History.svg" +dest_files=["res://.godot/imported/History.svg-05361f3d5d62c542ceb41e8bf46ff928.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Hsize.svg b/src/resources/icons/godot/Hsize.svg new file mode 100644 index 00000000..8ae437d7 --- /dev/null +++ b/src/resources/icons/godot/Hsize.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Hsize.svg.import b/src/resources/icons/godot/Hsize.svg.import new file mode 100644 index 00000000..652acad3 --- /dev/null +++ b/src/resources/icons/godot/Hsize.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vanaq63uivb6" +path="res://.godot/imported/Hsize.svg-0d234c799c0d1e3f757e71b972702858.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Hsize.svg" +dest_files=["res://.godot/imported/Hsize.svg-0d234c799c0d1e3f757e71b972702858.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/IKModifier3D.svg b/src/resources/icons/godot/IKModifier3D.svg new file mode 100644 index 00000000..512190db --- /dev/null +++ b/src/resources/icons/godot/IKModifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/IKModifier3D.svg.import b/src/resources/icons/godot/IKModifier3D.svg.import new file mode 100644 index 00000000..2e3ad68d --- /dev/null +++ b/src/resources/icons/godot/IKModifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbogq8jhg4xce" +path="res://.godot/imported/IKModifier3D.svg-29931e1716de54e60a40d32c444c27c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/IKModifier3D.svg" +dest_files=["res://.godot/imported/IKModifier3D.svg-29931e1716de54e60a40d32c444c27c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/IOSDeviceWired.svg b/src/resources/icons/godot/IOSDeviceWired.svg new file mode 100644 index 00000000..1d54ae4c --- /dev/null +++ b/src/resources/icons/godot/IOSDeviceWired.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/IOSDeviceWired.svg.import b/src/resources/icons/godot/IOSDeviceWired.svg.import new file mode 100644 index 00000000..0f9b1979 --- /dev/null +++ b/src/resources/icons/godot/IOSDeviceWired.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq1ct0ayewvjx" +path="res://.godot/imported/IOSDeviceWired.svg-9b42450eaeee22f86f33a3a5ebaaa15c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/IOSDeviceWired.svg" +dest_files=["res://.godot/imported/IOSDeviceWired.svg-9b42450eaeee22f86f33a3a5ebaaa15c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/IOSDeviceWireless.svg b/src/resources/icons/godot/IOSDeviceWireless.svg new file mode 100644 index 00000000..fe674ae9 --- /dev/null +++ b/src/resources/icons/godot/IOSDeviceWireless.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/IOSDeviceWireless.svg.import b/src/resources/icons/godot/IOSDeviceWireless.svg.import new file mode 100644 index 00000000..1052572b --- /dev/null +++ b/src/resources/icons/godot/IOSDeviceWireless.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci0emygmtyeg5" +path="res://.godot/imported/IOSDeviceWireless.svg-5e24ba2dcd298a08867710c08252f675.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/IOSDeviceWireless.svg" +dest_files=["res://.godot/imported/IOSDeviceWireless.svg-5e24ba2dcd298a08867710c08252f675.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/IOSSimulator.svg b/src/resources/icons/godot/IOSSimulator.svg new file mode 100644 index 00000000..9c05e78a --- /dev/null +++ b/src/resources/icons/godot/IOSSimulator.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/IOSSimulator.svg.import b/src/resources/icons/godot/IOSSimulator.svg.import new file mode 100644 index 00000000..83f82b45 --- /dev/null +++ b/src/resources/icons/godot/IOSSimulator.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw0tdm7p88jym" +path="res://.godot/imported/IOSSimulator.svg-817ef19b5c3d11163872cc92a0cbbffa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/IOSSimulator.svg" +dest_files=["res://.godot/imported/IOSSimulator.svg-817ef19b5c3d11163872cc92a0cbbffa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Image.svg b/src/resources/icons/godot/Image.svg new file mode 100644 index 00000000..63e65446 --- /dev/null +++ b/src/resources/icons/godot/Image.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Image.svg.import b/src/resources/icons/godot/Image.svg.import new file mode 100644 index 00000000..785d371f --- /dev/null +++ b/src/resources/icons/godot/Image.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b55y4uclmcffr" +path="res://.godot/imported/Image.svg-0a297f7aa8ee93dc7ed030e906a3e350.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Image.svg" +dest_files=["res://.godot/imported/Image.svg-0a297f7aa8ee93dc7ed030e906a3e350.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ImageTexture.svg b/src/resources/icons/godot/ImageTexture.svg new file mode 100644 index 00000000..01e0f515 --- /dev/null +++ b/src/resources/icons/godot/ImageTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ImageTexture.svg.import b/src/resources/icons/godot/ImageTexture.svg.import new file mode 100644 index 00000000..5453cc22 --- /dev/null +++ b/src/resources/icons/godot/ImageTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlibntfgxvhe6" +path="res://.godot/imported/ImageTexture.svg-8958bbd83046e120a67de91a53f28356.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ImageTexture.svg" +dest_files=["res://.godot/imported/ImageTexture.svg-8958bbd83046e120a67de91a53f28356.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ImageTexture3D.svg b/src/resources/icons/godot/ImageTexture3D.svg new file mode 100644 index 00000000..a8c0b19f --- /dev/null +++ b/src/resources/icons/godot/ImageTexture3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ImageTexture3D.svg.import b/src/resources/icons/godot/ImageTexture3D.svg.import new file mode 100644 index 00000000..f12356d2 --- /dev/null +++ b/src/resources/icons/godot/ImageTexture3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6rnbuv5e1wwj" +path="res://.godot/imported/ImageTexture3D.svg-c33cf22a5f4a38507b8fccedc64a865a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ImageTexture3D.svg" +dest_files=["res://.godot/imported/ImageTexture3D.svg-c33cf22a5f4a38507b8fccedc64a865a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ImmediateMesh.svg b/src/resources/icons/godot/ImmediateMesh.svg new file mode 100644 index 00000000..d660da7d --- /dev/null +++ b/src/resources/icons/godot/ImmediateMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ImmediateMesh.svg.import b/src/resources/icons/godot/ImmediateMesh.svg.import new file mode 100644 index 00000000..3141eeb2 --- /dev/null +++ b/src/resources/icons/godot/ImmediateMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr5qr6jbw6jop" +path="res://.godot/imported/ImmediateMesh.svg-ac25d9f6a39b1e93ddcd82e125d98949.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ImmediateMesh.svg" +dest_files=["res://.godot/imported/ImmediateMesh.svg-ac25d9f6a39b1e93ddcd82e125d98949.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ImportCheck.svg b/src/resources/icons/godot/ImportCheck.svg new file mode 100644 index 00000000..e2ed8d6c --- /dev/null +++ b/src/resources/icons/godot/ImportCheck.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ImportCheck.svg.import b/src/resources/icons/godot/ImportCheck.svg.import new file mode 100644 index 00000000..e965df35 --- /dev/null +++ b/src/resources/icons/godot/ImportCheck.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buvhj30bhc1k3" +path="res://.godot/imported/ImportCheck.svg-82234ab8c654571c62aaa2916522bed9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ImportCheck.svg" +dest_files=["res://.godot/imported/ImportCheck.svg-82234ab8c654571c62aaa2916522bed9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ImportFail.svg b/src/resources/icons/godot/ImportFail.svg new file mode 100644 index 00000000..207afbd3 --- /dev/null +++ b/src/resources/icons/godot/ImportFail.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ImportFail.svg.import b/src/resources/icons/godot/ImportFail.svg.import new file mode 100644 index 00000000..d7b13d5a --- /dev/null +++ b/src/resources/icons/godot/ImportFail.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beb0lmo0y6af" +path="res://.godot/imported/ImportFail.svg-af1368cfa3e595561c301616798693f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ImportFail.svg" +dest_files=["res://.godot/imported/ImportFail.svg-af1368cfa3e595561c301616798693f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ImporterMeshInstance3D.svg b/src/resources/icons/godot/ImporterMeshInstance3D.svg new file mode 100644 index 00000000..1b1dcb06 --- /dev/null +++ b/src/resources/icons/godot/ImporterMeshInstance3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ImporterMeshInstance3D.svg.import b/src/resources/icons/godot/ImporterMeshInstance3D.svg.import new file mode 100644 index 00000000..8bfd48e0 --- /dev/null +++ b/src/resources/icons/godot/ImporterMeshInstance3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsf4mw64eixps" +path="res://.godot/imported/ImporterMeshInstance3D.svg-d725b6f232a2d6d0e53caa7489d3e1a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ImporterMeshInstance3D.svg" +dest_files=["res://.godot/imported/ImporterMeshInstance3D.svg-d725b6f232a2d6d0e53caa7489d3e1a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Info.svg b/src/resources/icons/godot/Info.svg new file mode 100644 index 00000000..77fee360 --- /dev/null +++ b/src/resources/icons/godot/Info.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Info.svg.import b/src/resources/icons/godot/Info.svg.import new file mode 100644 index 00000000..1ba5456c --- /dev/null +++ b/src/resources/icons/godot/Info.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://calqj3btapr2d" +path="res://.godot/imported/Info.svg-0c483dff78659b1744aa7052678dac8c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Info.svg" +dest_files=["res://.godot/imported/Info.svg-0c483dff78659b1744aa7052678dac8c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventAction.svg b/src/resources/icons/godot/InputEventAction.svg new file mode 100644 index 00000000..aa8192b9 --- /dev/null +++ b/src/resources/icons/godot/InputEventAction.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventAction.svg.import b/src/resources/icons/godot/InputEventAction.svg.import new file mode 100644 index 00000000..824f7804 --- /dev/null +++ b/src/resources/icons/godot/InputEventAction.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kdeoy7abbtqd" +path="res://.godot/imported/InputEventAction.svg-3eae9732ab23fd931ab029f13d37128f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventAction.svg" +dest_files=["res://.godot/imported/InputEventAction.svg-3eae9732ab23fd931ab029f13d37128f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventJoypadButton.svg b/src/resources/icons/godot/InputEventJoypadButton.svg new file mode 100644 index 00000000..9e05aa1b --- /dev/null +++ b/src/resources/icons/godot/InputEventJoypadButton.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventJoypadButton.svg.import b/src/resources/icons/godot/InputEventJoypadButton.svg.import new file mode 100644 index 00000000..8edc62e4 --- /dev/null +++ b/src/resources/icons/godot/InputEventJoypadButton.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lrhi7amaw88v" +path="res://.godot/imported/InputEventJoypadButton.svg-cf816a9ff8704fb587a94cf348877afc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventJoypadButton.svg" +dest_files=["res://.godot/imported/InputEventJoypadButton.svg-cf816a9ff8704fb587a94cf348877afc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventJoypadMotion.svg b/src/resources/icons/godot/InputEventJoypadMotion.svg new file mode 100644 index 00000000..6a74cca4 --- /dev/null +++ b/src/resources/icons/godot/InputEventJoypadMotion.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventJoypadMotion.svg.import b/src/resources/icons/godot/InputEventJoypadMotion.svg.import new file mode 100644 index 00000000..75d99833 --- /dev/null +++ b/src/resources/icons/godot/InputEventJoypadMotion.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb4waqscqca4i" +path="res://.godot/imported/InputEventJoypadMotion.svg-e012d2e67e997c5e4504a64d41e4cae7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventJoypadMotion.svg" +dest_files=["res://.godot/imported/InputEventJoypadMotion.svg-e012d2e67e997c5e4504a64d41e4cae7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventKey.svg b/src/resources/icons/godot/InputEventKey.svg new file mode 100644 index 00000000..98b3310c --- /dev/null +++ b/src/resources/icons/godot/InputEventKey.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventKey.svg.import b/src/resources/icons/godot/InputEventKey.svg.import new file mode 100644 index 00000000..918fa876 --- /dev/null +++ b/src/resources/icons/godot/InputEventKey.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddw41bgfrcfsx" +path="res://.godot/imported/InputEventKey.svg-57834a9002678faa9afaa5a19d72e734.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventKey.svg" +dest_files=["res://.godot/imported/InputEventKey.svg-57834a9002678faa9afaa5a19d72e734.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventMIDI.svg b/src/resources/icons/godot/InputEventMIDI.svg new file mode 100644 index 00000000..e9801380 --- /dev/null +++ b/src/resources/icons/godot/InputEventMIDI.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventMIDI.svg.import b/src/resources/icons/godot/InputEventMIDI.svg.import new file mode 100644 index 00000000..76e8c96c --- /dev/null +++ b/src/resources/icons/godot/InputEventMIDI.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce548i6u1kyes" +path="res://.godot/imported/InputEventMIDI.svg-c43a579ec49e6ddd6d9ed657b40b1574.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventMIDI.svg" +dest_files=["res://.godot/imported/InputEventMIDI.svg-c43a579ec49e6ddd6d9ed657b40b1574.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventMagnifyGesture.svg b/src/resources/icons/godot/InputEventMagnifyGesture.svg new file mode 100644 index 00000000..da912b9a --- /dev/null +++ b/src/resources/icons/godot/InputEventMagnifyGesture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventMagnifyGesture.svg.import b/src/resources/icons/godot/InputEventMagnifyGesture.svg.import new file mode 100644 index 00000000..7bba9f78 --- /dev/null +++ b/src/resources/icons/godot/InputEventMagnifyGesture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hmkfmm47kh2y" +path="res://.godot/imported/InputEventMagnifyGesture.svg-c50b59fbcc803edabbaf85fb953e1adc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventMagnifyGesture.svg" +dest_files=["res://.godot/imported/InputEventMagnifyGesture.svg-c50b59fbcc803edabbaf85fb953e1adc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventMouseButton.svg b/src/resources/icons/godot/InputEventMouseButton.svg new file mode 100644 index 00000000..e17cb325 --- /dev/null +++ b/src/resources/icons/godot/InputEventMouseButton.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventMouseButton.svg.import b/src/resources/icons/godot/InputEventMouseButton.svg.import new file mode 100644 index 00000000..5221e739 --- /dev/null +++ b/src/resources/icons/godot/InputEventMouseButton.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pj0sfe5pxm52" +path="res://.godot/imported/InputEventMouseButton.svg-bf5565efa2b3be137ecf86d21c52d999.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventMouseButton.svg" +dest_files=["res://.godot/imported/InputEventMouseButton.svg-bf5565efa2b3be137ecf86d21c52d999.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventMouseMotion.svg b/src/resources/icons/godot/InputEventMouseMotion.svg new file mode 100644 index 00000000..64d62958 --- /dev/null +++ b/src/resources/icons/godot/InputEventMouseMotion.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventMouseMotion.svg.import b/src/resources/icons/godot/InputEventMouseMotion.svg.import new file mode 100644 index 00000000..27668d42 --- /dev/null +++ b/src/resources/icons/godot/InputEventMouseMotion.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2dwmdl1jr4v3" +path="res://.godot/imported/InputEventMouseMotion.svg-c12e893f60ba4ab42f01f51157e1ca95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventMouseMotion.svg" +dest_files=["res://.godot/imported/InputEventMouseMotion.svg-c12e893f60ba4ab42f01f51157e1ca95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventPanGesture.svg b/src/resources/icons/godot/InputEventPanGesture.svg new file mode 100644 index 00000000..a57cbe54 --- /dev/null +++ b/src/resources/icons/godot/InputEventPanGesture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventPanGesture.svg.import b/src/resources/icons/godot/InputEventPanGesture.svg.import new file mode 100644 index 00000000..075b39d4 --- /dev/null +++ b/src/resources/icons/godot/InputEventPanGesture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://plwslgijsw3w" +path="res://.godot/imported/InputEventPanGesture.svg-eaacf22b7706f0b5c17674fa68049d05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventPanGesture.svg" +dest_files=["res://.godot/imported/InputEventPanGesture.svg-eaacf22b7706f0b5c17674fa68049d05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventScreenDrag.svg b/src/resources/icons/godot/InputEventScreenDrag.svg new file mode 100644 index 00000000..bf601591 --- /dev/null +++ b/src/resources/icons/godot/InputEventScreenDrag.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventScreenDrag.svg.import b/src/resources/icons/godot/InputEventScreenDrag.svg.import new file mode 100644 index 00000000..05f3a7fa --- /dev/null +++ b/src/resources/icons/godot/InputEventScreenDrag.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do0s5af7jog5n" +path="res://.godot/imported/InputEventScreenDrag.svg-40e4572f7cdf9df93d1b6a88318e892a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventScreenDrag.svg" +dest_files=["res://.godot/imported/InputEventScreenDrag.svg-40e4572f7cdf9df93d1b6a88318e892a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventScreenTouch.svg b/src/resources/icons/godot/InputEventScreenTouch.svg new file mode 100644 index 00000000..0cd8e1fd --- /dev/null +++ b/src/resources/icons/godot/InputEventScreenTouch.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventScreenTouch.svg.import b/src/resources/icons/godot/InputEventScreenTouch.svg.import new file mode 100644 index 00000000..f53c6210 --- /dev/null +++ b/src/resources/icons/godot/InputEventScreenTouch.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg6h3y6jnslmm" +path="res://.godot/imported/InputEventScreenTouch.svg-1b6d3c7c65cd40ffc3c374fdc1ac61ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventScreenTouch.svg" +dest_files=["res://.godot/imported/InputEventScreenTouch.svg-1b6d3c7c65cd40ffc3c374fdc1ac61ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InputEventShortcut.svg b/src/resources/icons/godot/InputEventShortcut.svg new file mode 100644 index 00000000..1c8e3455 --- /dev/null +++ b/src/resources/icons/godot/InputEventShortcut.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InputEventShortcut.svg.import b/src/resources/icons/godot/InputEventShortcut.svg.import new file mode 100644 index 00000000..06f17de5 --- /dev/null +++ b/src/resources/icons/godot/InputEventShortcut.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vhodte3edoi8" +path="res://.godot/imported/InputEventShortcut.svg-1420a204b4c73944cd7ecf51bb6e6af3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InputEventShortcut.svg" +dest_files=["res://.godot/imported/InputEventShortcut.svg-1420a204b4c73944cd7ecf51bb6e6af3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InsertAfter.svg b/src/resources/icons/godot/InsertAfter.svg new file mode 100644 index 00000000..2713c70d --- /dev/null +++ b/src/resources/icons/godot/InsertAfter.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InsertAfter.svg.import b/src/resources/icons/godot/InsertAfter.svg.import new file mode 100644 index 00000000..ff6ae073 --- /dev/null +++ b/src/resources/icons/godot/InsertAfter.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7vu4sg11g4fc" +path="res://.godot/imported/InsertAfter.svg-8cc60ba79fe80242b29d667e20f8d3b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InsertAfter.svg" +dest_files=["res://.godot/imported/InsertAfter.svg-8cc60ba79fe80242b29d667e20f8d3b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InsertAtCurrentTime.svg b/src/resources/icons/godot/InsertAtCurrentTime.svg new file mode 100644 index 00000000..cd808852 --- /dev/null +++ b/src/resources/icons/godot/InsertAtCurrentTime.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InsertAtCurrentTime.svg.import b/src/resources/icons/godot/InsertAtCurrentTime.svg.import new file mode 100644 index 00000000..7b186734 --- /dev/null +++ b/src/resources/icons/godot/InsertAtCurrentTime.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://28vajt1xe8nl" +path="res://.godot/imported/InsertAtCurrentTime.svg-6ce674b19e825026a1d7be4f80038654.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InsertAtCurrentTime.svg" +dest_files=["res://.godot/imported/InsertAtCurrentTime.svg-6ce674b19e825026a1d7be4f80038654.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InsertBefore.svg b/src/resources/icons/godot/InsertBefore.svg new file mode 100644 index 00000000..5bf458f3 --- /dev/null +++ b/src/resources/icons/godot/InsertBefore.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InsertBefore.svg.import b/src/resources/icons/godot/InsertBefore.svg.import new file mode 100644 index 00000000..fbca6cec --- /dev/null +++ b/src/resources/icons/godot/InsertBefore.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biephjku7m8ho" +path="res://.godot/imported/InsertBefore.svg-5deb7457a244ac6aded52f171a5a58ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InsertBefore.svg" +dest_files=["res://.godot/imported/InsertBefore.svg-5deb7457a244ac6aded52f171a5a58ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InsertKey.svg b/src/resources/icons/godot/InsertKey.svg new file mode 100644 index 00000000..ace715a6 --- /dev/null +++ b/src/resources/icons/godot/InsertKey.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InsertKey.svg.import b/src/resources/icons/godot/InsertKey.svg.import new file mode 100644 index 00000000..0fb588c7 --- /dev/null +++ b/src/resources/icons/godot/InsertKey.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hvau7x0hvkin" +path="res://.godot/imported/InsertKey.svg-85b6d3b5fe65c484c591c809d16a5ef8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InsertKey.svg" +dest_files=["res://.godot/imported/InsertKey.svg-85b6d3b5fe65c484c591c809d16a5ef8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InsertModKey.svg b/src/resources/icons/godot/InsertModKey.svg new file mode 100644 index 00000000..a10d4b4c --- /dev/null +++ b/src/resources/icons/godot/InsertModKey.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InsertModKey.svg.import b/src/resources/icons/godot/InsertModKey.svg.import new file mode 100644 index 00000000..40879af3 --- /dev/null +++ b/src/resources/icons/godot/InsertModKey.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxjv8sd8jwtdy" +path="res://.godot/imported/InsertModKey.svg-0feb449a83bf86f12e7f6d27d62bacee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InsertModKey.svg" +dest_files=["res://.godot/imported/InsertModKey.svg-0feb449a83bf86f12e7f6d27d62bacee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Instance.svg b/src/resources/icons/godot/Instance.svg new file mode 100644 index 00000000..0b041079 --- /dev/null +++ b/src/resources/icons/godot/Instance.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Instance.svg.import b/src/resources/icons/godot/Instance.svg.import new file mode 100644 index 00000000..c076370e --- /dev/null +++ b/src/resources/icons/godot/Instance.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvnke3x1g2461" +path="res://.godot/imported/Instance.svg-ef9bfd441b8e47c48e56e2ed2fcfb7f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Instance.svg" +dest_files=["res://.godot/imported/Instance.svg-ef9bfd441b8e47c48e56e2ed2fcfb7f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InstanceOptions.svg b/src/resources/icons/godot/InstanceOptions.svg new file mode 100644 index 00000000..03065afc --- /dev/null +++ b/src/resources/icons/godot/InstanceOptions.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InstanceOptions.svg.import b/src/resources/icons/godot/InstanceOptions.svg.import new file mode 100644 index 00000000..87fd1a7b --- /dev/null +++ b/src/resources/icons/godot/InstanceOptions.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://x44qnfof4gf6" +path="res://.godot/imported/InstanceOptions.svg-5e3fccfbc851497900cfb66bb2a865d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InstanceOptions.svg" +dest_files=["res://.godot/imported/InstanceOptions.svg-5e3fccfbc851497900cfb66bb2a865d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InterpCubic.svg b/src/resources/icons/godot/InterpCubic.svg new file mode 100644 index 00000000..304da2fb --- /dev/null +++ b/src/resources/icons/godot/InterpCubic.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InterpCubic.svg.import b/src/resources/icons/godot/InterpCubic.svg.import new file mode 100644 index 00000000..45ec902a --- /dev/null +++ b/src/resources/icons/godot/InterpCubic.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c01kv1i6hmlf3" +path="res://.godot/imported/InterpCubic.svg-9ab84924fac6df37551f12e804bb31c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InterpCubic.svg" +dest_files=["res://.godot/imported/InterpCubic.svg-9ab84924fac6df37551f12e804bb31c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InterpCubicAngle.svg b/src/resources/icons/godot/InterpCubicAngle.svg new file mode 100644 index 00000000..aeeb1035 --- /dev/null +++ b/src/resources/icons/godot/InterpCubicAngle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InterpCubicAngle.svg.import b/src/resources/icons/godot/InterpCubicAngle.svg.import new file mode 100644 index 00000000..ab1060b3 --- /dev/null +++ b/src/resources/icons/godot/InterpCubicAngle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kw17emls0ri5" +path="res://.godot/imported/InterpCubicAngle.svg-297c1f43dcaf4506f4eaf586a2502f18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InterpCubicAngle.svg" +dest_files=["res://.godot/imported/InterpCubicAngle.svg-297c1f43dcaf4506f4eaf586a2502f18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InterpLinear.svg b/src/resources/icons/godot/InterpLinear.svg new file mode 100644 index 00000000..c1a9bdb6 --- /dev/null +++ b/src/resources/icons/godot/InterpLinear.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InterpLinear.svg.import b/src/resources/icons/godot/InterpLinear.svg.import new file mode 100644 index 00000000..2b13e6e0 --- /dev/null +++ b/src/resources/icons/godot/InterpLinear.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7gxwxbmwm1yu" +path="res://.godot/imported/InterpLinear.svg-0bc8eb2f2d8d524eca38013ff1395200.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InterpLinear.svg" +dest_files=["res://.godot/imported/InterpLinear.svg-0bc8eb2f2d8d524eca38013ff1395200.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InterpLinearAngle.svg b/src/resources/icons/godot/InterpLinearAngle.svg new file mode 100644 index 00000000..ff48db1b --- /dev/null +++ b/src/resources/icons/godot/InterpLinearAngle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InterpLinearAngle.svg.import b/src/resources/icons/godot/InterpLinearAngle.svg.import new file mode 100644 index 00000000..08feb909 --- /dev/null +++ b/src/resources/icons/godot/InterpLinearAngle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bskfq4pfvyyar" +path="res://.godot/imported/InterpLinearAngle.svg-df81041dcb655f3a46dc25b97704a3db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InterpLinearAngle.svg" +dest_files=["res://.godot/imported/InterpLinearAngle.svg-df81041dcb655f3a46dc25b97704a3db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InterpRaw.svg b/src/resources/icons/godot/InterpRaw.svg new file mode 100644 index 00000000..8eda9fc9 --- /dev/null +++ b/src/resources/icons/godot/InterpRaw.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InterpRaw.svg.import b/src/resources/icons/godot/InterpRaw.svg.import new file mode 100644 index 00000000..225c92c1 --- /dev/null +++ b/src/resources/icons/godot/InterpRaw.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy7awfb6vg7jk" +path="res://.godot/imported/InterpRaw.svg-32a1a64ca30cdf56138544b472a001ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InterpRaw.svg" +dest_files=["res://.godot/imported/InterpRaw.svg-32a1a64ca30cdf56138544b472a001ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InterpWrapClamp.svg b/src/resources/icons/godot/InterpWrapClamp.svg new file mode 100644 index 00000000..e792261c --- /dev/null +++ b/src/resources/icons/godot/InterpWrapClamp.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InterpWrapClamp.svg.import b/src/resources/icons/godot/InterpWrapClamp.svg.import new file mode 100644 index 00000000..fd75fa2f --- /dev/null +++ b/src/resources/icons/godot/InterpWrapClamp.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8lxvanau1uxh" +path="res://.godot/imported/InterpWrapClamp.svg-0b9f24906e61d72e91751d44df05a09f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InterpWrapClamp.svg" +dest_files=["res://.godot/imported/InterpWrapClamp.svg-0b9f24906e61d72e91751d44df05a09f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/InterpWrapLoop.svg b/src/resources/icons/godot/InterpWrapLoop.svg new file mode 100644 index 00000000..d33f44dc --- /dev/null +++ b/src/resources/icons/godot/InterpWrapLoop.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/InterpWrapLoop.svg.import b/src/resources/icons/godot/InterpWrapLoop.svg.import new file mode 100644 index 00000000..7f414e00 --- /dev/null +++ b/src/resources/icons/godot/InterpWrapLoop.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dishxoyb2qld8" +path="res://.godot/imported/InterpWrapLoop.svg-ba82e75e3abd063a544f7bc410c69930.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/InterpWrapLoop.svg" +dest_files=["res://.godot/imported/InterpWrapLoop.svg-ba82e75e3abd063a544f7bc410c69930.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ItemList.svg b/src/resources/icons/godot/ItemList.svg new file mode 100644 index 00000000..093df224 --- /dev/null +++ b/src/resources/icons/godot/ItemList.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ItemList.svg.import b/src/resources/icons/godot/ItemList.svg.import new file mode 100644 index 00000000..4f83a0db --- /dev/null +++ b/src/resources/icons/godot/ItemList.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh3ydk1tdav0a" +path="res://.godot/imported/ItemList.svg-ecf2eb3730429bae71baee87e1a033ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ItemList.svg" +dest_files=["res://.godot/imported/ItemList.svg-ecf2eb3730429bae71baee87e1a033ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/IterateIK3D.svg b/src/resources/icons/godot/IterateIK3D.svg new file mode 100644 index 00000000..acbb11e6 --- /dev/null +++ b/src/resources/icons/godot/IterateIK3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/IterateIK3D.svg.import b/src/resources/icons/godot/IterateIK3D.svg.import new file mode 100644 index 00000000..33cece3c --- /dev/null +++ b/src/resources/icons/godot/IterateIK3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqdf50o8wm2xa" +path="res://.godot/imported/IterateIK3D.svg-665803573816fae56789b498ffbee07c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/IterateIK3D.svg" +dest_files=["res://.godot/imported/IterateIK3D.svg-665803573816fae56789b498ffbee07c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/JacobianIK3D.svg b/src/resources/icons/godot/JacobianIK3D.svg new file mode 100644 index 00000000..c7e106ac --- /dev/null +++ b/src/resources/icons/godot/JacobianIK3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/JacobianIK3D.svg.import b/src/resources/icons/godot/JacobianIK3D.svg.import new file mode 100644 index 00000000..181cf4ca --- /dev/null +++ b/src/resources/icons/godot/JacobianIK3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cox4u12361kry" +path="res://.godot/imported/JacobianIK3D.svg-2018c00d68d9b1315f71ea3fa7a51603.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/JacobianIK3D.svg" +dest_files=["res://.godot/imported/JacobianIK3D.svg-2018c00d68d9b1315f71ea3fa7a51603.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/JoyAxis.svg b/src/resources/icons/godot/JoyAxis.svg new file mode 100644 index 00000000..86742bd9 --- /dev/null +++ b/src/resources/icons/godot/JoyAxis.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/JoyAxis.svg.import b/src/resources/icons/godot/JoyAxis.svg.import new file mode 100644 index 00000000..54dfa5d7 --- /dev/null +++ b/src/resources/icons/godot/JoyAxis.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chsnmr0802x1k" +path="res://.godot/imported/JoyAxis.svg-9764517ec9f0d0bc0fbf5e1a53e750e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/JoyAxis.svg" +dest_files=["res://.godot/imported/JoyAxis.svg-9764517ec9f0d0bc0fbf5e1a53e750e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/JoyButton.svg b/src/resources/icons/godot/JoyButton.svg new file mode 100644 index 00000000..9d21e9aa --- /dev/null +++ b/src/resources/icons/godot/JoyButton.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/JoyButton.svg.import b/src/resources/icons/godot/JoyButton.svg.import new file mode 100644 index 00000000..e55d329c --- /dev/null +++ b/src/resources/icons/godot/JoyButton.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duj67ffef005a" +path="res://.godot/imported/JoyButton.svg-e79d5a8464479504eeae0dc334fcefe2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/JoyButton.svg" +dest_files=["res://.godot/imported/JoyButton.svg-e79d5a8464479504eeae0dc334fcefe2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Joypad.svg b/src/resources/icons/godot/Joypad.svg new file mode 100644 index 00000000..7c652133 --- /dev/null +++ b/src/resources/icons/godot/Joypad.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Joypad.svg.import b/src/resources/icons/godot/Joypad.svg.import new file mode 100644 index 00000000..6a9fe53e --- /dev/null +++ b/src/resources/icons/godot/Joypad.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://corvjjtnjq7vq" +path="res://.godot/imported/Joypad.svg-06c0d1d0ccfc81d29f58ac23f2f839fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Joypad.svg" +dest_files=["res://.godot/imported/Joypad.svg-06c0d1d0ccfc81d29f58ac23f2f839fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeepAspect.svg b/src/resources/icons/godot/KeepAspect.svg new file mode 100644 index 00000000..0fe2d754 --- /dev/null +++ b/src/resources/icons/godot/KeepAspect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeepAspect.svg.import b/src/resources/icons/godot/KeepAspect.svg.import new file mode 100644 index 00000000..b8af8f00 --- /dev/null +++ b/src/resources/icons/godot/KeepAspect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dimixl3xq26ji" +path="res://.godot/imported/KeepAspect.svg-51f12f9da8e25a6b8e6e03366d11ad6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeepAspect.svg" +dest_files=["res://.godot/imported/KeepAspect.svg-51f12f9da8e25a6b8e6e03366d11ad6a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Key.svg b/src/resources/icons/godot/Key.svg new file mode 100644 index 00000000..c157f25e --- /dev/null +++ b/src/resources/icons/godot/Key.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Key.svg.import b/src/resources/icons/godot/Key.svg.import new file mode 100644 index 00000000..6436d89e --- /dev/null +++ b/src/resources/icons/godot/Key.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtxqulif7kk8i" +path="res://.godot/imported/Key.svg-5f946064196b1d490cc42d897c030137.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Key.svg" +dest_files=["res://.godot/imported/Key.svg-5f946064196b1d490cc42d897c030137.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyAnimation.svg b/src/resources/icons/godot/KeyAnimation.svg new file mode 100644 index 00000000..36a0b7c7 --- /dev/null +++ b/src/resources/icons/godot/KeyAnimation.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyAnimation.svg.import b/src/resources/icons/godot/KeyAnimation.svg.import new file mode 100644 index 00000000..88447bff --- /dev/null +++ b/src/resources/icons/godot/KeyAnimation.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl7ympyjlquoa" +path="res://.godot/imported/KeyAnimation.svg-71825ff947dfa87bce28b36c8b3b1878.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyAnimation.svg" +dest_files=["res://.godot/imported/KeyAnimation.svg-71825ff947dfa87bce28b36c8b3b1878.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyAudio.svg b/src/resources/icons/godot/KeyAudio.svg new file mode 100644 index 00000000..aff003c9 --- /dev/null +++ b/src/resources/icons/godot/KeyAudio.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyAudio.svg.import b/src/resources/icons/godot/KeyAudio.svg.import new file mode 100644 index 00000000..191a675c --- /dev/null +++ b/src/resources/icons/godot/KeyAudio.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgf45sgre8b4r" +path="res://.godot/imported/KeyAudio.svg-30830d00f2edc93a9c9f3bae48458828.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyAudio.svg" +dest_files=["res://.godot/imported/KeyAudio.svg-30830d00f2edc93a9c9f3bae48458828.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyBezier.svg b/src/resources/icons/godot/KeyBezier.svg new file mode 100644 index 00000000..b72903fd --- /dev/null +++ b/src/resources/icons/godot/KeyBezier.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyBezier.svg.import b/src/resources/icons/godot/KeyBezier.svg.import new file mode 100644 index 00000000..c038c935 --- /dev/null +++ b/src/resources/icons/godot/KeyBezier.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck6vgg1djbp1f" +path="res://.godot/imported/KeyBezier.svg-f1a03587aee10774059c73fb172d72c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyBezier.svg" +dest_files=["res://.godot/imported/KeyBezier.svg-f1a03587aee10774059c73fb172d72c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyBezierHandle.svg b/src/resources/icons/godot/KeyBezierHandle.svg new file mode 100644 index 00000000..51099456 --- /dev/null +++ b/src/resources/icons/godot/KeyBezierHandle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyBezierHandle.svg.import b/src/resources/icons/godot/KeyBezierHandle.svg.import new file mode 100644 index 00000000..95a3d02f --- /dev/null +++ b/src/resources/icons/godot/KeyBezierHandle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8sdx715ffe0u" +path="res://.godot/imported/KeyBezierHandle.svg-8531dce9ebeb176a830abf50dc9f8898.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyBezierHandle.svg" +dest_files=["res://.godot/imported/KeyBezierHandle.svg-8531dce9ebeb176a830abf50dc9f8898.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyBezierPoint.svg b/src/resources/icons/godot/KeyBezierPoint.svg new file mode 100644 index 00000000..7f8ffea8 --- /dev/null +++ b/src/resources/icons/godot/KeyBezierPoint.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyBezierPoint.svg.import b/src/resources/icons/godot/KeyBezierPoint.svg.import new file mode 100644 index 00000000..f9083977 --- /dev/null +++ b/src/resources/icons/godot/KeyBezierPoint.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxih0i8lij4bf" +path="res://.godot/imported/KeyBezierPoint.svg-7088c9e3e8fa4e6bc3f2d60e98ab348e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyBezierPoint.svg" +dest_files=["res://.godot/imported/KeyBezierPoint.svg-7088c9e3e8fa4e6bc3f2d60e98ab348e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyBezierSelected.svg b/src/resources/icons/godot/KeyBezierSelected.svg new file mode 100644 index 00000000..f4dfa35a --- /dev/null +++ b/src/resources/icons/godot/KeyBezierSelected.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyBezierSelected.svg.import b/src/resources/icons/godot/KeyBezierSelected.svg.import new file mode 100644 index 00000000..875a5c81 --- /dev/null +++ b/src/resources/icons/godot/KeyBezierSelected.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0jlcbojxk4ee" +path="res://.godot/imported/KeyBezierSelected.svg-578acd15c24003d838dcc002d56fa28d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyBezierSelected.svg" +dest_files=["res://.godot/imported/KeyBezierSelected.svg-578acd15c24003d838dcc002d56fa28d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyBlendShape.svg b/src/resources/icons/godot/KeyBlendShape.svg new file mode 100644 index 00000000..bf40b2dc --- /dev/null +++ b/src/resources/icons/godot/KeyBlendShape.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyBlendShape.svg.import b/src/resources/icons/godot/KeyBlendShape.svg.import new file mode 100644 index 00000000..8ca65c19 --- /dev/null +++ b/src/resources/icons/godot/KeyBlendShape.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rcuo1dg7xjmw" +path="res://.godot/imported/KeyBlendShape.svg-f8c79d69491eaf2221a7f5c1f04f5e36.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyBlendShape.svg" +dest_files=["res://.godot/imported/KeyBlendShape.svg-f8c79d69491eaf2221a7f5c1f04f5e36.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyCall.svg b/src/resources/icons/godot/KeyCall.svg new file mode 100644 index 00000000..2c02ef77 --- /dev/null +++ b/src/resources/icons/godot/KeyCall.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyCall.svg.import b/src/resources/icons/godot/KeyCall.svg.import new file mode 100644 index 00000000..a941372a --- /dev/null +++ b/src/resources/icons/godot/KeyCall.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8yurcuwmmbqg" +path="res://.godot/imported/KeyCall.svg-c17f8113aaa6716967fa090c90c4ab93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyCall.svg" +dest_files=["res://.godot/imported/KeyCall.svg-c17f8113aaa6716967fa090c90c4ab93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyEasedSelected.svg b/src/resources/icons/godot/KeyEasedSelected.svg new file mode 100644 index 00000000..14096ad5 --- /dev/null +++ b/src/resources/icons/godot/KeyEasedSelected.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyEasedSelected.svg.import b/src/resources/icons/godot/KeyEasedSelected.svg.import new file mode 100644 index 00000000..f679a5ae --- /dev/null +++ b/src/resources/icons/godot/KeyEasedSelected.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddix5aqufjmx2" +path="res://.godot/imported/KeyEasedSelected.svg-c292a8be390cf59db6d2bc1fe52a7a67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyEasedSelected.svg" +dest_files=["res://.godot/imported/KeyEasedSelected.svg-c292a8be390cf59db6d2bc1fe52a7a67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyInvalid.svg b/src/resources/icons/godot/KeyInvalid.svg new file mode 100644 index 00000000..4701a6ea --- /dev/null +++ b/src/resources/icons/godot/KeyInvalid.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyInvalid.svg.import b/src/resources/icons/godot/KeyInvalid.svg.import new file mode 100644 index 00000000..08fe22e1 --- /dev/null +++ b/src/resources/icons/godot/KeyInvalid.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q6c8ws6ocevb" +path="res://.godot/imported/KeyInvalid.svg-56bdd85fcb58a5b823a76d72edebfe4b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyInvalid.svg" +dest_files=["res://.godot/imported/KeyInvalid.svg-56bdd85fcb58a5b823a76d72edebfe4b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyNext.svg b/src/resources/icons/godot/KeyNext.svg new file mode 100644 index 00000000..6a2201e5 --- /dev/null +++ b/src/resources/icons/godot/KeyNext.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyNext.svg.import b/src/resources/icons/godot/KeyNext.svg.import new file mode 100644 index 00000000..4bfb0ca0 --- /dev/null +++ b/src/resources/icons/godot/KeyNext.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://53gx0r8s75mp" +path="res://.godot/imported/KeyNext.svg-c210d978bd0178a73b6a2e27856cc3c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyNext.svg" +dest_files=["res://.godot/imported/KeyNext.svg-c210d978bd0178a73b6a2e27856cc3c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyPosition.svg b/src/resources/icons/godot/KeyPosition.svg new file mode 100644 index 00000000..0bd84397 --- /dev/null +++ b/src/resources/icons/godot/KeyPosition.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyPosition.svg.import b/src/resources/icons/godot/KeyPosition.svg.import new file mode 100644 index 00000000..1b8fc325 --- /dev/null +++ b/src/resources/icons/godot/KeyPosition.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm4v4fm1lxk50" +path="res://.godot/imported/KeyPosition.svg-a01a3938f6619450d92317e97dc5802c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyPosition.svg" +dest_files=["res://.godot/imported/KeyPosition.svg-a01a3938f6619450d92317e97dc5802c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyRotation.svg b/src/resources/icons/godot/KeyRotation.svg new file mode 100644 index 00000000..2994c544 --- /dev/null +++ b/src/resources/icons/godot/KeyRotation.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyRotation.svg.import b/src/resources/icons/godot/KeyRotation.svg.import new file mode 100644 index 00000000..d0fbed3d --- /dev/null +++ b/src/resources/icons/godot/KeyRotation.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu82kykiph1o3" +path="res://.godot/imported/KeyRotation.svg-60ce3a7c1b3ead7bddb5bf938b75cc69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyRotation.svg" +dest_files=["res://.godot/imported/KeyRotation.svg-60ce3a7c1b3ead7bddb5bf938b75cc69.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyScale.svg b/src/resources/icons/godot/KeyScale.svg new file mode 100644 index 00000000..cb630619 --- /dev/null +++ b/src/resources/icons/godot/KeyScale.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyScale.svg.import b/src/resources/icons/godot/KeyScale.svg.import new file mode 100644 index 00000000..312ed771 --- /dev/null +++ b/src/resources/icons/godot/KeyScale.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpv7ebf5ewlll" +path="res://.godot/imported/KeyScale.svg-6c003b089909f05493af7b1b3cd5c238.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyScale.svg" +dest_files=["res://.godot/imported/KeyScale.svg-6c003b089909f05493af7b1b3cd5c238.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeySelected.svg b/src/resources/icons/godot/KeySelected.svg new file mode 100644 index 00000000..180f1e0f --- /dev/null +++ b/src/resources/icons/godot/KeySelected.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeySelected.svg.import b/src/resources/icons/godot/KeySelected.svg.import new file mode 100644 index 00000000..d801a0a1 --- /dev/null +++ b/src/resources/icons/godot/KeySelected.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcuvfl1ag47p0" +path="res://.godot/imported/KeySelected.svg-8287e1d43705c257d523478895f3e715.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeySelected.svg" +dest_files=["res://.godot/imported/KeySelected.svg-8287e1d43705c257d523478895f3e715.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyTrackBlendShape.svg b/src/resources/icons/godot/KeyTrackBlendShape.svg new file mode 100644 index 00000000..e4e5adde --- /dev/null +++ b/src/resources/icons/godot/KeyTrackBlendShape.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyTrackBlendShape.svg.import b/src/resources/icons/godot/KeyTrackBlendShape.svg.import new file mode 100644 index 00000000..836b80ad --- /dev/null +++ b/src/resources/icons/godot/KeyTrackBlendShape.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cloikyd4nethh" +path="res://.godot/imported/KeyTrackBlendShape.svg-d7edd51765c6e65724b30892e35fd36f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyTrackBlendShape.svg" +dest_files=["res://.godot/imported/KeyTrackBlendShape.svg-d7edd51765c6e65724b30892e35fd36f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyTrackPosition.svg b/src/resources/icons/godot/KeyTrackPosition.svg new file mode 100644 index 00000000..d34f96c3 --- /dev/null +++ b/src/resources/icons/godot/KeyTrackPosition.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyTrackPosition.svg.import b/src/resources/icons/godot/KeyTrackPosition.svg.import new file mode 100644 index 00000000..cb9155ab --- /dev/null +++ b/src/resources/icons/godot/KeyTrackPosition.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfp8yf6jhymeu" +path="res://.godot/imported/KeyTrackPosition.svg-1109c5e6377654ec266a0b67a38428bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyTrackPosition.svg" +dest_files=["res://.godot/imported/KeyTrackPosition.svg-1109c5e6377654ec266a0b67a38428bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyTrackRotation.svg b/src/resources/icons/godot/KeyTrackRotation.svg new file mode 100644 index 00000000..783a44e9 --- /dev/null +++ b/src/resources/icons/godot/KeyTrackRotation.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyTrackRotation.svg.import b/src/resources/icons/godot/KeyTrackRotation.svg.import new file mode 100644 index 00000000..96a97150 --- /dev/null +++ b/src/resources/icons/godot/KeyTrackRotation.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btvgkuprxf24d" +path="res://.godot/imported/KeyTrackRotation.svg-f2eaff069f31aeef39eff6dbe28b07a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyTrackRotation.svg" +dest_files=["res://.godot/imported/KeyTrackRotation.svg-f2eaff069f31aeef39eff6dbe28b07a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyTrackScale.svg b/src/resources/icons/godot/KeyTrackScale.svg new file mode 100644 index 00000000..63c86fa2 --- /dev/null +++ b/src/resources/icons/godot/KeyTrackScale.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyTrackScale.svg.import b/src/resources/icons/godot/KeyTrackScale.svg.import new file mode 100644 index 00000000..54deaeea --- /dev/null +++ b/src/resources/icons/godot/KeyTrackScale.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djsupej7uwls4" +path="res://.godot/imported/KeyTrackScale.svg-3fb4b0f2f1abdb821f000b61550bb89e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyTrackScale.svg" +dest_files=["res://.godot/imported/KeyTrackScale.svg-3fb4b0f2f1abdb821f000b61550bb89e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyValue.svg b/src/resources/icons/godot/KeyValue.svg new file mode 100644 index 00000000..96053e14 --- /dev/null +++ b/src/resources/icons/godot/KeyValue.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyValue.svg.import b/src/resources/icons/godot/KeyValue.svg.import new file mode 100644 index 00000000..946b67bb --- /dev/null +++ b/src/resources/icons/godot/KeyValue.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0t5xd3sjxh3h" +path="res://.godot/imported/KeyValue.svg-d70d420d083add3a273856d49f6778aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyValue.svg" +dest_files=["res://.godot/imported/KeyValue.svg-d70d420d083add3a273856d49f6778aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyValueEased.svg b/src/resources/icons/godot/KeyValueEased.svg new file mode 100644 index 00000000..42e41f3e --- /dev/null +++ b/src/resources/icons/godot/KeyValueEased.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyValueEased.svg.import b/src/resources/icons/godot/KeyValueEased.svg.import new file mode 100644 index 00000000..ceb44c15 --- /dev/null +++ b/src/resources/icons/godot/KeyValueEased.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuo0durco11aw" +path="res://.godot/imported/KeyValueEased.svg-ac287931422b575ddf8a1561e0252a82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyValueEased.svg" +dest_files=["res://.godot/imported/KeyValueEased.svg-ac287931422b575ddf8a1561e0252a82.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyXPosition.svg b/src/resources/icons/godot/KeyXPosition.svg new file mode 100644 index 00000000..6a4cc8dd --- /dev/null +++ b/src/resources/icons/godot/KeyXPosition.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyXPosition.svg.import b/src/resources/icons/godot/KeyXPosition.svg.import new file mode 100644 index 00000000..d4b7f3cc --- /dev/null +++ b/src/resources/icons/godot/KeyXPosition.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjf7y7676iuhh" +path="res://.godot/imported/KeyXPosition.svg-69e9bc8910a3afbbd93b3246539affd5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyXPosition.svg" +dest_files=["res://.godot/imported/KeyXPosition.svg-69e9bc8910a3afbbd93b3246539affd5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyXRotation.svg b/src/resources/icons/godot/KeyXRotation.svg new file mode 100644 index 00000000..c1b439ad --- /dev/null +++ b/src/resources/icons/godot/KeyXRotation.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyXRotation.svg.import b/src/resources/icons/godot/KeyXRotation.svg.import new file mode 100644 index 00000000..2710091d --- /dev/null +++ b/src/resources/icons/godot/KeyXRotation.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxfpe2p44bfdk" +path="res://.godot/imported/KeyXRotation.svg-0e9cf3dcee859d8c6c29e357d542bd52.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyXRotation.svg" +dest_files=["res://.godot/imported/KeyXRotation.svg-0e9cf3dcee859d8c6c29e357d542bd52.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyXScale.svg b/src/resources/icons/godot/KeyXScale.svg new file mode 100644 index 00000000..106bdde1 --- /dev/null +++ b/src/resources/icons/godot/KeyXScale.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyXScale.svg.import b/src/resources/icons/godot/KeyXScale.svg.import new file mode 100644 index 00000000..5a55e29c --- /dev/null +++ b/src/resources/icons/godot/KeyXScale.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btmhppjdoli5b" +path="res://.godot/imported/KeyXScale.svg-435a9d6554018f9fb3f280e50974fb5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyXScale.svg" +dest_files=["res://.godot/imported/KeyXScale.svg-435a9d6554018f9fb3f280e50974fb5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Keyboard.svg b/src/resources/icons/godot/Keyboard.svg new file mode 100644 index 00000000..4a0e6f64 --- /dev/null +++ b/src/resources/icons/godot/Keyboard.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Keyboard.svg.import b/src/resources/icons/godot/Keyboard.svg.import new file mode 100644 index 00000000..cc458f99 --- /dev/null +++ b/src/resources/icons/godot/Keyboard.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lidm0v3oqm73" +path="res://.godot/imported/Keyboard.svg-e7c9efddd01f6e83c8fe5f4439a96f94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Keyboard.svg" +dest_files=["res://.godot/imported/Keyboard.svg-e7c9efddd01f6e83c8fe5f4439a96f94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyboardError.svg b/src/resources/icons/godot/KeyboardError.svg new file mode 100644 index 00000000..bc2ed119 --- /dev/null +++ b/src/resources/icons/godot/KeyboardError.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyboardError.svg.import b/src/resources/icons/godot/KeyboardError.svg.import new file mode 100644 index 00000000..3458b928 --- /dev/null +++ b/src/resources/icons/godot/KeyboardError.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://urkps2y6cxih" +path="res://.godot/imported/KeyboardError.svg-333852259db12212916ae22e83aab946.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyboardError.svg" +dest_files=["res://.godot/imported/KeyboardError.svg-333852259db12212916ae22e83aab946.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyboardLabel.svg b/src/resources/icons/godot/KeyboardLabel.svg new file mode 100644 index 00000000..83303a54 --- /dev/null +++ b/src/resources/icons/godot/KeyboardLabel.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyboardLabel.svg.import b/src/resources/icons/godot/KeyboardLabel.svg.import new file mode 100644 index 00000000..fc1e56d4 --- /dev/null +++ b/src/resources/icons/godot/KeyboardLabel.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tq8x2mqmdrji" +path="res://.godot/imported/KeyboardLabel.svg-452035ee1ba8306b47faabe19e98268f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyboardLabel.svg" +dest_files=["res://.godot/imported/KeyboardLabel.svg-452035ee1ba8306b47faabe19e98268f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KeyboardPhysical.svg b/src/resources/icons/godot/KeyboardPhysical.svg new file mode 100644 index 00000000..39f2ff29 --- /dev/null +++ b/src/resources/icons/godot/KeyboardPhysical.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KeyboardPhysical.svg.import b/src/resources/icons/godot/KeyboardPhysical.svg.import new file mode 100644 index 00000000..31dceafa --- /dev/null +++ b/src/resources/icons/godot/KeyboardPhysical.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://87lffxj0ooam" +path="res://.godot/imported/KeyboardPhysical.svg-8c3c93d7ba5cf14561f25ab00638adde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KeyboardPhysical.svg" +dest_files=["res://.godot/imported/KeyboardPhysical.svg-8c3c93d7ba5cf14561f25ab00638adde.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Keyword.svg b/src/resources/icons/godot/Keyword.svg new file mode 100644 index 00000000..f5c79405 --- /dev/null +++ b/src/resources/icons/godot/Keyword.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Keyword.svg.import b/src/resources/icons/godot/Keyword.svg.import new file mode 100644 index 00000000..4f0415d2 --- /dev/null +++ b/src/resources/icons/godot/Keyword.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6ip85swkynkj" +path="res://.godot/imported/Keyword.svg-1249f019526a99789eb5cccde094680e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Keyword.svg" +dest_files=["res://.godot/imported/Keyword.svg-1249f019526a99789eb5cccde094680e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KinematicCollision2D.svg b/src/resources/icons/godot/KinematicCollision2D.svg new file mode 100644 index 00000000..a09fc73a --- /dev/null +++ b/src/resources/icons/godot/KinematicCollision2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KinematicCollision2D.svg.import b/src/resources/icons/godot/KinematicCollision2D.svg.import new file mode 100644 index 00000000..f461d4b6 --- /dev/null +++ b/src/resources/icons/godot/KinematicCollision2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dip5ap4mutd46" +path="res://.godot/imported/KinematicCollision2D.svg-afc5d01d391fb76e784f02bd94307645.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KinematicCollision2D.svg" +dest_files=["res://.godot/imported/KinematicCollision2D.svg-afc5d01d391fb76e784f02bd94307645.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/KinematicCollision3D.svg b/src/resources/icons/godot/KinematicCollision3D.svg new file mode 100644 index 00000000..a674716a --- /dev/null +++ b/src/resources/icons/godot/KinematicCollision3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/KinematicCollision3D.svg.import b/src/resources/icons/godot/KinematicCollision3D.svg.import new file mode 100644 index 00000000..e29033fc --- /dev/null +++ b/src/resources/icons/godot/KinematicCollision3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsjdlwhixdv3q" +path="res://.godot/imported/KinematicCollision3D.svg-729e4963de1d595856555f3f3ba65f4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/KinematicCollision3D.svg" +dest_files=["res://.godot/imported/KinematicCollision3D.svg-729e4963de1d595856555f3f3ba65f4c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LICENSE.txt b/src/resources/icons/godot/LICENSE.txt new file mode 100644 index 00000000..0e3ba08d --- /dev/null +++ b/src/resources/icons/godot/LICENSE.txt @@ -0,0 +1,20 @@ +Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). +Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/src/resources/icons/godot/Label.svg b/src/resources/icons/godot/Label.svg new file mode 100644 index 00000000..c00a1e66 --- /dev/null +++ b/src/resources/icons/godot/Label.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Label.svg.import b/src/resources/icons/godot/Label.svg.import new file mode 100644 index 00000000..42ad34fa --- /dev/null +++ b/src/resources/icons/godot/Label.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0ustbbrc1kf0" +path="res://.godot/imported/Label.svg-4d170f1ed40ff5ec83714ca7c15cc7e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Label.svg" +dest_files=["res://.godot/imported/Label.svg-4d170f1ed40ff5ec83714ca7c15cc7e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Label3D.svg b/src/resources/icons/godot/Label3D.svg new file mode 100644 index 00000000..32a6465b --- /dev/null +++ b/src/resources/icons/godot/Label3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Label3D.svg.import b/src/resources/icons/godot/Label3D.svg.import new file mode 100644 index 00000000..5ed79b35 --- /dev/null +++ b/src/resources/icons/godot/Label3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3usbc73ry5ru" +path="res://.godot/imported/Label3D.svg-aa87236416cee93c5d5f4b99edf8ed80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Label3D.svg" +dest_files=["res://.godot/imported/Label3D.svg-aa87236416cee93c5d5f4b99edf8ed80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LabelSettings.svg b/src/resources/icons/godot/LabelSettings.svg new file mode 100644 index 00000000..0ce9efa0 --- /dev/null +++ b/src/resources/icons/godot/LabelSettings.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LabelSettings.svg.import b/src/resources/icons/godot/LabelSettings.svg.import new file mode 100644 index 00000000..5cefda87 --- /dev/null +++ b/src/resources/icons/godot/LabelSettings.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8sfnxi3vpohi" +path="res://.godot/imported/LabelSettings.svg-450d3fce6963ea5af9da2d16f7c4ec93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LabelSettings.svg" +dest_files=["res://.godot/imported/LabelSettings.svg-450d3fce6963ea5af9da2d16f7c4ec93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LightOccluder2D.svg b/src/resources/icons/godot/LightOccluder2D.svg new file mode 100644 index 00000000..98333116 --- /dev/null +++ b/src/resources/icons/godot/LightOccluder2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LightOccluder2D.svg.import b/src/resources/icons/godot/LightOccluder2D.svg.import new file mode 100644 index 00000000..73e52d9c --- /dev/null +++ b/src/resources/icons/godot/LightOccluder2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dio8oigbrnnw1" +path="res://.godot/imported/LightOccluder2D.svg-d1223756809c768356d9e40de639fcda.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LightOccluder2D.svg" +dest_files=["res://.godot/imported/LightOccluder2D.svg-d1223756809c768356d9e40de639fcda.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LightmapGI.svg b/src/resources/icons/godot/LightmapGI.svg new file mode 100644 index 00000000..574b9bc2 --- /dev/null +++ b/src/resources/icons/godot/LightmapGI.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LightmapGI.svg.import b/src/resources/icons/godot/LightmapGI.svg.import new file mode 100644 index 00000000..38cd5342 --- /dev/null +++ b/src/resources/icons/godot/LightmapGI.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpuuk20nyafro" +path="res://.godot/imported/LightmapGI.svg-849b77d42b936f2dcb455c868e54f9fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LightmapGI.svg" +dest_files=["res://.godot/imported/LightmapGI.svg-849b77d42b936f2dcb455c868e54f9fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LightmapGIData.svg b/src/resources/icons/godot/LightmapGIData.svg new file mode 100644 index 00000000..f2ded15d --- /dev/null +++ b/src/resources/icons/godot/LightmapGIData.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LightmapGIData.svg.import b/src/resources/icons/godot/LightmapGIData.svg.import new file mode 100644 index 00000000..152fa806 --- /dev/null +++ b/src/resources/icons/godot/LightmapGIData.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnuejb1mnth5" +path="res://.godot/imported/LightmapGIData.svg-acbc489f60a06858ea5a2863b3ad1bf0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LightmapGIData.svg" +dest_files=["res://.godot/imported/LightmapGIData.svg-acbc489f60a06858ea5a2863b3ad1bf0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LightmapProbe.svg b/src/resources/icons/godot/LightmapProbe.svg new file mode 100644 index 00000000..f3fae439 --- /dev/null +++ b/src/resources/icons/godot/LightmapProbe.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LightmapProbe.svg.import b/src/resources/icons/godot/LightmapProbe.svg.import new file mode 100644 index 00000000..23a0b125 --- /dev/null +++ b/src/resources/icons/godot/LightmapProbe.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj7kem77gyfoy" +path="res://.godot/imported/LightmapProbe.svg-a7ed7b1b9fe9c6bd5367c4c20dcd733e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LightmapProbe.svg" +dest_files=["res://.godot/imported/LightmapProbe.svg-a7ed7b1b9fe9c6bd5367c4c20dcd733e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LimitAngularVelocityModifier3D.svg b/src/resources/icons/godot/LimitAngularVelocityModifier3D.svg new file mode 100644 index 00000000..f6e910eb --- /dev/null +++ b/src/resources/icons/godot/LimitAngularVelocityModifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LimitAngularVelocityModifier3D.svg.import b/src/resources/icons/godot/LimitAngularVelocityModifier3D.svg.import new file mode 100644 index 00000000..dd104135 --- /dev/null +++ b/src/resources/icons/godot/LimitAngularVelocityModifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2ww7oxpqaa2s" +path="res://.godot/imported/LimitAngularVelocityModifier3D.svg-6b3f65a674cd2b53ad4806c1c8397fbc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LimitAngularVelocityModifier3D.svg" +dest_files=["res://.godot/imported/LimitAngularVelocityModifier3D.svg-6b3f65a674cd2b53ad4806c1c8397fbc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Line.svg b/src/resources/icons/godot/Line.svg new file mode 100644 index 00000000..014ae091 --- /dev/null +++ b/src/resources/icons/godot/Line.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Line.svg.import b/src/resources/icons/godot/Line.svg.import new file mode 100644 index 00000000..e6dfd918 --- /dev/null +++ b/src/resources/icons/godot/Line.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi8skp536uqcx" +path="res://.godot/imported/Line.svg-4c130ae81252d7c2b9f7b55c31ebf1fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Line.svg" +dest_files=["res://.godot/imported/Line.svg-4c130ae81252d7c2b9f7b55c31ebf1fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Line2D.svg b/src/resources/icons/godot/Line2D.svg new file mode 100644 index 00000000..6a0f312f --- /dev/null +++ b/src/resources/icons/godot/Line2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Line2D.svg.import b/src/resources/icons/godot/Line2D.svg.import new file mode 100644 index 00000000..fca716bf --- /dev/null +++ b/src/resources/icons/godot/Line2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvo7hjs2oksbe" +path="res://.godot/imported/Line2D.svg-07eb58f2f096d784b5e212a3a0ba5c1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Line2D.svg" +dest_files=["res://.godot/imported/Line2D.svg-07eb58f2f096d784b5e212a3a0ba5c1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LineEdit.svg b/src/resources/icons/godot/LineEdit.svg new file mode 100644 index 00000000..e5887501 --- /dev/null +++ b/src/resources/icons/godot/LineEdit.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LineEdit.svg.import b/src/resources/icons/godot/LineEdit.svg.import new file mode 100644 index 00000000..fff24056 --- /dev/null +++ b/src/resources/icons/godot/LineEdit.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpad01lukhrsr" +path="res://.godot/imported/LineEdit.svg-6aeeafe466e2a11cfb416578f4b324aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LineEdit.svg" +dest_files=["res://.godot/imported/LineEdit.svg-6aeeafe466e2a11cfb416578f4b324aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LinkButton.svg b/src/resources/icons/godot/LinkButton.svg new file mode 100644 index 00000000..7691b008 --- /dev/null +++ b/src/resources/icons/godot/LinkButton.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LinkButton.svg.import b/src/resources/icons/godot/LinkButton.svg.import new file mode 100644 index 00000000..6bc35930 --- /dev/null +++ b/src/resources/icons/godot/LinkButton.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgx242novicau" +path="res://.godot/imported/LinkButton.svg-1efe9e8a1a167d173bb17226cf0fb5be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LinkButton.svg" +dest_files=["res://.godot/imported/LinkButton.svg-1efe9e8a1a167d173bb17226cf0fb5be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LinkOverlay.svg b/src/resources/icons/godot/LinkOverlay.svg new file mode 100644 index 00000000..9bfb238f --- /dev/null +++ b/src/resources/icons/godot/LinkOverlay.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LinkOverlay.svg.import b/src/resources/icons/godot/LinkOverlay.svg.import new file mode 100644 index 00000000..8130e0e7 --- /dev/null +++ b/src/resources/icons/godot/LinkOverlay.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://woksb3pwbpa6" +path="res://.godot/imported/LinkOverlay.svg-95dc86dd47ad37fe1ea91eb2b8ed42bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LinkOverlay.svg" +dest_files=["res://.godot/imported/LinkOverlay.svg-95dc86dd47ad37fe1ea91eb2b8ed42bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ListSelect.svg b/src/resources/icons/godot/ListSelect.svg new file mode 100644 index 00000000..45700e29 --- /dev/null +++ b/src/resources/icons/godot/ListSelect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ListSelect.svg.import b/src/resources/icons/godot/ListSelect.svg.import new file mode 100644 index 00000000..93cb1c63 --- /dev/null +++ b/src/resources/icons/godot/ListSelect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c07auucrgtec3" +path="res://.godot/imported/ListSelect.svg-86cc572a9977f0f538e3f13473f3f689.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ListSelect.svg" +dest_files=["res://.godot/imported/ListSelect.svg-86cc572a9977f0f538e3f13473f3f689.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Load.svg b/src/resources/icons/godot/Load.svg new file mode 100644 index 00000000..f1ff65fc --- /dev/null +++ b/src/resources/icons/godot/Load.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Load.svg.import b/src/resources/icons/godot/Load.svg.import new file mode 100644 index 00000000..16800a16 --- /dev/null +++ b/src/resources/icons/godot/Load.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1scuqu8bxkdx" +path="res://.godot/imported/Load.svg-ac10755c68b5f5a5f8aba1e761881011.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Load.svg" +dest_files=["res://.godot/imported/Load.svg-ac10755c68b5f5a5f8aba1e761881011.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LoadQuick.svg b/src/resources/icons/godot/LoadQuick.svg new file mode 100644 index 00000000..226dac51 --- /dev/null +++ b/src/resources/icons/godot/LoadQuick.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LoadQuick.svg.import b/src/resources/icons/godot/LoadQuick.svg.import new file mode 100644 index 00000000..c7cd22c1 --- /dev/null +++ b/src/resources/icons/godot/LoadQuick.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b06c80ok7tgc2" +path="res://.godot/imported/LoadQuick.svg-01d11a56d37126146fba0d3a8a7972ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LoadQuick.svg" +dest_files=["res://.godot/imported/LoadQuick.svg-01d11a56d37126146fba0d3a8a7972ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LocalVariable.svg b/src/resources/icons/godot/LocalVariable.svg new file mode 100644 index 00000000..33aa1e74 --- /dev/null +++ b/src/resources/icons/godot/LocalVariable.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LocalVariable.svg.import b/src/resources/icons/godot/LocalVariable.svg.import new file mode 100644 index 00000000..410e65a0 --- /dev/null +++ b/src/resources/icons/godot/LocalVariable.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkjhucs7faee3" +path="res://.godot/imported/LocalVariable.svg-786f0fbfc48778bf89ab5bf57033dbca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LocalVariable.svg" +dest_files=["res://.godot/imported/LocalVariable.svg-786f0fbfc48778bf89ab5bf57033dbca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Lock.svg b/src/resources/icons/godot/Lock.svg new file mode 100644 index 00000000..382d7440 --- /dev/null +++ b/src/resources/icons/godot/Lock.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Lock.svg.import b/src/resources/icons/godot/Lock.svg.import new file mode 100644 index 00000000..5206b9da --- /dev/null +++ b/src/resources/icons/godot/Lock.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ykkh1uap1in7" +path="res://.godot/imported/Lock.svg-9eabcba70c44e91d60e68a97bc817791.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Lock.svg" +dest_files=["res://.godot/imported/Lock.svg-9eabcba70c44e91d60e68a97bc817791.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LockViewport.svg b/src/resources/icons/godot/LockViewport.svg new file mode 100644 index 00000000..83e018af --- /dev/null +++ b/src/resources/icons/godot/LockViewport.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LockViewport.svg.import b/src/resources/icons/godot/LockViewport.svg.import new file mode 100644 index 00000000..218c0219 --- /dev/null +++ b/src/resources/icons/godot/LockViewport.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5boqcewas8cu" +path="res://.godot/imported/LockViewport.svg-5b387a3a9f20b345a806adf46b11f2c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LockViewport.svg" +dest_files=["res://.godot/imported/LockViewport.svg-5b387a3a9f20b345a806adf46b11f2c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Logo.svg b/src/resources/icons/godot/Logo.svg new file mode 100644 index 00000000..baf05dd3 --- /dev/null +++ b/src/resources/icons/godot/Logo.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Logo.svg.import b/src/resources/icons/godot/Logo.svg.import new file mode 100644 index 00000000..d4c49918 --- /dev/null +++ b/src/resources/icons/godot/Logo.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cakye5arqqrdi" +path="res://.godot/imported/Logo.svg-deb110c7c771250ae6d712ed965c07f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Logo.svg" +dest_files=["res://.godot/imported/Logo.svg-deb110c7c771250ae6d712ed965c07f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/LookAtModifier3D.svg b/src/resources/icons/godot/LookAtModifier3D.svg new file mode 100644 index 00000000..4f293913 --- /dev/null +++ b/src/resources/icons/godot/LookAtModifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/LookAtModifier3D.svg.import b/src/resources/icons/godot/LookAtModifier3D.svg.import new file mode 100644 index 00000000..7f775281 --- /dev/null +++ b/src/resources/icons/godot/LookAtModifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci1pnwm1t0jhn" +path="res://.godot/imported/LookAtModifier3D.svg-7eb183947203380b210e140e987f36be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/LookAtModifier3D.svg" +dest_files=["res://.godot/imported/LookAtModifier3D.svg-7eb183947203380b210e140e987f36be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Loop.svg b/src/resources/icons/godot/Loop.svg new file mode 100644 index 00000000..9df28926 --- /dev/null +++ b/src/resources/icons/godot/Loop.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Loop.svg.import b/src/resources/icons/godot/Loop.svg.import new file mode 100644 index 00000000..115cf429 --- /dev/null +++ b/src/resources/icons/godot/Loop.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bief82ylclxkc" +path="res://.godot/imported/Loop.svg-944ead3bfd0728c64bb4bd88e7b40a5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Loop.svg" +dest_files=["res://.godot/imported/Loop.svg-944ead3bfd0728c64bb4bd88e7b40a5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MainMovieWrite.svg b/src/resources/icons/godot/MainMovieWrite.svg new file mode 100644 index 00000000..201f87b1 --- /dev/null +++ b/src/resources/icons/godot/MainMovieWrite.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MainMovieWrite.svg.import b/src/resources/icons/godot/MainMovieWrite.svg.import new file mode 100644 index 00000000..ba77c6b4 --- /dev/null +++ b/src/resources/icons/godot/MainMovieWrite.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkepc2oakypoc" +path="res://.godot/imported/MainMovieWrite.svg-62b14516806ca7bad39ab37a48b9ef02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MainMovieWrite.svg" +dest_files=["res://.godot/imported/MainMovieWrite.svg-62b14516806ca7bad39ab37a48b9ef02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MainPlay.svg b/src/resources/icons/godot/MainPlay.svg new file mode 100644 index 00000000..cea985b8 --- /dev/null +++ b/src/resources/icons/godot/MainPlay.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MainPlay.svg.import b/src/resources/icons/godot/MainPlay.svg.import new file mode 100644 index 00000000..b80c9136 --- /dev/null +++ b/src/resources/icons/godot/MainPlay.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbsijj3phwyv6" +path="res://.godot/imported/MainPlay.svg-15ab87594bfb26051d78c80cb77c8300.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MainPlay.svg" +dest_files=["res://.godot/imported/MainPlay.svg-15ab87594bfb26051d78c80cb77c8300.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MakeFloating.svg b/src/resources/icons/godot/MakeFloating.svg new file mode 100644 index 00000000..7ac83227 --- /dev/null +++ b/src/resources/icons/godot/MakeFloating.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MakeFloating.svg.import b/src/resources/icons/godot/MakeFloating.svg.import new file mode 100644 index 00000000..6eab3399 --- /dev/null +++ b/src/resources/icons/godot/MakeFloating.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdq6xwv2enyuq" +path="res://.godot/imported/MakeFloating.svg-122aea2797364e8bb750f65b53b76fdb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MakeFloating.svg" +dest_files=["res://.godot/imported/MakeFloating.svg-122aea2797364e8bb750f65b53b76fdb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MarginContainer.svg b/src/resources/icons/godot/MarginContainer.svg new file mode 100644 index 00000000..0a98cd9f --- /dev/null +++ b/src/resources/icons/godot/MarginContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MarginContainer.svg.import b/src/resources/icons/godot/MarginContainer.svg.import new file mode 100644 index 00000000..8bc36d6b --- /dev/null +++ b/src/resources/icons/godot/MarginContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd0g168hqc34c" +path="res://.godot/imported/MarginContainer.svg-2f87ff37297f8254c4f2be05a22b9c80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MarginContainer.svg" +dest_files=["res://.godot/imported/MarginContainer.svg-2f87ff37297f8254c4f2be05a22b9c80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Marker.svg b/src/resources/icons/godot/Marker.svg new file mode 100644 index 00000000..58310867 --- /dev/null +++ b/src/resources/icons/godot/Marker.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Marker.svg.import b/src/resources/icons/godot/Marker.svg.import new file mode 100644 index 00000000..7d5b1d4c --- /dev/null +++ b/src/resources/icons/godot/Marker.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdtbe2e3wsv14" +path="res://.godot/imported/Marker.svg-4ff11aa1c90d1f21b0d57b4b163c648b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Marker.svg" +dest_files=["res://.godot/imported/Marker.svg-4ff11aa1c90d1f21b0d57b4b163c648b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Marker2D.svg b/src/resources/icons/godot/Marker2D.svg new file mode 100644 index 00000000..a2dac2c4 --- /dev/null +++ b/src/resources/icons/godot/Marker2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Marker2D.svg.import b/src/resources/icons/godot/Marker2D.svg.import new file mode 100644 index 00000000..4d7d9aff --- /dev/null +++ b/src/resources/icons/godot/Marker2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dph21p5hwd24r" +path="res://.godot/imported/Marker2D.svg-11c4c57c59abf8994b3ab18f2f69d3b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Marker2D.svg" +dest_files=["res://.godot/imported/Marker2D.svg-11c4c57c59abf8994b3ab18f2f69d3b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Marker3D.svg b/src/resources/icons/godot/Marker3D.svg new file mode 100644 index 00000000..cf588da3 --- /dev/null +++ b/src/resources/icons/godot/Marker3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Marker3D.svg.import b/src/resources/icons/godot/Marker3D.svg.import new file mode 100644 index 00000000..c1dafc01 --- /dev/null +++ b/src/resources/icons/godot/Marker3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnp3sgvq4q13b" +path="res://.godot/imported/Marker3D.svg-362f77f6a2713cbf0a19481ad2e1a8dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Marker3D.svg" +dest_files=["res://.godot/imported/Marker3D.svg-362f77f6a2713cbf0a19481ad2e1a8dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MarkerSelected.svg b/src/resources/icons/godot/MarkerSelected.svg new file mode 100644 index 00000000..19f89842 --- /dev/null +++ b/src/resources/icons/godot/MarkerSelected.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MarkerSelected.svg.import b/src/resources/icons/godot/MarkerSelected.svg.import new file mode 100644 index 00000000..2721542e --- /dev/null +++ b/src/resources/icons/godot/MarkerSelected.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6ghbaxplqc4r" +path="res://.godot/imported/MarkerSelected.svg-81500b4c2faeedb43882e64329bd315a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MarkerSelected.svg" +dest_files=["res://.godot/imported/MarkerSelected.svg-81500b4c2faeedb43882e64329bd315a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MatchCase.svg b/src/resources/icons/godot/MatchCase.svg new file mode 100644 index 00000000..d9ad4c77 --- /dev/null +++ b/src/resources/icons/godot/MatchCase.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MatchCase.svg.import b/src/resources/icons/godot/MatchCase.svg.import new file mode 100644 index 00000000..7a64b4ea --- /dev/null +++ b/src/resources/icons/godot/MatchCase.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr0hd7ww2shrl" +path="res://.godot/imported/MatchCase.svg-7475b81ab9ef53212e4e036b2bb476df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MatchCase.svg" +dest_files=["res://.godot/imported/MatchCase.svg-7475b81ab9ef53212e4e036b2bb476df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MaterialPreviewCube.svg b/src/resources/icons/godot/MaterialPreviewCube.svg new file mode 100644 index 00000000..171fc852 --- /dev/null +++ b/src/resources/icons/godot/MaterialPreviewCube.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MaterialPreviewCube.svg.import b/src/resources/icons/godot/MaterialPreviewCube.svg.import new file mode 100644 index 00000000..6ba32318 --- /dev/null +++ b/src/resources/icons/godot/MaterialPreviewCube.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2y177y8yq4bb" +path="res://.godot/imported/MaterialPreviewCube.svg-2275e697f6929714923b5a3cd58beeaa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MaterialPreviewCube.svg" +dest_files=["res://.godot/imported/MaterialPreviewCube.svg-2275e697f6929714923b5a3cd58beeaa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MaterialPreviewLight1.svg b/src/resources/icons/godot/MaterialPreviewLight1.svg new file mode 100644 index 00000000..95165cea --- /dev/null +++ b/src/resources/icons/godot/MaterialPreviewLight1.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MaterialPreviewLight1.svg.import b/src/resources/icons/godot/MaterialPreviewLight1.svg.import new file mode 100644 index 00000000..393b9598 --- /dev/null +++ b/src/resources/icons/godot/MaterialPreviewLight1.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cynb2wl4sv63p" +path="res://.godot/imported/MaterialPreviewLight1.svg-8240b3004103117cdf8f89e403d92e52.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MaterialPreviewLight1.svg" +dest_files=["res://.godot/imported/MaterialPreviewLight1.svg-8240b3004103117cdf8f89e403d92e52.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MaterialPreviewLight2.svg b/src/resources/icons/godot/MaterialPreviewLight2.svg new file mode 100644 index 00000000..79bec6bc --- /dev/null +++ b/src/resources/icons/godot/MaterialPreviewLight2.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MaterialPreviewLight2.svg.import b/src/resources/icons/godot/MaterialPreviewLight2.svg.import new file mode 100644 index 00000000..965c062b --- /dev/null +++ b/src/resources/icons/godot/MaterialPreviewLight2.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1fcsepk1hmsk" +path="res://.godot/imported/MaterialPreviewLight2.svg-72e040497e07617c360dfafcd9282a9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MaterialPreviewLight2.svg" +dest_files=["res://.godot/imported/MaterialPreviewLight2.svg-72e040497e07617c360dfafcd9282a9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MaterialPreviewQuad.svg b/src/resources/icons/godot/MaterialPreviewQuad.svg new file mode 100644 index 00000000..2040b3a7 --- /dev/null +++ b/src/resources/icons/godot/MaterialPreviewQuad.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MaterialPreviewQuad.svg.import b/src/resources/icons/godot/MaterialPreviewQuad.svg.import new file mode 100644 index 00000000..ab638018 --- /dev/null +++ b/src/resources/icons/godot/MaterialPreviewQuad.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r4pgmeg3mlvh" +path="res://.godot/imported/MaterialPreviewQuad.svg-4f58e4bfd2a938ee697e93dd1c6af51f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MaterialPreviewQuad.svg" +dest_files=["res://.godot/imported/MaterialPreviewQuad.svg-4f58e4bfd2a938ee697e93dd1c6af51f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MaterialPreviewSphere.svg b/src/resources/icons/godot/MaterialPreviewSphere.svg new file mode 100644 index 00000000..1fd9ce9e --- /dev/null +++ b/src/resources/icons/godot/MaterialPreviewSphere.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MaterialPreviewSphere.svg.import b/src/resources/icons/godot/MaterialPreviewSphere.svg.import new file mode 100644 index 00000000..e0986c2a --- /dev/null +++ b/src/resources/icons/godot/MaterialPreviewSphere.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6yb25t0sq37s" +path="res://.godot/imported/MaterialPreviewSphere.svg-95d2a9ad5937fd1fd4d9bd131109ef01.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MaterialPreviewSphere.svg" +dest_files=["res://.godot/imported/MaterialPreviewSphere.svg-95d2a9ad5937fd1fd4d9bd131109ef01.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MemberAnnotation.svg b/src/resources/icons/godot/MemberAnnotation.svg new file mode 100644 index 00000000..b2b486ea --- /dev/null +++ b/src/resources/icons/godot/MemberAnnotation.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MemberAnnotation.svg.import b/src/resources/icons/godot/MemberAnnotation.svg.import new file mode 100644 index 00000000..6a40e7b6 --- /dev/null +++ b/src/resources/icons/godot/MemberAnnotation.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://er2p5qwdq4kj" +path="res://.godot/imported/MemberAnnotation.svg-ddaf7dce348e707c829fcebd75d4bafd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MemberAnnotation.svg" +dest_files=["res://.godot/imported/MemberAnnotation.svg-ddaf7dce348e707c829fcebd75d4bafd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MemberConstant.svg b/src/resources/icons/godot/MemberConstant.svg new file mode 100644 index 00000000..d4622ce5 --- /dev/null +++ b/src/resources/icons/godot/MemberConstant.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MemberConstant.svg.import b/src/resources/icons/godot/MemberConstant.svg.import new file mode 100644 index 00000000..1c4072c4 --- /dev/null +++ b/src/resources/icons/godot/MemberConstant.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pyfvf575uy2x" +path="res://.godot/imported/MemberConstant.svg-7720c06dacf6e47764e008ad8d16028a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MemberConstant.svg" +dest_files=["res://.godot/imported/MemberConstant.svg-7720c06dacf6e47764e008ad8d16028a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MemberConstructor.svg b/src/resources/icons/godot/MemberConstructor.svg new file mode 100644 index 00000000..0298086c --- /dev/null +++ b/src/resources/icons/godot/MemberConstructor.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MemberConstructor.svg.import b/src/resources/icons/godot/MemberConstructor.svg.import new file mode 100644 index 00000000..feba6a55 --- /dev/null +++ b/src/resources/icons/godot/MemberConstructor.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://faehnsaxev1t" +path="res://.godot/imported/MemberConstructor.svg-c8b314dddd0446f7b37108835badacc8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MemberConstructor.svg" +dest_files=["res://.godot/imported/MemberConstructor.svg-c8b314dddd0446f7b37108835badacc8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MemberMethod.svg b/src/resources/icons/godot/MemberMethod.svg new file mode 100644 index 00000000..91835251 --- /dev/null +++ b/src/resources/icons/godot/MemberMethod.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MemberMethod.svg.import b/src/resources/icons/godot/MemberMethod.svg.import new file mode 100644 index 00000000..5d26bb69 --- /dev/null +++ b/src/resources/icons/godot/MemberMethod.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhy7fvtfp7cet" +path="res://.godot/imported/MemberMethod.svg-97db88d2e9fb0362bf0cdf645f0d18ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MemberMethod.svg" +dest_files=["res://.godot/imported/MemberMethod.svg-97db88d2e9fb0362bf0cdf645f0d18ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MemberOperator.svg b/src/resources/icons/godot/MemberOperator.svg new file mode 100644 index 00000000..1de44e1c --- /dev/null +++ b/src/resources/icons/godot/MemberOperator.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MemberOperator.svg.import b/src/resources/icons/godot/MemberOperator.svg.import new file mode 100644 index 00000000..5788f55f --- /dev/null +++ b/src/resources/icons/godot/MemberOperator.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c263nb6olps75" +path="res://.godot/imported/MemberOperator.svg-6f0ad123befed74b75fd2d8f07e13d59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MemberOperator.svg" +dest_files=["res://.godot/imported/MemberOperator.svg-6f0ad123befed74b75fd2d8f07e13d59.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MemberProperty.svg b/src/resources/icons/godot/MemberProperty.svg new file mode 100644 index 00000000..52c1ce61 --- /dev/null +++ b/src/resources/icons/godot/MemberProperty.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MemberProperty.svg.import b/src/resources/icons/godot/MemberProperty.svg.import new file mode 100644 index 00000000..0d35b16b --- /dev/null +++ b/src/resources/icons/godot/MemberProperty.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4aicrtehsi6d" +path="res://.godot/imported/MemberProperty.svg-fb5f2ae84ee97420de9ff84bf4573e5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MemberProperty.svg" +dest_files=["res://.godot/imported/MemberProperty.svg-fb5f2ae84ee97420de9ff84bf4573e5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MemberSignal.svg b/src/resources/icons/godot/MemberSignal.svg new file mode 100644 index 00000000..f36ffa12 --- /dev/null +++ b/src/resources/icons/godot/MemberSignal.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MemberSignal.svg.import b/src/resources/icons/godot/MemberSignal.svg.import new file mode 100644 index 00000000..080370e9 --- /dev/null +++ b/src/resources/icons/godot/MemberSignal.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clhlgyljq60sn" +path="res://.godot/imported/MemberSignal.svg-9a89d4dd2a02ee45a0aa1237ebf6afc3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MemberSignal.svg" +dest_files=["res://.godot/imported/MemberSignal.svg-9a89d4dd2a02ee45a0aa1237ebf6afc3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MemberTheme.svg b/src/resources/icons/godot/MemberTheme.svg new file mode 100644 index 00000000..e1596a37 --- /dev/null +++ b/src/resources/icons/godot/MemberTheme.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MemberTheme.svg.import b/src/resources/icons/godot/MemberTheme.svg.import new file mode 100644 index 00000000..713d1949 --- /dev/null +++ b/src/resources/icons/godot/MemberTheme.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqygohiq5rdxb" +path="res://.godot/imported/MemberTheme.svg-acd52d1bd03df1271fe3ffc45e78c7b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MemberTheme.svg" +dest_files=["res://.godot/imported/MemberTheme.svg-acd52d1bd03df1271fe3ffc45e78c7b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MenuBar.svg b/src/resources/icons/godot/MenuBar.svg new file mode 100644 index 00000000..c54cb7b6 --- /dev/null +++ b/src/resources/icons/godot/MenuBar.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MenuBar.svg.import b/src/resources/icons/godot/MenuBar.svg.import new file mode 100644 index 00000000..9dfbd6b2 --- /dev/null +++ b/src/resources/icons/godot/MenuBar.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7ms83p032nc6" +path="res://.godot/imported/MenuBar.svg-8ae724775c602d0d489fde180b820a6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MenuBar.svg" +dest_files=["res://.godot/imported/MenuBar.svg-8ae724775c602d0d489fde180b820a6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MenuButton.svg b/src/resources/icons/godot/MenuButton.svg new file mode 100644 index 00000000..b2082c5b --- /dev/null +++ b/src/resources/icons/godot/MenuButton.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MenuButton.svg.import b/src/resources/icons/godot/MenuButton.svg.import new file mode 100644 index 00000000..6be79b0b --- /dev/null +++ b/src/resources/icons/godot/MenuButton.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct1pkkrxbka4o" +path="res://.godot/imported/MenuButton.svg-4e1da86e519509f236cab8d2793f8262.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MenuButton.svg" +dest_files=["res://.godot/imported/MenuButton.svg-4e1da86e519509f236cab8d2793f8262.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Mesh.svg b/src/resources/icons/godot/Mesh.svg new file mode 100644 index 00000000..540ba4bf --- /dev/null +++ b/src/resources/icons/godot/Mesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Mesh.svg.import b/src/resources/icons/godot/Mesh.svg.import new file mode 100644 index 00000000..a2c81818 --- /dev/null +++ b/src/resources/icons/godot/Mesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5fll35nr1ru7" +path="res://.godot/imported/Mesh.svg-6825f36455ec098b166defc09a6d7158.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Mesh.svg" +dest_files=["res://.godot/imported/Mesh.svg-6825f36455ec098b166defc09a6d7158.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MeshInstance2D.svg b/src/resources/icons/godot/MeshInstance2D.svg new file mode 100644 index 00000000..fb9cd382 --- /dev/null +++ b/src/resources/icons/godot/MeshInstance2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MeshInstance2D.svg.import b/src/resources/icons/godot/MeshInstance2D.svg.import new file mode 100644 index 00000000..cdd95fbf --- /dev/null +++ b/src/resources/icons/godot/MeshInstance2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdlaewdu2wx36" +path="res://.godot/imported/MeshInstance2D.svg-01d5d068c2cf6ccc49886dd593b8b4ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MeshInstance2D.svg" +dest_files=["res://.godot/imported/MeshInstance2D.svg-01d5d068c2cf6ccc49886dd593b8b4ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MeshInstance3D.svg b/src/resources/icons/godot/MeshInstance3D.svg new file mode 100644 index 00000000..821260de --- /dev/null +++ b/src/resources/icons/godot/MeshInstance3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MeshInstance3D.svg.import b/src/resources/icons/godot/MeshInstance3D.svg.import new file mode 100644 index 00000000..feadb696 --- /dev/null +++ b/src/resources/icons/godot/MeshInstance3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://briq1hit0lwfq" +path="res://.godot/imported/MeshInstance3D.svg-b5bb59b3a2d2a1bf1821ceb1ba03e3c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MeshInstance3D.svg" +dest_files=["res://.godot/imported/MeshInstance3D.svg-b5bb59b3a2d2a1bf1821ceb1ba03e3c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MeshItem.svg b/src/resources/icons/godot/MeshItem.svg new file mode 100644 index 00000000..80bd91e3 --- /dev/null +++ b/src/resources/icons/godot/MeshItem.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MeshItem.svg.import b/src/resources/icons/godot/MeshItem.svg.import new file mode 100644 index 00000000..04ae66b5 --- /dev/null +++ b/src/resources/icons/godot/MeshItem.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sj5qu1vkwjg6" +path="res://.godot/imported/MeshItem.svg-40f784449b1042e2b74f707eb730b507.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MeshItem.svg" +dest_files=["res://.godot/imported/MeshItem.svg-40f784449b1042e2b74f707eb730b507.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MeshLibrary.svg b/src/resources/icons/godot/MeshLibrary.svg new file mode 100644 index 00000000..36d98e73 --- /dev/null +++ b/src/resources/icons/godot/MeshLibrary.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MeshLibrary.svg.import b/src/resources/icons/godot/MeshLibrary.svg.import new file mode 100644 index 00000000..c0990d6e --- /dev/null +++ b/src/resources/icons/godot/MeshLibrary.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf3e0t83csq06" +path="res://.godot/imported/MeshLibrary.svg-014c5d12c4823827c268f617d08f92b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MeshLibrary.svg" +dest_files=["res://.godot/imported/MeshLibrary.svg-014c5d12c4823827c268f617d08f92b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MeshLibraryEditor.svg b/src/resources/icons/godot/MeshLibraryEditor.svg new file mode 100644 index 00000000..23620f29 --- /dev/null +++ b/src/resources/icons/godot/MeshLibraryEditor.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MeshLibraryEditor.svg.import b/src/resources/icons/godot/MeshLibraryEditor.svg.import new file mode 100644 index 00000000..db0bbe1e --- /dev/null +++ b/src/resources/icons/godot/MeshLibraryEditor.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0lhf2cxjs6x3" +path="res://.godot/imported/MeshLibraryEditor.svg-bea4047fb1c90d8d076c69ff28e99848.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MeshLibraryEditor.svg" +dest_files=["res://.godot/imported/MeshLibraryEditor.svg-bea4047fb1c90d8d076c69ff28e99848.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MeshTexture.svg b/src/resources/icons/godot/MeshTexture.svg new file mode 100644 index 00000000..bc58be56 --- /dev/null +++ b/src/resources/icons/godot/MeshTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MeshTexture.svg.import b/src/resources/icons/godot/MeshTexture.svg.import new file mode 100644 index 00000000..f1be212f --- /dev/null +++ b/src/resources/icons/godot/MeshTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmaeltn0s3bml" +path="res://.godot/imported/MeshTexture.svg-fff102cbff4a1ea110d4d3a2f3649790.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MeshTexture.svg" +dest_files=["res://.godot/imported/MeshTexture.svg-fff102cbff4a1ea110d4d3a2f3649790.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MethodOverride.svg b/src/resources/icons/godot/MethodOverride.svg new file mode 100644 index 00000000..6210f0ec --- /dev/null +++ b/src/resources/icons/godot/MethodOverride.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MethodOverride.svg.import b/src/resources/icons/godot/MethodOverride.svg.import new file mode 100644 index 00000000..aadfff84 --- /dev/null +++ b/src/resources/icons/godot/MethodOverride.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7pe1topsd3wk" +path="res://.godot/imported/MethodOverride.svg-b312699510750aaee847e9627adbb2a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MethodOverride.svg" +dest_files=["res://.godot/imported/MethodOverride.svg-b312699510750aaee847e9627adbb2a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MethodOverrideAndSlot.svg b/src/resources/icons/godot/MethodOverrideAndSlot.svg new file mode 100644 index 00000000..6c52c004 --- /dev/null +++ b/src/resources/icons/godot/MethodOverrideAndSlot.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MethodOverrideAndSlot.svg.import b/src/resources/icons/godot/MethodOverrideAndSlot.svg.import new file mode 100644 index 00000000..4f057b43 --- /dev/null +++ b/src/resources/icons/godot/MethodOverrideAndSlot.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g2e7r2whajj3" +path="res://.godot/imported/MethodOverrideAndSlot.svg-3de72949115519635d022967c4ea6840.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MethodOverrideAndSlot.svg" +dest_files=["res://.godot/imported/MethodOverrideAndSlot.svg-3de72949115519635d022967c4ea6840.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MiniObject.svg b/src/resources/icons/godot/MiniObject.svg new file mode 100644 index 00000000..359c1324 --- /dev/null +++ b/src/resources/icons/godot/MiniObject.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MiniObject.svg.import b/src/resources/icons/godot/MiniObject.svg.import new file mode 100644 index 00000000..78990484 --- /dev/null +++ b/src/resources/icons/godot/MiniObject.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8xxa17okmw5k" +path="res://.godot/imported/MiniObject.svg-d5d378baf0be8942f5eee53a3fdb45d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MiniObject.svg" +dest_files=["res://.godot/imported/MiniObject.svg-d5d378baf0be8942f5eee53a3fdb45d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MirrorX.svg b/src/resources/icons/godot/MirrorX.svg new file mode 100644 index 00000000..81fd3362 --- /dev/null +++ b/src/resources/icons/godot/MirrorX.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MirrorX.svg.import b/src/resources/icons/godot/MirrorX.svg.import new file mode 100644 index 00000000..38e7e6ef --- /dev/null +++ b/src/resources/icons/godot/MirrorX.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btt75fwqwj3wh" +path="res://.godot/imported/MirrorX.svg-90c942d557e3fb932a64cf0918751103.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MirrorX.svg" +dest_files=["res://.godot/imported/MirrorX.svg-90c942d557e3fb932a64cf0918751103.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MirrorY.svg b/src/resources/icons/godot/MirrorY.svg new file mode 100644 index 00000000..73356bd2 --- /dev/null +++ b/src/resources/icons/godot/MirrorY.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MirrorY.svg.import b/src/resources/icons/godot/MirrorY.svg.import new file mode 100644 index 00000000..597bc525 --- /dev/null +++ b/src/resources/icons/godot/MirrorY.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wgne31e3etgf" +path="res://.godot/imported/MirrorY.svg-a8c4059f0ffb1113c265bca1044af81f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MirrorY.svg" +dest_files=["res://.godot/imported/MirrorY.svg-a8c4059f0ffb1113c265bca1044af81f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MissingNode.svg b/src/resources/icons/godot/MissingNode.svg new file mode 100644 index 00000000..207afbd3 --- /dev/null +++ b/src/resources/icons/godot/MissingNode.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MissingNode.svg.import b/src/resources/icons/godot/MissingNode.svg.import new file mode 100644 index 00000000..8cd35da2 --- /dev/null +++ b/src/resources/icons/godot/MissingNode.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqnlbx32kt5w0" +path="res://.godot/imported/MissingNode.svg-ab0693e2c5ab7b48d77c87df5758eaed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MissingNode.svg" +dest_files=["res://.godot/imported/MissingNode.svg-ab0693e2c5ab7b48d77c87df5758eaed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MissingResource.svg b/src/resources/icons/godot/MissingResource.svg new file mode 100644 index 00000000..207afbd3 --- /dev/null +++ b/src/resources/icons/godot/MissingResource.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MissingResource.svg.import b/src/resources/icons/godot/MissingResource.svg.import new file mode 100644 index 00000000..70de66e0 --- /dev/null +++ b/src/resources/icons/godot/MissingResource.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbsw5mcmxtlw4" +path="res://.godot/imported/MissingResource.svg-9f3e75c78af60fedf1e3c81dcd0b2559.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MissingResource.svg" +dest_files=["res://.godot/imported/MissingResource.svg-9f3e75c78af60fedf1e3c81dcd0b2559.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ModifierBoneTarget3D.svg b/src/resources/icons/godot/ModifierBoneTarget3D.svg new file mode 100644 index 00000000..4a4ec562 --- /dev/null +++ b/src/resources/icons/godot/ModifierBoneTarget3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ModifierBoneTarget3D.svg.import b/src/resources/icons/godot/ModifierBoneTarget3D.svg.import new file mode 100644 index 00000000..24725fdf --- /dev/null +++ b/src/resources/icons/godot/ModifierBoneTarget3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cet30fdm12700" +path="res://.godot/imported/ModifierBoneTarget3D.svg-bc71001f5d4f7e7d44dbded07df9d363.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ModifierBoneTarget3D.svg" +dest_files=["res://.godot/imported/ModifierBoneTarget3D.svg-bc71001f5d4f7e7d44dbded07df9d363.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Modifiers.svg b/src/resources/icons/godot/Modifiers.svg new file mode 100644 index 00000000..2ba2fc42 --- /dev/null +++ b/src/resources/icons/godot/Modifiers.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Modifiers.svg.import b/src/resources/icons/godot/Modifiers.svg.import new file mode 100644 index 00000000..65f97944 --- /dev/null +++ b/src/resources/icons/godot/Modifiers.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xvy1rmcuuqax" +path="res://.godot/imported/Modifiers.svg-148e96db3af23cff40fbf9835c5a22c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Modifiers.svg" +dest_files=["res://.godot/imported/Modifiers.svg-148e96db3af23cff40fbf9835c5a22c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Mouse.svg b/src/resources/icons/godot/Mouse.svg new file mode 100644 index 00000000..cab0b346 --- /dev/null +++ b/src/resources/icons/godot/Mouse.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Mouse.svg.import b/src/resources/icons/godot/Mouse.svg.import new file mode 100644 index 00000000..a3d13b7f --- /dev/null +++ b/src/resources/icons/godot/Mouse.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4bjewf5iqo8x" +path="res://.godot/imported/Mouse.svg-a461936d9b5f37e694d91c8b0e55c90b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Mouse.svg" +dest_files=["res://.godot/imported/Mouse.svg-a461936d9b5f37e694d91c8b0e55c90b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MoveDown.svg b/src/resources/icons/godot/MoveDown.svg new file mode 100644 index 00000000..34591074 --- /dev/null +++ b/src/resources/icons/godot/MoveDown.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MoveDown.svg.import b/src/resources/icons/godot/MoveDown.svg.import new file mode 100644 index 00000000..bcb87199 --- /dev/null +++ b/src/resources/icons/godot/MoveDown.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3cst0xhiebbh" +path="res://.godot/imported/MoveDown.svg-236f11a36429454b0a5ea45d90e36c80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MoveDown.svg" +dest_files=["res://.godot/imported/MoveDown.svg-236f11a36429454b0a5ea45d90e36c80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MoveLeft.svg b/src/resources/icons/godot/MoveLeft.svg new file mode 100644 index 00000000..10e58d1c --- /dev/null +++ b/src/resources/icons/godot/MoveLeft.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MoveLeft.svg.import b/src/resources/icons/godot/MoveLeft.svg.import new file mode 100644 index 00000000..a56e3037 --- /dev/null +++ b/src/resources/icons/godot/MoveLeft.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fetbeybfnu02" +path="res://.godot/imported/MoveLeft.svg-564f398f9c04493b3e8bafc83b47dd2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MoveLeft.svg" +dest_files=["res://.godot/imported/MoveLeft.svg-564f398f9c04493b3e8bafc83b47dd2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MovePoint.svg b/src/resources/icons/godot/MovePoint.svg new file mode 100644 index 00000000..9f29bfde --- /dev/null +++ b/src/resources/icons/godot/MovePoint.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MovePoint.svg.import b/src/resources/icons/godot/MovePoint.svg.import new file mode 100644 index 00000000..448407ba --- /dev/null +++ b/src/resources/icons/godot/MovePoint.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csa0yooerqdjo" +path="res://.godot/imported/MovePoint.svg-91af7a687ce0b24adc2ef9dd00047dca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MovePoint.svg" +dest_files=["res://.godot/imported/MovePoint.svg-91af7a687ce0b24adc2ef9dd00047dca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MoveRight.svg b/src/resources/icons/godot/MoveRight.svg new file mode 100644 index 00000000..b81af369 --- /dev/null +++ b/src/resources/icons/godot/MoveRight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MoveRight.svg.import b/src/resources/icons/godot/MoveRight.svg.import new file mode 100644 index 00000000..a8435736 --- /dev/null +++ b/src/resources/icons/godot/MoveRight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmxc8wffgl06f" +path="res://.godot/imported/MoveRight.svg-1f552aed154340b0bd97f83e0fb4714f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MoveRight.svg" +dest_files=["res://.godot/imported/MoveRight.svg-1f552aed154340b0bd97f83e0fb4714f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MoveUp.svg b/src/resources/icons/godot/MoveUp.svg new file mode 100644 index 00000000..e98d5832 --- /dev/null +++ b/src/resources/icons/godot/MoveUp.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MoveUp.svg.import b/src/resources/icons/godot/MoveUp.svg.import new file mode 100644 index 00000000..f0890e7e --- /dev/null +++ b/src/resources/icons/godot/MoveUp.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dddm6ux63ddcp" +path="res://.godot/imported/MoveUp.svg-bf821eda6b17982f415ea3e27752e1f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MoveUp.svg" +dest_files=["res://.godot/imported/MoveUp.svg-bf821eda6b17982f415ea3e27752e1f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MultiMesh.svg b/src/resources/icons/godot/MultiMesh.svg new file mode 100644 index 00000000..62e7360b --- /dev/null +++ b/src/resources/icons/godot/MultiMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MultiMesh.svg.import b/src/resources/icons/godot/MultiMesh.svg.import new file mode 100644 index 00000000..b2157100 --- /dev/null +++ b/src/resources/icons/godot/MultiMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c87jp5evd54qx" +path="res://.godot/imported/MultiMesh.svg-e7a5b8df6c228415bc9135afce7ed647.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MultiMesh.svg" +dest_files=["res://.godot/imported/MultiMesh.svg-e7a5b8df6c228415bc9135afce7ed647.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MultiMeshInstance2D.svg b/src/resources/icons/godot/MultiMeshInstance2D.svg new file mode 100644 index 00000000..5f811f35 --- /dev/null +++ b/src/resources/icons/godot/MultiMeshInstance2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MultiMeshInstance2D.svg.import b/src/resources/icons/godot/MultiMeshInstance2D.svg.import new file mode 100644 index 00000000..fe828893 --- /dev/null +++ b/src/resources/icons/godot/MultiMeshInstance2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de7ukaexq2v8f" +path="res://.godot/imported/MultiMeshInstance2D.svg-6670f0f11201da89b136b973ce684af7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MultiMeshInstance2D.svg" +dest_files=["res://.godot/imported/MultiMeshInstance2D.svg-6670f0f11201da89b136b973ce684af7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/MultiMeshInstance3D.svg b/src/resources/icons/godot/MultiMeshInstance3D.svg new file mode 100644 index 00000000..619c5d51 --- /dev/null +++ b/src/resources/icons/godot/MultiMeshInstance3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/MultiMeshInstance3D.svg.import b/src/resources/icons/godot/MultiMeshInstance3D.svg.import new file mode 100644 index 00000000..18a8e172 --- /dev/null +++ b/src/resources/icons/godot/MultiMeshInstance3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w6dvs764le5g" +path="res://.godot/imported/MultiMeshInstance3D.svg-6bd84e8b3d96f2a127c6223f29144280.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/MultiMeshInstance3D.svg" +dest_files=["res://.godot/imported/MultiMeshInstance3D.svg-6bd84e8b3d96f2a127c6223f29144280.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NavigationAgent2D.svg b/src/resources/icons/godot/NavigationAgent2D.svg new file mode 100644 index 00000000..7791bca1 --- /dev/null +++ b/src/resources/icons/godot/NavigationAgent2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NavigationAgent2D.svg.import b/src/resources/icons/godot/NavigationAgent2D.svg.import new file mode 100644 index 00000000..61edb4c8 --- /dev/null +++ b/src/resources/icons/godot/NavigationAgent2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d18q3i0hoigig" +path="res://.godot/imported/NavigationAgent2D.svg-d291f3c2f5fbe088ae5e202a470f5e1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NavigationAgent2D.svg" +dest_files=["res://.godot/imported/NavigationAgent2D.svg-d291f3c2f5fbe088ae5e202a470f5e1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NavigationAgent3D.svg b/src/resources/icons/godot/NavigationAgent3D.svg new file mode 100644 index 00000000..52b83ba1 --- /dev/null +++ b/src/resources/icons/godot/NavigationAgent3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NavigationAgent3D.svg.import b/src/resources/icons/godot/NavigationAgent3D.svg.import new file mode 100644 index 00000000..6f076342 --- /dev/null +++ b/src/resources/icons/godot/NavigationAgent3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpskc0t4pel0y" +path="res://.godot/imported/NavigationAgent3D.svg-4e38edc42a7847307c6210676d15b4b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NavigationAgent3D.svg" +dest_files=["res://.godot/imported/NavigationAgent3D.svg-4e38edc42a7847307c6210676d15b4b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NavigationLink2D.svg b/src/resources/icons/godot/NavigationLink2D.svg new file mode 100644 index 00000000..405198e5 --- /dev/null +++ b/src/resources/icons/godot/NavigationLink2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NavigationLink2D.svg.import b/src/resources/icons/godot/NavigationLink2D.svg.import new file mode 100644 index 00000000..931b2ab7 --- /dev/null +++ b/src/resources/icons/godot/NavigationLink2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cihmiagcedqsk" +path="res://.godot/imported/NavigationLink2D.svg-24e9d21a4418fa4c5d8fe7c8147cdeed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NavigationLink2D.svg" +dest_files=["res://.godot/imported/NavigationLink2D.svg-24e9d21a4418fa4c5d8fe7c8147cdeed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NavigationLink3D.svg b/src/resources/icons/godot/NavigationLink3D.svg new file mode 100644 index 00000000..61049b00 --- /dev/null +++ b/src/resources/icons/godot/NavigationLink3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NavigationLink3D.svg.import b/src/resources/icons/godot/NavigationLink3D.svg.import new file mode 100644 index 00000000..ce0fea8e --- /dev/null +++ b/src/resources/icons/godot/NavigationLink3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh2pgafwcycwm" +path="res://.godot/imported/NavigationLink3D.svg-7de09412f01004fc0b61851ce5e987a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NavigationLink3D.svg" +dest_files=["res://.godot/imported/NavigationLink3D.svg-7de09412f01004fc0b61851ce5e987a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NavigationMesh.svg b/src/resources/icons/godot/NavigationMesh.svg new file mode 100644 index 00000000..2f908709 --- /dev/null +++ b/src/resources/icons/godot/NavigationMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NavigationMesh.svg.import b/src/resources/icons/godot/NavigationMesh.svg.import new file mode 100644 index 00000000..32719c41 --- /dev/null +++ b/src/resources/icons/godot/NavigationMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxsme51s7bsuy" +path="res://.godot/imported/NavigationMesh.svg-504a9b270a6b0af116e4bfc40bd9dd30.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NavigationMesh.svg" +dest_files=["res://.godot/imported/NavigationMesh.svg-504a9b270a6b0af116e4bfc40bd9dd30.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NavigationObstacle2D.svg b/src/resources/icons/godot/NavigationObstacle2D.svg new file mode 100644 index 00000000..5c9ce62b --- /dev/null +++ b/src/resources/icons/godot/NavigationObstacle2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NavigationObstacle2D.svg.import b/src/resources/icons/godot/NavigationObstacle2D.svg.import new file mode 100644 index 00000000..55094f6a --- /dev/null +++ b/src/resources/icons/godot/NavigationObstacle2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drh3c0cjsxq1" +path="res://.godot/imported/NavigationObstacle2D.svg-5ebf4b0f0dcbd1b753c43a8baae46a89.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NavigationObstacle2D.svg" +dest_files=["res://.godot/imported/NavigationObstacle2D.svg-5ebf4b0f0dcbd1b753c43a8baae46a89.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NavigationObstacle3D.svg b/src/resources/icons/godot/NavigationObstacle3D.svg new file mode 100644 index 00000000..a15bdf40 --- /dev/null +++ b/src/resources/icons/godot/NavigationObstacle3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NavigationObstacle3D.svg.import b/src/resources/icons/godot/NavigationObstacle3D.svg.import new file mode 100644 index 00000000..a69eb677 --- /dev/null +++ b/src/resources/icons/godot/NavigationObstacle3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chwebf3sd8s14" +path="res://.godot/imported/NavigationObstacle3D.svg-ce927c27f528c2c667201692faddc9f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NavigationObstacle3D.svg" +dest_files=["res://.godot/imported/NavigationObstacle3D.svg-ce927c27f528c2c667201692faddc9f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NavigationPolygon.svg b/src/resources/icons/godot/NavigationPolygon.svg new file mode 100644 index 00000000..08c7a99b --- /dev/null +++ b/src/resources/icons/godot/NavigationPolygon.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NavigationPolygon.svg.import b/src/resources/icons/godot/NavigationPolygon.svg.import new file mode 100644 index 00000000..b4126ad9 --- /dev/null +++ b/src/resources/icons/godot/NavigationPolygon.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl81suesexg0f" +path="res://.godot/imported/NavigationPolygon.svg-f7ae8c06a5c30d231a6b459ec9b5ae12.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NavigationPolygon.svg" +dest_files=["res://.godot/imported/NavigationPolygon.svg-f7ae8c06a5c30d231a6b459ec9b5ae12.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NavigationRegion2D.svg b/src/resources/icons/godot/NavigationRegion2D.svg new file mode 100644 index 00000000..5bb1d80b --- /dev/null +++ b/src/resources/icons/godot/NavigationRegion2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NavigationRegion2D.svg.import b/src/resources/icons/godot/NavigationRegion2D.svg.import new file mode 100644 index 00000000..f16bb037 --- /dev/null +++ b/src/resources/icons/godot/NavigationRegion2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx0r0doj311ds" +path="res://.godot/imported/NavigationRegion2D.svg-9074b66b158de1c566066badff2c73f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NavigationRegion2D.svg" +dest_files=["res://.godot/imported/NavigationRegion2D.svg-9074b66b158de1c566066badff2c73f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NavigationRegion3D.svg b/src/resources/icons/godot/NavigationRegion3D.svg new file mode 100644 index 00000000..6cb4b898 --- /dev/null +++ b/src/resources/icons/godot/NavigationRegion3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NavigationRegion3D.svg.import b/src/resources/icons/godot/NavigationRegion3D.svg.import new file mode 100644 index 00000000..fdf407c4 --- /dev/null +++ b/src/resources/icons/godot/NavigationRegion3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdv6gmtm6nv1s" +path="res://.godot/imported/NavigationRegion3D.svg-fb9fd17c24ba5b44f577156bc696b443.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NavigationRegion3D.svg" +dest_files=["res://.godot/imported/NavigationRegion3D.svg-fb9fd17c24ba5b44f577156bc696b443.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/New.svg b/src/resources/icons/godot/New.svg new file mode 100644 index 00000000..4afeb011 --- /dev/null +++ b/src/resources/icons/godot/New.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/New.svg.import b/src/resources/icons/godot/New.svg.import new file mode 100644 index 00000000..80fa6507 --- /dev/null +++ b/src/resources/icons/godot/New.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw67phc3fbtve" +path="res://.godot/imported/New.svg-ad8acb0ae37f62010092ac3e688fd7cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/New.svg" +dest_files=["res://.godot/imported/New.svg-ad8acb0ae37f62010092ac3e688fd7cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NewKey.svg b/src/resources/icons/godot/NewKey.svg new file mode 100644 index 00000000..287f76a1 --- /dev/null +++ b/src/resources/icons/godot/NewKey.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NewKey.svg.import b/src/resources/icons/godot/NewKey.svg.import new file mode 100644 index 00000000..95ad37e2 --- /dev/null +++ b/src/resources/icons/godot/NewKey.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkctgdr4bs8wr" +path="res://.godot/imported/NewKey.svg-281bff19a513273ded11931a43731f0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NewKey.svg" +dest_files=["res://.godot/imported/NewKey.svg-281bff19a513273ded11931a43731f0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NewModKey.svg b/src/resources/icons/godot/NewModKey.svg new file mode 100644 index 00000000..9e5fa589 --- /dev/null +++ b/src/resources/icons/godot/NewModKey.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NewModKey.svg.import b/src/resources/icons/godot/NewModKey.svg.import new file mode 100644 index 00000000..f269c099 --- /dev/null +++ b/src/resources/icons/godot/NewModKey.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://luby1m2u1auw" +path="res://.godot/imported/NewModKey.svg-242be2156099de642a6b1d0cd44ecda5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NewModKey.svg" +dest_files=["res://.godot/imported/NewModKey.svg-242be2156099de642a6b1d0cd44ecda5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NewRoot.svg b/src/resources/icons/godot/NewRoot.svg new file mode 100644 index 00000000..9702f67a --- /dev/null +++ b/src/resources/icons/godot/NewRoot.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NewRoot.svg.import b/src/resources/icons/godot/NewRoot.svg.import new file mode 100644 index 00000000..cae3fa72 --- /dev/null +++ b/src/resources/icons/godot/NewRoot.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w4ygjp65n6ow" +path="res://.godot/imported/NewRoot.svg-8ba57bd28a5918b0bcc053ed65379b56.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NewRoot.svg" +dest_files=["res://.godot/imported/NewRoot.svg-8ba57bd28a5918b0bcc053ed65379b56.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NextFrame.svg b/src/resources/icons/godot/NextFrame.svg new file mode 100644 index 00000000..be0c9f7c --- /dev/null +++ b/src/resources/icons/godot/NextFrame.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NextFrame.svg.import b/src/resources/icons/godot/NextFrame.svg.import new file mode 100644 index 00000000..f59631a8 --- /dev/null +++ b/src/resources/icons/godot/NextFrame.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwquoh1klx2m4" +path="res://.godot/imported/NextFrame.svg-ce5be7b575ba605e217c9ba4b7060645.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NextFrame.svg" +dest_files=["res://.godot/imported/NextFrame.svg-ce5be7b575ba605e217c9ba4b7060645.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Nil.svg b/src/resources/icons/godot/Nil.svg new file mode 100644 index 00000000..05586cd5 --- /dev/null +++ b/src/resources/icons/godot/Nil.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Nil.svg.import b/src/resources/icons/godot/Nil.svg.import new file mode 100644 index 00000000..dfd9da0b --- /dev/null +++ b/src/resources/icons/godot/Nil.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhk1adjgbwt8p" +path="res://.godot/imported/Nil.svg-a1d5e5a9ddaff77a460036fbf104f886.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Nil.svg" +dest_files=["res://.godot/imported/Nil.svg-a1d5e5a9ddaff77a460036fbf104f886.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NinePatchRect.svg b/src/resources/icons/godot/NinePatchRect.svg new file mode 100644 index 00000000..89766738 --- /dev/null +++ b/src/resources/icons/godot/NinePatchRect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NinePatchRect.svg.import b/src/resources/icons/godot/NinePatchRect.svg.import new file mode 100644 index 00000000..50151c53 --- /dev/null +++ b/src/resources/icons/godot/NinePatchRect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr7vxwj76vbjx" +path="res://.godot/imported/NinePatchRect.svg-88282c37c6275fb7c7731fe41b2ad8fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NinePatchRect.svg" +dest_files=["res://.godot/imported/NinePatchRect.svg-88282c37c6275fb7c7731fe41b2ad8fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Node.svg b/src/resources/icons/godot/Node.svg new file mode 100644 index 00000000..0f9c3000 --- /dev/null +++ b/src/resources/icons/godot/Node.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Node.svg.import b/src/resources/icons/godot/Node.svg.import new file mode 100644 index 00000000..18213d65 --- /dev/null +++ b/src/resources/icons/godot/Node.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://io77x32cm4kq" +path="res://.godot/imported/Node.svg-e3779e605ecf3d0d12d897feab1fd8fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Node.svg" +dest_files=["res://.godot/imported/Node.svg-e3779e605ecf3d0d12d897feab1fd8fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Node2D.svg b/src/resources/icons/godot/Node2D.svg new file mode 100644 index 00000000..02485560 --- /dev/null +++ b/src/resources/icons/godot/Node2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Node2D.svg.import b/src/resources/icons/godot/Node2D.svg.import new file mode 100644 index 00000000..b232c908 --- /dev/null +++ b/src/resources/icons/godot/Node2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djq45jn0kckxo" +path="res://.godot/imported/Node2D.svg-c2b3d701a4f876ceb668590f107267da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Node2D.svg" +dest_files=["res://.godot/imported/Node2D.svg-c2b3d701a4f876ceb668590f107267da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Node3D.svg b/src/resources/icons/godot/Node3D.svg new file mode 100644 index 00000000..24fa651c --- /dev/null +++ b/src/resources/icons/godot/Node3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Node3D.svg.import b/src/resources/icons/godot/Node3D.svg.import new file mode 100644 index 00000000..ff9e468c --- /dev/null +++ b/src/resources/icons/godot/Node3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch6wo5lobyu8s" +path="res://.godot/imported/Node3D.svg-1eb311772449f1a5de8eb27e499edda4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Node3D.svg" +dest_files=["res://.godot/imported/Node3D.svg-1eb311772449f1a5de8eb27e499edda4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NodeDisabled.svg b/src/resources/icons/godot/NodeDisabled.svg new file mode 100644 index 00000000..2e465b79 --- /dev/null +++ b/src/resources/icons/godot/NodeDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NodeDisabled.svg.import b/src/resources/icons/godot/NodeDisabled.svg.import new file mode 100644 index 00000000..6ab85ad5 --- /dev/null +++ b/src/resources/icons/godot/NodeDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v6i2eewcgig4" +path="res://.godot/imported/NodeDisabled.svg-e8f32e6616e247a2084964084a4cc2be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NodeDisabled.svg" +dest_files=["res://.godot/imported/NodeDisabled.svg-e8f32e6616e247a2084964084a4cc2be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NodeInfo.svg b/src/resources/icons/godot/NodeInfo.svg new file mode 100644 index 00000000..e13d3146 --- /dev/null +++ b/src/resources/icons/godot/NodeInfo.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NodeInfo.svg.import b/src/resources/icons/godot/NodeInfo.svg.import new file mode 100644 index 00000000..1acc1f8b --- /dev/null +++ b/src/resources/icons/godot/NodeInfo.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciibi5dxn8m5d" +path="res://.godot/imported/NodeInfo.svg-6f47f43799d937d19ff220250a342e32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NodeInfo.svg" +dest_files=["res://.godot/imported/NodeInfo.svg-6f47f43799d937d19ff220250a342e32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NodePath.svg b/src/resources/icons/godot/NodePath.svg new file mode 100644 index 00000000..0d37ca6e --- /dev/null +++ b/src/resources/icons/godot/NodePath.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NodePath.svg.import b/src/resources/icons/godot/NodePath.svg.import new file mode 100644 index 00000000..a9b1a57c --- /dev/null +++ b/src/resources/icons/godot/NodePath.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3x3g5htle2en" +path="res://.godot/imported/NodePath.svg-c022b85c730dae19d25a8943fc4f5622.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NodePath.svg" +dest_files=["res://.godot/imported/NodePath.svg-c022b85c730dae19d25a8943fc4f5622.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NodeWarning.svg b/src/resources/icons/godot/NodeWarning.svg new file mode 100644 index 00000000..87e835a1 --- /dev/null +++ b/src/resources/icons/godot/NodeWarning.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NodeWarning.svg.import b/src/resources/icons/godot/NodeWarning.svg.import new file mode 100644 index 00000000..29babc90 --- /dev/null +++ b/src/resources/icons/godot/NodeWarning.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvr62nto45oac" +path="res://.godot/imported/NodeWarning.svg-3f7b4a19f1b4d10ea6c62810f92abacb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NodeWarning.svg" +dest_files=["res://.godot/imported/NodeWarning.svg-3f7b4a19f1b4d10ea6c62810f92abacb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NodeWarnings2.svg b/src/resources/icons/godot/NodeWarnings2.svg new file mode 100644 index 00000000..d8d952ad --- /dev/null +++ b/src/resources/icons/godot/NodeWarnings2.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NodeWarnings2.svg.import b/src/resources/icons/godot/NodeWarnings2.svg.import new file mode 100644 index 00000000..4ff99b2f --- /dev/null +++ b/src/resources/icons/godot/NodeWarnings2.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcjciw32mwphq" +path="res://.godot/imported/NodeWarnings2.svg-486403f8031e8b00a98e8d57d30cc0a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NodeWarnings2.svg" +dest_files=["res://.godot/imported/NodeWarnings2.svg-486403f8031e8b00a98e8d57d30cc0a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NodeWarnings3.svg b/src/resources/icons/godot/NodeWarnings3.svg new file mode 100644 index 00000000..034771aa --- /dev/null +++ b/src/resources/icons/godot/NodeWarnings3.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NodeWarnings3.svg.import b/src/resources/icons/godot/NodeWarnings3.svg.import new file mode 100644 index 00000000..729b71b6 --- /dev/null +++ b/src/resources/icons/godot/NodeWarnings3.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf5ng31lvlpfc" +path="res://.godot/imported/NodeWarnings3.svg-d8c62737a4c18ffc66e799c8e6d4a377.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NodeWarnings3.svg" +dest_files=["res://.godot/imported/NodeWarnings3.svg-d8c62737a4c18ffc66e799c8e6d4a377.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NodeWarnings4Plus.svg b/src/resources/icons/godot/NodeWarnings4Plus.svg new file mode 100644 index 00000000..b3230da1 --- /dev/null +++ b/src/resources/icons/godot/NodeWarnings4Plus.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NodeWarnings4Plus.svg.import b/src/resources/icons/godot/NodeWarnings4Plus.svg.import new file mode 100644 index 00000000..76b0d0e6 --- /dev/null +++ b/src/resources/icons/godot/NodeWarnings4Plus.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db1hduwebes0s" +path="res://.godot/imported/NodeWarnings4Plus.svg-4a5db552b20c4e8b12f5ea8175ca4f79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NodeWarnings4Plus.svg" +dest_files=["res://.godot/imported/NodeWarnings4Plus.svg-4a5db552b20c4e8b12f5ea8175ca4f79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NonFavorite.svg b/src/resources/icons/godot/NonFavorite.svg new file mode 100644 index 00000000..45f162e1 --- /dev/null +++ b/src/resources/icons/godot/NonFavorite.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NonFavorite.svg.import b/src/resources/icons/godot/NonFavorite.svg.import new file mode 100644 index 00000000..14ea7687 --- /dev/null +++ b/src/resources/icons/godot/NonFavorite.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca6tnbl1vj3hi" +path="res://.godot/imported/NonFavorite.svg-31f771e4a3d9b22c36b63634249b251f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NonFavorite.svg" +dest_files=["res://.godot/imported/NonFavorite.svg-31f771e4a3d9b22c36b63634249b251f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Notification.svg b/src/resources/icons/godot/Notification.svg new file mode 100644 index 00000000..4245ee32 --- /dev/null +++ b/src/resources/icons/godot/Notification.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Notification.svg.import b/src/resources/icons/godot/Notification.svg.import new file mode 100644 index 00000000..8fd7e2f8 --- /dev/null +++ b/src/resources/icons/godot/Notification.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsbxavsmq18gh" +path="res://.godot/imported/Notification.svg-d1e9714fff0af53d625e7dc5c515e21d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Notification.svg" +dest_files=["res://.godot/imported/Notification.svg-d1e9714fff0af53d625e7dc5c515e21d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/NotificationDisabled.svg b/src/resources/icons/godot/NotificationDisabled.svg new file mode 100644 index 00000000..23d56c28 --- /dev/null +++ b/src/resources/icons/godot/NotificationDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/NotificationDisabled.svg.import b/src/resources/icons/godot/NotificationDisabled.svg.import new file mode 100644 index 00000000..037a859f --- /dev/null +++ b/src/resources/icons/godot/NotificationDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ildqe2qh8cv4" +path="res://.godot/imported/NotificationDisabled.svg-1aa90b6e7a896b6f3f5e4e477c63512e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/NotificationDisabled.svg" +dest_files=["res://.godot/imported/NotificationDisabled.svg-1aa90b6e7a896b6f3f5e4e477c63512e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ORMMaterial3D.svg b/src/resources/icons/godot/ORMMaterial3D.svg new file mode 100644 index 00000000..536527a1 --- /dev/null +++ b/src/resources/icons/godot/ORMMaterial3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ORMMaterial3D.svg.import b/src/resources/icons/godot/ORMMaterial3D.svg.import new file mode 100644 index 00000000..fc62daf6 --- /dev/null +++ b/src/resources/icons/godot/ORMMaterial3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2jatlb60jrsj" +path="res://.godot/imported/ORMMaterial3D.svg-a924c7bd853e0633bae9cd470adc950e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ORMMaterial3D.svg" +dest_files=["res://.godot/imported/ORMMaterial3D.svg-a924c7bd853e0633bae9cd470adc950e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Object.svg b/src/resources/icons/godot/Object.svg new file mode 100644 index 00000000..61c8cc89 --- /dev/null +++ b/src/resources/icons/godot/Object.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Object.svg.import b/src/resources/icons/godot/Object.svg.import new file mode 100644 index 00000000..216259cc --- /dev/null +++ b/src/resources/icons/godot/Object.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbh1x1f04arga" +path="res://.godot/imported/Object.svg-06776b4727dc6149f61a5dd01ea595a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Object.svg" +dest_files=["res://.godot/imported/Object.svg-06776b4727dc6149f61a5dd01ea595a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ObjectDisabled.svg b/src/resources/icons/godot/ObjectDisabled.svg new file mode 100644 index 00000000..f9bdd9de --- /dev/null +++ b/src/resources/icons/godot/ObjectDisabled.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ObjectDisabled.svg.import b/src/resources/icons/godot/ObjectDisabled.svg.import new file mode 100644 index 00000000..1b5440c8 --- /dev/null +++ b/src/resources/icons/godot/ObjectDisabled.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wimxdeh48gi" +path="res://.godot/imported/ObjectDisabled.svg-563c645d70c6615432beef49097bf743.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ObjectDisabled.svg" +dest_files=["res://.godot/imported/ObjectDisabled.svg-563c645d70c6615432beef49097bf743.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Occluder3D.svg b/src/resources/icons/godot/Occluder3D.svg new file mode 100644 index 00000000..e9f9d62e --- /dev/null +++ b/src/resources/icons/godot/Occluder3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Occluder3D.svg.import b/src/resources/icons/godot/Occluder3D.svg.import new file mode 100644 index 00000000..f534951b --- /dev/null +++ b/src/resources/icons/godot/Occluder3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyjbh4n7vlauh" +path="res://.godot/imported/Occluder3D.svg-bc9213ddbe211da8c966155f93a31a35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Occluder3D.svg" +dest_files=["res://.godot/imported/Occluder3D.svg-bc9213ddbe211da8c966155f93a31a35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/OccluderInstance3D.svg b/src/resources/icons/godot/OccluderInstance3D.svg new file mode 100644 index 00000000..52467d8b --- /dev/null +++ b/src/resources/icons/godot/OccluderInstance3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/OccluderInstance3D.svg.import b/src/resources/icons/godot/OccluderInstance3D.svg.import new file mode 100644 index 00000000..16260ca8 --- /dev/null +++ b/src/resources/icons/godot/OccluderInstance3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1xh6n1803b3e" +path="res://.godot/imported/OccluderInstance3D.svg-a85da6da03606d5fc9a287771ee4de87.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/OccluderInstance3D.svg" +dest_files=["res://.godot/imported/OccluderInstance3D.svg-a85da6da03606d5fc9a287771ee4de87.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/OccluderPolygon2D.svg b/src/resources/icons/godot/OccluderPolygon2D.svg new file mode 100644 index 00000000..73db5b0d --- /dev/null +++ b/src/resources/icons/godot/OccluderPolygon2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/OccluderPolygon2D.svg.import b/src/resources/icons/godot/OccluderPolygon2D.svg.import new file mode 100644 index 00000000..e51f5800 --- /dev/null +++ b/src/resources/icons/godot/OccluderPolygon2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cicy3tjuchdnt" +path="res://.godot/imported/OccluderPolygon2D.svg-b3a59980f38d9b323a661206a7ea1fdb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/OccluderPolygon2D.svg" +dest_files=["res://.godot/imported/OccluderPolygon2D.svg-b3a59980f38d9b323a661206a7ea1fdb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/OmniLight3D.svg b/src/resources/icons/godot/OmniLight3D.svg new file mode 100644 index 00000000..32cea806 --- /dev/null +++ b/src/resources/icons/godot/OmniLight3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/OmniLight3D.svg.import b/src/resources/icons/godot/OmniLight3D.svg.import new file mode 100644 index 00000000..247b7c44 --- /dev/null +++ b/src/resources/icons/godot/OmniLight3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fo1d37jtb6vk" +path="res://.godot/imported/OmniLight3D.svg-9fca5d6ec04d27c7fb721b084bc38199.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/OmniLight3D.svg" +dest_files=["res://.godot/imported/OmniLight3D.svg-9fca5d6ec04d27c7fb721b084bc38199.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/OneWayTile.svg b/src/resources/icons/godot/OneWayTile.svg new file mode 100644 index 00000000..07434ba8 --- /dev/null +++ b/src/resources/icons/godot/OneWayTile.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/OneWayTile.svg.import b/src/resources/icons/godot/OneWayTile.svg.import new file mode 100644 index 00000000..7645d779 --- /dev/null +++ b/src/resources/icons/godot/OneWayTile.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hsogejwjkqj2" +path="res://.godot/imported/OneWayTile.svg-62cd3c5c788c90d3449424b1f8edd13a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/OneWayTile.svg" +dest_files=["res://.godot/imported/OneWayTile.svg-62cd3c5c788c90d3449424b1f8edd13a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Onion.svg b/src/resources/icons/godot/Onion.svg new file mode 100644 index 00000000..04ced6ab --- /dev/null +++ b/src/resources/icons/godot/Onion.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Onion.svg.import b/src/resources/icons/godot/Onion.svg.import new file mode 100644 index 00000000..54a0a885 --- /dev/null +++ b/src/resources/icons/godot/Onion.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p4bfodmujj5t" +path="res://.godot/imported/Onion.svg-ce881cf1b8d52e698730a320b199f18e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Onion.svg" +dest_files=["res://.godot/imported/Onion.svg-ce881cf1b8d52e698730a320b199f18e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/OpenXRActionMap.svg b/src/resources/icons/godot/OpenXRActionMap.svg new file mode 100644 index 00000000..d78d900e --- /dev/null +++ b/src/resources/icons/godot/OpenXRActionMap.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/OpenXRActionMap.svg.import b/src/resources/icons/godot/OpenXRActionMap.svg.import new file mode 100644 index 00000000..c678c89e --- /dev/null +++ b/src/resources/icons/godot/OpenXRActionMap.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs0qm0q31qu46" +path="res://.godot/imported/OpenXRActionMap.svg-541786f0081411b1aa349f323c497cc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/OpenXRActionMap.svg" +dest_files=["res://.godot/imported/OpenXRActionMap.svg-541786f0081411b1aa349f323c497cc5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/OptionButton.svg b/src/resources/icons/godot/OptionButton.svg new file mode 100644 index 00000000..1cd2edc6 --- /dev/null +++ b/src/resources/icons/godot/OptionButton.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/OptionButton.svg.import b/src/resources/icons/godot/OptionButton.svg.import new file mode 100644 index 00000000..71a91187 --- /dev/null +++ b/src/resources/icons/godot/OptionButton.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8gry44172hq4" +path="res://.godot/imported/OptionButton.svg-a1080ff818bede70872b5606f2755b0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/OptionButton.svg" +dest_files=["res://.godot/imported/OptionButton.svg-a1080ff818bede70872b5606f2755b0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Orientation.svg b/src/resources/icons/godot/Orientation.svg new file mode 100644 index 00000000..887c5710 --- /dev/null +++ b/src/resources/icons/godot/Orientation.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Orientation.svg.import b/src/resources/icons/godot/Orientation.svg.import new file mode 100644 index 00000000..865e9144 --- /dev/null +++ b/src/resources/icons/godot/Orientation.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd877vcyuvf1m" +path="res://.godot/imported/Orientation.svg-dcb3b62869795516ebc20fe7bfaf0f8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Orientation.svg" +dest_files=["res://.godot/imported/Orientation.svg-dcb3b62869795516ebc20fe7bfaf0f8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Output.svg b/src/resources/icons/godot/Output.svg new file mode 100644 index 00000000..6eaa3a93 --- /dev/null +++ b/src/resources/icons/godot/Output.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Output.svg.import b/src/resources/icons/godot/Output.svg.import new file mode 100644 index 00000000..d6f36172 --- /dev/null +++ b/src/resources/icons/godot/Output.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckfdcno084jy3" +path="res://.godot/imported/Output.svg-705753b27f7f3573740416c4917ef213.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Output.svg" +dest_files=["res://.godot/imported/Output.svg-705753b27f7f3573740416c4917ef213.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/OverbrightIndicator.svg b/src/resources/icons/godot/OverbrightIndicator.svg new file mode 100644 index 00000000..be3d71b6 --- /dev/null +++ b/src/resources/icons/godot/OverbrightIndicator.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/OverbrightIndicator.svg.import b/src/resources/icons/godot/OverbrightIndicator.svg.import new file mode 100644 index 00000000..23b777e6 --- /dev/null +++ b/src/resources/icons/godot/OverbrightIndicator.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvuvsvj5tty0n" +path="res://.godot/imported/OverbrightIndicator.svg-326e6aa315c144a0adbccb3d894d7040.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/OverbrightIndicator.svg" +dest_files=["res://.godot/imported/OverbrightIndicator.svg-326e6aa315c144a0adbccb3d894d7040.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Override.svg b/src/resources/icons/godot/Override.svg new file mode 100644 index 00000000..47b7e056 --- /dev/null +++ b/src/resources/icons/godot/Override.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Override.svg.import b/src/resources/icons/godot/Override.svg.import new file mode 100644 index 00000000..8f86f77b --- /dev/null +++ b/src/resources/icons/godot/Override.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csdoj7cfdloy1" +path="res://.godot/imported/Override.svg-ba06b8285235b2ec70477a3061467623.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Override.svg" +dest_files=["res://.godot/imported/Override.svg-ba06b8285235b2ec70477a3061467623.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedByteArray.svg b/src/resources/icons/godot/PackedByteArray.svg new file mode 100644 index 00000000..11063a22 --- /dev/null +++ b/src/resources/icons/godot/PackedByteArray.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedByteArray.svg.import b/src/resources/icons/godot/PackedByteArray.svg.import new file mode 100644 index 00000000..052338b9 --- /dev/null +++ b/src/resources/icons/godot/PackedByteArray.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://28war6c01gfc" +path="res://.godot/imported/PackedByteArray.svg-848652cb9081329ca2b08c854f9ad6bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedByteArray.svg" +dest_files=["res://.godot/imported/PackedByteArray.svg-848652cb9081329ca2b08c854f9ad6bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedColorArray.svg b/src/resources/icons/godot/PackedColorArray.svg new file mode 100644 index 00000000..fc0b6967 --- /dev/null +++ b/src/resources/icons/godot/PackedColorArray.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedColorArray.svg.import b/src/resources/icons/godot/PackedColorArray.svg.import new file mode 100644 index 00000000..428f8ca9 --- /dev/null +++ b/src/resources/icons/godot/PackedColorArray.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://il8tdr7w2ok4" +path="res://.godot/imported/PackedColorArray.svg-da816d04f0a698ea107bb22980efe983.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedColorArray.svg" +dest_files=["res://.godot/imported/PackedColorArray.svg-da816d04f0a698ea107bb22980efe983.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedDataContainer.svg b/src/resources/icons/godot/PackedDataContainer.svg new file mode 100644 index 00000000..513f439d --- /dev/null +++ b/src/resources/icons/godot/PackedDataContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedDataContainer.svg.import b/src/resources/icons/godot/PackedDataContainer.svg.import new file mode 100644 index 00000000..21d258b0 --- /dev/null +++ b/src/resources/icons/godot/PackedDataContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2myawg1r61pu" +path="res://.godot/imported/PackedDataContainer.svg-e8ffd7dd97635bc7f7e4e9366d2ce5b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedDataContainer.svg" +dest_files=["res://.godot/imported/PackedDataContainer.svg-e8ffd7dd97635bc7f7e4e9366d2ce5b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedFloat32Array.svg b/src/resources/icons/godot/PackedFloat32Array.svg new file mode 100644 index 00000000..efcf8be5 --- /dev/null +++ b/src/resources/icons/godot/PackedFloat32Array.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedFloat32Array.svg.import b/src/resources/icons/godot/PackedFloat32Array.svg.import new file mode 100644 index 00000000..a020d74e --- /dev/null +++ b/src/resources/icons/godot/PackedFloat32Array.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba0bghkdnf3aw" +path="res://.godot/imported/PackedFloat32Array.svg-adb6a07fc83a6387896083d1818b60e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedFloat32Array.svg" +dest_files=["res://.godot/imported/PackedFloat32Array.svg-adb6a07fc83a6387896083d1818b60e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedFloat64Array.svg b/src/resources/icons/godot/PackedFloat64Array.svg new file mode 100644 index 00000000..efcf8be5 --- /dev/null +++ b/src/resources/icons/godot/PackedFloat64Array.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedFloat64Array.svg.import b/src/resources/icons/godot/PackedFloat64Array.svg.import new file mode 100644 index 00000000..416f04fa --- /dev/null +++ b/src/resources/icons/godot/PackedFloat64Array.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuow8y04vx7l5" +path="res://.godot/imported/PackedFloat64Array.svg-c4f4f87d3e65a0992be08d17d3e390e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedFloat64Array.svg" +dest_files=["res://.godot/imported/PackedFloat64Array.svg-c4f4f87d3e65a0992be08d17d3e390e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedInt32Array.svg b/src/resources/icons/godot/PackedInt32Array.svg new file mode 100644 index 00000000..d7b05f7c --- /dev/null +++ b/src/resources/icons/godot/PackedInt32Array.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedInt32Array.svg.import b/src/resources/icons/godot/PackedInt32Array.svg.import new file mode 100644 index 00000000..16ca9718 --- /dev/null +++ b/src/resources/icons/godot/PackedInt32Array.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bih3qh2wiqt65" +path="res://.godot/imported/PackedInt32Array.svg-a06719419590cf73e71f36b4e1dbfb62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedInt32Array.svg" +dest_files=["res://.godot/imported/PackedInt32Array.svg-a06719419590cf73e71f36b4e1dbfb62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedInt64Array.svg b/src/resources/icons/godot/PackedInt64Array.svg new file mode 100644 index 00000000..d7b05f7c --- /dev/null +++ b/src/resources/icons/godot/PackedInt64Array.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedInt64Array.svg.import b/src/resources/icons/godot/PackedInt64Array.svg.import new file mode 100644 index 00000000..721d3054 --- /dev/null +++ b/src/resources/icons/godot/PackedInt64Array.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyyu26vs4g6k5" +path="res://.godot/imported/PackedInt64Array.svg-4240ddf6fbc3b8f98a6aafdf2f261b74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedInt64Array.svg" +dest_files=["res://.godot/imported/PackedInt64Array.svg-4240ddf6fbc3b8f98a6aafdf2f261b74.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedScene.svg b/src/resources/icons/godot/PackedScene.svg new file mode 100644 index 00000000..5c8a199b --- /dev/null +++ b/src/resources/icons/godot/PackedScene.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedScene.svg.import b/src/resources/icons/godot/PackedScene.svg.import new file mode 100644 index 00000000..2605b422 --- /dev/null +++ b/src/resources/icons/godot/PackedScene.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be1fwx04mdyrl" +path="res://.godot/imported/PackedScene.svg-51e7da7c5feb180d33d8cef6dac2ca92.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedScene.svg" +dest_files=["res://.godot/imported/PackedScene.svg-51e7da7c5feb180d33d8cef6dac2ca92.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedStringArray.svg b/src/resources/icons/godot/PackedStringArray.svg new file mode 100644 index 00000000..398e820e --- /dev/null +++ b/src/resources/icons/godot/PackedStringArray.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedStringArray.svg.import b/src/resources/icons/godot/PackedStringArray.svg.import new file mode 100644 index 00000000..760848b8 --- /dev/null +++ b/src/resources/icons/godot/PackedStringArray.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1c2ofvnywyte" +path="res://.godot/imported/PackedStringArray.svg-a4565f6f43e2359b9507be358c9d197a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedStringArray.svg" +dest_files=["res://.godot/imported/PackedStringArray.svg-a4565f6f43e2359b9507be358c9d197a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedVector2Array.svg b/src/resources/icons/godot/PackedVector2Array.svg new file mode 100644 index 00000000..97ba1042 --- /dev/null +++ b/src/resources/icons/godot/PackedVector2Array.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedVector2Array.svg.import b/src/resources/icons/godot/PackedVector2Array.svg.import new file mode 100644 index 00000000..12b4b01e --- /dev/null +++ b/src/resources/icons/godot/PackedVector2Array.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmweihqpu0vob" +path="res://.godot/imported/PackedVector2Array.svg-8a9972efc3f8e684044cef3d8cbf3b47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedVector2Array.svg" +dest_files=["res://.godot/imported/PackedVector2Array.svg-8a9972efc3f8e684044cef3d8cbf3b47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedVector3Array.svg b/src/resources/icons/godot/PackedVector3Array.svg new file mode 100644 index 00000000..07dee723 --- /dev/null +++ b/src/resources/icons/godot/PackedVector3Array.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedVector3Array.svg.import b/src/resources/icons/godot/PackedVector3Array.svg.import new file mode 100644 index 00000000..278246c8 --- /dev/null +++ b/src/resources/icons/godot/PackedVector3Array.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4p1ykdkav68r" +path="res://.godot/imported/PackedVector3Array.svg-c4e0fc6c34206f19c1e9d14331b10760.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedVector3Array.svg" +dest_files=["res://.godot/imported/PackedVector3Array.svg-c4e0fc6c34206f19c1e9d14331b10760.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PackedVector4Array.svg b/src/resources/icons/godot/PackedVector4Array.svg new file mode 100644 index 00000000..b4b6a7bc --- /dev/null +++ b/src/resources/icons/godot/PackedVector4Array.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PackedVector4Array.svg.import b/src/resources/icons/godot/PackedVector4Array.svg.import new file mode 100644 index 00000000..fd53f8dc --- /dev/null +++ b/src/resources/icons/godot/PackedVector4Array.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vrer8v3dhkxw" +path="res://.godot/imported/PackedVector4Array.svg-959b44ee5da683cd333b05a5dd41c0a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PackedVector4Array.svg" +dest_files=["res://.godot/imported/PackedVector4Array.svg-959b44ee5da683cd333b05a5dd41c0a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PageFirst.svg b/src/resources/icons/godot/PageFirst.svg new file mode 100644 index 00000000..1168ed66 --- /dev/null +++ b/src/resources/icons/godot/PageFirst.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PageFirst.svg.import b/src/resources/icons/godot/PageFirst.svg.import new file mode 100644 index 00000000..1e12bda8 --- /dev/null +++ b/src/resources/icons/godot/PageFirst.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmqmcy3y11vci" +path="res://.godot/imported/PageFirst.svg-8d8af2914e6e7ed486b476075ec27a24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PageFirst.svg" +dest_files=["res://.godot/imported/PageFirst.svg-8d8af2914e6e7ed486b476075ec27a24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PageLast.svg b/src/resources/icons/godot/PageLast.svg new file mode 100644 index 00000000..7a30b999 --- /dev/null +++ b/src/resources/icons/godot/PageLast.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PageLast.svg.import b/src/resources/icons/godot/PageLast.svg.import new file mode 100644 index 00000000..a6d3c1f2 --- /dev/null +++ b/src/resources/icons/godot/PageLast.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbphp5hsrq1uk" +path="res://.godot/imported/PageLast.svg-3c50d5452f7e80f93df8f18589fcaa22.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PageLast.svg" +dest_files=["res://.godot/imported/PageLast.svg-3c50d5452f7e80f93df8f18589fcaa22.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PageNext.svg b/src/resources/icons/godot/PageNext.svg new file mode 100644 index 00000000..a5e4674d --- /dev/null +++ b/src/resources/icons/godot/PageNext.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PageNext.svg.import b/src/resources/icons/godot/PageNext.svg.import new file mode 100644 index 00000000..026eb91f --- /dev/null +++ b/src/resources/icons/godot/PageNext.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8xcn7gwymv6" +path="res://.godot/imported/PageNext.svg-873c88667cda5cd07fda063f48b8d2d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PageNext.svg" +dest_files=["res://.godot/imported/PageNext.svg-873c88667cda5cd07fda063f48b8d2d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PagePrevious.svg b/src/resources/icons/godot/PagePrevious.svg new file mode 100644 index 00000000..42f7ea2c --- /dev/null +++ b/src/resources/icons/godot/PagePrevious.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PagePrevious.svg.import b/src/resources/icons/godot/PagePrevious.svg.import new file mode 100644 index 00000000..ec0549b5 --- /dev/null +++ b/src/resources/icons/godot/PagePrevious.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vluvb2vl50sa" +path="res://.godot/imported/PagePrevious.svg-9d17560ff6ec6fd7b27db28ea7032c6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PagePrevious.svg" +dest_files=["res://.godot/imported/PagePrevious.svg-9d17560ff6ec6fd7b27db28ea7032c6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Paint.svg b/src/resources/icons/godot/Paint.svg new file mode 100644 index 00000000..ee34c704 --- /dev/null +++ b/src/resources/icons/godot/Paint.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Paint.svg.import b/src/resources/icons/godot/Paint.svg.import new file mode 100644 index 00000000..b995a364 --- /dev/null +++ b/src/resources/icons/godot/Paint.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by41ecqws6uml" +path="res://.godot/imported/Paint.svg-f5d27cfd016302517361a0605581d61e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Paint.svg" +dest_files=["res://.godot/imported/Paint.svg-f5d27cfd016302517361a0605581d61e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Panel.svg b/src/resources/icons/godot/Panel.svg new file mode 100644 index 00000000..f9c18c74 --- /dev/null +++ b/src/resources/icons/godot/Panel.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Panel.svg.import b/src/resources/icons/godot/Panel.svg.import new file mode 100644 index 00000000..0ad5dd92 --- /dev/null +++ b/src/resources/icons/godot/Panel.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi4g4s6yj0kew" +path="res://.godot/imported/Panel.svg-0a4c60dcff2be9282912969b66bf2b1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Panel.svg" +dest_files=["res://.godot/imported/Panel.svg-0a4c60dcff2be9282912969b66bf2b1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PanelContainer.svg b/src/resources/icons/godot/PanelContainer.svg new file mode 100644 index 00000000..f6968a71 --- /dev/null +++ b/src/resources/icons/godot/PanelContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PanelContainer.svg.import b/src/resources/icons/godot/PanelContainer.svg.import new file mode 100644 index 00000000..c41904e2 --- /dev/null +++ b/src/resources/icons/godot/PanelContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4d5aes1ghsme" +path="res://.godot/imported/PanelContainer.svg-6420650d1203403cc6eb82fad68c8073.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PanelContainer.svg" +dest_files=["res://.godot/imported/PanelContainer.svg-6420650d1203403cc6eb82fad68c8073.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Panels1.svg b/src/resources/icons/godot/Panels1.svg new file mode 100644 index 00000000..79a47796 --- /dev/null +++ b/src/resources/icons/godot/Panels1.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Panels1.svg.import b/src/resources/icons/godot/Panels1.svg.import new file mode 100644 index 00000000..75db8e06 --- /dev/null +++ b/src/resources/icons/godot/Panels1.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds8qcls6mrpo" +path="res://.godot/imported/Panels1.svg-2cec489c2fe218e48c23c732fb7b40b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Panels1.svg" +dest_files=["res://.godot/imported/Panels1.svg-2cec489c2fe218e48c23c732fb7b40b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Panels2.svg b/src/resources/icons/godot/Panels2.svg new file mode 100644 index 00000000..19a90365 --- /dev/null +++ b/src/resources/icons/godot/Panels2.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Panels2.svg.import b/src/resources/icons/godot/Panels2.svg.import new file mode 100644 index 00000000..a507d6f6 --- /dev/null +++ b/src/resources/icons/godot/Panels2.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dditox3gikoxl" +path="res://.godot/imported/Panels2.svg-8742f99add1dfd0a39b2227b607ce89f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Panels2.svg" +dest_files=["res://.godot/imported/Panels2.svg-8742f99add1dfd0a39b2227b607ce89f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Panels2Alt.svg b/src/resources/icons/godot/Panels2Alt.svg new file mode 100644 index 00000000..aa45977c --- /dev/null +++ b/src/resources/icons/godot/Panels2Alt.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Panels2Alt.svg.import b/src/resources/icons/godot/Panels2Alt.svg.import new file mode 100644 index 00000000..127a0621 --- /dev/null +++ b/src/resources/icons/godot/Panels2Alt.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqbpowexugbgf" +path="res://.godot/imported/Panels2Alt.svg-a2198ffb7fbadb4aaa5548825c125070.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Panels2Alt.svg" +dest_files=["res://.godot/imported/Panels2Alt.svg-a2198ffb7fbadb4aaa5548825c125070.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Panels3.svg b/src/resources/icons/godot/Panels3.svg new file mode 100644 index 00000000..bd12a0ff --- /dev/null +++ b/src/resources/icons/godot/Panels3.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Panels3.svg.import b/src/resources/icons/godot/Panels3.svg.import new file mode 100644 index 00000000..9da775c5 --- /dev/null +++ b/src/resources/icons/godot/Panels3.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b01l8mimxl6s5" +path="res://.godot/imported/Panels3.svg-44c1189045dd2fff91fce6614ad1caf3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Panels3.svg" +dest_files=["res://.godot/imported/Panels3.svg-44c1189045dd2fff91fce6614ad1caf3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Panels3Alt.svg b/src/resources/icons/godot/Panels3Alt.svg new file mode 100644 index 00000000..f2ebaa40 --- /dev/null +++ b/src/resources/icons/godot/Panels3Alt.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Panels3Alt.svg.import b/src/resources/icons/godot/Panels3Alt.svg.import new file mode 100644 index 00000000..5ff8c140 --- /dev/null +++ b/src/resources/icons/godot/Panels3Alt.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4uvqc1ja4e6u" +path="res://.godot/imported/Panels3Alt.svg-34c973a6752f9c51561f6b01417f738a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Panels3Alt.svg" +dest_files=["res://.godot/imported/Panels3Alt.svg-34c973a6752f9c51561f6b01417f738a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Panels4.svg b/src/resources/icons/godot/Panels4.svg new file mode 100644 index 00000000..2dd668a7 --- /dev/null +++ b/src/resources/icons/godot/Panels4.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Panels4.svg.import b/src/resources/icons/godot/Panels4.svg.import new file mode 100644 index 00000000..c7b3c46a --- /dev/null +++ b/src/resources/icons/godot/Panels4.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dacseh0jgglo6" +path="res://.godot/imported/Panels4.svg-bca1c2706f306472bcc86df1dfc3eb2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Panels4.svg" +dest_files=["res://.godot/imported/Panels4.svg-bca1c2706f306472bcc86df1dfc3eb2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PanoramaSkyMaterial.svg b/src/resources/icons/godot/PanoramaSkyMaterial.svg new file mode 100644 index 00000000..eaca9a21 --- /dev/null +++ b/src/resources/icons/godot/PanoramaSkyMaterial.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PanoramaSkyMaterial.svg.import b/src/resources/icons/godot/PanoramaSkyMaterial.svg.import new file mode 100644 index 00000000..76180b6a --- /dev/null +++ b/src/resources/icons/godot/PanoramaSkyMaterial.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdqld7ayu2fa8" +path="res://.godot/imported/PanoramaSkyMaterial.svg-f65100769302e68cdb1bd64e86ee2ee6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PanoramaSkyMaterial.svg" +dest_files=["res://.godot/imported/PanoramaSkyMaterial.svg-f65100769302e68cdb1bd64e86ee2ee6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Parallax2D.svg b/src/resources/icons/godot/Parallax2D.svg new file mode 100644 index 00000000..c45c8643 --- /dev/null +++ b/src/resources/icons/godot/Parallax2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Parallax2D.svg.import b/src/resources/icons/godot/Parallax2D.svg.import new file mode 100644 index 00000000..db7e8411 --- /dev/null +++ b/src/resources/icons/godot/Parallax2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4hoxgx8wu06n" +path="res://.godot/imported/Parallax2D.svg-42d058aee6f503fdeb8f51354295e3f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Parallax2D.svg" +dest_files=["res://.godot/imported/Parallax2D.svg-42d058aee6f503fdeb8f51354295e3f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ParallaxBackground.svg b/src/resources/icons/godot/ParallaxBackground.svg new file mode 100644 index 00000000..9e860fa9 --- /dev/null +++ b/src/resources/icons/godot/ParallaxBackground.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ParallaxBackground.svg.import b/src/resources/icons/godot/ParallaxBackground.svg.import new file mode 100644 index 00000000..a101e80d --- /dev/null +++ b/src/resources/icons/godot/ParallaxBackground.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c81ku7jaagr6w" +path="res://.godot/imported/ParallaxBackground.svg-654beb7906ea480d5472eec43ffe47c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ParallaxBackground.svg" +dest_files=["res://.godot/imported/ParallaxBackground.svg-654beb7906ea480d5472eec43ffe47c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ParallaxLayer.svg b/src/resources/icons/godot/ParallaxLayer.svg new file mode 100644 index 00000000..ed207249 --- /dev/null +++ b/src/resources/icons/godot/ParallaxLayer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ParallaxLayer.svg.import b/src/resources/icons/godot/ParallaxLayer.svg.import new file mode 100644 index 00000000..4c802a2d --- /dev/null +++ b/src/resources/icons/godot/ParallaxLayer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ubvr42wuhjwj" +path="res://.godot/imported/ParallaxLayer.svg-a11ee81f5381b51a4abeb74b45803aa7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ParallaxLayer.svg" +dest_files=["res://.godot/imported/ParallaxLayer.svg-a11ee81f5381b51a4abeb74b45803aa7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ParticleProcessMaterial.svg b/src/resources/icons/godot/ParticleProcessMaterial.svg new file mode 100644 index 00000000..40cd8084 --- /dev/null +++ b/src/resources/icons/godot/ParticleProcessMaterial.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ParticleProcessMaterial.svg.import b/src/resources/icons/godot/ParticleProcessMaterial.svg.import new file mode 100644 index 00000000..10ae00d7 --- /dev/null +++ b/src/resources/icons/godot/ParticleProcessMaterial.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhl6qofjyad7r" +path="res://.godot/imported/ParticleProcessMaterial.svg-6752f341e0dc639b2484e39021f83060.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ParticleProcessMaterial.svg" +dest_files=["res://.godot/imported/ParticleProcessMaterial.svg-6752f341e0dc639b2484e39021f83060.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Path2D.svg b/src/resources/icons/godot/Path2D.svg new file mode 100644 index 00000000..495c7483 --- /dev/null +++ b/src/resources/icons/godot/Path2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Path2D.svg.import b/src/resources/icons/godot/Path2D.svg.import new file mode 100644 index 00000000..4ee307f8 --- /dev/null +++ b/src/resources/icons/godot/Path2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy7td08s5c8dv" +path="res://.godot/imported/Path2D.svg-c2397bd6a3a6bac02154157d8be2e978.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Path2D.svg" +dest_files=["res://.godot/imported/Path2D.svg-c2397bd6a3a6bac02154157d8be2e978.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Path3D.svg b/src/resources/icons/godot/Path3D.svg new file mode 100644 index 00000000..fc6e564e --- /dev/null +++ b/src/resources/icons/godot/Path3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Path3D.svg.import b/src/resources/icons/godot/Path3D.svg.import new file mode 100644 index 00000000..7ddb3d08 --- /dev/null +++ b/src/resources/icons/godot/Path3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s1m5803mbhbt" +path="res://.godot/imported/Path3D.svg-145c58159a6f4a297ddfa4ca9487c1a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Path3D.svg" +dest_files=["res://.godot/imported/Path3D.svg-145c58159a6f4a297ddfa4ca9487c1a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PathFollow2D.svg b/src/resources/icons/godot/PathFollow2D.svg new file mode 100644 index 00000000..8da52b84 --- /dev/null +++ b/src/resources/icons/godot/PathFollow2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PathFollow2D.svg.import b/src/resources/icons/godot/PathFollow2D.svg.import new file mode 100644 index 00000000..83c10d94 --- /dev/null +++ b/src/resources/icons/godot/PathFollow2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fyaaepxvxerh" +path="res://.godot/imported/PathFollow2D.svg-aeb4ca10ff0fd8f9b6febd54b6868884.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PathFollow2D.svg" +dest_files=["res://.godot/imported/PathFollow2D.svg-aeb4ca10ff0fd8f9b6febd54b6868884.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PathFollow3D.svg b/src/resources/icons/godot/PathFollow3D.svg new file mode 100644 index 00000000..5367cfa8 --- /dev/null +++ b/src/resources/icons/godot/PathFollow3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PathFollow3D.svg.import b/src/resources/icons/godot/PathFollow3D.svg.import new file mode 100644 index 00000000..6aa65180 --- /dev/null +++ b/src/resources/icons/godot/PathFollow3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dch1me3clhfyi" +path="res://.godot/imported/PathFollow3D.svg-ea9c39cb81ff121491434cfc4f5093c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PathFollow3D.svg" +dest_files=["res://.godot/imported/PathFollow3D.svg-ea9c39cb81ff121491434cfc4f5093c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Pause.svg b/src/resources/icons/godot/Pause.svg new file mode 100644 index 00000000..2c45f82c --- /dev/null +++ b/src/resources/icons/godot/Pause.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Pause.svg.import b/src/resources/icons/godot/Pause.svg.import new file mode 100644 index 00000000..d4532a6a --- /dev/null +++ b/src/resources/icons/godot/Pause.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds18yf76kn4ju" +path="res://.godot/imported/Pause.svg-c71dd71cb82fdd1e968acf2c4884ab68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Pause.svg" +dest_files=["res://.godot/imported/Pause.svg-c71dd71cb82fdd1e968acf2c4884ab68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Performance.svg b/src/resources/icons/godot/Performance.svg new file mode 100644 index 00000000..0af01080 --- /dev/null +++ b/src/resources/icons/godot/Performance.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Performance.svg.import b/src/resources/icons/godot/Performance.svg.import new file mode 100644 index 00000000..683a9f1b --- /dev/null +++ b/src/resources/icons/godot/Performance.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhs0u1f4hifl5" +path="res://.godot/imported/Performance.svg-9606cb7918cc57a3bce452563839e266.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Performance.svg" +dest_files=["res://.godot/imported/Performance.svg-9606cb7918cc57a3bce452563839e266.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PhysicalBone2D.svg b/src/resources/icons/godot/PhysicalBone2D.svg new file mode 100644 index 00000000..020113ec --- /dev/null +++ b/src/resources/icons/godot/PhysicalBone2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PhysicalBone2D.svg.import b/src/resources/icons/godot/PhysicalBone2D.svg.import new file mode 100644 index 00000000..a925fb22 --- /dev/null +++ b/src/resources/icons/godot/PhysicalBone2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg8sy3ywo4as8" +path="res://.godot/imported/PhysicalBone2D.svg-a6597e19d2de8f3c2fbdb237a8cd94fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PhysicalBone2D.svg" +dest_files=["res://.godot/imported/PhysicalBone2D.svg-a6597e19d2de8f3c2fbdb237a8cd94fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PhysicalBone3D.svg b/src/resources/icons/godot/PhysicalBone3D.svg new file mode 100644 index 00000000..52e6a6d7 --- /dev/null +++ b/src/resources/icons/godot/PhysicalBone3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PhysicalBone3D.svg.import b/src/resources/icons/godot/PhysicalBone3D.svg.import new file mode 100644 index 00000000..ec5b3ffd --- /dev/null +++ b/src/resources/icons/godot/PhysicalBone3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjjc8p107i22m" +path="res://.godot/imported/PhysicalBone3D.svg-4b7df31451909b45caa2a8b42f135986.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PhysicalBone3D.svg" +dest_files=["res://.godot/imported/PhysicalBone3D.svg-4b7df31451909b45caa2a8b42f135986.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PhysicalBoneSimulator3D.svg b/src/resources/icons/godot/PhysicalBoneSimulator3D.svg new file mode 100644 index 00000000..3dcd408c --- /dev/null +++ b/src/resources/icons/godot/PhysicalBoneSimulator3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PhysicalBoneSimulator3D.svg.import b/src/resources/icons/godot/PhysicalBoneSimulator3D.svg.import new file mode 100644 index 00000000..c11c597e --- /dev/null +++ b/src/resources/icons/godot/PhysicalBoneSimulator3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doq6f0on4ue5a" +path="res://.godot/imported/PhysicalBoneSimulator3D.svg-7567e61a6e8ca09e20902583ceb8c60e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PhysicalBoneSimulator3D.svg" +dest_files=["res://.godot/imported/PhysicalBoneSimulator3D.svg-7567e61a6e8ca09e20902583ceb8c60e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PhysicalSkyMaterial.svg b/src/resources/icons/godot/PhysicalSkyMaterial.svg new file mode 100644 index 00000000..4d508740 --- /dev/null +++ b/src/resources/icons/godot/PhysicalSkyMaterial.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PhysicalSkyMaterial.svg.import b/src/resources/icons/godot/PhysicalSkyMaterial.svg.import new file mode 100644 index 00000000..ddf8cb6f --- /dev/null +++ b/src/resources/icons/godot/PhysicalSkyMaterial.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r6a4niyml8f3" +path="res://.godot/imported/PhysicalSkyMaterial.svg-8e3a958bf6b28e72ced27de5811f2c96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PhysicalSkyMaterial.svg" +dest_files=["res://.godot/imported/PhysicalSkyMaterial.svg-8e3a958bf6b28e72ced27de5811f2c96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PhysicsBody2D.svg b/src/resources/icons/godot/PhysicsBody2D.svg new file mode 100644 index 00000000..021fd485 --- /dev/null +++ b/src/resources/icons/godot/PhysicsBody2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PhysicsBody2D.svg.import b/src/resources/icons/godot/PhysicsBody2D.svg.import new file mode 100644 index 00000000..80b8e03c --- /dev/null +++ b/src/resources/icons/godot/PhysicsBody2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://73hgfa7xwqtx" +path="res://.godot/imported/PhysicsBody2D.svg-469cad135e1bd0b427606e627f4da41c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PhysicsBody2D.svg" +dest_files=["res://.godot/imported/PhysicsBody2D.svg-469cad135e1bd0b427606e627f4da41c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PhysicsBody3D.svg b/src/resources/icons/godot/PhysicsBody3D.svg new file mode 100644 index 00000000..d84ed1ab --- /dev/null +++ b/src/resources/icons/godot/PhysicsBody3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PhysicsBody3D.svg.import b/src/resources/icons/godot/PhysicsBody3D.svg.import new file mode 100644 index 00000000..ce686a06 --- /dev/null +++ b/src/resources/icons/godot/PhysicsBody3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c78okgp4omhx1" +path="res://.godot/imported/PhysicsBody3D.svg-3d66d4e3c5cb2b3d05dbac6add0c1aa2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PhysicsBody3D.svg" +dest_files=["res://.godot/imported/PhysicsBody3D.svg-3d66d4e3c5cb2b3d05dbac6add0c1aa2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PhysicsMaterial.svg b/src/resources/icons/godot/PhysicsMaterial.svg new file mode 100644 index 00000000..0125b541 --- /dev/null +++ b/src/resources/icons/godot/PhysicsMaterial.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PhysicsMaterial.svg.import b/src/resources/icons/godot/PhysicsMaterial.svg.import new file mode 100644 index 00000000..2ae4c236 --- /dev/null +++ b/src/resources/icons/godot/PhysicsMaterial.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgxd0qw3pgucm" +path="res://.godot/imported/PhysicsMaterial.svg-11b9889d1315842d8bf198267bd48849.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PhysicsMaterial.svg" +dest_files=["res://.godot/imported/PhysicsMaterial.svg-11b9889d1315842d8bf198267bd48849.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PickerCursor.svg b/src/resources/icons/godot/PickerCursor.svg new file mode 100644 index 00000000..1a27dfc4 --- /dev/null +++ b/src/resources/icons/godot/PickerCursor.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PickerCursor.svg.import b/src/resources/icons/godot/PickerCursor.svg.import new file mode 100644 index 00000000..5d78cf20 --- /dev/null +++ b/src/resources/icons/godot/PickerCursor.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj4mp7b6bhjnk" +path="res://.godot/imported/PickerCursor.svg-41ba01f3417ea4e707af3fa36a614b05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PickerCursor.svg" +dest_files=["res://.godot/imported/PickerCursor.svg-41ba01f3417ea4e707af3fa36a614b05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PickerCursorBg.svg b/src/resources/icons/godot/PickerCursorBg.svg new file mode 100644 index 00000000..05a053fd --- /dev/null +++ b/src/resources/icons/godot/PickerCursorBg.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PickerCursorBg.svg.import b/src/resources/icons/godot/PickerCursorBg.svg.import new file mode 100644 index 00000000..53d46179 --- /dev/null +++ b/src/resources/icons/godot/PickerCursorBg.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bls3rmyly3pc8" +path="res://.godot/imported/PickerCursorBg.svg-e91e4df6818b857c9d187b56df2a920d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PickerCursorBg.svg" +dest_files=["res://.godot/imported/PickerCursorBg.svg-e91e4df6818b857c9d187b56df2a920d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PickerShapeCircle.svg b/src/resources/icons/godot/PickerShapeCircle.svg new file mode 100644 index 00000000..24acec76 --- /dev/null +++ b/src/resources/icons/godot/PickerShapeCircle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PickerShapeCircle.svg.import b/src/resources/icons/godot/PickerShapeCircle.svg.import new file mode 100644 index 00000000..fa65a934 --- /dev/null +++ b/src/resources/icons/godot/PickerShapeCircle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://barvnynxqla82" +path="res://.godot/imported/PickerShapeCircle.svg-0865cd158543da5be9a7ff9f23d71c3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PickerShapeCircle.svg" +dest_files=["res://.godot/imported/PickerShapeCircle.svg-0865cd158543da5be9a7ff9f23d71c3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PickerShapeRectangle.svg b/src/resources/icons/godot/PickerShapeRectangle.svg new file mode 100644 index 00000000..c6bacb4a --- /dev/null +++ b/src/resources/icons/godot/PickerShapeRectangle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PickerShapeRectangle.svg.import b/src/resources/icons/godot/PickerShapeRectangle.svg.import new file mode 100644 index 00000000..9f59b784 --- /dev/null +++ b/src/resources/icons/godot/PickerShapeRectangle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0og2ta21klts" +path="res://.godot/imported/PickerShapeRectangle.svg-4cc371d2dc944da79ce666850b719291.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PickerShapeRectangle.svg" +dest_files=["res://.godot/imported/PickerShapeRectangle.svg-4cc371d2dc944da79ce666850b719291.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PickerShapeRectangleWheel.svg b/src/resources/icons/godot/PickerShapeRectangleWheel.svg new file mode 100644 index 00000000..f431db31 --- /dev/null +++ b/src/resources/icons/godot/PickerShapeRectangleWheel.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PickerShapeRectangleWheel.svg.import b/src/resources/icons/godot/PickerShapeRectangleWheel.svg.import new file mode 100644 index 00000000..c340d011 --- /dev/null +++ b/src/resources/icons/godot/PickerShapeRectangleWheel.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7c0e4wiyxebp" +path="res://.godot/imported/PickerShapeRectangleWheel.svg-95a84dbbec625fe511d91a588bdf7b7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PickerShapeRectangleWheel.svg" +dest_files=["res://.godot/imported/PickerShapeRectangleWheel.svg-95a84dbbec625fe511d91a588bdf7b7c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Pin.svg b/src/resources/icons/godot/Pin.svg new file mode 100644 index 00000000..cc1be70f --- /dev/null +++ b/src/resources/icons/godot/Pin.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Pin.svg.import b/src/resources/icons/godot/Pin.svg.import new file mode 100644 index 00000000..59da42b4 --- /dev/null +++ b/src/resources/icons/godot/Pin.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c35cu4gc8nbwl" +path="res://.godot/imported/Pin.svg-c7b7a31668dad4181bb554ee97d483fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Pin.svg" +dest_files=["res://.godot/imported/Pin.svg-c7b7a31668dad4181bb554ee97d483fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PinJoint2D.svg b/src/resources/icons/godot/PinJoint2D.svg new file mode 100644 index 00000000..f5909cb9 --- /dev/null +++ b/src/resources/icons/godot/PinJoint2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PinJoint2D.svg.import b/src/resources/icons/godot/PinJoint2D.svg.import new file mode 100644 index 00000000..278ebe8b --- /dev/null +++ b/src/resources/icons/godot/PinJoint2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coailfpldqxy" +path="res://.godot/imported/PinJoint2D.svg-e4ebf9b048584e3270f977e020bb5604.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PinJoint2D.svg" +dest_files=["res://.godot/imported/PinJoint2D.svg-e4ebf9b048584e3270f977e020bb5604.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PinJoint3D.svg b/src/resources/icons/godot/PinJoint3D.svg new file mode 100644 index 00000000..a8799c94 --- /dev/null +++ b/src/resources/icons/godot/PinJoint3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PinJoint3D.svg.import b/src/resources/icons/godot/PinJoint3D.svg.import new file mode 100644 index 00000000..2602acf1 --- /dev/null +++ b/src/resources/icons/godot/PinJoint3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwk3ww6ajldy4" +path="res://.godot/imported/PinJoint3D.svg-51ff28d7170a36d26e193d32d7c941d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PinJoint3D.svg" +dest_files=["res://.godot/imported/PinJoint3D.svg-51ff28d7170a36d26e193d32d7c941d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PinPressed.svg b/src/resources/icons/godot/PinPressed.svg new file mode 100644 index 00000000..cc1be70f --- /dev/null +++ b/src/resources/icons/godot/PinPressed.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PinPressed.svg.import b/src/resources/icons/godot/PinPressed.svg.import new file mode 100644 index 00000000..f6a0104d --- /dev/null +++ b/src/resources/icons/godot/PinPressed.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1obig8rwyfv5" +path="res://.godot/imported/PinPressed.svg-c00118593aeb583ab6cf3f4570b29a4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PinPressed.svg" +dest_files=["res://.godot/imported/PinPressed.svg-c00118593aeb583ab6cf3f4570b29a4c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PingPongLoop.svg b/src/resources/icons/godot/PingPongLoop.svg new file mode 100644 index 00000000..c548d636 --- /dev/null +++ b/src/resources/icons/godot/PingPongLoop.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PingPongLoop.svg.import b/src/resources/icons/godot/PingPongLoop.svg.import new file mode 100644 index 00000000..a058ef59 --- /dev/null +++ b/src/resources/icons/godot/PingPongLoop.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqnbpksqpcuu2" +path="res://.godot/imported/PingPongLoop.svg-5b41be32ff36620edb25e58a7fd088e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PingPongLoop.svg" +dest_files=["res://.godot/imported/PingPongLoop.svg-5b41be32ff36620edb25e58a7fd088e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlaceholderMaterial.svg b/src/resources/icons/godot/PlaceholderMaterial.svg new file mode 100644 index 00000000..e4b8c01c --- /dev/null +++ b/src/resources/icons/godot/PlaceholderMaterial.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlaceholderMaterial.svg.import b/src/resources/icons/godot/PlaceholderMaterial.svg.import new file mode 100644 index 00000000..11fd20c7 --- /dev/null +++ b/src/resources/icons/godot/PlaceholderMaterial.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cki3g4djkdw45" +path="res://.godot/imported/PlaceholderMaterial.svg-4ae1e616e319b3e0392358a0bf99b0e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlaceholderMaterial.svg" +dest_files=["res://.godot/imported/PlaceholderMaterial.svg-4ae1e616e319b3e0392358a0bf99b0e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlaceholderMesh.svg b/src/resources/icons/godot/PlaceholderMesh.svg new file mode 100644 index 00000000..e9781eec --- /dev/null +++ b/src/resources/icons/godot/PlaceholderMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlaceholderMesh.svg.import b/src/resources/icons/godot/PlaceholderMesh.svg.import new file mode 100644 index 00000000..0fbbcff7 --- /dev/null +++ b/src/resources/icons/godot/PlaceholderMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0r5dx3ubon86" +path="res://.godot/imported/PlaceholderMesh.svg-5a3663815d09fc7440cff504b11c4415.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlaceholderMesh.svg" +dest_files=["res://.godot/imported/PlaceholderMesh.svg-5a3663815d09fc7440cff504b11c4415.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlaceholderTexture2D.svg b/src/resources/icons/godot/PlaceholderTexture2D.svg new file mode 100644 index 00000000..1d3affe3 --- /dev/null +++ b/src/resources/icons/godot/PlaceholderTexture2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlaceholderTexture2D.svg.import b/src/resources/icons/godot/PlaceholderTexture2D.svg.import new file mode 100644 index 00000000..c39bd15a --- /dev/null +++ b/src/resources/icons/godot/PlaceholderTexture2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bebjdquvlig04" +path="res://.godot/imported/PlaceholderTexture2D.svg-ad135fe6ef52e77cf4c0ba80c4969f98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlaceholderTexture2D.svg" +dest_files=["res://.godot/imported/PlaceholderTexture2D.svg-ad135fe6ef52e77cf4c0ba80c4969f98.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlaceholderTexture3D.svg b/src/resources/icons/godot/PlaceholderTexture3D.svg new file mode 100644 index 00000000..fa089325 --- /dev/null +++ b/src/resources/icons/godot/PlaceholderTexture3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlaceholderTexture3D.svg.import b/src/resources/icons/godot/PlaceholderTexture3D.svg.import new file mode 100644 index 00000000..65ab6711 --- /dev/null +++ b/src/resources/icons/godot/PlaceholderTexture3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cixlsh3quldux" +path="res://.godot/imported/PlaceholderTexture3D.svg-5a2174dd2e6b4c79c6ab6ee155d4e0fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlaceholderTexture3D.svg" +dest_files=["res://.godot/imported/PlaceholderTexture3D.svg-5a2174dd2e6b4c79c6ab6ee155d4e0fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Plane.svg b/src/resources/icons/godot/Plane.svg new file mode 100644 index 00000000..d377dbd0 --- /dev/null +++ b/src/resources/icons/godot/Plane.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Plane.svg.import b/src/resources/icons/godot/Plane.svg.import new file mode 100644 index 00000000..b8c385e1 --- /dev/null +++ b/src/resources/icons/godot/Plane.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccspbmx6sr45x" +path="res://.godot/imported/Plane.svg-afbc4142aa35ee2cf3ad7187b88e2cc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Plane.svg" +dest_files=["res://.godot/imported/Plane.svg-afbc4142aa35ee2cf3ad7187b88e2cc5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlaneMesh.svg b/src/resources/icons/godot/PlaneMesh.svg new file mode 100644 index 00000000..9b5dcaed --- /dev/null +++ b/src/resources/icons/godot/PlaneMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlaneMesh.svg.import b/src/resources/icons/godot/PlaneMesh.svg.import new file mode 100644 index 00000000..12df4ecc --- /dev/null +++ b/src/resources/icons/godot/PlaneMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo0a1cgiyxk26" +path="res://.godot/imported/PlaneMesh.svg-7109ac47933f741bea0766b8178cf19b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlaneMesh.svg" +dest_files=["res://.godot/imported/PlaneMesh.svg-7109ac47933f741bea0766b8178cf19b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Play.svg b/src/resources/icons/godot/Play.svg new file mode 100644 index 00000000..62f25b99 --- /dev/null +++ b/src/resources/icons/godot/Play.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Play.svg.import b/src/resources/icons/godot/Play.svg.import new file mode 100644 index 00000000..56142323 --- /dev/null +++ b/src/resources/icons/godot/Play.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b83osudne0h1l" +path="res://.godot/imported/Play.svg-b9cebeb0cff698a25f98e45243af7e56.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Play.svg" +dest_files=["res://.godot/imported/Play.svg-b9cebeb0cff698a25f98e45243af7e56.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlayBackwards.svg b/src/resources/icons/godot/PlayBackwards.svg new file mode 100644 index 00000000..5db3a62c --- /dev/null +++ b/src/resources/icons/godot/PlayBackwards.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlayBackwards.svg.import b/src/resources/icons/godot/PlayBackwards.svg.import new file mode 100644 index 00000000..9a9601cd --- /dev/null +++ b/src/resources/icons/godot/PlayBackwards.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df8etb6ncq6s7" +path="res://.godot/imported/PlayBackwards.svg-8db840e6658cd9e46597e0a7621fe623.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlayBackwards.svg" +dest_files=["res://.godot/imported/PlayBackwards.svg-8db840e6658cd9e46597e0a7621fe623.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlayCustom.svg b/src/resources/icons/godot/PlayCustom.svg new file mode 100644 index 00000000..b603976c --- /dev/null +++ b/src/resources/icons/godot/PlayCustom.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlayCustom.svg.import b/src/resources/icons/godot/PlayCustom.svg.import new file mode 100644 index 00000000..6ed943e6 --- /dev/null +++ b/src/resources/icons/godot/PlayCustom.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2p5csksem76g" +path="res://.godot/imported/PlayCustom.svg-d86158849dcdf1e418b6cfbf76366ca7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlayCustom.svg" +dest_files=["res://.godot/imported/PlayCustom.svg-d86158849dcdf1e418b6cfbf76366ca7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlayOverlay.svg b/src/resources/icons/godot/PlayOverlay.svg new file mode 100644 index 00000000..693da835 --- /dev/null +++ b/src/resources/icons/godot/PlayOverlay.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlayOverlay.svg.import b/src/resources/icons/godot/PlayOverlay.svg.import new file mode 100644 index 00000000..4cd812db --- /dev/null +++ b/src/resources/icons/godot/PlayOverlay.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cddu62u5qydi5" +path="res://.godot/imported/PlayOverlay.svg-ed8c943edd58d9a698cdc66bde99ae1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlayOverlay.svg" +dest_files=["res://.godot/imported/PlayOverlay.svg-ed8c943edd58d9a698cdc66bde99ae1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlayRemote.svg b/src/resources/icons/godot/PlayRemote.svg new file mode 100644 index 00000000..ed3407ed --- /dev/null +++ b/src/resources/icons/godot/PlayRemote.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlayRemote.svg.import b/src/resources/icons/godot/PlayRemote.svg.import new file mode 100644 index 00000000..242e62ef --- /dev/null +++ b/src/resources/icons/godot/PlayRemote.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bffggqu1trt2s" +path="res://.godot/imported/PlayRemote.svg-48cfe2718ad40b7bde85a250b9bdf0c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlayRemote.svg" +dest_files=["res://.godot/imported/PlayRemote.svg-48cfe2718ad40b7bde85a250b9bdf0c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlayScene.svg b/src/resources/icons/godot/PlayScene.svg new file mode 100644 index 00000000..4865cc4d --- /dev/null +++ b/src/resources/icons/godot/PlayScene.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlayScene.svg.import b/src/resources/icons/godot/PlayScene.svg.import new file mode 100644 index 00000000..9171e0b7 --- /dev/null +++ b/src/resources/icons/godot/PlayScene.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx1edxt18f1hl" +path="res://.godot/imported/PlayScene.svg-02ca25f563330dfa51babe48f207cc63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlayScene.svg" +dest_files=["res://.godot/imported/PlayScene.svg-02ca25f563330dfa51babe48f207cc63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlayStart.svg b/src/resources/icons/godot/PlayStart.svg new file mode 100644 index 00000000..eb2d6968 --- /dev/null +++ b/src/resources/icons/godot/PlayStart.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlayStart.svg.import b/src/resources/icons/godot/PlayStart.svg.import new file mode 100644 index 00000000..08bcb948 --- /dev/null +++ b/src/resources/icons/godot/PlayStart.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmug4awrokt78" +path="res://.godot/imported/PlayStart.svg-b857afb3acb9bdaf685d74cff37f6b96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlayStart.svg" +dest_files=["res://.godot/imported/PlayStart.svg-b857afb3acb9bdaf685d74cff37f6b96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlayStartBackwards.svg b/src/resources/icons/godot/PlayStartBackwards.svg new file mode 100644 index 00000000..31e4eaec --- /dev/null +++ b/src/resources/icons/godot/PlayStartBackwards.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlayStartBackwards.svg.import b/src/resources/icons/godot/PlayStartBackwards.svg.import new file mode 100644 index 00000000..0473e91d --- /dev/null +++ b/src/resources/icons/godot/PlayStartBackwards.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drlduc8yen34d" +path="res://.godot/imported/PlayStartBackwards.svg-72a18c5244c822afe62d88c3e327e557.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlayStartBackwards.svg" +dest_files=["res://.godot/imported/PlayStartBackwards.svg-72a18c5244c822afe62d88c3e327e557.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PlayTravel.svg b/src/resources/icons/godot/PlayTravel.svg new file mode 100644 index 00000000..03dc6f3c --- /dev/null +++ b/src/resources/icons/godot/PlayTravel.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PlayTravel.svg.import b/src/resources/icons/godot/PlayTravel.svg.import new file mode 100644 index 00000000..b7940c7b --- /dev/null +++ b/src/resources/icons/godot/PlayTravel.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdo26x3fihkdg" +path="res://.godot/imported/PlayTravel.svg-ac6d17709a0b8c9abc0fc3203b6346a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PlayTravel.svg" +dest_files=["res://.godot/imported/PlayTravel.svg-ac6d17709a0b8c9abc0fc3203b6346a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PluginScript.svg b/src/resources/icons/godot/PluginScript.svg new file mode 100644 index 00000000..910efc3e --- /dev/null +++ b/src/resources/icons/godot/PluginScript.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PluginScript.svg.import b/src/resources/icons/godot/PluginScript.svg.import new file mode 100644 index 00000000..a65aa659 --- /dev/null +++ b/src/resources/icons/godot/PluginScript.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhsr0pktccq1h" +path="res://.godot/imported/PluginScript.svg-fc00f1c8e0151d03306d530cd1be7395.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PluginScript.svg" +dest_files=["res://.godot/imported/PluginScript.svg-fc00f1c8e0151d03306d530cd1be7395.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PointLight2D.svg b/src/resources/icons/godot/PointLight2D.svg new file mode 100644 index 00000000..c0a47f65 --- /dev/null +++ b/src/resources/icons/godot/PointLight2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PointLight2D.svg.import b/src/resources/icons/godot/PointLight2D.svg.import new file mode 100644 index 00000000..550be88a --- /dev/null +++ b/src/resources/icons/godot/PointLight2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsxwc3yme7cnl" +path="res://.godot/imported/PointLight2D.svg-d9ab9cfffa26c5047f03f978db33c885.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PointLight2D.svg" +dest_files=["res://.godot/imported/PointLight2D.svg-d9ab9cfffa26c5047f03f978db33c885.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PointMesh.svg b/src/resources/icons/godot/PointMesh.svg new file mode 100644 index 00000000..7c0b9137 --- /dev/null +++ b/src/resources/icons/godot/PointMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PointMesh.svg.import b/src/resources/icons/godot/PointMesh.svg.import new file mode 100644 index 00000000..53a17ba1 --- /dev/null +++ b/src/resources/icons/godot/PointMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ld5cukqrvntu" +path="res://.godot/imported/PointMesh.svg-fba171d58ccf877e169499785897e65b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PointMesh.svg" +dest_files=["res://.godot/imported/PointMesh.svg-fba171d58ccf877e169499785897e65b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Polygon2D.svg b/src/resources/icons/godot/Polygon2D.svg new file mode 100644 index 00000000..46f0f9f8 --- /dev/null +++ b/src/resources/icons/godot/Polygon2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Polygon2D.svg.import b/src/resources/icons/godot/Polygon2D.svg.import new file mode 100644 index 00000000..be889473 --- /dev/null +++ b/src/resources/icons/godot/Polygon2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx1sij7reyx7a" +path="res://.godot/imported/Polygon2D.svg-b457c305af43cf0a25e7ed25376ee7c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Polygon2D.svg" +dest_files=["res://.godot/imported/Polygon2D.svg-b457c305af43cf0a25e7ed25376ee7c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PolygonDock.svg b/src/resources/icons/godot/PolygonDock.svg new file mode 100644 index 00000000..020faad7 --- /dev/null +++ b/src/resources/icons/godot/PolygonDock.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PolygonDock.svg.import b/src/resources/icons/godot/PolygonDock.svg.import new file mode 100644 index 00000000..5c7300a4 --- /dev/null +++ b/src/resources/icons/godot/PolygonDock.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cedscl8anpv1v" +path="res://.godot/imported/PolygonDock.svg-f36a3f58bcb678382b07092423dacb8a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PolygonDock.svg" +dest_files=["res://.godot/imported/PolygonDock.svg-f36a3f58bcb678382b07092423dacb8a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PolygonOccluder3D.svg b/src/resources/icons/godot/PolygonOccluder3D.svg new file mode 100644 index 00000000..8f5e8546 --- /dev/null +++ b/src/resources/icons/godot/PolygonOccluder3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PolygonOccluder3D.svg.import b/src/resources/icons/godot/PolygonOccluder3D.svg.import new file mode 100644 index 00000000..b919d204 --- /dev/null +++ b/src/resources/icons/godot/PolygonOccluder3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca0nlrrs8apd" +path="res://.godot/imported/PolygonOccluder3D.svg-6e54dbcb8bb22266bbe783d634e8370b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PolygonOccluder3D.svg" +dest_files=["res://.godot/imported/PolygonOccluder3D.svg-6e54dbcb8bb22266bbe783d634e8370b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PolygonPathFinder.svg b/src/resources/icons/godot/PolygonPathFinder.svg new file mode 100644 index 00000000..801e2be5 --- /dev/null +++ b/src/resources/icons/godot/PolygonPathFinder.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PolygonPathFinder.svg.import b/src/resources/icons/godot/PolygonPathFinder.svg.import new file mode 100644 index 00000000..272ed1e3 --- /dev/null +++ b/src/resources/icons/godot/PolygonPathFinder.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwxihnvupaff4" +path="res://.godot/imported/PolygonPathFinder.svg-38b4047967fa68857cc7254914fc79ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PolygonPathFinder.svg" +dest_files=["res://.godot/imported/PolygonPathFinder.svg-38b4047967fa68857cc7254914fc79ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Popup.svg b/src/resources/icons/godot/Popup.svg new file mode 100644 index 00000000..9809bf60 --- /dev/null +++ b/src/resources/icons/godot/Popup.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Popup.svg.import b/src/resources/icons/godot/Popup.svg.import new file mode 100644 index 00000000..605ed75d --- /dev/null +++ b/src/resources/icons/godot/Popup.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2x8s7ajrbsyc" +path="res://.godot/imported/Popup.svg-ed0a13acd143acbfa4c80dffae4452b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Popup.svg" +dest_files=["res://.godot/imported/Popup.svg-ed0a13acd143acbfa4c80dffae4452b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PopupMenu.svg b/src/resources/icons/godot/PopupMenu.svg new file mode 100644 index 00000000..648b1567 --- /dev/null +++ b/src/resources/icons/godot/PopupMenu.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PopupMenu.svg.import b/src/resources/icons/godot/PopupMenu.svg.import new file mode 100644 index 00000000..fee7c039 --- /dev/null +++ b/src/resources/icons/godot/PopupMenu.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pk6pdjnqb6ig" +path="res://.godot/imported/PopupMenu.svg-5dc153b59f55ee1cf430b17f22d79617.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PopupMenu.svg" +dest_files=["res://.godot/imported/PopupMenu.svg-5dc153b59f55ee1cf430b17f22d79617.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PopupPanel.svg b/src/resources/icons/godot/PopupPanel.svg new file mode 100644 index 00000000..922d29b4 --- /dev/null +++ b/src/resources/icons/godot/PopupPanel.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PopupPanel.svg.import b/src/resources/icons/godot/PopupPanel.svg.import new file mode 100644 index 00000000..023a8266 --- /dev/null +++ b/src/resources/icons/godot/PopupPanel.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpwp1yo6v152y" +path="res://.godot/imported/PopupPanel.svg-d9763963f5b9a551c38b201bca79358e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PopupPanel.svg" +dest_files=["res://.godot/imported/PopupPanel.svg-d9763963f5b9a551c38b201bca79358e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PortableCompressedTexture2D.svg b/src/resources/icons/godot/PortableCompressedTexture2D.svg new file mode 100644 index 00000000..13bb7b38 --- /dev/null +++ b/src/resources/icons/godot/PortableCompressedTexture2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PortableCompressedTexture2D.svg.import b/src/resources/icons/godot/PortableCompressedTexture2D.svg.import new file mode 100644 index 00000000..050b8f36 --- /dev/null +++ b/src/resources/icons/godot/PortableCompressedTexture2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfskct2a7k668" +path="res://.godot/imported/PortableCompressedTexture2D.svg-76fbe73c8e92d0540e0200e15e3d7f0e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PortableCompressedTexture2D.svg" +dest_files=["res://.godot/imported/PortableCompressedTexture2D.svg-76fbe73c8e92d0540e0200e15e3d7f0e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PreviewEnvironment.svg b/src/resources/icons/godot/PreviewEnvironment.svg new file mode 100644 index 00000000..9909a77c --- /dev/null +++ b/src/resources/icons/godot/PreviewEnvironment.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PreviewEnvironment.svg.import b/src/resources/icons/godot/PreviewEnvironment.svg.import new file mode 100644 index 00000000..d2975c4e --- /dev/null +++ b/src/resources/icons/godot/PreviewEnvironment.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4b5fxc3u62yv" +path="res://.godot/imported/PreviewEnvironment.svg-8ed171d53c169e8ac0e04a0b9cdbaa93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PreviewEnvironment.svg" +dest_files=["res://.godot/imported/PreviewEnvironment.svg-8ed171d53c169e8ac0e04a0b9cdbaa93.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PreviewRotate.svg b/src/resources/icons/godot/PreviewRotate.svg new file mode 100644 index 00000000..ad4a2884 --- /dev/null +++ b/src/resources/icons/godot/PreviewRotate.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PreviewRotate.svg.import b/src/resources/icons/godot/PreviewRotate.svg.import new file mode 100644 index 00000000..7d469d9f --- /dev/null +++ b/src/resources/icons/godot/PreviewRotate.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhu4cyrgdec5i" +path="res://.godot/imported/PreviewRotate.svg-f3037e3d1a503936edf1151c0dfe5805.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PreviewRotate.svg" +dest_files=["res://.godot/imported/PreviewRotate.svg-f3037e3d1a503936edf1151c0dfe5805.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PreviewSun.svg b/src/resources/icons/godot/PreviewSun.svg new file mode 100644 index 00000000..d359517f --- /dev/null +++ b/src/resources/icons/godot/PreviewSun.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PreviewSun.svg.import b/src/resources/icons/godot/PreviewSun.svg.import new file mode 100644 index 00000000..064dde04 --- /dev/null +++ b/src/resources/icons/godot/PreviewSun.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5evr47k853xl" +path="res://.godot/imported/PreviewSun.svg-e6496bd64974d72e3b7ebe228531c31c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PreviewSun.svg" +dest_files=["res://.godot/imported/PreviewSun.svg-e6496bd64974d72e3b7ebe228531c31c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/PrismMesh.svg b/src/resources/icons/godot/PrismMesh.svg new file mode 100644 index 00000000..08a4e9a5 --- /dev/null +++ b/src/resources/icons/godot/PrismMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/PrismMesh.svg.import b/src/resources/icons/godot/PrismMesh.svg.import new file mode 100644 index 00000000..a21a2840 --- /dev/null +++ b/src/resources/icons/godot/PrismMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dex475yri3x2v" +path="res://.godot/imported/PrismMesh.svg-41545cf3ae2ea893ff26a0a30c685a98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/PrismMesh.svg" +dest_files=["res://.godot/imported/PrismMesh.svg-41545cf3ae2ea893ff26a0a30c685a98.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ProceduralSkyMaterial.svg b/src/resources/icons/godot/ProceduralSkyMaterial.svg new file mode 100644 index 00000000..ead0d911 --- /dev/null +++ b/src/resources/icons/godot/ProceduralSkyMaterial.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ProceduralSkyMaterial.svg.import b/src/resources/icons/godot/ProceduralSkyMaterial.svg.import new file mode 100644 index 00000000..aa5b358a --- /dev/null +++ b/src/resources/icons/godot/ProceduralSkyMaterial.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ec5yehgrf7db" +path="res://.godot/imported/ProceduralSkyMaterial.svg-0c5dba8c797f6cd6aa75635e0a9af052.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ProceduralSkyMaterial.svg" +dest_files=["res://.godot/imported/ProceduralSkyMaterial.svg-0c5dba8c797f6cd6aa75635e0a9af052.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ProfilerAutostartWarning.svg b/src/resources/icons/godot/ProfilerAutostartWarning.svg new file mode 100644 index 00000000..1e039f55 --- /dev/null +++ b/src/resources/icons/godot/ProfilerAutostartWarning.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ProfilerAutostartWarning.svg.import b/src/resources/icons/godot/ProfilerAutostartWarning.svg.import new file mode 100644 index 00000000..2ce6450d --- /dev/null +++ b/src/resources/icons/godot/ProfilerAutostartWarning.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvvsc37aak8wo" +path="res://.godot/imported/ProfilerAutostartWarning.svg-b7f1273ef5e82f60225302c2674ea8aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ProfilerAutostartWarning.svg" +dest_files=["res://.godot/imported/ProfilerAutostartWarning.svg-b7f1273ef5e82f60225302c2674ea8aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Progress1.svg b/src/resources/icons/godot/Progress1.svg new file mode 100644 index 00000000..b433f5e7 --- /dev/null +++ b/src/resources/icons/godot/Progress1.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Progress1.svg.import b/src/resources/icons/godot/Progress1.svg.import new file mode 100644 index 00000000..dee6f792 --- /dev/null +++ b/src/resources/icons/godot/Progress1.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4uv6yd20mcie" +path="res://.godot/imported/Progress1.svg-bb65b2cca070190a373a3ebe1bda795a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Progress1.svg" +dest_files=["res://.godot/imported/Progress1.svg-bb65b2cca070190a373a3ebe1bda795a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Progress2.svg b/src/resources/icons/godot/Progress2.svg new file mode 100644 index 00000000..8e25f425 --- /dev/null +++ b/src/resources/icons/godot/Progress2.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Progress2.svg.import b/src/resources/icons/godot/Progress2.svg.import new file mode 100644 index 00000000..9b2f7cfa --- /dev/null +++ b/src/resources/icons/godot/Progress2.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brm1db0yotsco" +path="res://.godot/imported/Progress2.svg-22432beed4c54f914bbb946c4d23fdcf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Progress2.svg" +dest_files=["res://.godot/imported/Progress2.svg-22432beed4c54f914bbb946c4d23fdcf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Progress3.svg b/src/resources/icons/godot/Progress3.svg new file mode 100644 index 00000000..2c7f72f0 --- /dev/null +++ b/src/resources/icons/godot/Progress3.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Progress3.svg.import b/src/resources/icons/godot/Progress3.svg.import new file mode 100644 index 00000000..512fb3c7 --- /dev/null +++ b/src/resources/icons/godot/Progress3.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chmhctn6g6k7g" +path="res://.godot/imported/Progress3.svg-0588786bd77705562bfec9ff7ed59c84.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Progress3.svg" +dest_files=["res://.godot/imported/Progress3.svg-0588786bd77705562bfec9ff7ed59c84.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Progress4.svg b/src/resources/icons/godot/Progress4.svg new file mode 100644 index 00000000..5227a991 --- /dev/null +++ b/src/resources/icons/godot/Progress4.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Progress4.svg.import b/src/resources/icons/godot/Progress4.svg.import new file mode 100644 index 00000000..25918157 --- /dev/null +++ b/src/resources/icons/godot/Progress4.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://65prmgw0siq7" +path="res://.godot/imported/Progress4.svg-cafa28b45b5770d6ad5ff3d3d9b0df7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Progress4.svg" +dest_files=["res://.godot/imported/Progress4.svg-cafa28b45b5770d6ad5ff3d3d9b0df7c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Progress5.svg b/src/resources/icons/godot/Progress5.svg new file mode 100644 index 00000000..d7bd104d --- /dev/null +++ b/src/resources/icons/godot/Progress5.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Progress5.svg.import b/src/resources/icons/godot/Progress5.svg.import new file mode 100644 index 00000000..e48d2635 --- /dev/null +++ b/src/resources/icons/godot/Progress5.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7lqohc422d1f" +path="res://.godot/imported/Progress5.svg-3015de5d6f919490755544c75e6d350b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Progress5.svg" +dest_files=["res://.godot/imported/Progress5.svg-3015de5d6f919490755544c75e6d350b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Progress6.svg b/src/resources/icons/godot/Progress6.svg new file mode 100644 index 00000000..91ea2cde --- /dev/null +++ b/src/resources/icons/godot/Progress6.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Progress6.svg.import b/src/resources/icons/godot/Progress6.svg.import new file mode 100644 index 00000000..c030a3d2 --- /dev/null +++ b/src/resources/icons/godot/Progress6.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb0vj8xuf1d34" +path="res://.godot/imported/Progress6.svg-37760d3852ee8b52fc42b1f4794ca995.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Progress6.svg" +dest_files=["res://.godot/imported/Progress6.svg-37760d3852ee8b52fc42b1f4794ca995.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Progress7.svg b/src/resources/icons/godot/Progress7.svg new file mode 100644 index 00000000..8505133c --- /dev/null +++ b/src/resources/icons/godot/Progress7.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Progress7.svg.import b/src/resources/icons/godot/Progress7.svg.import new file mode 100644 index 00000000..71c5cdd3 --- /dev/null +++ b/src/resources/icons/godot/Progress7.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkivk0j8ublaf" +path="res://.godot/imported/Progress7.svg-8601a5e300cb8bab037dbdcd2133a7b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Progress7.svg" +dest_files=["res://.godot/imported/Progress7.svg-8601a5e300cb8bab037dbdcd2133a7b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Progress8.svg b/src/resources/icons/godot/Progress8.svg new file mode 100644 index 00000000..b88d910f --- /dev/null +++ b/src/resources/icons/godot/Progress8.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Progress8.svg.import b/src/resources/icons/godot/Progress8.svg.import new file mode 100644 index 00000000..aa68644f --- /dev/null +++ b/src/resources/icons/godot/Progress8.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4o256hbepjqd" +path="res://.godot/imported/Progress8.svg-ca63752d0e0b21cc00fc382d707951c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Progress8.svg" +dest_files=["res://.godot/imported/Progress8.svg-ca63752d0e0b21cc00fc382d707951c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ProgressBar.svg b/src/resources/icons/godot/ProgressBar.svg new file mode 100644 index 00000000..cd56d170 --- /dev/null +++ b/src/resources/icons/godot/ProgressBar.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ProgressBar.svg.import b/src/resources/icons/godot/ProgressBar.svg.import new file mode 100644 index 00000000..af298b35 --- /dev/null +++ b/src/resources/icons/godot/ProgressBar.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx0n6nnbj7s42" +path="res://.godot/imported/ProgressBar.svg-963a5ceb683eb76e4a45b1a08f4d8cb2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ProgressBar.svg" +dest_files=["res://.godot/imported/ProgressBar.svg-963a5ceb683eb76e4a45b1a08f4d8cb2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ProgressRing.svg b/src/resources/icons/godot/ProgressRing.svg new file mode 100644 index 00000000..21c65c84 --- /dev/null +++ b/src/resources/icons/godot/ProgressRing.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ProgressRing.svg.import b/src/resources/icons/godot/ProgressRing.svg.import new file mode 100644 index 00000000..cb55a42a --- /dev/null +++ b/src/resources/icons/godot/ProgressRing.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdmcebrwiti3x" +path="res://.godot/imported/ProgressRing.svg-a892197fba16630c0f9f6f71ea3df191.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ProgressRing.svg" +dest_files=["res://.godot/imported/ProgressRing.svg-a892197fba16630c0f9f6f71ea3df191.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ProjectDowngrade.svg b/src/resources/icons/godot/ProjectDowngrade.svg new file mode 100644 index 00000000..34abaf97 --- /dev/null +++ b/src/resources/icons/godot/ProjectDowngrade.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ProjectDowngrade.svg.import b/src/resources/icons/godot/ProjectDowngrade.svg.import new file mode 100644 index 00000000..4d116818 --- /dev/null +++ b/src/resources/icons/godot/ProjectDowngrade.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw6t21x6hk24k" +path="res://.godot/imported/ProjectDowngrade.svg-09d33d92c370b48a5fe812018c216e6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ProjectDowngrade.svg" +dest_files=["res://.godot/imported/ProjectDowngrade.svg-09d33d92c370b48a5fe812018c216e6a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ProjectDowngradeMajor.svg b/src/resources/icons/godot/ProjectDowngradeMajor.svg new file mode 100644 index 00000000..dc59e033 --- /dev/null +++ b/src/resources/icons/godot/ProjectDowngradeMajor.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ProjectDowngradeMajor.svg.import b/src/resources/icons/godot/ProjectDowngradeMajor.svg.import new file mode 100644 index 00000000..ac832a4e --- /dev/null +++ b/src/resources/icons/godot/ProjectDowngradeMajor.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbflc7j8wjvig" +path="res://.godot/imported/ProjectDowngradeMajor.svg-b93d40fbd3e0707dd0a128d69b975335.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ProjectDowngradeMajor.svg" +dest_files=["res://.godot/imported/ProjectDowngradeMajor.svg-b93d40fbd3e0707dd0a128d69b975335.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ProjectIconLoading.svg b/src/resources/icons/godot/ProjectIconLoading.svg new file mode 100644 index 00000000..d49faa41 --- /dev/null +++ b/src/resources/icons/godot/ProjectIconLoading.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ProjectIconLoading.svg.import b/src/resources/icons/godot/ProjectIconLoading.svg.import new file mode 100644 index 00000000..e3a0ec89 --- /dev/null +++ b/src/resources/icons/godot/ProjectIconLoading.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3lymwm4abhmo" +path="res://.godot/imported/ProjectIconLoading.svg-35cafa282feb522a4d32977b074c554d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ProjectIconLoading.svg" +dest_files=["res://.godot/imported/ProjectIconLoading.svg-35cafa282feb522a4d32977b074c554d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ProjectList.svg b/src/resources/icons/godot/ProjectList.svg new file mode 100644 index 00000000..467fefaa --- /dev/null +++ b/src/resources/icons/godot/ProjectList.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ProjectList.svg.import b/src/resources/icons/godot/ProjectList.svg.import new file mode 100644 index 00000000..d5a454b4 --- /dev/null +++ b/src/resources/icons/godot/ProjectList.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n00gf8btlyo8" +path="res://.godot/imported/ProjectList.svg-f457b7d4885299027c8bf1b1c3af54ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ProjectList.svg" +dest_files=["res://.godot/imported/ProjectList.svg-f457b7d4885299027c8bf1b1c3af54ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ProjectUpgrade.svg b/src/resources/icons/godot/ProjectUpgrade.svg new file mode 100644 index 00000000..15e3dcca --- /dev/null +++ b/src/resources/icons/godot/ProjectUpgrade.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ProjectUpgrade.svg.import b/src/resources/icons/godot/ProjectUpgrade.svg.import new file mode 100644 index 00000000..c40bad22 --- /dev/null +++ b/src/resources/icons/godot/ProjectUpgrade.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ivta7tkhc2vc" +path="res://.godot/imported/ProjectUpgrade.svg-041743b4e363508a5a3d8fa0c3216771.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ProjectUpgrade.svg" +dest_files=["res://.godot/imported/ProjectUpgrade.svg-041743b4e363508a5a3d8fa0c3216771.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ProjectUpgradeMajor.svg b/src/resources/icons/godot/ProjectUpgradeMajor.svg new file mode 100644 index 00000000..c37c6297 --- /dev/null +++ b/src/resources/icons/godot/ProjectUpgradeMajor.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ProjectUpgradeMajor.svg.import b/src/resources/icons/godot/ProjectUpgradeMajor.svg.import new file mode 100644 index 00000000..cbb6086c --- /dev/null +++ b/src/resources/icons/godot/ProjectUpgradeMajor.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://um2usjmvod0l" +path="res://.godot/imported/ProjectUpgradeMajor.svg-2d6c3d07b435be76a43c85bd1852df3f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ProjectUpgradeMajor.svg" +dest_files=["res://.godot/imported/ProjectUpgradeMajor.svg-2d6c3d07b435be76a43c85bd1852df3f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Projection.svg b/src/resources/icons/godot/Projection.svg new file mode 100644 index 00000000..f8a5c436 --- /dev/null +++ b/src/resources/icons/godot/Projection.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Projection.svg.import b/src/resources/icons/godot/Projection.svg.import new file mode 100644 index 00000000..3fe9106b --- /dev/null +++ b/src/resources/icons/godot/Projection.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt85x8yep6ok2" +path="res://.godot/imported/Projection.svg-1152b477b5ec5b45b29929cb28fc77be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Projection.svg" +dest_files=["res://.godot/imported/Projection.svg-1152b477b5ec5b45b29929cb28fc77be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Quad.svg b/src/resources/icons/godot/Quad.svg new file mode 100644 index 00000000..693cfd84 --- /dev/null +++ b/src/resources/icons/godot/Quad.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Quad.svg.import b/src/resources/icons/godot/Quad.svg.import new file mode 100644 index 00000000..7102d5cd --- /dev/null +++ b/src/resources/icons/godot/Quad.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d335ptyjlue3p" +path="res://.godot/imported/Quad.svg-7ccdf0458270a3055622d6c23aea9eba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Quad.svg" +dest_files=["res://.godot/imported/Quad.svg-7ccdf0458270a3055622d6c23aea9eba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/QuadMesh.svg b/src/resources/icons/godot/QuadMesh.svg new file mode 100644 index 00000000..70061d2f --- /dev/null +++ b/src/resources/icons/godot/QuadMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/QuadMesh.svg.import b/src/resources/icons/godot/QuadMesh.svg.import new file mode 100644 index 00000000..b094e0d3 --- /dev/null +++ b/src/resources/icons/godot/QuadMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ri6i1j1bp3aw" +path="res://.godot/imported/QuadMesh.svg-b7bff2baa87eba2dc00ac2e4cb1ad963.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/QuadMesh.svg" +dest_files=["res://.godot/imported/QuadMesh.svg-b7bff2baa87eba2dc00ac2e4cb1ad963.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/QuadOccluder3D.svg b/src/resources/icons/godot/QuadOccluder3D.svg new file mode 100644 index 00000000..8d9f1e49 --- /dev/null +++ b/src/resources/icons/godot/QuadOccluder3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/QuadOccluder3D.svg.import b/src/resources/icons/godot/QuadOccluder3D.svg.import new file mode 100644 index 00000000..5dab9ff6 --- /dev/null +++ b/src/resources/icons/godot/QuadOccluder3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6ldsfrwd7q7k" +path="res://.godot/imported/QuadOccluder3D.svg-dda3121c7eabd03240f0fa706f7ae650.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/QuadOccluder3D.svg" +dest_files=["res://.godot/imported/QuadOccluder3D.svg-dda3121c7eabd03240f0fa706f7ae650.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Quaternion.svg b/src/resources/icons/godot/Quaternion.svg new file mode 100644 index 00000000..2956f8e3 --- /dev/null +++ b/src/resources/icons/godot/Quaternion.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Quaternion.svg.import b/src/resources/icons/godot/Quaternion.svg.import new file mode 100644 index 00000000..d61be5e9 --- /dev/null +++ b/src/resources/icons/godot/Quaternion.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6b1jj8mmaots" +path="res://.godot/imported/Quaternion.svg-22a231f3e8e58fdd30e40d5379caa78f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Quaternion.svg" +dest_files=["res://.godot/imported/Quaternion.svg-22a231f3e8e58fdd30e40d5379caa78f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RDShaderFile.svg b/src/resources/icons/godot/RDShaderFile.svg new file mode 100644 index 00000000..0e9b7c3c --- /dev/null +++ b/src/resources/icons/godot/RDShaderFile.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RDShaderFile.svg.import b/src/resources/icons/godot/RDShaderFile.svg.import new file mode 100644 index 00000000..16e90d8a --- /dev/null +++ b/src/resources/icons/godot/RDShaderFile.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cabpyu4u5jhtf" +path="res://.godot/imported/RDShaderFile.svg-515f31ef17673a10bd096490a95b961b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RDShaderFile.svg" +dest_files=["res://.godot/imported/RDShaderFile.svg-515f31ef17673a10bd096490a95b961b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/README.md b/src/resources/icons/godot/README.md new file mode 100644 index 00000000..09714873 --- /dev/null +++ b/src/resources/icons/godot/README.md @@ -0,0 +1,7 @@ +# Editor icons + +This folder contains all the icons used by Godot editor (except for platform +icons which are located in their respective platform folder). + +See [Editor icons](https://docs.godotengine.org/en/latest/engine_details/editor/creating_icons.html) +in the documentation for details on creating icons for the Godot editor. diff --git a/src/resources/icons/godot/RID.svg b/src/resources/icons/godot/RID.svg new file mode 100644 index 00000000..247cc168 --- /dev/null +++ b/src/resources/icons/godot/RID.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RID.svg.import b/src/resources/icons/godot/RID.svg.import new file mode 100644 index 00000000..9a1029d4 --- /dev/null +++ b/src/resources/icons/godot/RID.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1n7s1u3m8nps" +path="res://.godot/imported/RID.svg-775d3b2d55562b6d6aef4ce5d676c6f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RID.svg" +dest_files=["res://.godot/imported/RID.svg-775d3b2d55562b6d6aef4ce5d676c6f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RandomNumberGenerator.svg b/src/resources/icons/godot/RandomNumberGenerator.svg new file mode 100644 index 00000000..e528b98c --- /dev/null +++ b/src/resources/icons/godot/RandomNumberGenerator.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RandomNumberGenerator.svg.import b/src/resources/icons/godot/RandomNumberGenerator.svg.import new file mode 100644 index 00000000..6f31dcb7 --- /dev/null +++ b/src/resources/icons/godot/RandomNumberGenerator.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fp8c57udm3u6" +path="res://.godot/imported/RandomNumberGenerator.svg-f48bddb609a8f20890771617cbda6dbc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RandomNumberGenerator.svg" +dest_files=["res://.godot/imported/RandomNumberGenerator.svg-f48bddb609a8f20890771617cbda6dbc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Range.svg b/src/resources/icons/godot/Range.svg new file mode 100644 index 00000000..002dc4cc --- /dev/null +++ b/src/resources/icons/godot/Range.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Range.svg.import b/src/resources/icons/godot/Range.svg.import new file mode 100644 index 00000000..533f7060 --- /dev/null +++ b/src/resources/icons/godot/Range.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dabmeoaxqs2g1" +path="res://.godot/imported/Range.svg-05707b096727e286b856c7569257467b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Range.svg" +dest_files=["res://.godot/imported/Range.svg-05707b096727e286b856c7569257467b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RangeSliderLeft.svg b/src/resources/icons/godot/RangeSliderLeft.svg new file mode 100644 index 00000000..fa7d9a70 --- /dev/null +++ b/src/resources/icons/godot/RangeSliderLeft.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RangeSliderLeft.svg.import b/src/resources/icons/godot/RangeSliderLeft.svg.import new file mode 100644 index 00000000..5be28fd3 --- /dev/null +++ b/src/resources/icons/godot/RangeSliderLeft.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h4rnre7glguf" +path="res://.godot/imported/RangeSliderLeft.svg-b73f199bdd107499373495ae37f7493b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RangeSliderLeft.svg" +dest_files=["res://.godot/imported/RangeSliderLeft.svg-b73f199bdd107499373495ae37f7493b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RangeSliderRight.svg b/src/resources/icons/godot/RangeSliderRight.svg new file mode 100644 index 00000000..44893975 --- /dev/null +++ b/src/resources/icons/godot/RangeSliderRight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RangeSliderRight.svg.import b/src/resources/icons/godot/RangeSliderRight.svg.import new file mode 100644 index 00000000..e951f052 --- /dev/null +++ b/src/resources/icons/godot/RangeSliderRight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c62lpamq62k0h" +path="res://.godot/imported/RangeSliderRight.svg-59027f463540a7e6e8f6151c793b8123.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RangeSliderRight.svg" +dest_files=["res://.godot/imported/RangeSliderRight.svg-59027f463540a7e6e8f6151c793b8123.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RayCast2D.svg b/src/resources/icons/godot/RayCast2D.svg new file mode 100644 index 00000000..fd9311e5 --- /dev/null +++ b/src/resources/icons/godot/RayCast2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RayCast2D.svg.import b/src/resources/icons/godot/RayCast2D.svg.import new file mode 100644 index 00000000..0b3e2522 --- /dev/null +++ b/src/resources/icons/godot/RayCast2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nse8cft2sh04" +path="res://.godot/imported/RayCast2D.svg-3b4a2d0720300b09fb146765110a3659.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RayCast2D.svg" +dest_files=["res://.godot/imported/RayCast2D.svg-3b4a2d0720300b09fb146765110a3659.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RayCast3D.svg b/src/resources/icons/godot/RayCast3D.svg new file mode 100644 index 00000000..fcf64160 --- /dev/null +++ b/src/resources/icons/godot/RayCast3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RayCast3D.svg.import b/src/resources/icons/godot/RayCast3D.svg.import new file mode 100644 index 00000000..dba38c83 --- /dev/null +++ b/src/resources/icons/godot/RayCast3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmgg306arct8v" +path="res://.godot/imported/RayCast3D.svg-b926c33fb439b0764f8c3bcf1415ba3f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RayCast3D.svg" +dest_files=["res://.godot/imported/RayCast3D.svg-b926c33fb439b0764f8c3bcf1415ba3f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Rect2.svg b/src/resources/icons/godot/Rect2.svg new file mode 100644 index 00000000..fb736067 --- /dev/null +++ b/src/resources/icons/godot/Rect2.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Rect2.svg.import b/src/resources/icons/godot/Rect2.svg.import new file mode 100644 index 00000000..8e0993b5 --- /dev/null +++ b/src/resources/icons/godot/Rect2.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qbrhxgyi6pah" +path="res://.godot/imported/Rect2.svg-a1b8ee6ee67e14dd29c5504eb18e6286.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Rect2.svg" +dest_files=["res://.godot/imported/Rect2.svg-a1b8ee6ee67e14dd29c5504eb18e6286.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Rect2i.svg b/src/resources/icons/godot/Rect2i.svg new file mode 100644 index 00000000..7ad45c52 --- /dev/null +++ b/src/resources/icons/godot/Rect2i.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Rect2i.svg.import b/src/resources/icons/godot/Rect2i.svg.import new file mode 100644 index 00000000..4d793fb4 --- /dev/null +++ b/src/resources/icons/godot/Rect2i.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://borifyy58gwcu" +path="res://.godot/imported/Rect2i.svg-70ae5a5df2d37b5824a970bcbe1f7552.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Rect2i.svg" +dest_files=["res://.godot/imported/Rect2i.svg-70ae5a5df2d37b5824a970bcbe1f7552.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Rectangle.svg b/src/resources/icons/godot/Rectangle.svg new file mode 100644 index 00000000..c2fac1a6 --- /dev/null +++ b/src/resources/icons/godot/Rectangle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Rectangle.svg.import b/src/resources/icons/godot/Rectangle.svg.import new file mode 100644 index 00000000..dcd6f9f9 --- /dev/null +++ b/src/resources/icons/godot/Rectangle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8y4q0nq84g72" +path="res://.godot/imported/Rectangle.svg-14ecffdf8580f86bbfba737d4ebe2b1f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Rectangle.svg" +dest_files=["res://.godot/imported/Rectangle.svg-14ecffdf8580f86bbfba737d4ebe2b1f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RectangleShape2D.svg b/src/resources/icons/godot/RectangleShape2D.svg new file mode 100644 index 00000000..b483cc1a --- /dev/null +++ b/src/resources/icons/godot/RectangleShape2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RectangleShape2D.svg.import b/src/resources/icons/godot/RectangleShape2D.svg.import new file mode 100644 index 00000000..523c3b37 --- /dev/null +++ b/src/resources/icons/godot/RectangleShape2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpb6vd8uc4fu4" +path="res://.godot/imported/RectangleShape2D.svg-07614c625b6400de1befc85954f40fbd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RectangleShape2D.svg" +dest_files=["res://.godot/imported/RectangleShape2D.svg-07614c625b6400de1befc85954f40fbd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Redo.svg b/src/resources/icons/godot/Redo.svg new file mode 100644 index 00000000..8394c822 --- /dev/null +++ b/src/resources/icons/godot/Redo.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Redo.svg.import b/src/resources/icons/godot/Redo.svg.import new file mode 100644 index 00000000..94ebf79c --- /dev/null +++ b/src/resources/icons/godot/Redo.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc4tc55ln7t7o" +path="res://.godot/imported/Redo.svg-a12e5a922cbf34db7a7f839111074bfc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Redo.svg" +dest_files=["res://.godot/imported/Redo.svg-a12e5a922cbf34db7a7f839111074bfc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ReferenceRect.svg b/src/resources/icons/godot/ReferenceRect.svg new file mode 100644 index 00000000..4613e007 --- /dev/null +++ b/src/resources/icons/godot/ReferenceRect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ReferenceRect.svg.import b/src/resources/icons/godot/ReferenceRect.svg.import new file mode 100644 index 00000000..f75a641c --- /dev/null +++ b/src/resources/icons/godot/ReferenceRect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://y06kn4d184cd" +path="res://.godot/imported/ReferenceRect.svg-5425c5ec5cacab28e9feca1c88e7f6b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ReferenceRect.svg" +dest_files=["res://.godot/imported/ReferenceRect.svg-5425c5ec5cacab28e9feca1c88e7f6b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ReflectionProbe.svg b/src/resources/icons/godot/ReflectionProbe.svg new file mode 100644 index 00000000..5035b12b --- /dev/null +++ b/src/resources/icons/godot/ReflectionProbe.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ReflectionProbe.svg.import b/src/resources/icons/godot/ReflectionProbe.svg.import new file mode 100644 index 00000000..f0d7d498 --- /dev/null +++ b/src/resources/icons/godot/ReflectionProbe.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cspesbfje7o4m" +path="res://.godot/imported/ReflectionProbe.svg-bbac9982899ff1a90e64926f35285fa2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ReflectionProbe.svg" +dest_files=["res://.godot/imported/ReflectionProbe.svg-bbac9982899ff1a90e64926f35285fa2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RegionEdit.svg b/src/resources/icons/godot/RegionEdit.svg new file mode 100644 index 00000000..89d20254 --- /dev/null +++ b/src/resources/icons/godot/RegionEdit.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RegionEdit.svg.import b/src/resources/icons/godot/RegionEdit.svg.import new file mode 100644 index 00000000..1d615fc2 --- /dev/null +++ b/src/resources/icons/godot/RegionEdit.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://faj328byjqpq" +path="res://.godot/imported/RegionEdit.svg-5d7bc965fcaad8013cc330ee2e80b9d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RegionEdit.svg" +dest_files=["res://.godot/imported/RegionEdit.svg-5d7bc965fcaad8013cc330ee2e80b9d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Reload.svg b/src/resources/icons/godot/Reload.svg new file mode 100644 index 00000000..ff237a02 --- /dev/null +++ b/src/resources/icons/godot/Reload.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Reload.svg.import b/src/resources/icons/godot/Reload.svg.import new file mode 100644 index 00000000..e5dab54b --- /dev/null +++ b/src/resources/icons/godot/Reload.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5637uq0qgqd4" +path="res://.godot/imported/Reload.svg-12cef23883b0d0d11c8e59316e1fe19c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Reload.svg" +dest_files=["res://.godot/imported/Reload.svg-12cef23883b0d0d11c8e59316e1fe19c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ReloadSmall.svg b/src/resources/icons/godot/ReloadSmall.svg new file mode 100644 index 00000000..2646284d --- /dev/null +++ b/src/resources/icons/godot/ReloadSmall.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ReloadSmall.svg.import b/src/resources/icons/godot/ReloadSmall.svg.import new file mode 100644 index 00000000..d7f78a45 --- /dev/null +++ b/src/resources/icons/godot/ReloadSmall.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crtjpap038mxb" +path="res://.godot/imported/ReloadSmall.svg-f4095e4359e8307ad2490f2d1bb77cfd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ReloadSmall.svg" +dest_files=["res://.godot/imported/ReloadSmall.svg-f4095e4359e8307ad2490f2d1bb77cfd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RemoteTransform2D.svg b/src/resources/icons/godot/RemoteTransform2D.svg new file mode 100644 index 00000000..96cfefbe --- /dev/null +++ b/src/resources/icons/godot/RemoteTransform2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RemoteTransform2D.svg.import b/src/resources/icons/godot/RemoteTransform2D.svg.import new file mode 100644 index 00000000..137b48b0 --- /dev/null +++ b/src/resources/icons/godot/RemoteTransform2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fjh3kks31s4i" +path="res://.godot/imported/RemoteTransform2D.svg-fee7719f3947668afbc772647e10f505.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RemoteTransform2D.svg" +dest_files=["res://.godot/imported/RemoteTransform2D.svg-fee7719f3947668afbc772647e10f505.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RemoteTransform3D.svg b/src/resources/icons/godot/RemoteTransform3D.svg new file mode 100644 index 00000000..86eb864c --- /dev/null +++ b/src/resources/icons/godot/RemoteTransform3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RemoteTransform3D.svg.import b/src/resources/icons/godot/RemoteTransform3D.svg.import new file mode 100644 index 00000000..1562f516 --- /dev/null +++ b/src/resources/icons/godot/RemoteTransform3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://befa60tqa1iqq" +path="res://.godot/imported/RemoteTransform3D.svg-6febaa5a265f671f1e67f1728c11ecd7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RemoteTransform3D.svg" +dest_files=["res://.godot/imported/RemoteTransform3D.svg-6febaa5a265f671f1e67f1728c11ecd7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Remove.svg b/src/resources/icons/godot/Remove.svg new file mode 100644 index 00000000..7acc15cd --- /dev/null +++ b/src/resources/icons/godot/Remove.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Remove.svg.import b/src/resources/icons/godot/Remove.svg.import new file mode 100644 index 00000000..ada20971 --- /dev/null +++ b/src/resources/icons/godot/Remove.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b54viv8d54q83" +path="res://.godot/imported/Remove.svg-54cd07d854da508c7243f7ce4a66b4e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Remove.svg" +dest_files=["res://.godot/imported/Remove.svg-54cd07d854da508c7243f7ce4a66b4e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RemoveInternal.svg b/src/resources/icons/godot/RemoveInternal.svg new file mode 100644 index 00000000..f4bfbb91 --- /dev/null +++ b/src/resources/icons/godot/RemoveInternal.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RemoveInternal.svg.import b/src/resources/icons/godot/RemoveInternal.svg.import new file mode 100644 index 00000000..a81ca283 --- /dev/null +++ b/src/resources/icons/godot/RemoveInternal.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4b75xl3ae2u6" +path="res://.godot/imported/RemoveInternal.svg-16ee64749fd2b53ad4ff2dd7d2144d00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RemoveInternal.svg" +dest_files=["res://.godot/imported/RemoveInternal.svg-16ee64749fd2b53ad4ff2dd7d2144d00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Rename.svg b/src/resources/icons/godot/Rename.svg new file mode 100644 index 00000000..1582f519 --- /dev/null +++ b/src/resources/icons/godot/Rename.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Rename.svg.import b/src/resources/icons/godot/Rename.svg.import new file mode 100644 index 00000000..12068df4 --- /dev/null +++ b/src/resources/icons/godot/Rename.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxt8gdntsl0ut" +path="res://.godot/imported/Rename.svg-462023a920995213f34b57fafe96c8fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Rename.svg" +dest_files=["res://.godot/imported/Rename.svg-462023a920995213f34b57fafe96c8fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Reparent.svg b/src/resources/icons/godot/Reparent.svg new file mode 100644 index 00000000..93f2b26b --- /dev/null +++ b/src/resources/icons/godot/Reparent.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Reparent.svg.import b/src/resources/icons/godot/Reparent.svg.import new file mode 100644 index 00000000..f2088d73 --- /dev/null +++ b/src/resources/icons/godot/Reparent.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://87aghc2hdbso" +path="res://.godot/imported/Reparent.svg-54a3462c0e704ae1c72a0d17cadf57ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Reparent.svg" +dest_files=["res://.godot/imported/Reparent.svg-54a3462c0e704ae1c72a0d17cadf57ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ReparentToNewNode.svg b/src/resources/icons/godot/ReparentToNewNode.svg new file mode 100644 index 00000000..647641d5 --- /dev/null +++ b/src/resources/icons/godot/ReparentToNewNode.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ReparentToNewNode.svg.import b/src/resources/icons/godot/ReparentToNewNode.svg.import new file mode 100644 index 00000000..e6f09bc6 --- /dev/null +++ b/src/resources/icons/godot/ReparentToNewNode.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1ur8gcymcn51" +path="res://.godot/imported/ReparentToNewNode.svg-0dc926ec480781db5f642c2879f85428.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ReparentToNewNode.svg" +dest_files=["res://.godot/imported/ReparentToNewNode.svg-0dc926ec480781db5f642c2879f85428.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ReplaceText.svg b/src/resources/icons/godot/ReplaceText.svg new file mode 100644 index 00000000..cd6af62c --- /dev/null +++ b/src/resources/icons/godot/ReplaceText.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ReplaceText.svg.import b/src/resources/icons/godot/ReplaceText.svg.import new file mode 100644 index 00000000..24a3c3fd --- /dev/null +++ b/src/resources/icons/godot/ReplaceText.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuhqr7hmn4yem" +path="res://.godot/imported/ReplaceText.svg-63ea6b1563b791da05ba9753aa02e9b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ReplaceText.svg" +dest_files=["res://.godot/imported/ReplaceText.svg-63ea6b1563b791da05ba9753aa02e9b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ResourcePreloader.svg b/src/resources/icons/godot/ResourcePreloader.svg new file mode 100644 index 00000000..d2df998c --- /dev/null +++ b/src/resources/icons/godot/ResourcePreloader.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ResourcePreloader.svg.import b/src/resources/icons/godot/ResourcePreloader.svg.import new file mode 100644 index 00000000..e7a17666 --- /dev/null +++ b/src/resources/icons/godot/ResourcePreloader.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mk3kook47jf4" +path="res://.godot/imported/ResourcePreloader.svg-115c3583d9014ca865c6ecef0f77194a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ResourcePreloader.svg" +dest_files=["res://.godot/imported/ResourcePreloader.svg-115c3583d9014ca865c6ecef0f77194a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RetargetModifier3D.svg b/src/resources/icons/godot/RetargetModifier3D.svg new file mode 100644 index 00000000..74c91092 --- /dev/null +++ b/src/resources/icons/godot/RetargetModifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RetargetModifier3D.svg.import b/src/resources/icons/godot/RetargetModifier3D.svg.import new file mode 100644 index 00000000..dc7e849a --- /dev/null +++ b/src/resources/icons/godot/RetargetModifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj1bk3pjmvb4g" +path="res://.godot/imported/RetargetModifier3D.svg-3e1b526bd50f12e28c98f1a5e3bb6b79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RetargetModifier3D.svg" +dest_files=["res://.godot/imported/RetargetModifier3D.svg-3e1b526bd50f12e28c98f1a5e3bb6b79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ReverseGradient.svg b/src/resources/icons/godot/ReverseGradient.svg new file mode 100644 index 00000000..a150b355 --- /dev/null +++ b/src/resources/icons/godot/ReverseGradient.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ReverseGradient.svg.import b/src/resources/icons/godot/ReverseGradient.svg.import new file mode 100644 index 00000000..691a063d --- /dev/null +++ b/src/resources/icons/godot/ReverseGradient.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://desv1de3rugk0" +path="res://.godot/imported/ReverseGradient.svg-0b9a1400f50e82a73bca0fb86edd281b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ReverseGradient.svg" +dest_files=["res://.godot/imported/ReverseGradient.svg-0b9a1400f50e82a73bca0fb86edd281b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RibbonTrailMesh.svg b/src/resources/icons/godot/RibbonTrailMesh.svg new file mode 100644 index 00000000..15163c0a --- /dev/null +++ b/src/resources/icons/godot/RibbonTrailMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RibbonTrailMesh.svg.import b/src/resources/icons/godot/RibbonTrailMesh.svg.import new file mode 100644 index 00000000..60c2e1ca --- /dev/null +++ b/src/resources/icons/godot/RibbonTrailMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c70ab0s6is4jh" +path="res://.godot/imported/RibbonTrailMesh.svg-218a9032735ed834e78fd2454ea54043.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RibbonTrailMesh.svg" +dest_files=["res://.godot/imported/RibbonTrailMesh.svg-218a9032735ed834e78fd2454ea54043.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RichTextEffect.svg b/src/resources/icons/godot/RichTextEffect.svg new file mode 100644 index 00000000..128862dc --- /dev/null +++ b/src/resources/icons/godot/RichTextEffect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RichTextEffect.svg.import b/src/resources/icons/godot/RichTextEffect.svg.import new file mode 100644 index 00000000..aaa263e1 --- /dev/null +++ b/src/resources/icons/godot/RichTextEffect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1kwgjsojg45b" +path="res://.godot/imported/RichTextEffect.svg-a3ca4d12cb11e6dfdb719606e77d0bd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RichTextEffect.svg" +dest_files=["res://.godot/imported/RichTextEffect.svg-a3ca4d12cb11e6dfdb719606e77d0bd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RichTextLabel.svg b/src/resources/icons/godot/RichTextLabel.svg new file mode 100644 index 00000000..03b1e867 --- /dev/null +++ b/src/resources/icons/godot/RichTextLabel.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RichTextLabel.svg.import b/src/resources/icons/godot/RichTextLabel.svg.import new file mode 100644 index 00000000..786ca79f --- /dev/null +++ b/src/resources/icons/godot/RichTextLabel.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7wckq5x86x2b" +path="res://.godot/imported/RichTextLabel.svg-dcca930ef8a13cb6570c7b8bd66031f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RichTextLabel.svg" +dest_files=["res://.godot/imported/RichTextLabel.svg-dcca930ef8a13cb6570c7b8bd66031f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RigidBody2D.svg b/src/resources/icons/godot/RigidBody2D.svg new file mode 100644 index 00000000..c10059ac --- /dev/null +++ b/src/resources/icons/godot/RigidBody2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RigidBody2D.svg.import b/src/resources/icons/godot/RigidBody2D.svg.import new file mode 100644 index 00000000..7b6b7def --- /dev/null +++ b/src/resources/icons/godot/RigidBody2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj4i7ixoa314e" +path="res://.godot/imported/RigidBody2D.svg-26343f7edd81dd892ce97399dbbf8a4a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RigidBody2D.svg" +dest_files=["res://.godot/imported/RigidBody2D.svg-26343f7edd81dd892ce97399dbbf8a4a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RigidBody3D.svg b/src/resources/icons/godot/RigidBody3D.svg new file mode 100644 index 00000000..24371680 --- /dev/null +++ b/src/resources/icons/godot/RigidBody3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RigidBody3D.svg.import b/src/resources/icons/godot/RigidBody3D.svg.import new file mode 100644 index 00000000..7cc225fe --- /dev/null +++ b/src/resources/icons/godot/RigidBody3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ms7inrk1pn1d" +path="res://.godot/imported/RigidBody3D.svg-d4ef58eca812320f38f6933a83c4d007.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RigidBody3D.svg" +dest_files=["res://.godot/imported/RigidBody3D.svg-d4ef58eca812320f38f6933a83c4d007.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RootMotionView.svg b/src/resources/icons/godot/RootMotionView.svg new file mode 100644 index 00000000..9ed98020 --- /dev/null +++ b/src/resources/icons/godot/RootMotionView.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RootMotionView.svg.import b/src/resources/icons/godot/RootMotionView.svg.import new file mode 100644 index 00000000..dd1ea359 --- /dev/null +++ b/src/resources/icons/godot/RootMotionView.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do7f256cya1ro" +path="res://.godot/imported/RootMotionView.svg-f1aaa253885334007ed0b05a6adbf6e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RootMotionView.svg" +dest_files=["res://.godot/imported/RootMotionView.svg-f1aaa253885334007ed0b05a6adbf6e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RotateLeft.svg b/src/resources/icons/godot/RotateLeft.svg new file mode 100644 index 00000000..ff237a02 --- /dev/null +++ b/src/resources/icons/godot/RotateLeft.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RotateLeft.svg.import b/src/resources/icons/godot/RotateLeft.svg.import new file mode 100644 index 00000000..41e39109 --- /dev/null +++ b/src/resources/icons/godot/RotateLeft.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0iqb578la8vd" +path="res://.godot/imported/RotateLeft.svg-1378a3afee9f98025f8758c1796756e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RotateLeft.svg" +dest_files=["res://.godot/imported/RotateLeft.svg-1378a3afee9f98025f8758c1796756e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/RotateRight.svg b/src/resources/icons/godot/RotateRight.svg new file mode 100644 index 00000000..d3e44ee1 --- /dev/null +++ b/src/resources/icons/godot/RotateRight.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/RotateRight.svg.import b/src/resources/icons/godot/RotateRight.svg.import new file mode 100644 index 00000000..68af5495 --- /dev/null +++ b/src/resources/icons/godot/RotateRight.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxxy4efiycu3l" +path="res://.godot/imported/RotateRight.svg-5037528db4da1176b174f361f38085ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/RotateRight.svg" +dest_files=["res://.godot/imported/RotateRight.svg-5037528db4da1176b174f361f38085ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Ruler.svg b/src/resources/icons/godot/Ruler.svg new file mode 100644 index 00000000..be2c36b5 --- /dev/null +++ b/src/resources/icons/godot/Ruler.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Ruler.svg.import b/src/resources/icons/godot/Ruler.svg.import new file mode 100644 index 00000000..9cb02646 --- /dev/null +++ b/src/resources/icons/godot/Ruler.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx210mmtlhhl4" +path="res://.godot/imported/Ruler.svg-a130667d498b437c64971ae3a2404ab3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Ruler.svg" +dest_files=["res://.godot/imported/Ruler.svg-a130667d498b437c64971ae3a2404ab3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SCsub b/src/resources/icons/godot/SCsub new file mode 100644 index 00000000..23ac6e69 --- /dev/null +++ b/src/resources/icons/godot/SCsub @@ -0,0 +1,24 @@ +#!/usr/bin/env python +from misc.utility.scons_hints import * + +Import("env") + +import os + +import editor_icons_builders + +# Editor's own icons +icon_sources = Glob("*.svg") + +# Module icons +for path in env.module_icons_paths: + if not os.path.isabs(path): + icon_sources += Glob(f"#{path}/*.svg") # Built-in. + else: + icon_sources += Glob(f"{path}/*.svg") # Custom. + +env.CommandNoCache( + "#editor/themes/editor_icons.gen.h", + icon_sources, + env.Run(editor_icons_builders.make_editor_icons_action), +) diff --git a/src/resources/icons/godot/SampleLibrary.svg b/src/resources/icons/godot/SampleLibrary.svg new file mode 100644 index 00000000..657c5988 --- /dev/null +++ b/src/resources/icons/godot/SampleLibrary.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SampleLibrary.svg.import b/src/resources/icons/godot/SampleLibrary.svg.import new file mode 100644 index 00000000..0414e9d0 --- /dev/null +++ b/src/resources/icons/godot/SampleLibrary.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pqpgr7q5ecyt" +path="res://.godot/imported/SampleLibrary.svg-6118b260455b820d3ef8ab02f3b7a012.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SampleLibrary.svg" +dest_files=["res://.godot/imported/SampleLibrary.svg-6118b260455b820d3ef8ab02f3b7a012.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Save.svg b/src/resources/icons/godot/Save.svg new file mode 100644 index 00000000..b8b2f9a1 --- /dev/null +++ b/src/resources/icons/godot/Save.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Save.svg.import b/src/resources/icons/godot/Save.svg.import new file mode 100644 index 00000000..8dd66f52 --- /dev/null +++ b/src/resources/icons/godot/Save.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blnd7x2qc6b7q" +path="res://.godot/imported/Save.svg-c29110229f0815c5aa79bd0a598873f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Save.svg" +dest_files=["res://.godot/imported/Save.svg-c29110229f0815c5aa79bd0a598873f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SceneUniqueName.svg b/src/resources/icons/godot/SceneUniqueName.svg new file mode 100644 index 00000000..72b5e712 --- /dev/null +++ b/src/resources/icons/godot/SceneUniqueName.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SceneUniqueName.svg.import b/src/resources/icons/godot/SceneUniqueName.svg.import new file mode 100644 index 00000000..319ae362 --- /dev/null +++ b/src/resources/icons/godot/SceneUniqueName.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pp5jidygfcgc" +path="res://.godot/imported/SceneUniqueName.svg-5d4e3cc159e900ef3a11e1c717ab57af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SceneUniqueName.svg" +dest_files=["res://.godot/imported/SceneUniqueName.svg-5d4e3cc159e900ef3a11e1c717ab57af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Script.svg b/src/resources/icons/godot/Script.svg new file mode 100644 index 00000000..4e418ab6 --- /dev/null +++ b/src/resources/icons/godot/Script.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Script.svg.import b/src/resources/icons/godot/Script.svg.import new file mode 100644 index 00000000..c9a7e315 --- /dev/null +++ b/src/resources/icons/godot/Script.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ri1pksty4xhq" +path="res://.godot/imported/Script.svg-36fee686b1a055a396957f67f41367f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Script.svg" +dest_files=["res://.godot/imported/Script.svg-36fee686b1a055a396957f67f41367f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ScriptCreate.svg b/src/resources/icons/godot/ScriptCreate.svg new file mode 100644 index 00000000..6b1fa485 --- /dev/null +++ b/src/resources/icons/godot/ScriptCreate.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ScriptCreate.svg.import b/src/resources/icons/godot/ScriptCreate.svg.import new file mode 100644 index 00000000..b097e5d4 --- /dev/null +++ b/src/resources/icons/godot/ScriptCreate.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds5bbsuh6eelv" +path="res://.godot/imported/ScriptCreate.svg-b2b6df9b1a85eb0799e023f9dced9efb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ScriptCreate.svg" +dest_files=["res://.godot/imported/ScriptCreate.svg-b2b6df9b1a85eb0799e023f9dced9efb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ScriptCreateDialog.svg b/src/resources/icons/godot/ScriptCreateDialog.svg new file mode 100644 index 00000000..4c5f5b96 --- /dev/null +++ b/src/resources/icons/godot/ScriptCreateDialog.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ScriptCreateDialog.svg.import b/src/resources/icons/godot/ScriptCreateDialog.svg.import new file mode 100644 index 00000000..f077da3c --- /dev/null +++ b/src/resources/icons/godot/ScriptCreateDialog.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ftbu8gv5tb6i" +path="res://.godot/imported/ScriptCreateDialog.svg-1cc719f673290ec6124154ebc28aed02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ScriptCreateDialog.svg" +dest_files=["res://.godot/imported/ScriptCreateDialog.svg-1cc719f673290ec6124154ebc28aed02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ScriptExtend.svg b/src/resources/icons/godot/ScriptExtend.svg new file mode 100644 index 00000000..0b577985 --- /dev/null +++ b/src/resources/icons/godot/ScriptExtend.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ScriptExtend.svg.import b/src/resources/icons/godot/ScriptExtend.svg.import new file mode 100644 index 00000000..606668cd --- /dev/null +++ b/src/resources/icons/godot/ScriptExtend.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clpj8sybmdeci" +path="res://.godot/imported/ScriptExtend.svg-960c5c8670a126f5c1da9e4acb93fce3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ScriptExtend.svg" +dest_files=["res://.godot/imported/ScriptExtend.svg-960c5c8670a126f5c1da9e4acb93fce3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ScriptRemove.svg b/src/resources/icons/godot/ScriptRemove.svg new file mode 100644 index 00000000..b4d4a00a --- /dev/null +++ b/src/resources/icons/godot/ScriptRemove.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ScriptRemove.svg.import b/src/resources/icons/godot/ScriptRemove.svg.import new file mode 100644 index 00000000..239a9713 --- /dev/null +++ b/src/resources/icons/godot/ScriptRemove.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgpvjh1dgrx42" +path="res://.godot/imported/ScriptRemove.svg-ac09f0d4b5eb252cf2dd3692c400fb11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ScriptRemove.svg" +dest_files=["res://.godot/imported/ScriptRemove.svg-ac09f0d4b5eb252cf2dd3692c400fb11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ScrollContainer.svg b/src/resources/icons/godot/ScrollContainer.svg new file mode 100644 index 00000000..76d60360 --- /dev/null +++ b/src/resources/icons/godot/ScrollContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ScrollContainer.svg.import b/src/resources/icons/godot/ScrollContainer.svg.import new file mode 100644 index 00000000..ae20d17e --- /dev/null +++ b/src/resources/icons/godot/ScrollContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cha3pfm3yy6y8" +path="res://.godot/imported/ScrollContainer.svg-426a129a94068d68b55709191ed44a9c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ScrollContainer.svg" +dest_files=["res://.godot/imported/ScrollContainer.svg-426a129a94068d68b55709191ed44a9c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Search.svg b/src/resources/icons/godot/Search.svg new file mode 100644 index 00000000..736d5535 --- /dev/null +++ b/src/resources/icons/godot/Search.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Search.svg.import b/src/resources/icons/godot/Search.svg.import new file mode 100644 index 00000000..31036d85 --- /dev/null +++ b/src/resources/icons/godot/Search.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmoi626wcb60j" +path="res://.godot/imported/Search.svg-f1c707371acf6218f0345d6cc3c0ad5c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Search.svg" +dest_files=["res://.godot/imported/Search.svg-f1c707371acf6218f0345d6cc3c0ad5c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SegmentShape2D.svg b/src/resources/icons/godot/SegmentShape2D.svg new file mode 100644 index 00000000..5c81a838 --- /dev/null +++ b/src/resources/icons/godot/SegmentShape2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SegmentShape2D.svg.import b/src/resources/icons/godot/SegmentShape2D.svg.import new file mode 100644 index 00000000..b7a113b2 --- /dev/null +++ b/src/resources/icons/godot/SegmentShape2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p6k1tiw5qqbq" +path="res://.godot/imported/SegmentShape2D.svg-a4c6dad84cda252f3776b538b237102a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SegmentShape2D.svg" +dest_files=["res://.godot/imported/SegmentShape2D.svg-a4c6dad84cda252f3776b538b237102a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SeparationRayShape2D.svg b/src/resources/icons/godot/SeparationRayShape2D.svg new file mode 100644 index 00000000..f14859c8 --- /dev/null +++ b/src/resources/icons/godot/SeparationRayShape2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SeparationRayShape2D.svg.import b/src/resources/icons/godot/SeparationRayShape2D.svg.import new file mode 100644 index 00000000..1037a5aa --- /dev/null +++ b/src/resources/icons/godot/SeparationRayShape2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oknjmfjhaimv" +path="res://.godot/imported/SeparationRayShape2D.svg-24882132e8b3cbeec332cb934ed491f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SeparationRayShape2D.svg" +dest_files=["res://.godot/imported/SeparationRayShape2D.svg-24882132e8b3cbeec332cb934ed491f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SeparationRayShape3D.svg b/src/resources/icons/godot/SeparationRayShape3D.svg new file mode 100644 index 00000000..f1fd4d16 --- /dev/null +++ b/src/resources/icons/godot/SeparationRayShape3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SeparationRayShape3D.svg.import b/src/resources/icons/godot/SeparationRayShape3D.svg.import new file mode 100644 index 00000000..3f4d55a3 --- /dev/null +++ b/src/resources/icons/godot/SeparationRayShape3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cscpd5tuiu10l" +path="res://.godot/imported/SeparationRayShape3D.svg-ad5b5729128d750e2fd6f4b7b38663e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SeparationRayShape3D.svg" +dest_files=["res://.godot/imported/SeparationRayShape3D.svg-ad5b5729128d750e2fd6f4b7b38663e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Shader.svg b/src/resources/icons/godot/Shader.svg new file mode 100644 index 00000000..21849d37 --- /dev/null +++ b/src/resources/icons/godot/Shader.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Shader.svg.import b/src/resources/icons/godot/Shader.svg.import new file mode 100644 index 00000000..743e3afe --- /dev/null +++ b/src/resources/icons/godot/Shader.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkxek4nxl1gqb" +path="res://.godot/imported/Shader.svg-cd29c1ba6a9b36f199592ff50f5d09fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Shader.svg" +dest_files=["res://.godot/imported/Shader.svg-cd29c1ba6a9b36f199592ff50f5d09fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ShaderDock.svg b/src/resources/icons/godot/ShaderDock.svg new file mode 100644 index 00000000..b0fee9ae --- /dev/null +++ b/src/resources/icons/godot/ShaderDock.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ShaderDock.svg.import b/src/resources/icons/godot/ShaderDock.svg.import new file mode 100644 index 00000000..3cbe9f71 --- /dev/null +++ b/src/resources/icons/godot/ShaderDock.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df5m0mh3wx6x7" +path="res://.godot/imported/ShaderDock.svg-58583fe8539bc3416c34ba5b6b708249.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ShaderDock.svg" +dest_files=["res://.godot/imported/ShaderDock.svg-58583fe8539bc3416c34ba5b6b708249.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ShaderGlobalsOverride.svg b/src/resources/icons/godot/ShaderGlobalsOverride.svg new file mode 100644 index 00000000..70df35c3 --- /dev/null +++ b/src/resources/icons/godot/ShaderGlobalsOverride.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ShaderGlobalsOverride.svg.import b/src/resources/icons/godot/ShaderGlobalsOverride.svg.import new file mode 100644 index 00000000..1911c36c --- /dev/null +++ b/src/resources/icons/godot/ShaderGlobalsOverride.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tg8t0jdvj3uv" +path="res://.godot/imported/ShaderGlobalsOverride.svg-b246c179c88c0f8caf26b8900b64fa8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ShaderGlobalsOverride.svg" +dest_files=["res://.godot/imported/ShaderGlobalsOverride.svg-b246c179c88c0f8caf26b8900b64fa8d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ShaderInclude.svg b/src/resources/icons/godot/ShaderInclude.svg new file mode 100644 index 00000000..2dc14f4e --- /dev/null +++ b/src/resources/icons/godot/ShaderInclude.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ShaderInclude.svg.import b/src/resources/icons/godot/ShaderInclude.svg.import new file mode 100644 index 00000000..99915317 --- /dev/null +++ b/src/resources/icons/godot/ShaderInclude.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bopw0oqkj1tuh" +path="res://.godot/imported/ShaderInclude.svg-b1adaac27696405041d991805fc07136.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ShaderInclude.svg" +dest_files=["res://.godot/imported/ShaderInclude.svg-b1adaac27696405041d991805fc07136.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ShaderMaterial.svg b/src/resources/icons/godot/ShaderMaterial.svg new file mode 100644 index 00000000..9bfd7af9 --- /dev/null +++ b/src/resources/icons/godot/ShaderMaterial.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ShaderMaterial.svg.import b/src/resources/icons/godot/ShaderMaterial.svg.import new file mode 100644 index 00000000..cc1ae21e --- /dev/null +++ b/src/resources/icons/godot/ShaderMaterial.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cplje8pvr2xx8" +path="res://.godot/imported/ShaderMaterial.svg-6ff4bf67b7e9571d4b05b759669f0be6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ShaderMaterial.svg" +dest_files=["res://.godot/imported/ShaderMaterial.svg-6ff4bf67b7e9571d4b05b759669f0be6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Shape2D.svg b/src/resources/icons/godot/Shape2D.svg new file mode 100644 index 00000000..ce24fd31 --- /dev/null +++ b/src/resources/icons/godot/Shape2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Shape2D.svg.import b/src/resources/icons/godot/Shape2D.svg.import new file mode 100644 index 00000000..72889580 --- /dev/null +++ b/src/resources/icons/godot/Shape2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bga4uvlfamv42" +path="res://.godot/imported/Shape2D.svg-ec0d92ca00e2100fee2cdd4172e13690.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Shape2D.svg" +dest_files=["res://.godot/imported/Shape2D.svg-ec0d92ca00e2100fee2cdd4172e13690.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Shape3D.svg b/src/resources/icons/godot/Shape3D.svg new file mode 100644 index 00000000..db665cb9 --- /dev/null +++ b/src/resources/icons/godot/Shape3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Shape3D.svg.import b/src/resources/icons/godot/Shape3D.svg.import new file mode 100644 index 00000000..15c7273a --- /dev/null +++ b/src/resources/icons/godot/Shape3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv0tiehm7org6" +path="res://.godot/imported/Shape3D.svg-139d85566901a75364f4d0488a59dd8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Shape3D.svg" +dest_files=["res://.godot/imported/Shape3D.svg-139d85566901a75364f4d0488a59dd8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ShapeCast2D.svg b/src/resources/icons/godot/ShapeCast2D.svg new file mode 100644 index 00000000..08f4742f --- /dev/null +++ b/src/resources/icons/godot/ShapeCast2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ShapeCast2D.svg.import b/src/resources/icons/godot/ShapeCast2D.svg.import new file mode 100644 index 00000000..68ec5d2c --- /dev/null +++ b/src/resources/icons/godot/ShapeCast2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b68ckma4i6grw" +path="res://.godot/imported/ShapeCast2D.svg-e2c8cdbab8ec950e4ca806a5fa001572.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ShapeCast2D.svg" +dest_files=["res://.godot/imported/ShapeCast2D.svg-e2c8cdbab8ec950e4ca806a5fa001572.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ShapeCast3D.svg b/src/resources/icons/godot/ShapeCast3D.svg new file mode 100644 index 00000000..ea8ac05b --- /dev/null +++ b/src/resources/icons/godot/ShapeCast3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ShapeCast3D.svg.import b/src/resources/icons/godot/ShapeCast3D.svg.import new file mode 100644 index 00000000..66f9b0e8 --- /dev/null +++ b/src/resources/icons/godot/ShapeCast3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3k0s6sf5mhsb" +path="res://.godot/imported/ShapeCast3D.svg-e00b689019a8391fa80efd11bff82dff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ShapeCast3D.svg" +dest_files=["res://.godot/imported/ShapeCast3D.svg-e00b689019a8391fa80efd11bff82dff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Shortcut.svg b/src/resources/icons/godot/Shortcut.svg new file mode 100644 index 00000000..fe77e4a7 --- /dev/null +++ b/src/resources/icons/godot/Shortcut.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Shortcut.svg.import b/src/resources/icons/godot/Shortcut.svg.import new file mode 100644 index 00000000..d7bbda8e --- /dev/null +++ b/src/resources/icons/godot/Shortcut.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkvp6q5vsobo8" +path="res://.godot/imported/Shortcut.svg-f33d049f47944c4dd28139eb85737016.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Shortcut.svg" +dest_files=["res://.godot/imported/Shortcut.svg-f33d049f47944c4dd28139eb85737016.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ShowInFileSystem.svg b/src/resources/icons/godot/ShowInFileSystem.svg new file mode 100644 index 00000000..efb4a2b7 --- /dev/null +++ b/src/resources/icons/godot/ShowInFileSystem.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ShowInFileSystem.svg.import b/src/resources/icons/godot/ShowInFileSystem.svg.import new file mode 100644 index 00000000..489436c8 --- /dev/null +++ b/src/resources/icons/godot/ShowInFileSystem.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5ud2ctr8413v" +path="res://.godot/imported/ShowInFileSystem.svg-19ef8b2e072ae7d66643373d80bdb950.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ShowInFileSystem.svg" +dest_files=["res://.godot/imported/ShowInFileSystem.svg-19ef8b2e072ae7d66643373d80bdb950.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Signal.svg b/src/resources/icons/godot/Signal.svg new file mode 100644 index 00000000..3292c210 --- /dev/null +++ b/src/resources/icons/godot/Signal.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Signal.svg.import b/src/resources/icons/godot/Signal.svg.import new file mode 100644 index 00000000..9dcd7c0f --- /dev/null +++ b/src/resources/icons/godot/Signal.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c233tr2cirgdb" +path="res://.godot/imported/Signal.svg-4ca6093dcc83c968560b14b02a94199a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Signal.svg" +dest_files=["res://.godot/imported/Signal.svg-4ca6093dcc83c968560b14b02a94199a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Signals.svg b/src/resources/icons/godot/Signals.svg new file mode 100644 index 00000000..52c6fc5e --- /dev/null +++ b/src/resources/icons/godot/Signals.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Signals.svg.import b/src/resources/icons/godot/Signals.svg.import new file mode 100644 index 00000000..187d7802 --- /dev/null +++ b/src/resources/icons/godot/Signals.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh721n8fhnpuh" +path="res://.godot/imported/Signals.svg-571fcd2a1ed7fa95e9276e03d1671622.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Signals.svg" +dest_files=["res://.godot/imported/Signals.svg-571fcd2a1ed7fa95e9276e03d1671622.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SignalsAndGroups.svg b/src/resources/icons/godot/SignalsAndGroups.svg new file mode 100644 index 00000000..2f6f2aa0 --- /dev/null +++ b/src/resources/icons/godot/SignalsAndGroups.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SignalsAndGroups.svg.import b/src/resources/icons/godot/SignalsAndGroups.svg.import new file mode 100644 index 00000000..878df438 --- /dev/null +++ b/src/resources/icons/godot/SignalsAndGroups.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmt60mqnexbgo" +path="res://.godot/imported/SignalsAndGroups.svg-c44f9cf298c141d95f5297f71b4303d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SignalsAndGroups.svg" +dest_files=["res://.godot/imported/SignalsAndGroups.svg-c44f9cf298c141d95f5297f71b4303d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Skeleton2D.svg b/src/resources/icons/godot/Skeleton2D.svg new file mode 100644 index 00000000..f8ba01d8 --- /dev/null +++ b/src/resources/icons/godot/Skeleton2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Skeleton2D.svg.import b/src/resources/icons/godot/Skeleton2D.svg.import new file mode 100644 index 00000000..1e5ffbf9 --- /dev/null +++ b/src/resources/icons/godot/Skeleton2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddr860p5tppk2" +path="res://.godot/imported/Skeleton2D.svg-00c3a905a4a0d2597047bb41c4d2fea1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Skeleton2D.svg" +dest_files=["res://.godot/imported/Skeleton2D.svg-00c3a905a4a0d2597047bb41c4d2fea1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Skeleton3D.svg b/src/resources/icons/godot/Skeleton3D.svg new file mode 100644 index 00000000..7fb396c8 --- /dev/null +++ b/src/resources/icons/godot/Skeleton3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Skeleton3D.svg.import b/src/resources/icons/godot/Skeleton3D.svg.import new file mode 100644 index 00000000..1d0566d4 --- /dev/null +++ b/src/resources/icons/godot/Skeleton3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjvlty8eehjdj" +path="res://.godot/imported/Skeleton3D.svg-a118160483bb1750be548c9fcacb2732.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Skeleton3D.svg" +dest_files=["res://.godot/imported/Skeleton3D.svg-a118160483bb1750be548c9fcacb2732.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SkeletonIK3D.svg b/src/resources/icons/godot/SkeletonIK3D.svg new file mode 100644 index 00000000..45632042 --- /dev/null +++ b/src/resources/icons/godot/SkeletonIK3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SkeletonIK3D.svg.import b/src/resources/icons/godot/SkeletonIK3D.svg.import new file mode 100644 index 00000000..8f2928cc --- /dev/null +++ b/src/resources/icons/godot/SkeletonIK3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1cvjx1o77ddi" +path="res://.godot/imported/SkeletonIK3D.svg-aa1c67c76025b7d26e544e4fba2cfba3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SkeletonIK3D.svg" +dest_files=["res://.godot/imported/SkeletonIK3D.svg-aa1c67c76025b7d26e544e4fba2cfba3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SkeletonModifier.svg b/src/resources/icons/godot/SkeletonModifier.svg new file mode 100644 index 00000000..507b9df4 --- /dev/null +++ b/src/resources/icons/godot/SkeletonModifier.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SkeletonModifier.svg.import b/src/resources/icons/godot/SkeletonModifier.svg.import new file mode 100644 index 00000000..3f645c51 --- /dev/null +++ b/src/resources/icons/godot/SkeletonModifier.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwkq6pqkc2i2n" +path="res://.godot/imported/SkeletonModifier.svg-78fce934e9ce87cd851f9551c92c0b30.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SkeletonModifier.svg" +dest_files=["res://.godot/imported/SkeletonModifier.svg-78fce934e9ce87cd851f9551c92c0b30.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SkeletonModifier3D.svg b/src/resources/icons/godot/SkeletonModifier3D.svg new file mode 100644 index 00000000..27028d12 --- /dev/null +++ b/src/resources/icons/godot/SkeletonModifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SkeletonModifier3D.svg.import b/src/resources/icons/godot/SkeletonModifier3D.svg.import new file mode 100644 index 00000000..b934fb5d --- /dev/null +++ b/src/resources/icons/godot/SkeletonModifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://box20j30x7fbd" +path="res://.godot/imported/SkeletonModifier3D.svg-4db75aa76b549938791dac9e88a88b61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SkeletonModifier3D.svg" +dest_files=["res://.godot/imported/SkeletonModifier3D.svg-4db75aa76b549938791dac9e88a88b61.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SkeletonPreview.svg b/src/resources/icons/godot/SkeletonPreview.svg new file mode 100644 index 00000000..cf80b0d4 --- /dev/null +++ b/src/resources/icons/godot/SkeletonPreview.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SkeletonPreview.svg.import b/src/resources/icons/godot/SkeletonPreview.svg.import new file mode 100644 index 00000000..d3cc72a2 --- /dev/null +++ b/src/resources/icons/godot/SkeletonPreview.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c66mnpve7jkim" +path="res://.godot/imported/SkeletonPreview.svg-4c7776f8628659ac3260f6fab70df7b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SkeletonPreview.svg" +dest_files=["res://.godot/imported/SkeletonPreview.svg-4c7776f8628659ac3260f6fab70df7b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Sky.svg b/src/resources/icons/godot/Sky.svg new file mode 100644 index 00000000..93106b42 --- /dev/null +++ b/src/resources/icons/godot/Sky.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Sky.svg.import b/src/resources/icons/godot/Sky.svg.import new file mode 100644 index 00000000..4d02160e --- /dev/null +++ b/src/resources/icons/godot/Sky.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dixnh6invlfa4" +path="res://.godot/imported/Sky.svg-042844641d787c7540ca622603cf359b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Sky.svg" +dest_files=["res://.godot/imported/Sky.svg-042844641d787c7540ca622603cf359b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SliderJoint3D.svg b/src/resources/icons/godot/SliderJoint3D.svg new file mode 100644 index 00000000..ea8cc4ad --- /dev/null +++ b/src/resources/icons/godot/SliderJoint3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SliderJoint3D.svg.import b/src/resources/icons/godot/SliderJoint3D.svg.import new file mode 100644 index 00000000..0b30e49e --- /dev/null +++ b/src/resources/icons/godot/SliderJoint3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dudg338xjk6ih" +path="res://.godot/imported/SliderJoint3D.svg-edfb211c9b95c969cc3cb155679d7b05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SliderJoint3D.svg" +dest_files=["res://.godot/imported/SliderJoint3D.svg-edfb211c9b95c969cc3cb155679d7b05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Slot.svg b/src/resources/icons/godot/Slot.svg new file mode 100644 index 00000000..4f8b6803 --- /dev/null +++ b/src/resources/icons/godot/Slot.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Slot.svg.import b/src/resources/icons/godot/Slot.svg.import new file mode 100644 index 00000000..203dbac3 --- /dev/null +++ b/src/resources/icons/godot/Slot.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cosphw3pww4gm" +path="res://.godot/imported/Slot.svg-e8aff453a5f13afd58aa99caa76710d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Slot.svg" +dest_files=["res://.godot/imported/Slot.svg-e8aff453a5f13afd58aa99caa76710d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Snap.svg b/src/resources/icons/godot/Snap.svg new file mode 100644 index 00000000..9b1013b2 --- /dev/null +++ b/src/resources/icons/godot/Snap.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Snap.svg.import b/src/resources/icons/godot/Snap.svg.import new file mode 100644 index 00000000..f9c5ab2c --- /dev/null +++ b/src/resources/icons/godot/Snap.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cexawc1xtmv84" +path="res://.godot/imported/Snap.svg-703d3c0b215bcabae11f818037cde370.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Snap.svg" +dest_files=["res://.godot/imported/Snap.svg-703d3c0b215bcabae11f818037cde370.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SnapDisable.svg b/src/resources/icons/godot/SnapDisable.svg new file mode 100644 index 00000000..2f1d0187 --- /dev/null +++ b/src/resources/icons/godot/SnapDisable.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SnapDisable.svg.import b/src/resources/icons/godot/SnapDisable.svg.import new file mode 100644 index 00000000..421dba19 --- /dev/null +++ b/src/resources/icons/godot/SnapDisable.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chexne206s1bt" +path="res://.godot/imported/SnapDisable.svg-865f813e3296354240b44769c0c62b5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SnapDisable.svg" +dest_files=["res://.godot/imported/SnapDisable.svg-865f813e3296354240b44769c0c62b5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SnapGrid.svg b/src/resources/icons/godot/SnapGrid.svg new file mode 100644 index 00000000..8259e74e --- /dev/null +++ b/src/resources/icons/godot/SnapGrid.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SnapGrid.svg.import b/src/resources/icons/godot/SnapGrid.svg.import new file mode 100644 index 00000000..d3a4320e --- /dev/null +++ b/src/resources/icons/godot/SnapGrid.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwy4bvb748s72" +path="res://.godot/imported/SnapGrid.svg-76dd6c518a317a258990ddcd92e7527c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SnapGrid.svg" +dest_files=["res://.godot/imported/SnapGrid.svg-76dd6c518a317a258990ddcd92e7527c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SnapKeys.svg b/src/resources/icons/godot/SnapKeys.svg new file mode 100644 index 00000000..64711958 --- /dev/null +++ b/src/resources/icons/godot/SnapKeys.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SnapKeys.svg.import b/src/resources/icons/godot/SnapKeys.svg.import new file mode 100644 index 00000000..1f74662a --- /dev/null +++ b/src/resources/icons/godot/SnapKeys.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djm8p2wdb50l2" +path="res://.godot/imported/SnapKeys.svg-ac922c23815a71d91fed5f800a10abd4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SnapKeys.svg" +dest_files=["res://.godot/imported/SnapKeys.svg-ac922c23815a71d91fed5f800a10abd4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SnapTimeline.svg b/src/resources/icons/godot/SnapTimeline.svg new file mode 100644 index 00000000..88ce9893 --- /dev/null +++ b/src/resources/icons/godot/SnapTimeline.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SnapTimeline.svg.import b/src/resources/icons/godot/SnapTimeline.svg.import new file mode 100644 index 00000000..5c98b91e --- /dev/null +++ b/src/resources/icons/godot/SnapTimeline.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwaxe04rpsd47" +path="res://.godot/imported/SnapTimeline.svg-64291c6cc6668ed6f78c99be841ec146.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SnapTimeline.svg" +dest_files=["res://.godot/imported/SnapTimeline.svg-64291c6cc6668ed6f78c99be841ec146.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SoftBody3D.svg b/src/resources/icons/godot/SoftBody3D.svg new file mode 100644 index 00000000..1f85b04d --- /dev/null +++ b/src/resources/icons/godot/SoftBody3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SoftBody3D.svg.import b/src/resources/icons/godot/SoftBody3D.svg.import new file mode 100644 index 00000000..e593aba7 --- /dev/null +++ b/src/resources/icons/godot/SoftBody3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxwy8x4lcv6ba" +path="res://.godot/imported/SoftBody3D.svg-7a1e38564b0dfc7f6a737d9495dd53fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SoftBody3D.svg" +dest_files=["res://.godot/imported/SoftBody3D.svg-7a1e38564b0dfc7f6a737d9495dd53fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Sort.svg b/src/resources/icons/godot/Sort.svg new file mode 100644 index 00000000..12446def --- /dev/null +++ b/src/resources/icons/godot/Sort.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Sort.svg.import b/src/resources/icons/godot/Sort.svg.import new file mode 100644 index 00000000..ffe349a8 --- /dev/null +++ b/src/resources/icons/godot/Sort.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwl7lyckakx4w" +path="res://.godot/imported/Sort.svg-080a7a77f408208ba6e8d150c90bcac5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Sort.svg" +dest_files=["res://.godot/imported/Sort.svg-080a7a77f408208ba6e8d150c90bcac5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SphereMesh.svg b/src/resources/icons/godot/SphereMesh.svg new file mode 100644 index 00000000..8b2de2f3 --- /dev/null +++ b/src/resources/icons/godot/SphereMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SphereMesh.svg.import b/src/resources/icons/godot/SphereMesh.svg.import new file mode 100644 index 00000000..a4ac4593 --- /dev/null +++ b/src/resources/icons/godot/SphereMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx4fknu3wbs8g" +path="res://.godot/imported/SphereMesh.svg-f87978d107caf5e3872e5f8f147383f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SphereMesh.svg" +dest_files=["res://.godot/imported/SphereMesh.svg-f87978d107caf5e3872e5f8f147383f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SphereOccluder3D.svg b/src/resources/icons/godot/SphereOccluder3D.svg new file mode 100644 index 00000000..ba64c8c3 --- /dev/null +++ b/src/resources/icons/godot/SphereOccluder3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SphereOccluder3D.svg.import b/src/resources/icons/godot/SphereOccluder3D.svg.import new file mode 100644 index 00000000..4e8006c1 --- /dev/null +++ b/src/resources/icons/godot/SphereOccluder3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpvcp0ihqiyas" +path="res://.godot/imported/SphereOccluder3D.svg-86ad283d8bc476b3636ba7e2322a8b48.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SphereOccluder3D.svg" +dest_files=["res://.godot/imported/SphereOccluder3D.svg-86ad283d8bc476b3636ba7e2322a8b48.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SphereShape3D.svg b/src/resources/icons/godot/SphereShape3D.svg new file mode 100644 index 00000000..78d071db --- /dev/null +++ b/src/resources/icons/godot/SphereShape3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SphereShape3D.svg.import b/src/resources/icons/godot/SphereShape3D.svg.import new file mode 100644 index 00000000..92a6cd97 --- /dev/null +++ b/src/resources/icons/godot/SphereShape3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://damjkwowxc8ek" +path="res://.godot/imported/SphereShape3D.svg-97529b5a5990c9dec214a6a771d4c16d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SphereShape3D.svg" +dest_files=["res://.godot/imported/SphereShape3D.svg-97529b5a5990c9dec214a6a771d4c16d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SpinBox.svg b/src/resources/icons/godot/SpinBox.svg new file mode 100644 index 00000000..49ad6b04 --- /dev/null +++ b/src/resources/icons/godot/SpinBox.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SpinBox.svg.import b/src/resources/icons/godot/SpinBox.svg.import new file mode 100644 index 00000000..762e97b9 --- /dev/null +++ b/src/resources/icons/godot/SpinBox.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi08pkws8ipvj" +path="res://.godot/imported/SpinBox.svg-35bc9c0833bde212e2cd0a5b30d58a5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SpinBox.svg" +dest_files=["res://.godot/imported/SpinBox.svg-35bc9c0833bde212e2cd0a5b30d58a5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SplineIK3D.svg b/src/resources/icons/godot/SplineIK3D.svg new file mode 100644 index 00000000..3e4c8ec7 --- /dev/null +++ b/src/resources/icons/godot/SplineIK3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SplineIK3D.svg.import b/src/resources/icons/godot/SplineIK3D.svg.import new file mode 100644 index 00000000..dede31c2 --- /dev/null +++ b/src/resources/icons/godot/SplineIK3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6ycnxbqf86wt" +path="res://.godot/imported/SplineIK3D.svg-db3c900e94fae71e0c9660bd00a5c4dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SplineIK3D.svg" +dest_files=["res://.godot/imported/SplineIK3D.svg-db3c900e94fae71e0c9660bd00a5c4dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SplitContainer.svg b/src/resources/icons/godot/SplitContainer.svg new file mode 100644 index 00000000..7055da45 --- /dev/null +++ b/src/resources/icons/godot/SplitContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SplitContainer.svg.import b/src/resources/icons/godot/SplitContainer.svg.import new file mode 100644 index 00000000..97680895 --- /dev/null +++ b/src/resources/icons/godot/SplitContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0sqfgt6t44re" +path="res://.godot/imported/SplitContainer.svg-bf75d2b8c3e575a3acbc7007e5f2f703.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SplitContainer.svg" +dest_files=["res://.godot/imported/SplitContainer.svg-bf75d2b8c3e575a3acbc7007e5f2f703.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SpotLight3D.svg b/src/resources/icons/godot/SpotLight3D.svg new file mode 100644 index 00000000..f0fdc5bc --- /dev/null +++ b/src/resources/icons/godot/SpotLight3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SpotLight3D.svg.import b/src/resources/icons/godot/SpotLight3D.svg.import new file mode 100644 index 00000000..78416370 --- /dev/null +++ b/src/resources/icons/godot/SpotLight3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkh73vnrhe035" +path="res://.godot/imported/SpotLight3D.svg-1e13b43fb7d554b0a74d1010577609aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SpotLight3D.svg" +dest_files=["res://.godot/imported/SpotLight3D.svg-1e13b43fb7d554b0a74d1010577609aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SpringArm3D.svg b/src/resources/icons/godot/SpringArm3D.svg new file mode 100644 index 00000000..2099dfc4 --- /dev/null +++ b/src/resources/icons/godot/SpringArm3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SpringArm3D.svg.import b/src/resources/icons/godot/SpringArm3D.svg.import new file mode 100644 index 00000000..4f157711 --- /dev/null +++ b/src/resources/icons/godot/SpringArm3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx2ipa7g7wqw0" +path="res://.godot/imported/SpringArm3D.svg-d66e0ab745362c98071dd1e90b61762e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SpringArm3D.svg" +dest_files=["res://.godot/imported/SpringArm3D.svg-d66e0ab745362c98071dd1e90b61762e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SpringBoneCollision3D.svg b/src/resources/icons/godot/SpringBoneCollision3D.svg new file mode 100644 index 00000000..118bf78d --- /dev/null +++ b/src/resources/icons/godot/SpringBoneCollision3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SpringBoneCollision3D.svg.import b/src/resources/icons/godot/SpringBoneCollision3D.svg.import new file mode 100644 index 00000000..26bcab4c --- /dev/null +++ b/src/resources/icons/godot/SpringBoneCollision3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6esnxbfx6ejy" +path="res://.godot/imported/SpringBoneCollision3D.svg-f7a9824863eca50b98c3e0c7e8586b56.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SpringBoneCollision3D.svg" +dest_files=["res://.godot/imported/SpringBoneCollision3D.svg-f7a9824863eca50b98c3e0c7e8586b56.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SpringBoneCollisionCapsule3D.svg b/src/resources/icons/godot/SpringBoneCollisionCapsule3D.svg new file mode 100644 index 00000000..cb1fbf16 --- /dev/null +++ b/src/resources/icons/godot/SpringBoneCollisionCapsule3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SpringBoneCollisionCapsule3D.svg.import b/src/resources/icons/godot/SpringBoneCollisionCapsule3D.svg.import new file mode 100644 index 00000000..bd328477 --- /dev/null +++ b/src/resources/icons/godot/SpringBoneCollisionCapsule3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5l1xhvqcr861" +path="res://.godot/imported/SpringBoneCollisionCapsule3D.svg-42fb8d9c8aaad3e672dcc510e95ea8da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SpringBoneCollisionCapsule3D.svg" +dest_files=["res://.godot/imported/SpringBoneCollisionCapsule3D.svg-42fb8d9c8aaad3e672dcc510e95ea8da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SpringBoneCollisionPlane3D.svg b/src/resources/icons/godot/SpringBoneCollisionPlane3D.svg new file mode 100644 index 00000000..731a39b9 --- /dev/null +++ b/src/resources/icons/godot/SpringBoneCollisionPlane3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SpringBoneCollisionPlane3D.svg.import b/src/resources/icons/godot/SpringBoneCollisionPlane3D.svg.import new file mode 100644 index 00000000..a1ffe72e --- /dev/null +++ b/src/resources/icons/godot/SpringBoneCollisionPlane3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy4umq53uik83" +path="res://.godot/imported/SpringBoneCollisionPlane3D.svg-b9fb773a904f2f36c8e8823bb59af60f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SpringBoneCollisionPlane3D.svg" +dest_files=["res://.godot/imported/SpringBoneCollisionPlane3D.svg-b9fb773a904f2f36c8e8823bb59af60f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SpringBoneCollisionSphere3D.svg b/src/resources/icons/godot/SpringBoneCollisionSphere3D.svg new file mode 100644 index 00000000..dace4aef --- /dev/null +++ b/src/resources/icons/godot/SpringBoneCollisionSphere3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SpringBoneCollisionSphere3D.svg.import b/src/resources/icons/godot/SpringBoneCollisionSphere3D.svg.import new file mode 100644 index 00000000..dd219ef9 --- /dev/null +++ b/src/resources/icons/godot/SpringBoneCollisionSphere3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vhtjfrulenmc" +path="res://.godot/imported/SpringBoneCollisionSphere3D.svg-95a3073efb5ff1cd3e386c803f7b669f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SpringBoneCollisionSphere3D.svg" +dest_files=["res://.godot/imported/SpringBoneCollisionSphere3D.svg-95a3073efb5ff1cd3e386c803f7b669f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SpringBoneSimulator3D.svg b/src/resources/icons/godot/SpringBoneSimulator3D.svg new file mode 100644 index 00000000..aa6c9783 --- /dev/null +++ b/src/resources/icons/godot/SpringBoneSimulator3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SpringBoneSimulator3D.svg.import b/src/resources/icons/godot/SpringBoneSimulator3D.svg.import new file mode 100644 index 00000000..364fefe7 --- /dev/null +++ b/src/resources/icons/godot/SpringBoneSimulator3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsiq78gefaovb" +path="res://.godot/imported/SpringBoneSimulator3D.svg-199a1cb486526eb69a733438fb507bc9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SpringBoneSimulator3D.svg" +dest_files=["res://.godot/imported/SpringBoneSimulator3D.svg-199a1cb486526eb69a733438fb507bc9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Sprite2D.svg b/src/resources/icons/godot/Sprite2D.svg new file mode 100644 index 00000000..6d2c4185 --- /dev/null +++ b/src/resources/icons/godot/Sprite2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Sprite2D.svg.import b/src/resources/icons/godot/Sprite2D.svg.import new file mode 100644 index 00000000..940b39f2 --- /dev/null +++ b/src/resources/icons/godot/Sprite2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brc3s5xyawckq" +path="res://.godot/imported/Sprite2D.svg-4c8f2a54be58286900875183cf16ee65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Sprite2D.svg" +dest_files=["res://.godot/imported/Sprite2D.svg-4c8f2a54be58286900875183cf16ee65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Sprite3D.svg b/src/resources/icons/godot/Sprite3D.svg new file mode 100644 index 00000000..6572fd56 --- /dev/null +++ b/src/resources/icons/godot/Sprite3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Sprite3D.svg.import b/src/resources/icons/godot/Sprite3D.svg.import new file mode 100644 index 00000000..28b5e17d --- /dev/null +++ b/src/resources/icons/godot/Sprite3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp3f1b2wyq813" +path="res://.godot/imported/Sprite3D.svg-8f4a18fa907663cd78d55f8cd8108dcf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Sprite3D.svg" +dest_files=["res://.godot/imported/Sprite3D.svg-8f4a18fa907663cd78d55f8cd8108dcf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SpriteFrames.svg b/src/resources/icons/godot/SpriteFrames.svg new file mode 100644 index 00000000..b0996182 --- /dev/null +++ b/src/resources/icons/godot/SpriteFrames.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SpriteFrames.svg.import b/src/resources/icons/godot/SpriteFrames.svg.import new file mode 100644 index 00000000..3a4f7845 --- /dev/null +++ b/src/resources/icons/godot/SpriteFrames.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yf3xmasslnk1" +path="res://.godot/imported/SpriteFrames.svg-9a9399fd4ea12b839774e0d937dac324.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SpriteFrames.svg" +dest_files=["res://.godot/imported/SpriteFrames.svg-9a9399fd4ea12b839774e0d937dac324.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SpriteSheet.svg b/src/resources/icons/godot/SpriteSheet.svg new file mode 100644 index 00000000..fdc239c0 --- /dev/null +++ b/src/resources/icons/godot/SpriteSheet.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SpriteSheet.svg.import b/src/resources/icons/godot/SpriteSheet.svg.import new file mode 100644 index 00000000..33331f39 --- /dev/null +++ b/src/resources/icons/godot/SpriteSheet.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk18dsh1cq038" +path="res://.godot/imported/SpriteSheet.svg-ec2136aa20efc0edeb3b9fac7adc519c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SpriteSheet.svg" +dest_files=["res://.godot/imported/SpriteSheet.svg-ec2136aa20efc0edeb3b9fac7adc519c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StandardMaterial3D.svg b/src/resources/icons/godot/StandardMaterial3D.svg new file mode 100644 index 00000000..f2407779 --- /dev/null +++ b/src/resources/icons/godot/StandardMaterial3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StandardMaterial3D.svg.import b/src/resources/icons/godot/StandardMaterial3D.svg.import new file mode 100644 index 00000000..0d444bca --- /dev/null +++ b/src/resources/icons/godot/StandardMaterial3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jv8end6sgndn" +path="res://.godot/imported/StandardMaterial3D.svg-0622bc9965c362fbcfffa624edc920fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StandardMaterial3D.svg" +dest_files=["res://.godot/imported/StandardMaterial3D.svg-0622bc9965c362fbcfffa624edc920fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StaticBody2D.svg b/src/resources/icons/godot/StaticBody2D.svg new file mode 100644 index 00000000..a24d1f2e --- /dev/null +++ b/src/resources/icons/godot/StaticBody2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StaticBody2D.svg.import b/src/resources/icons/godot/StaticBody2D.svg.import new file mode 100644 index 00000000..8a565c42 --- /dev/null +++ b/src/resources/icons/godot/StaticBody2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buqg058t1c7mc" +path="res://.godot/imported/StaticBody2D.svg-58a41e73458150a07a06514a030dd7d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StaticBody2D.svg" +dest_files=["res://.godot/imported/StaticBody2D.svg-58a41e73458150a07a06514a030dd7d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StaticBody3D.svg b/src/resources/icons/godot/StaticBody3D.svg new file mode 100644 index 00000000..232ef888 --- /dev/null +++ b/src/resources/icons/godot/StaticBody3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StaticBody3D.svg.import b/src/resources/icons/godot/StaticBody3D.svg.import new file mode 100644 index 00000000..1f22fe47 --- /dev/null +++ b/src/resources/icons/godot/StaticBody3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iywbfqolvqsw" +path="res://.godot/imported/StaticBody3D.svg-0e9d2926630803f1d88f67d8ff42ad1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StaticBody3D.svg" +dest_files=["res://.godot/imported/StaticBody3D.svg-0e9d2926630803f1d88f67d8ff42ad1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StatusError.svg b/src/resources/icons/godot/StatusError.svg new file mode 100644 index 00000000..43008df8 --- /dev/null +++ b/src/resources/icons/godot/StatusError.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StatusError.svg.import b/src/resources/icons/godot/StatusError.svg.import new file mode 100644 index 00000000..bdf5698d --- /dev/null +++ b/src/resources/icons/godot/StatusError.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuexvgy2h0lde" +path="res://.godot/imported/StatusError.svg-60dfcdd756f3490b3a33b564086f71ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StatusError.svg" +dest_files=["res://.godot/imported/StatusError.svg-60dfcdd756f3490b3a33b564086f71ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StatusIndicator.svg b/src/resources/icons/godot/StatusIndicator.svg new file mode 100644 index 00000000..6d104946 --- /dev/null +++ b/src/resources/icons/godot/StatusIndicator.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StatusIndicator.svg.import b/src/resources/icons/godot/StatusIndicator.svg.import new file mode 100644 index 00000000..d4c923e0 --- /dev/null +++ b/src/resources/icons/godot/StatusIndicator.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c21635pcjgk03" +path="res://.godot/imported/StatusIndicator.svg-0e0ed1f53183927d4dc029ecc19de5dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StatusIndicator.svg" +dest_files=["res://.godot/imported/StatusIndicator.svg-0e0ed1f53183927d4dc029ecc19de5dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StatusSuccess.svg b/src/resources/icons/godot/StatusSuccess.svg new file mode 100644 index 00000000..060ce27f --- /dev/null +++ b/src/resources/icons/godot/StatusSuccess.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StatusSuccess.svg.import b/src/resources/icons/godot/StatusSuccess.svg.import new file mode 100644 index 00000000..e011059b --- /dev/null +++ b/src/resources/icons/godot/StatusSuccess.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhu87jo03jl0v" +path="res://.godot/imported/StatusSuccess.svg-686174fd31f3e71700e00cdd29015009.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StatusSuccess.svg" +dest_files=["res://.godot/imported/StatusSuccess.svg-686174fd31f3e71700e00cdd29015009.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StatusWarning.svg b/src/resources/icons/godot/StatusWarning.svg new file mode 100644 index 00000000..7ab8e1b6 --- /dev/null +++ b/src/resources/icons/godot/StatusWarning.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StatusWarning.svg.import b/src/resources/icons/godot/StatusWarning.svg.import new file mode 100644 index 00000000..def134ea --- /dev/null +++ b/src/resources/icons/godot/StatusWarning.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baa2eqw1auni0" +path="res://.godot/imported/StatusWarning.svg-bf28d9a4797c6a4375c001651822dc1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StatusWarning.svg" +dest_files=["res://.godot/imported/StatusWarning.svg-bf28d9a4797c6a4375c001651822dc1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Stop.svg b/src/resources/icons/godot/Stop.svg new file mode 100644 index 00000000..e6f97841 --- /dev/null +++ b/src/resources/icons/godot/Stop.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Stop.svg.import b/src/resources/icons/godot/Stop.svg.import new file mode 100644 index 00000000..07af33de --- /dev/null +++ b/src/resources/icons/godot/Stop.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dofeyacn5yiji" +path="res://.godot/imported/Stop.svg-81aedf8a02920a271e3387ffda0e6515.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Stop.svg" +dest_files=["res://.godot/imported/Stop.svg-81aedf8a02920a271e3387ffda0e6515.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Stretch.svg b/src/resources/icons/godot/Stretch.svg new file mode 100644 index 00000000..a0924e30 --- /dev/null +++ b/src/resources/icons/godot/Stretch.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Stretch.svg.import b/src/resources/icons/godot/Stretch.svg.import new file mode 100644 index 00000000..fd8eb6f7 --- /dev/null +++ b/src/resources/icons/godot/Stretch.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daxd5cv8fakqr" +path="res://.godot/imported/Stretch.svg-7578426d74f9d4b9aca06a8f3f1969d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Stretch.svg" +dest_files=["res://.godot/imported/Stretch.svg-7578426d74f9d4b9aca06a8f3f1969d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/String.svg b/src/resources/icons/godot/String.svg new file mode 100644 index 00000000..9e25109e --- /dev/null +++ b/src/resources/icons/godot/String.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/String.svg.import b/src/resources/icons/godot/String.svg.import new file mode 100644 index 00000000..f39802b2 --- /dev/null +++ b/src/resources/icons/godot/String.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b271x5ab8hl7b" +path="res://.godot/imported/String.svg-98b21ae0ddb9c7ff051ddf3767b93411.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/String.svg" +dest_files=["res://.godot/imported/String.svg-98b21ae0ddb9c7ff051ddf3767b93411.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StringName.svg b/src/resources/icons/godot/StringName.svg new file mode 100644 index 00000000..e8d54df8 --- /dev/null +++ b/src/resources/icons/godot/StringName.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StringName.svg.import b/src/resources/icons/godot/StringName.svg.import new file mode 100644 index 00000000..974a5771 --- /dev/null +++ b/src/resources/icons/godot/StringName.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcoat63bktyns" +path="res://.godot/imported/StringName.svg-6d1ecb15ce65b39e3cf81da0bb5832a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StringName.svg" +dest_files=["res://.godot/imported/StringName.svg-6d1ecb15ce65b39e3cf81da0bb5832a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StyleBoxEmpty.svg b/src/resources/icons/godot/StyleBoxEmpty.svg new file mode 100644 index 00000000..8038faca --- /dev/null +++ b/src/resources/icons/godot/StyleBoxEmpty.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StyleBoxEmpty.svg.import b/src/resources/icons/godot/StyleBoxEmpty.svg.import new file mode 100644 index 00000000..4b749bdf --- /dev/null +++ b/src/resources/icons/godot/StyleBoxEmpty.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beti7d4cbcv03" +path="res://.godot/imported/StyleBoxEmpty.svg-32fdb74be06d6964c11ad8ee42aee0f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StyleBoxEmpty.svg" +dest_files=["res://.godot/imported/StyleBoxEmpty.svg-32fdb74be06d6964c11ad8ee42aee0f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StyleBoxFlat.svg b/src/resources/icons/godot/StyleBoxFlat.svg new file mode 100644 index 00000000..e6462e93 --- /dev/null +++ b/src/resources/icons/godot/StyleBoxFlat.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StyleBoxFlat.svg.import b/src/resources/icons/godot/StyleBoxFlat.svg.import new file mode 100644 index 00000000..d75f4189 --- /dev/null +++ b/src/resources/icons/godot/StyleBoxFlat.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biegqnwmcuxo3" +path="res://.godot/imported/StyleBoxFlat.svg-0ec5d49773426471dc781863eefea6a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StyleBoxFlat.svg" +dest_files=["res://.godot/imported/StyleBoxFlat.svg-0ec5d49773426471dc781863eefea6a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StyleBoxGrid.svg b/src/resources/icons/godot/StyleBoxGrid.svg new file mode 100644 index 00000000..9d0b3a66 --- /dev/null +++ b/src/resources/icons/godot/StyleBoxGrid.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StyleBoxGrid.svg.import b/src/resources/icons/godot/StyleBoxGrid.svg.import new file mode 100644 index 00000000..3f49a2f9 --- /dev/null +++ b/src/resources/icons/godot/StyleBoxGrid.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdf21072juiw1" +path="res://.godot/imported/StyleBoxGrid.svg-a48faecbd2fd028d3a2389ca22010d1e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StyleBoxGrid.svg" +dest_files=["res://.godot/imported/StyleBoxGrid.svg-a48faecbd2fd028d3a2389ca22010d1e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StyleBoxLine.svg b/src/resources/icons/godot/StyleBoxLine.svg new file mode 100644 index 00000000..41383a1d --- /dev/null +++ b/src/resources/icons/godot/StyleBoxLine.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StyleBoxLine.svg.import b/src/resources/icons/godot/StyleBoxLine.svg.import new file mode 100644 index 00000000..4ef84f9f --- /dev/null +++ b/src/resources/icons/godot/StyleBoxLine.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1xt3gsftq6fx" +path="res://.godot/imported/StyleBoxLine.svg-e2db9251d380eb0189bd3748b7d03378.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StyleBoxLine.svg" +dest_files=["res://.godot/imported/StyleBoxLine.svg-e2db9251d380eb0189bd3748b7d03378.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/StyleBoxTexture.svg b/src/resources/icons/godot/StyleBoxTexture.svg new file mode 100644 index 00000000..13cef975 --- /dev/null +++ b/src/resources/icons/godot/StyleBoxTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/StyleBoxTexture.svg.import b/src/resources/icons/godot/StyleBoxTexture.svg.import new file mode 100644 index 00000000..20fab699 --- /dev/null +++ b/src/resources/icons/godot/StyleBoxTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmy78vrrjom8j" +path="res://.godot/imported/StyleBoxTexture.svg-4ed874ffaefd1b85026d0ded89ed0e80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/StyleBoxTexture.svg" +dest_files=["res://.godot/imported/StyleBoxTexture.svg-4ed874ffaefd1b85026d0ded89ed0e80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SubViewport.svg b/src/resources/icons/godot/SubViewport.svg new file mode 100644 index 00000000..27dc3a20 --- /dev/null +++ b/src/resources/icons/godot/SubViewport.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SubViewport.svg.import b/src/resources/icons/godot/SubViewport.svg.import new file mode 100644 index 00000000..7a249b54 --- /dev/null +++ b/src/resources/icons/godot/SubViewport.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpysqngyy0ick" +path="res://.godot/imported/SubViewport.svg-c5178506064fa2a9c39d210d8f672b0a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SubViewport.svg" +dest_files=["res://.godot/imported/SubViewport.svg-c5178506064fa2a9c39d210d8f672b0a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SubViewportContainer.svg b/src/resources/icons/godot/SubViewportContainer.svg new file mode 100644 index 00000000..4142bfb2 --- /dev/null +++ b/src/resources/icons/godot/SubViewportContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SubViewportContainer.svg.import b/src/resources/icons/godot/SubViewportContainer.svg.import new file mode 100644 index 00000000..6fc7eda3 --- /dev/null +++ b/src/resources/icons/godot/SubViewportContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfw5rjvi4j8fg" +path="res://.godot/imported/SubViewportContainer.svg-5b415c82d126f6858efa3ba44c645a3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SubViewportContainer.svg" +dest_files=["res://.godot/imported/SubViewportContainer.svg-5b415c82d126f6858efa3ba44c645a3e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Suspend.svg b/src/resources/icons/godot/Suspend.svg new file mode 100644 index 00000000..daba9c27 --- /dev/null +++ b/src/resources/icons/godot/Suspend.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Suspend.svg.import b/src/resources/icons/godot/Suspend.svg.import new file mode 100644 index 00000000..99539e9b --- /dev/null +++ b/src/resources/icons/godot/Suspend.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0a7uro31mg3y" +path="res://.godot/imported/Suspend.svg-6d8a3c67eb0b4aaec590d491d6b3ce6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Suspend.svg" +dest_files=["res://.godot/imported/Suspend.svg-6d8a3c67eb0b4aaec590d491d6b3ce6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SyntaxHighlighter.svg b/src/resources/icons/godot/SyntaxHighlighter.svg new file mode 100644 index 00000000..a4a399d3 --- /dev/null +++ b/src/resources/icons/godot/SyntaxHighlighter.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SyntaxHighlighter.svg.import b/src/resources/icons/godot/SyntaxHighlighter.svg.import new file mode 100644 index 00000000..9480b792 --- /dev/null +++ b/src/resources/icons/godot/SyntaxHighlighter.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp1kmr3vtnmtp" +path="res://.godot/imported/SyntaxHighlighter.svg-a3fec45931a382df469074fbc1e21e7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SyntaxHighlighter.svg" +dest_files=["res://.godot/imported/SyntaxHighlighter.svg-a3fec45931a382df469074fbc1e21e7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/SystemFont.svg b/src/resources/icons/godot/SystemFont.svg new file mode 100644 index 00000000..bd9f79cc --- /dev/null +++ b/src/resources/icons/godot/SystemFont.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/SystemFont.svg.import b/src/resources/icons/godot/SystemFont.svg.import new file mode 100644 index 00000000..3a2d0b0f --- /dev/null +++ b/src/resources/icons/godot/SystemFont.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4gk11wf2vbfu" +path="res://.godot/imported/SystemFont.svg-5ff57761bc6948a2bf109ea304ea75f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/SystemFont.svg" +dest_files=["res://.godot/imported/SystemFont.svg-5ff57761bc6948a2bf109ea304ea75f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TabBar.svg b/src/resources/icons/godot/TabBar.svg new file mode 100644 index 00000000..3fc3f0b9 --- /dev/null +++ b/src/resources/icons/godot/TabBar.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TabBar.svg.import b/src/resources/icons/godot/TabBar.svg.import new file mode 100644 index 00000000..8ff023e4 --- /dev/null +++ b/src/resources/icons/godot/TabBar.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dywvmm7csymx6" +path="res://.godot/imported/TabBar.svg-a353ff3958d480a6907763b7ad09aff9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TabBar.svg" +dest_files=["res://.godot/imported/TabBar.svg-a353ff3958d480a6907763b7ad09aff9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TabContainer.svg b/src/resources/icons/godot/TabContainer.svg new file mode 100644 index 00000000..8862e7fc --- /dev/null +++ b/src/resources/icons/godot/TabContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TabContainer.svg.import b/src/resources/icons/godot/TabContainer.svg.import new file mode 100644 index 00000000..83b20fdb --- /dev/null +++ b/src/resources/icons/godot/TabContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmreoe3jvgc2o" +path="res://.godot/imported/TabContainer.svg-eeeea94c33a9afb2be1e204b57ff3c22.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TabContainer.svg" +dest_files=["res://.godot/imported/TabContainer.svg-eeeea94c33a9afb2be1e204b57ff3c22.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Terminal.svg b/src/resources/icons/godot/Terminal.svg new file mode 100644 index 00000000..5ec55b09 --- /dev/null +++ b/src/resources/icons/godot/Terminal.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Terminal.svg.import b/src/resources/icons/godot/Terminal.svg.import new file mode 100644 index 00000000..c847c5b1 --- /dev/null +++ b/src/resources/icons/godot/Terminal.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqtpyrcxdy2i3" +path="res://.godot/imported/Terminal.svg-e2821aff8a19ca69463caee638a8c7a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Terminal.svg" +dest_files=["res://.godot/imported/Terminal.svg-e2821aff8a19ca69463caee638a8c7a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TerrainConnect.svg b/src/resources/icons/godot/TerrainConnect.svg new file mode 100644 index 00000000..48d27e8f --- /dev/null +++ b/src/resources/icons/godot/TerrainConnect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TerrainConnect.svg.import b/src/resources/icons/godot/TerrainConnect.svg.import new file mode 100644 index 00000000..f8552c30 --- /dev/null +++ b/src/resources/icons/godot/TerrainConnect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dasqimuqo1cjv" +path="res://.godot/imported/TerrainConnect.svg-f41f0974762742be1d7053661948886a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TerrainConnect.svg" +dest_files=["res://.godot/imported/TerrainConnect.svg-f41f0974762742be1d7053661948886a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TerrainMatchCorners.svg b/src/resources/icons/godot/TerrainMatchCorners.svg new file mode 100644 index 00000000..ef6373f4 --- /dev/null +++ b/src/resources/icons/godot/TerrainMatchCorners.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TerrainMatchCorners.svg.import b/src/resources/icons/godot/TerrainMatchCorners.svg.import new file mode 100644 index 00000000..f1833fa6 --- /dev/null +++ b/src/resources/icons/godot/TerrainMatchCorners.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhs4h7atiw3oa" +path="res://.godot/imported/TerrainMatchCorners.svg-b169004ffd6bf8636fcd982d24527c32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TerrainMatchCorners.svg" +dest_files=["res://.godot/imported/TerrainMatchCorners.svg-b169004ffd6bf8636fcd982d24527c32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TerrainMatchCornersAndSides.svg b/src/resources/icons/godot/TerrainMatchCornersAndSides.svg new file mode 100644 index 00000000..08e93b31 --- /dev/null +++ b/src/resources/icons/godot/TerrainMatchCornersAndSides.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TerrainMatchCornersAndSides.svg.import b/src/resources/icons/godot/TerrainMatchCornersAndSides.svg.import new file mode 100644 index 00000000..970adac4 --- /dev/null +++ b/src/resources/icons/godot/TerrainMatchCornersAndSides.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkvcsmtuiugen" +path="res://.godot/imported/TerrainMatchCornersAndSides.svg-e7848e7a1714807b878c04f8acc41033.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TerrainMatchCornersAndSides.svg" +dest_files=["res://.godot/imported/TerrainMatchCornersAndSides.svg-e7848e7a1714807b878c04f8acc41033.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TerrainMatchSides.svg b/src/resources/icons/godot/TerrainMatchSides.svg new file mode 100644 index 00000000..2c02c739 --- /dev/null +++ b/src/resources/icons/godot/TerrainMatchSides.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TerrainMatchSides.svg.import b/src/resources/icons/godot/TerrainMatchSides.svg.import new file mode 100644 index 00000000..7f86bc10 --- /dev/null +++ b/src/resources/icons/godot/TerrainMatchSides.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnutdf5pe3tym" +path="res://.godot/imported/TerrainMatchSides.svg-a928c01791c6985a905b7a6bd998c079.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TerrainMatchSides.svg" +dest_files=["res://.godot/imported/TerrainMatchSides.svg-a928c01791c6985a905b7a6bd998c079.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TerrainPath.svg b/src/resources/icons/godot/TerrainPath.svg new file mode 100644 index 00000000..251af544 --- /dev/null +++ b/src/resources/icons/godot/TerrainPath.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TerrainPath.svg.import b/src/resources/icons/godot/TerrainPath.svg.import new file mode 100644 index 00000000..77382c17 --- /dev/null +++ b/src/resources/icons/godot/TerrainPath.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buowynpdt7l7k" +path="res://.godot/imported/TerrainPath.svg-4f7f2ce4ed91ade8b08a0d8c76226bb5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TerrainPath.svg" +dest_files=["res://.godot/imported/TerrainPath.svg-4f7f2ce4ed91ade8b08a0d8c76226bb5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TextEdit.svg b/src/resources/icons/godot/TextEdit.svg new file mode 100644 index 00000000..85d64f6f --- /dev/null +++ b/src/resources/icons/godot/TextEdit.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TextEdit.svg.import b/src/resources/icons/godot/TextEdit.svg.import new file mode 100644 index 00000000..7be69efe --- /dev/null +++ b/src/resources/icons/godot/TextEdit.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvk3y823nnbhm" +path="res://.godot/imported/TextEdit.svg-acc7de5adc245542baeff388919002e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TextEdit.svg" +dest_files=["res://.godot/imported/TextEdit.svg-acc7de5adc245542baeff388919002e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TextEditorPlay.svg b/src/resources/icons/godot/TextEditorPlay.svg new file mode 100644 index 00000000..cea985b8 --- /dev/null +++ b/src/resources/icons/godot/TextEditorPlay.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TextEditorPlay.svg.import b/src/resources/icons/godot/TextEditorPlay.svg.import new file mode 100644 index 00000000..aede602d --- /dev/null +++ b/src/resources/icons/godot/TextEditorPlay.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs4ht3mcgbhwa" +path="res://.godot/imported/TextEditorPlay.svg-9b391b5027538224a8a642d9ca75783a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TextEditorPlay.svg" +dest_files=["res://.godot/imported/TextEditorPlay.svg-9b391b5027538224a8a642d9ca75783a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TextFile.svg b/src/resources/icons/godot/TextFile.svg new file mode 100644 index 00000000..dddc314c --- /dev/null +++ b/src/resources/icons/godot/TextFile.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TextFile.svg.import b/src/resources/icons/godot/TextFile.svg.import new file mode 100644 index 00000000..d16c2026 --- /dev/null +++ b/src/resources/icons/godot/TextFile.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnn4fcsfe65qv" +path="res://.godot/imported/TextFile.svg-1d649d473f48d9a4e307337d375a0102.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TextFile.svg" +dest_files=["res://.godot/imported/TextFile.svg-1d649d473f48d9a4e307337d375a0102.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TextMesh.svg b/src/resources/icons/godot/TextMesh.svg new file mode 100644 index 00000000..e5b6e3ba --- /dev/null +++ b/src/resources/icons/godot/TextMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TextMesh.svg.import b/src/resources/icons/godot/TextMesh.svg.import new file mode 100644 index 00000000..0182de2b --- /dev/null +++ b/src/resources/icons/godot/TextMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://badtimhd5km7t" +path="res://.godot/imported/TextMesh.svg-3acb4f83fdba65ff50d1ca6e714bfae4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TextMesh.svg" +dest_files=["res://.godot/imported/TextMesh.svg-3acb4f83fdba65ff50d1ca6e714bfae4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Texture2D.svg b/src/resources/icons/godot/Texture2D.svg new file mode 100644 index 00000000..8fe5f834 --- /dev/null +++ b/src/resources/icons/godot/Texture2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Texture2D.svg.import b/src/resources/icons/godot/Texture2D.svg.import new file mode 100644 index 00000000..2f925f6e --- /dev/null +++ b/src/resources/icons/godot/Texture2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yo80eesxlgx1" +path="res://.godot/imported/Texture2D.svg-b494b1170753b139afdf955d01ca1368.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Texture2D.svg" +dest_files=["res://.godot/imported/Texture2D.svg-b494b1170753b139afdf955d01ca1368.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Texture2DArray.svg b/src/resources/icons/godot/Texture2DArray.svg new file mode 100644 index 00000000..3b63e0f2 --- /dev/null +++ b/src/resources/icons/godot/Texture2DArray.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Texture2DArray.svg.import b/src/resources/icons/godot/Texture2DArray.svg.import new file mode 100644 index 00000000..55992145 --- /dev/null +++ b/src/resources/icons/godot/Texture2DArray.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch0qf2t85qmnn" +path="res://.godot/imported/Texture2DArray.svg-af2798cf7f550d960395e5db3c172871.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Texture2DArray.svg" +dest_files=["res://.godot/imported/Texture2DArray.svg-af2798cf7f550d960395e5db3c172871.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Texture3D.svg b/src/resources/icons/godot/Texture3D.svg new file mode 100644 index 00000000..18f476b5 --- /dev/null +++ b/src/resources/icons/godot/Texture3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Texture3D.svg.import b/src/resources/icons/godot/Texture3D.svg.import new file mode 100644 index 00000000..5eecd894 --- /dev/null +++ b/src/resources/icons/godot/Texture3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqj6dcdm11saw" +path="res://.godot/imported/Texture3D.svg-06480f23b2db82bae14916caefe58989.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Texture3D.svg" +dest_files=["res://.godot/imported/Texture3D.svg-06480f23b2db82bae14916caefe58989.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TextureButton.svg b/src/resources/icons/godot/TextureButton.svg new file mode 100644 index 00000000..f5838884 --- /dev/null +++ b/src/resources/icons/godot/TextureButton.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TextureButton.svg.import b/src/resources/icons/godot/TextureButton.svg.import new file mode 100644 index 00000000..e16345bb --- /dev/null +++ b/src/resources/icons/godot/TextureButton.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4u5qqnrunrk1" +path="res://.godot/imported/TextureButton.svg-bcda289c0ed7c3f4330706d9fb2eddfc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TextureButton.svg" +dest_files=["res://.godot/imported/TextureButton.svg-bcda289c0ed7c3f4330706d9fb2eddfc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TexturePreviewChannels.svg b/src/resources/icons/godot/TexturePreviewChannels.svg new file mode 100644 index 00000000..8f66b6fc --- /dev/null +++ b/src/resources/icons/godot/TexturePreviewChannels.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TexturePreviewChannels.svg.import b/src/resources/icons/godot/TexturePreviewChannels.svg.import new file mode 100644 index 00000000..6087e546 --- /dev/null +++ b/src/resources/icons/godot/TexturePreviewChannels.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bheffx1oftdu2" +path="res://.godot/imported/TexturePreviewChannels.svg-a804ac4c9c4c010903d5ddbdecc22a6c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TexturePreviewChannels.svg" +dest_files=["res://.godot/imported/TexturePreviewChannels.svg-a804ac4c9c4c010903d5ddbdecc22a6c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TextureProgressBar.svg b/src/resources/icons/godot/TextureProgressBar.svg new file mode 100644 index 00000000..561334af --- /dev/null +++ b/src/resources/icons/godot/TextureProgressBar.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TextureProgressBar.svg.import b/src/resources/icons/godot/TextureProgressBar.svg.import new file mode 100644 index 00000000..a98c5d88 --- /dev/null +++ b/src/resources/icons/godot/TextureProgressBar.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f0r0nik0nov0" +path="res://.godot/imported/TextureProgressBar.svg-d44ac6562a078e640210e2abe10c68ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TextureProgressBar.svg" +dest_files=["res://.godot/imported/TextureProgressBar.svg-d44ac6562a078e640210e2abe10c68ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TextureRect.svg b/src/resources/icons/godot/TextureRect.svg new file mode 100644 index 00000000..af88a4ed --- /dev/null +++ b/src/resources/icons/godot/TextureRect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TextureRect.svg.import b/src/resources/icons/godot/TextureRect.svg.import new file mode 100644 index 00000000..4183ced1 --- /dev/null +++ b/src/resources/icons/godot/TextureRect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhgq7t26laha7" +path="res://.godot/imported/TextureRect.svg-36545888028d9854c53e25edae70d277.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TextureRect.svg" +dest_files=["res://.godot/imported/TextureRect.svg-36545888028d9854c53e25edae70d277.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Theme.svg b/src/resources/icons/godot/Theme.svg new file mode 100644 index 00000000..fb93917a --- /dev/null +++ b/src/resources/icons/godot/Theme.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Theme.svg.import b/src/resources/icons/godot/Theme.svg.import new file mode 100644 index 00000000..4d50d669 --- /dev/null +++ b/src/resources/icons/godot/Theme.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq5eb58irnjex" +path="res://.godot/imported/Theme.svg-994378d00fe9cf22fe8f19241fdf39b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Theme.svg" +dest_files=["res://.godot/imported/Theme.svg-994378d00fe9cf22fe8f19241fdf39b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ThemeDeselectAll.svg b/src/resources/icons/godot/ThemeDeselectAll.svg new file mode 100644 index 00000000..81335c53 --- /dev/null +++ b/src/resources/icons/godot/ThemeDeselectAll.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ThemeDeselectAll.svg.import b/src/resources/icons/godot/ThemeDeselectAll.svg.import new file mode 100644 index 00000000..d7781b6a --- /dev/null +++ b/src/resources/icons/godot/ThemeDeselectAll.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3mj15h2xbv8l" +path="res://.godot/imported/ThemeDeselectAll.svg-79df67b164a04858fcf1240796973394.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ThemeDeselectAll.svg" +dest_files=["res://.godot/imported/ThemeDeselectAll.svg-79df67b164a04858fcf1240796973394.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ThemeDock.svg b/src/resources/icons/godot/ThemeDock.svg new file mode 100644 index 00000000..25de7aea --- /dev/null +++ b/src/resources/icons/godot/ThemeDock.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ThemeDock.svg.import b/src/resources/icons/godot/ThemeDock.svg.import new file mode 100644 index 00000000..e02e33d4 --- /dev/null +++ b/src/resources/icons/godot/ThemeDock.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6mj8cyhrocqi" +path="res://.godot/imported/ThemeDock.svg-3337c3f953c88de3d91f45529534bd42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ThemeDock.svg" +dest_files=["res://.godot/imported/ThemeDock.svg-3337c3f953c88de3d91f45529534bd42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ThemeRemoveAllItems.svg b/src/resources/icons/godot/ThemeRemoveAllItems.svg new file mode 100644 index 00000000..b4a6f93c --- /dev/null +++ b/src/resources/icons/godot/ThemeRemoveAllItems.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ThemeRemoveAllItems.svg.import b/src/resources/icons/godot/ThemeRemoveAllItems.svg.import new file mode 100644 index 00000000..738b07ff --- /dev/null +++ b/src/resources/icons/godot/ThemeRemoveAllItems.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqkcdphav0g2j" +path="res://.godot/imported/ThemeRemoveAllItems.svg-2d65ba0c60c6fbf8595ef765258ff4f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ThemeRemoveAllItems.svg" +dest_files=["res://.godot/imported/ThemeRemoveAllItems.svg-2d65ba0c60c6fbf8595ef765258ff4f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ThemeRemoveCustomItems.svg b/src/resources/icons/godot/ThemeRemoveCustomItems.svg new file mode 100644 index 00000000..3aadcb5b --- /dev/null +++ b/src/resources/icons/godot/ThemeRemoveCustomItems.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ThemeRemoveCustomItems.svg.import b/src/resources/icons/godot/ThemeRemoveCustomItems.svg.import new file mode 100644 index 00000000..81db6e35 --- /dev/null +++ b/src/resources/icons/godot/ThemeRemoveCustomItems.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgtt0no8gutkf" +path="res://.godot/imported/ThemeRemoveCustomItems.svg-b84a4005923c340a70790bf59bdb9579.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ThemeRemoveCustomItems.svg" +dest_files=["res://.godot/imported/ThemeRemoveCustomItems.svg-b84a4005923c340a70790bf59bdb9579.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ThemeSelectAll.svg b/src/resources/icons/godot/ThemeSelectAll.svg new file mode 100644 index 00000000..9e49f0b2 --- /dev/null +++ b/src/resources/icons/godot/ThemeSelectAll.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ThemeSelectAll.svg.import b/src/resources/icons/godot/ThemeSelectAll.svg.import new file mode 100644 index 00000000..65855422 --- /dev/null +++ b/src/resources/icons/godot/ThemeSelectAll.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0rqxg8ydl6o8" +path="res://.godot/imported/ThemeSelectAll.svg-b87634deb5ca462299b19f438dbd0cd8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ThemeSelectAll.svg" +dest_files=["res://.godot/imported/ThemeSelectAll.svg-b87634deb5ca462299b19f438dbd0cd8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ThemeSelectFull.svg b/src/resources/icons/godot/ThemeSelectFull.svg new file mode 100644 index 00000000..3eba826f --- /dev/null +++ b/src/resources/icons/godot/ThemeSelectFull.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ThemeSelectFull.svg.import b/src/resources/icons/godot/ThemeSelectFull.svg.import new file mode 100644 index 00000000..c40dec70 --- /dev/null +++ b/src/resources/icons/godot/ThemeSelectFull.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdyeneahpt38o" +path="res://.godot/imported/ThemeSelectFull.svg-051968383a3ec7a4ecea1155537dd7aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ThemeSelectFull.svg" +dest_files=["res://.godot/imported/ThemeSelectFull.svg-051968383a3ec7a4ecea1155537dd7aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ThumbnailWait.svg b/src/resources/icons/godot/ThumbnailWait.svg new file mode 100644 index 00000000..34adf05c --- /dev/null +++ b/src/resources/icons/godot/ThumbnailWait.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ThumbnailWait.svg.import b/src/resources/icons/godot/ThumbnailWait.svg.import new file mode 100644 index 00000000..5dddcecc --- /dev/null +++ b/src/resources/icons/godot/ThumbnailWait.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beqoyxogt0bm2" +path="res://.godot/imported/ThumbnailWait.svg-534ad06ec43390fc3d37e172bab8b62f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ThumbnailWait.svg" +dest_files=["res://.godot/imported/ThumbnailWait.svg-534ad06ec43390fc3d37e172bab8b62f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ThumbsUp.svg b/src/resources/icons/godot/ThumbsUp.svg new file mode 100644 index 00000000..50012270 --- /dev/null +++ b/src/resources/icons/godot/ThumbsUp.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ThumbsUp.svg.import b/src/resources/icons/godot/ThumbsUp.svg.import new file mode 100644 index 00000000..102af6d0 --- /dev/null +++ b/src/resources/icons/godot/ThumbsUp.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm01ueafqc88x" +path="res://.godot/imported/ThumbsUp.svg-3aaee5e8255cd924cd03048b8e86f715.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ThumbsUp.svg" +dest_files=["res://.godot/imported/ThumbsUp.svg-3aaee5e8255cd924cd03048b8e86f715.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TileChecked.svg b/src/resources/icons/godot/TileChecked.svg new file mode 100644 index 00000000..36d57313 --- /dev/null +++ b/src/resources/icons/godot/TileChecked.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TileChecked.svg.import b/src/resources/icons/godot/TileChecked.svg.import new file mode 100644 index 00000000..4b45854a --- /dev/null +++ b/src/resources/icons/godot/TileChecked.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://il8xh7pksppw" +path="res://.godot/imported/TileChecked.svg-9d002ad7604a261169f908d5c8c88223.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TileChecked.svg" +dest_files=["res://.godot/imported/TileChecked.svg-9d002ad7604a261169f908d5c8c88223.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TileMap.svg b/src/resources/icons/godot/TileMap.svg new file mode 100644 index 00000000..2912b932 --- /dev/null +++ b/src/resources/icons/godot/TileMap.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TileMap.svg.import b/src/resources/icons/godot/TileMap.svg.import new file mode 100644 index 00000000..ea268583 --- /dev/null +++ b/src/resources/icons/godot/TileMap.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3iy1sumbqp0u" +path="res://.godot/imported/TileMap.svg-0f7283e8b190694ed6210d11c8cfdb82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TileMap.svg" +dest_files=["res://.godot/imported/TileMap.svg-0f7283e8b190694ed6210d11c8cfdb82.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TileMapDock.svg b/src/resources/icons/godot/TileMapDock.svg new file mode 100644 index 00000000..d1fdc3ff --- /dev/null +++ b/src/resources/icons/godot/TileMapDock.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TileMapDock.svg.import b/src/resources/icons/godot/TileMapDock.svg.import new file mode 100644 index 00000000..6645243a --- /dev/null +++ b/src/resources/icons/godot/TileMapDock.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://542t1q0wq771" +path="res://.godot/imported/TileMapDock.svg-720dee7ef531ddfd81df1265e773c756.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TileMapDock.svg" +dest_files=["res://.godot/imported/TileMapDock.svg-720dee7ef531ddfd81df1265e773c756.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TileMapHighlightSelected.svg b/src/resources/icons/godot/TileMapHighlightSelected.svg new file mode 100644 index 00000000..b99dc37b --- /dev/null +++ b/src/resources/icons/godot/TileMapHighlightSelected.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TileMapHighlightSelected.svg.import b/src/resources/icons/godot/TileMapHighlightSelected.svg.import new file mode 100644 index 00000000..1d0182f2 --- /dev/null +++ b/src/resources/icons/godot/TileMapHighlightSelected.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8w0fsxnnpeyr" +path="res://.godot/imported/TileMapHighlightSelected.svg-c3e1098a959babf22943cb9ca6be9e3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TileMapHighlightSelected.svg" +dest_files=["res://.godot/imported/TileMapHighlightSelected.svg-c3e1098a959babf22943cb9ca6be9e3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TileMapLayer.svg b/src/resources/icons/godot/TileMapLayer.svg new file mode 100644 index 00000000..2c4eae6c --- /dev/null +++ b/src/resources/icons/godot/TileMapLayer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TileMapLayer.svg.import b/src/resources/icons/godot/TileMapLayer.svg.import new file mode 100644 index 00000000..74439686 --- /dev/null +++ b/src/resources/icons/godot/TileMapLayer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by3wd7ram3jhk" +path="res://.godot/imported/TileMapLayer.svg-85228b2d2d22f06860612c0d63311c9c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TileMapLayer.svg" +dest_files=["res://.godot/imported/TileMapLayer.svg-85228b2d2d22f06860612c0d63311c9c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TileSelection.svg b/src/resources/icons/godot/TileSelection.svg new file mode 100644 index 00000000..b1175bc3 --- /dev/null +++ b/src/resources/icons/godot/TileSelection.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TileSelection.svg.import b/src/resources/icons/godot/TileSelection.svg.import new file mode 100644 index 00000000..93dcaf6e --- /dev/null +++ b/src/resources/icons/godot/TileSelection.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckytrmhqan015" +path="res://.godot/imported/TileSelection.svg-ce2873802c858bc6bb1bde4911e3dca1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TileSelection.svg" +dest_files=["res://.godot/imported/TileSelection.svg-ce2873802c858bc6bb1bde4911e3dca1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TileSet.svg b/src/resources/icons/godot/TileSet.svg new file mode 100644 index 00000000..a3d2685d --- /dev/null +++ b/src/resources/icons/godot/TileSet.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TileSet.svg.import b/src/resources/icons/godot/TileSet.svg.import new file mode 100644 index 00000000..c8a36b25 --- /dev/null +++ b/src/resources/icons/godot/TileSet.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1hqfo5bka0wi" +path="res://.godot/imported/TileSet.svg-2c2fc352c1a1a7dde783cb9c0e4d3b42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TileSet.svg" +dest_files=["res://.godot/imported/TileSet.svg-2c2fc352c1a1a7dde783cb9c0e4d3b42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TileUnchecked.svg b/src/resources/icons/godot/TileUnchecked.svg new file mode 100644 index 00000000..def0ddb3 --- /dev/null +++ b/src/resources/icons/godot/TileUnchecked.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TileUnchecked.svg.import b/src/resources/icons/godot/TileUnchecked.svg.import new file mode 100644 index 00000000..d73e325d --- /dev/null +++ b/src/resources/icons/godot/TileUnchecked.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xg4hqd3ur50a" +path="res://.godot/imported/TileUnchecked.svg-b48ec7bc5f975a2216c10d53b29ee99a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TileUnchecked.svg" +dest_files=["res://.godot/imported/TileUnchecked.svg-b48ec7bc5f975a2216c10d53b29ee99a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Time.svg b/src/resources/icons/godot/Time.svg new file mode 100644 index 00000000..cab5fec0 --- /dev/null +++ b/src/resources/icons/godot/Time.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Time.svg.import b/src/resources/icons/godot/Time.svg.import new file mode 100644 index 00000000..3fa4db76 --- /dev/null +++ b/src/resources/icons/godot/Time.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmqj1sh7pxq15" +path="res://.godot/imported/Time.svg-7261d29f40e2a2de12cb709cd0c1b0d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Time.svg" +dest_files=["res://.godot/imported/Time.svg-7261d29f40e2a2de12cb709cd0c1b0d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TimelineHandle.svg b/src/resources/icons/godot/TimelineHandle.svg new file mode 100644 index 00000000..01321db1 --- /dev/null +++ b/src/resources/icons/godot/TimelineHandle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TimelineHandle.svg.import b/src/resources/icons/godot/TimelineHandle.svg.import new file mode 100644 index 00000000..0b9ccda6 --- /dev/null +++ b/src/resources/icons/godot/TimelineHandle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmp11mer7plci" +path="res://.godot/imported/TimelineHandle.svg-387e07d581cdac7a9ea9ce854726cafc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TimelineHandle.svg" +dest_files=["res://.godot/imported/TimelineHandle.svg-387e07d581cdac7a9ea9ce854726cafc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TimelineIndicator.svg b/src/resources/icons/godot/TimelineIndicator.svg new file mode 100644 index 00000000..c4364fe3 --- /dev/null +++ b/src/resources/icons/godot/TimelineIndicator.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TimelineIndicator.svg.import b/src/resources/icons/godot/TimelineIndicator.svg.import new file mode 100644 index 00000000..a9cce547 --- /dev/null +++ b/src/resources/icons/godot/TimelineIndicator.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cifqrifok132t" +path="res://.godot/imported/TimelineIndicator.svg-c91bb4fd7ff4f7914b3abddabf541e36.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TimelineIndicator.svg" +dest_files=["res://.godot/imported/TimelineIndicator.svg-c91bb4fd7ff4f7914b3abddabf541e36.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Timer.svg b/src/resources/icons/godot/Timer.svg new file mode 100644 index 00000000..840eab4c --- /dev/null +++ b/src/resources/icons/godot/Timer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Timer.svg.import b/src/resources/icons/godot/Timer.svg.import new file mode 100644 index 00000000..60034c8c --- /dev/null +++ b/src/resources/icons/godot/Timer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://11ed8wgfw1r8" +path="res://.godot/imported/Timer.svg-50e0e2e190e03b6b0f8e000060327511.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Timer.svg" +dest_files=["res://.godot/imported/Timer.svg-50e0e2e190e03b6b0f8e000060327511.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TitleBarLogo.svg b/src/resources/icons/godot/TitleBarLogo.svg new file mode 100644 index 00000000..8ca66bd8 --- /dev/null +++ b/src/resources/icons/godot/TitleBarLogo.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TitleBarLogo.svg.import b/src/resources/icons/godot/TitleBarLogo.svg.import new file mode 100644 index 00000000..1fc1471d --- /dev/null +++ b/src/resources/icons/godot/TitleBarLogo.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5vw27bo45buf" +path="res://.godot/imported/TitleBarLogo.svg-2b121b13d05c0410befa42092fd4828e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TitleBarLogo.svg" +dest_files=["res://.godot/imported/TitleBarLogo.svg-2b121b13d05c0410befa42092fd4828e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ToolAddNode.svg b/src/resources/icons/godot/ToolAddNode.svg new file mode 100644 index 00000000..6f357e31 --- /dev/null +++ b/src/resources/icons/godot/ToolAddNode.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ToolAddNode.svg.import b/src/resources/icons/godot/ToolAddNode.svg.import new file mode 100644 index 00000000..2d47019f --- /dev/null +++ b/src/resources/icons/godot/ToolAddNode.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v3cjumpotoin" +path="res://.godot/imported/ToolAddNode.svg-8f887282fe76c1bf8d32d2d30cef34e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ToolAddNode.svg" +dest_files=["res://.godot/imported/ToolAddNode.svg-8f887282fe76c1bf8d32d2d30cef34e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ToolBoneSelect.svg b/src/resources/icons/godot/ToolBoneSelect.svg new file mode 100644 index 00000000..57b0fcb1 --- /dev/null +++ b/src/resources/icons/godot/ToolBoneSelect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ToolBoneSelect.svg.import b/src/resources/icons/godot/ToolBoneSelect.svg.import new file mode 100644 index 00000000..dbb6d5a0 --- /dev/null +++ b/src/resources/icons/godot/ToolBoneSelect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5x4hsks1mumn" +path="res://.godot/imported/ToolBoneSelect.svg-8a32bb2a728f0abbdd5fb411dadbe8d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ToolBoneSelect.svg" +dest_files=["res://.godot/imported/ToolBoneSelect.svg-8a32bb2a728f0abbdd5fb411dadbe8d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ToolConnect.svg b/src/resources/icons/godot/ToolConnect.svg new file mode 100644 index 00000000..4d4a2fb5 --- /dev/null +++ b/src/resources/icons/godot/ToolConnect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ToolConnect.svg.import b/src/resources/icons/godot/ToolConnect.svg.import new file mode 100644 index 00000000..0df183fb --- /dev/null +++ b/src/resources/icons/godot/ToolConnect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqk75cjwq4l5l" +path="res://.godot/imported/ToolConnect.svg-ec021502a4d490f810f61a45e89a3ae0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ToolConnect.svg" +dest_files=["res://.godot/imported/ToolConnect.svg-ec021502a4d490f810f61a45e89a3ae0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ToolMove.svg b/src/resources/icons/godot/ToolMove.svg new file mode 100644 index 00000000..7a1d8ed1 --- /dev/null +++ b/src/resources/icons/godot/ToolMove.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ToolMove.svg.import b/src/resources/icons/godot/ToolMove.svg.import new file mode 100644 index 00000000..4ca97ae3 --- /dev/null +++ b/src/resources/icons/godot/ToolMove.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnaki3ul0507o" +path="res://.godot/imported/ToolMove.svg-e12f1d048bfcb7d10e69059276fb9c4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ToolMove.svg" +dest_files=["res://.godot/imported/ToolMove.svg-e12f1d048bfcb7d10e69059276fb9c4e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ToolPan.svg b/src/resources/icons/godot/ToolPan.svg new file mode 100644 index 00000000..4da37361 --- /dev/null +++ b/src/resources/icons/godot/ToolPan.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ToolPan.svg.import b/src/resources/icons/godot/ToolPan.svg.import new file mode 100644 index 00000000..e6583ebb --- /dev/null +++ b/src/resources/icons/godot/ToolPan.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hpgcp2unh0ns" +path="res://.godot/imported/ToolPan.svg-c12577464e00a80f0a16bc53e36a9d17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ToolPan.svg" +dest_files=["res://.godot/imported/ToolPan.svg-c12577464e00a80f0a16bc53e36a9d17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ToolRotate.svg b/src/resources/icons/godot/ToolRotate.svg new file mode 100644 index 00000000..315bc2c0 --- /dev/null +++ b/src/resources/icons/godot/ToolRotate.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ToolRotate.svg.import b/src/resources/icons/godot/ToolRotate.svg.import new file mode 100644 index 00000000..ee5ee597 --- /dev/null +++ b/src/resources/icons/godot/ToolRotate.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0eu0hptxnvjd" +path="res://.godot/imported/ToolRotate.svg-5d84503d03826fcc68ca635cef6e39bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ToolRotate.svg" +dest_files=["res://.godot/imported/ToolRotate.svg-5d84503d03826fcc68ca635cef6e39bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ToolScale.svg b/src/resources/icons/godot/ToolScale.svg new file mode 100644 index 00000000..379e50c7 --- /dev/null +++ b/src/resources/icons/godot/ToolScale.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ToolScale.svg.import b/src/resources/icons/godot/ToolScale.svg.import new file mode 100644 index 00000000..adf55e65 --- /dev/null +++ b/src/resources/icons/godot/ToolScale.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu6vtb71stcjq" +path="res://.godot/imported/ToolScale.svg-6db65fe4cac9c8e456231a7993a69fb9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ToolScale.svg" +dest_files=["res://.godot/imported/ToolScale.svg-6db65fe4cac9c8e456231a7993a69fb9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ToolSelect.svg b/src/resources/icons/godot/ToolSelect.svg new file mode 100644 index 00000000..b647e949 --- /dev/null +++ b/src/resources/icons/godot/ToolSelect.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ToolSelect.svg.import b/src/resources/icons/godot/ToolSelect.svg.import new file mode 100644 index 00000000..2e1f2e07 --- /dev/null +++ b/src/resources/icons/godot/ToolSelect.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://huk28h2m0ghn" +path="res://.godot/imported/ToolSelect.svg-5c572d0069dc2e9628668d58b8299dc7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ToolSelect.svg" +dest_files=["res://.godot/imported/ToolSelect.svg-5c572d0069dc2e9628668d58b8299dc7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ToolTransform.svg b/src/resources/icons/godot/ToolTransform.svg new file mode 100644 index 00000000..617a1638 --- /dev/null +++ b/src/resources/icons/godot/ToolTransform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ToolTransform.svg.import b/src/resources/icons/godot/ToolTransform.svg.import new file mode 100644 index 00000000..b0f0de21 --- /dev/null +++ b/src/resources/icons/godot/ToolTransform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddy2wff6euii8" +path="res://.godot/imported/ToolTransform.svg-eab8386b067ecaee01beb357c48c1979.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ToolTransform.svg" +dest_files=["res://.godot/imported/ToolTransform.svg-eab8386b067ecaee01beb357c48c1979.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ToolTriangle.svg b/src/resources/icons/godot/ToolTriangle.svg new file mode 100644 index 00000000..4f9bbd89 --- /dev/null +++ b/src/resources/icons/godot/ToolTriangle.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ToolTriangle.svg.import b/src/resources/icons/godot/ToolTriangle.svg.import new file mode 100644 index 00000000..a15cfe80 --- /dev/null +++ b/src/resources/icons/godot/ToolTriangle.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgew7d2ei67kf" +path="res://.godot/imported/ToolTriangle.svg-0ee6a506cb29a8862e8dd34322d58fee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ToolTriangle.svg" +dest_files=["res://.godot/imported/ToolTriangle.svg-0ee6a506cb29a8862e8dd34322d58fee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Tools.svg b/src/resources/icons/godot/Tools.svg new file mode 100644 index 00000000..2ba2fc42 --- /dev/null +++ b/src/resources/icons/godot/Tools.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Tools.svg.import b/src/resources/icons/godot/Tools.svg.import new file mode 100644 index 00000000..c0a62bfa --- /dev/null +++ b/src/resources/icons/godot/Tools.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu3rt3qsio0b8" +path="res://.godot/imported/Tools.svg-4d14b60717cfad95f9d868e6c7272e1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Tools.svg" +dest_files=["res://.godot/imported/Tools.svg-4d14b60717cfad95f9d868e6c7272e1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TorusMesh.svg b/src/resources/icons/godot/TorusMesh.svg new file mode 100644 index 00000000..7b5d118b --- /dev/null +++ b/src/resources/icons/godot/TorusMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TorusMesh.svg.import b/src/resources/icons/godot/TorusMesh.svg.import new file mode 100644 index 00000000..7a2dc170 --- /dev/null +++ b/src/resources/icons/godot/TorusMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df0sdi7vc87qq" +path="res://.godot/imported/TorusMesh.svg-30bd161b5702d4fe657e672f6751e2f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TorusMesh.svg" +dest_files=["res://.godot/imported/TorusMesh.svg-30bd161b5702d4fe657e672f6751e2f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TouchScreenButton.svg b/src/resources/icons/godot/TouchScreenButton.svg new file mode 100644 index 00000000..c98b8833 --- /dev/null +++ b/src/resources/icons/godot/TouchScreenButton.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TouchScreenButton.svg.import b/src/resources/icons/godot/TouchScreenButton.svg.import new file mode 100644 index 00000000..8d15818d --- /dev/null +++ b/src/resources/icons/godot/TouchScreenButton.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgtcojeeg3ug1" +path="res://.godot/imported/TouchScreenButton.svg-95567b070ad1c37f2336a041a952d410.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TouchScreenButton.svg" +dest_files=["res://.godot/imported/TouchScreenButton.svg-95567b070ad1c37f2336a041a952d410.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TrackCapture.svg b/src/resources/icons/godot/TrackCapture.svg new file mode 100644 index 00000000..445fa221 --- /dev/null +++ b/src/resources/icons/godot/TrackCapture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TrackCapture.svg.import b/src/resources/icons/godot/TrackCapture.svg.import new file mode 100644 index 00000000..e7d2e4fd --- /dev/null +++ b/src/resources/icons/godot/TrackCapture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8scgarfvwj6" +path="res://.godot/imported/TrackCapture.svg-96c49f66efe6a7cc962ae2b9217ab0c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TrackCapture.svg" +dest_files=["res://.godot/imported/TrackCapture.svg-96c49f66efe6a7cc962ae2b9217ab0c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TrackColor.svg b/src/resources/icons/godot/TrackColor.svg new file mode 100644 index 00000000..dae0fd9b --- /dev/null +++ b/src/resources/icons/godot/TrackColor.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TrackColor.svg.import b/src/resources/icons/godot/TrackColor.svg.import new file mode 100644 index 00000000..cf452380 --- /dev/null +++ b/src/resources/icons/godot/TrackColor.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctvbf1vastnof" +path="res://.godot/imported/TrackColor.svg-5c6fed041beb57bec97d7316a73e0bc6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TrackColor.svg" +dest_files=["res://.godot/imported/TrackColor.svg-5c6fed041beb57bec97d7316a73e0bc6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TrackContinuous.svg b/src/resources/icons/godot/TrackContinuous.svg new file mode 100644 index 00000000..5f9a8c66 --- /dev/null +++ b/src/resources/icons/godot/TrackContinuous.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TrackContinuous.svg.import b/src/resources/icons/godot/TrackContinuous.svg.import new file mode 100644 index 00000000..807390de --- /dev/null +++ b/src/resources/icons/godot/TrackContinuous.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbny7fapym2v5" +path="res://.godot/imported/TrackContinuous.svg-91bb0e4af64cfba968e09e050ca20b00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TrackContinuous.svg" +dest_files=["res://.godot/imported/TrackContinuous.svg-91bb0e4af64cfba968e09e050ca20b00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TrackDiscrete.svg b/src/resources/icons/godot/TrackDiscrete.svg new file mode 100644 index 00000000..ced32ded --- /dev/null +++ b/src/resources/icons/godot/TrackDiscrete.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TrackDiscrete.svg.import b/src/resources/icons/godot/TrackDiscrete.svg.import new file mode 100644 index 00000000..137e7a05 --- /dev/null +++ b/src/resources/icons/godot/TrackDiscrete.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bno56n1y72nr3" +path="res://.godot/imported/TrackDiscrete.svg-e93f59377ec20c9861bde6fc41469f7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TrackDiscrete.svg" +dest_files=["res://.godot/imported/TrackDiscrete.svg-e93f59377ec20c9861bde6fc41469f7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Trackball.svg b/src/resources/icons/godot/Trackball.svg new file mode 100644 index 00000000..0b6ffe5c --- /dev/null +++ b/src/resources/icons/godot/Trackball.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Trackball.svg.import b/src/resources/icons/godot/Trackball.svg.import new file mode 100644 index 00000000..4c4935eb --- /dev/null +++ b/src/resources/icons/godot/Trackball.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq5w4ly026l2b" +path="res://.godot/imported/Trackball.svg-5ade69a4277493c311b3529fbf25538b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Trackball.svg" +dest_files=["res://.godot/imported/Trackball.svg-5ade69a4277493c311b3529fbf25538b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Transform2D.svg b/src/resources/icons/godot/Transform2D.svg new file mode 100644 index 00000000..bf76b2a0 --- /dev/null +++ b/src/resources/icons/godot/Transform2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Transform2D.svg.import b/src/resources/icons/godot/Transform2D.svg.import new file mode 100644 index 00000000..5c7bac9d --- /dev/null +++ b/src/resources/icons/godot/Transform2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c75ycy4s88lxe" +path="res://.godot/imported/Transform2D.svg-bb818dcb455bdbafaae5e6ed60837ac2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Transform2D.svg" +dest_files=["res://.godot/imported/Transform2D.svg-bb818dcb455bdbafaae5e6ed60837ac2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Transform3D.svg b/src/resources/icons/godot/Transform3D.svg new file mode 100644 index 00000000..efe6e818 --- /dev/null +++ b/src/resources/icons/godot/Transform3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Transform3D.svg.import b/src/resources/icons/godot/Transform3D.svg.import new file mode 100644 index 00000000..60c5482c --- /dev/null +++ b/src/resources/icons/godot/Transform3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bab60fs6mx4yv" +path="res://.godot/imported/Transform3D.svg-e17de9f31ecf1f6324ccc9191f8e1eec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Transform3D.svg" +dest_files=["res://.godot/imported/Transform3D.svg-e17de9f31ecf1f6324ccc9191f8e1eec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionEnd.svg b/src/resources/icons/godot/TransitionEnd.svg new file mode 100644 index 00000000..18536029 --- /dev/null +++ b/src/resources/icons/godot/TransitionEnd.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionEnd.svg.import b/src/resources/icons/godot/TransitionEnd.svg.import new file mode 100644 index 00000000..1c071610 --- /dev/null +++ b/src/resources/icons/godot/TransitionEnd.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgqns6df14klk" +path="res://.godot/imported/TransitionEnd.svg-ee7345ef5090f713f95a80b186e59194.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionEnd.svg" +dest_files=["res://.godot/imported/TransitionEnd.svg-ee7345ef5090f713f95a80b186e59194.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionEndAuto.svg b/src/resources/icons/godot/TransitionEndAuto.svg new file mode 100644 index 00000000..7a82f2ed --- /dev/null +++ b/src/resources/icons/godot/TransitionEndAuto.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionEndAuto.svg.import b/src/resources/icons/godot/TransitionEndAuto.svg.import new file mode 100644 index 00000000..6ae16108 --- /dev/null +++ b/src/resources/icons/godot/TransitionEndAuto.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wipu83sunrg2" +path="res://.godot/imported/TransitionEndAuto.svg-3c9fdf1b4508df89cee8f0901361cd1e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionEndAuto.svg" +dest_files=["res://.godot/imported/TransitionEndAuto.svg-3c9fdf1b4508df89cee8f0901361cd1e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionEndAutoBig.svg b/src/resources/icons/godot/TransitionEndAutoBig.svg new file mode 100644 index 00000000..1cb9a6c7 --- /dev/null +++ b/src/resources/icons/godot/TransitionEndAutoBig.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionEndAutoBig.svg.import b/src/resources/icons/godot/TransitionEndAutoBig.svg.import new file mode 100644 index 00000000..00a69e75 --- /dev/null +++ b/src/resources/icons/godot/TransitionEndAutoBig.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi6gd7v1jr6gq" +path="res://.godot/imported/TransitionEndAutoBig.svg-81eb4f5de9119bf2b66cbc0a55b11956.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionEndAutoBig.svg" +dest_files=["res://.godot/imported/TransitionEndAutoBig.svg-81eb4f5de9119bf2b66cbc0a55b11956.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionEndBig.svg b/src/resources/icons/godot/TransitionEndBig.svg new file mode 100644 index 00000000..fa6b0f88 --- /dev/null +++ b/src/resources/icons/godot/TransitionEndBig.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionEndBig.svg.import b/src/resources/icons/godot/TransitionEndBig.svg.import new file mode 100644 index 00000000..ce62c375 --- /dev/null +++ b/src/resources/icons/godot/TransitionEndBig.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqn342i6c6gb8" +path="res://.godot/imported/TransitionEndBig.svg-dadb823efea9272971fc2dc1eaf57fc4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionEndBig.svg" +dest_files=["res://.godot/imported/TransitionEndBig.svg-dadb823efea9272971fc2dc1eaf57fc4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionImmediate.svg b/src/resources/icons/godot/TransitionImmediate.svg new file mode 100644 index 00000000..3e24afd9 --- /dev/null +++ b/src/resources/icons/godot/TransitionImmediate.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionImmediate.svg.import b/src/resources/icons/godot/TransitionImmediate.svg.import new file mode 100644 index 00000000..a1e968e9 --- /dev/null +++ b/src/resources/icons/godot/TransitionImmediate.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbx0s1reioflu" +path="res://.godot/imported/TransitionImmediate.svg-8623f074c151ee45673fef0f801444b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionImmediate.svg" +dest_files=["res://.godot/imported/TransitionImmediate.svg-8623f074c151ee45673fef0f801444b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionImmediateAuto.svg b/src/resources/icons/godot/TransitionImmediateAuto.svg new file mode 100644 index 00000000..436d1358 --- /dev/null +++ b/src/resources/icons/godot/TransitionImmediateAuto.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionImmediateAuto.svg.import b/src/resources/icons/godot/TransitionImmediateAuto.svg.import new file mode 100644 index 00000000..acdfe628 --- /dev/null +++ b/src/resources/icons/godot/TransitionImmediateAuto.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwhsba38p1gaq" +path="res://.godot/imported/TransitionImmediateAuto.svg-1b366baf75777ac0529ed1a8e8214499.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionImmediateAuto.svg" +dest_files=["res://.godot/imported/TransitionImmediateAuto.svg-1b366baf75777ac0529ed1a8e8214499.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionImmediateAutoBig.svg b/src/resources/icons/godot/TransitionImmediateAutoBig.svg new file mode 100644 index 00000000..10e72310 --- /dev/null +++ b/src/resources/icons/godot/TransitionImmediateAutoBig.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionImmediateAutoBig.svg.import b/src/resources/icons/godot/TransitionImmediateAutoBig.svg.import new file mode 100644 index 00000000..496c76f4 --- /dev/null +++ b/src/resources/icons/godot/TransitionImmediateAutoBig.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddatsj5rb46nd" +path="res://.godot/imported/TransitionImmediateAutoBig.svg-6c3e1c586a830ae1b09c4adeaba0ed50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionImmediateAutoBig.svg" +dest_files=["res://.godot/imported/TransitionImmediateAutoBig.svg-6c3e1c586a830ae1b09c4adeaba0ed50.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionImmediateBig.svg b/src/resources/icons/godot/TransitionImmediateBig.svg new file mode 100644 index 00000000..42c481d9 --- /dev/null +++ b/src/resources/icons/godot/TransitionImmediateBig.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionImmediateBig.svg.import b/src/resources/icons/godot/TransitionImmediateBig.svg.import new file mode 100644 index 00000000..9eaed58d --- /dev/null +++ b/src/resources/icons/godot/TransitionImmediateBig.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgku23oovqrdk" +path="res://.godot/imported/TransitionImmediateBig.svg-953f0a5496e803221ac29e929be59331.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionImmediateBig.svg" +dest_files=["res://.godot/imported/TransitionImmediateBig.svg-953f0a5496e803221ac29e929be59331.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionSync.svg b/src/resources/icons/godot/TransitionSync.svg new file mode 100644 index 00000000..1a788a7a --- /dev/null +++ b/src/resources/icons/godot/TransitionSync.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionSync.svg.import b/src/resources/icons/godot/TransitionSync.svg.import new file mode 100644 index 00000000..76c550b3 --- /dev/null +++ b/src/resources/icons/godot/TransitionSync.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cer5y8jrobdps" +path="res://.godot/imported/TransitionSync.svg-b672075dfdfed7954847385a8a4b6de3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionSync.svg" +dest_files=["res://.godot/imported/TransitionSync.svg-b672075dfdfed7954847385a8a4b6de3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionSyncAuto.svg b/src/resources/icons/godot/TransitionSyncAuto.svg new file mode 100644 index 00000000..a1203b55 --- /dev/null +++ b/src/resources/icons/godot/TransitionSyncAuto.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionSyncAuto.svg.import b/src/resources/icons/godot/TransitionSyncAuto.svg.import new file mode 100644 index 00000000..1ae9a97e --- /dev/null +++ b/src/resources/icons/godot/TransitionSyncAuto.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7w3oibj7c17f" +path="res://.godot/imported/TransitionSyncAuto.svg-2102a2effb1210dcfcf338ec578105d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionSyncAuto.svg" +dest_files=["res://.godot/imported/TransitionSyncAuto.svg-2102a2effb1210dcfcf338ec578105d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionSyncAutoBig.svg b/src/resources/icons/godot/TransitionSyncAutoBig.svg new file mode 100644 index 00000000..3514d9b1 --- /dev/null +++ b/src/resources/icons/godot/TransitionSyncAutoBig.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionSyncAutoBig.svg.import b/src/resources/icons/godot/TransitionSyncAutoBig.svg.import new file mode 100644 index 00000000..cb6a5aed --- /dev/null +++ b/src/resources/icons/godot/TransitionSyncAutoBig.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wkijoxxt35h4" +path="res://.godot/imported/TransitionSyncAutoBig.svg-179e887236112000f660ae4b3678fcd3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionSyncAutoBig.svg" +dest_files=["res://.godot/imported/TransitionSyncAutoBig.svg-179e887236112000f660ae4b3678fcd3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TransitionSyncBig.svg b/src/resources/icons/godot/TransitionSyncBig.svg new file mode 100644 index 00000000..b9fd36c9 --- /dev/null +++ b/src/resources/icons/godot/TransitionSyncBig.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TransitionSyncBig.svg.import b/src/resources/icons/godot/TransitionSyncBig.svg.import new file mode 100644 index 00000000..820b0271 --- /dev/null +++ b/src/resources/icons/godot/TransitionSyncBig.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxajda44d7kx5" +path="res://.godot/imported/TransitionSyncBig.svg-580b4091ad64e53281005c7cb59f5137.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TransitionSyncBig.svg" +dest_files=["res://.godot/imported/TransitionSyncBig.svg-580b4091ad64e53281005c7cb59f5137.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Translation.svg b/src/resources/icons/godot/Translation.svg new file mode 100644 index 00000000..6cd034f7 --- /dev/null +++ b/src/resources/icons/godot/Translation.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Translation.svg.import b/src/resources/icons/godot/Translation.svg.import new file mode 100644 index 00000000..889c21c8 --- /dev/null +++ b/src/resources/icons/godot/Translation.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpf872vbsmnu8" +path="res://.godot/imported/Translation.svg-918cd009136403d15d5aed63f47f2124.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Translation.svg" +dest_files=["res://.godot/imported/Translation.svg-918cd009136403d15d5aed63f47f2124.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Tree.svg b/src/resources/icons/godot/Tree.svg new file mode 100644 index 00000000..1e71a9a0 --- /dev/null +++ b/src/resources/icons/godot/Tree.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Tree.svg.import b/src/resources/icons/godot/Tree.svg.import new file mode 100644 index 00000000..99b6faeb --- /dev/null +++ b/src/resources/icons/godot/Tree.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfivlsj5sai1y" +path="res://.godot/imported/Tree.svg-33a122fc7c780a18ada3208a313b27f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Tree.svg" +dest_files=["res://.godot/imported/Tree.svg-33a122fc7c780a18ada3208a313b27f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TripleBar.svg b/src/resources/icons/godot/TripleBar.svg new file mode 100644 index 00000000..1941eda5 --- /dev/null +++ b/src/resources/icons/godot/TripleBar.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TripleBar.svg.import b/src/resources/icons/godot/TripleBar.svg.import new file mode 100644 index 00000000..1e77ed91 --- /dev/null +++ b/src/resources/icons/godot/TripleBar.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvm0xk7oi44p0" +path="res://.godot/imported/TripleBar.svg-7ff3360978124cfd3cf5126f8a3cc75a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TripleBar.svg" +dest_files=["res://.godot/imported/TripleBar.svg-7ff3360978124cfd3cf5126f8a3cc75a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TubeTrailMesh.svg b/src/resources/icons/godot/TubeTrailMesh.svg new file mode 100644 index 00000000..010b87ac --- /dev/null +++ b/src/resources/icons/godot/TubeTrailMesh.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TubeTrailMesh.svg.import b/src/resources/icons/godot/TubeTrailMesh.svg.import new file mode 100644 index 00000000..9cd04682 --- /dev/null +++ b/src/resources/icons/godot/TubeTrailMesh.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bytvvw00lxxi6" +path="res://.godot/imported/TubeTrailMesh.svg-bd0040fd578f4177d595faa0ecfa5e16.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TubeTrailMesh.svg" +dest_files=["res://.godot/imported/TubeTrailMesh.svg-bd0040fd578f4177d595faa0ecfa5e16.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Tween.svg b/src/resources/icons/godot/Tween.svg new file mode 100644 index 00000000..d70bb5b1 --- /dev/null +++ b/src/resources/icons/godot/Tween.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Tween.svg.import b/src/resources/icons/godot/Tween.svg.import new file mode 100644 index 00000000..f0e319b5 --- /dev/null +++ b/src/resources/icons/godot/Tween.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b74lr2qaktrcd" +path="res://.godot/imported/Tween.svg-22aefc887c732bbf3ce38481a510fd80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Tween.svg" +dest_files=["res://.godot/imported/Tween.svg-22aefc887c732bbf3ce38481a510fd80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/TwoBoneIK3D.svg b/src/resources/icons/godot/TwoBoneIK3D.svg new file mode 100644 index 00000000..73c6782d --- /dev/null +++ b/src/resources/icons/godot/TwoBoneIK3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/TwoBoneIK3D.svg.import b/src/resources/icons/godot/TwoBoneIK3D.svg.import new file mode 100644 index 00000000..fb065423 --- /dev/null +++ b/src/resources/icons/godot/TwoBoneIK3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vswqf7sitl8g" +path="res://.godot/imported/TwoBoneIK3D.svg-180634ee98e7b03d05d25aeb3e1fb3f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/TwoBoneIK3D.svg" +dest_files=["res://.godot/imported/TwoBoneIK3D.svg-180634ee98e7b03d05d25aeb3e1fb3f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/UID.svg b/src/resources/icons/godot/UID.svg new file mode 100644 index 00000000..4a9d2c50 --- /dev/null +++ b/src/resources/icons/godot/UID.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/UID.svg.import b/src/resources/icons/godot/UID.svg.import new file mode 100644 index 00000000..d4a100f1 --- /dev/null +++ b/src/resources/icons/godot/UID.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dewq2j3bkdg0e" +path="res://.godot/imported/UID.svg-ee333fe7471a35935614810817693348.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/UID.svg" +dest_files=["res://.godot/imported/UID.svg-ee333fe7471a35935614810817693348.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/UndoRedo.svg b/src/resources/icons/godot/UndoRedo.svg new file mode 100644 index 00000000..0d653b2b --- /dev/null +++ b/src/resources/icons/godot/UndoRedo.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/UndoRedo.svg.import b/src/resources/icons/godot/UndoRedo.svg.import new file mode 100644 index 00000000..f185f4b5 --- /dev/null +++ b/src/resources/icons/godot/UndoRedo.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbnig1060gqia" +path="res://.godot/imported/UndoRedo.svg-a390354097b50e4c0e45e6cdd4d2e593.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/UndoRedo.svg" +dest_files=["res://.godot/imported/UndoRedo.svg-a390354097b50e4c0e45e6cdd4d2e593.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Unfavorite.svg b/src/resources/icons/godot/Unfavorite.svg new file mode 100644 index 00000000..93a0133b --- /dev/null +++ b/src/resources/icons/godot/Unfavorite.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Unfavorite.svg.import b/src/resources/icons/godot/Unfavorite.svg.import new file mode 100644 index 00000000..ed0ecbd1 --- /dev/null +++ b/src/resources/icons/godot/Unfavorite.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd5k84rki0rat" +path="res://.godot/imported/Unfavorite.svg-a4ac7a83a68cce9c14370914b1904f8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Unfavorite.svg" +dest_files=["res://.godot/imported/Unfavorite.svg-a4ac7a83a68cce9c14370914b1904f8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Ungroup.svg b/src/resources/icons/godot/Ungroup.svg new file mode 100644 index 00000000..aeb116a6 --- /dev/null +++ b/src/resources/icons/godot/Ungroup.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Ungroup.svg.import b/src/resources/icons/godot/Ungroup.svg.import new file mode 100644 index 00000000..d6c724a3 --- /dev/null +++ b/src/resources/icons/godot/Ungroup.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tua0mowf2w8h" +path="res://.godot/imported/Ungroup.svg-adf52302e38d289c67f77914b265a7de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Ungroup.svg" +dest_files=["res://.godot/imported/Ungroup.svg-adf52302e38d289c67f77914b265a7de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Unlinked.svg b/src/resources/icons/godot/Unlinked.svg new file mode 100644 index 00000000..c2ea3249 --- /dev/null +++ b/src/resources/icons/godot/Unlinked.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Unlinked.svg.import b/src/resources/icons/godot/Unlinked.svg.import new file mode 100644 index 00000000..218702a3 --- /dev/null +++ b/src/resources/icons/godot/Unlinked.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kxida0dvmfqe" +path="res://.godot/imported/Unlinked.svg-2113d4cd9b917249a677372d33e4f2df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Unlinked.svg" +dest_files=["res://.godot/imported/Unlinked.svg-2113d4cd9b917249a677372d33e4f2df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Unlock.svg b/src/resources/icons/godot/Unlock.svg new file mode 100644 index 00000000..42949384 --- /dev/null +++ b/src/resources/icons/godot/Unlock.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Unlock.svg.import b/src/resources/icons/godot/Unlock.svg.import new file mode 100644 index 00000000..c8573a8c --- /dev/null +++ b/src/resources/icons/godot/Unlock.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dny06kiom0j37" +path="res://.godot/imported/Unlock.svg-b5096ac0fbb06395d3552f025caa0f4f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Unlock.svg" +dest_files=["res://.godot/imported/Unlock.svg-b5096ac0fbb06395d3552f025caa0f4f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/UseBlendDisable.svg b/src/resources/icons/godot/UseBlendDisable.svg new file mode 100644 index 00000000..8bdd902d --- /dev/null +++ b/src/resources/icons/godot/UseBlendDisable.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/UseBlendDisable.svg.import b/src/resources/icons/godot/UseBlendDisable.svg.import new file mode 100644 index 00000000..2e835c53 --- /dev/null +++ b/src/resources/icons/godot/UseBlendDisable.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d22paf8dsuh6h" +path="res://.godot/imported/UseBlendDisable.svg-f614966a2981bdcffff0f87e578165f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/UseBlendDisable.svg" +dest_files=["res://.godot/imported/UseBlendDisable.svg-f614966a2981bdcffff0f87e578165f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/UseBlendEnable.svg b/src/resources/icons/godot/UseBlendEnable.svg new file mode 100644 index 00000000..5939a064 --- /dev/null +++ b/src/resources/icons/godot/UseBlendEnable.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/UseBlendEnable.svg.import b/src/resources/icons/godot/UseBlendEnable.svg.import new file mode 100644 index 00000000..8ceac6a8 --- /dev/null +++ b/src/resources/icons/godot/UseBlendEnable.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg8km22aiefid" +path="res://.godot/imported/UseBlendEnable.svg-b9205ae4ae9635f381590a14f406f024.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/UseBlendEnable.svg" +dest_files=["res://.godot/imported/UseBlendEnable.svg-b9205ae4ae9635f381590a14f406f024.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Uv.svg b/src/resources/icons/godot/Uv.svg new file mode 100644 index 00000000..e895c5c0 --- /dev/null +++ b/src/resources/icons/godot/Uv.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Uv.svg.import b/src/resources/icons/godot/Uv.svg.import new file mode 100644 index 00000000..871eae81 --- /dev/null +++ b/src/resources/icons/godot/Uv.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w4a8r63xhf3p" +path="res://.godot/imported/Uv.svg-07ae7399a9da88bff3c99b61f019a66d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Uv.svg" +dest_files=["res://.godot/imported/Uv.svg-07ae7399a9da88bff3c99b61f019a66d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VBoxContainer.svg b/src/resources/icons/godot/VBoxContainer.svg new file mode 100644 index 00000000..7f5deeef --- /dev/null +++ b/src/resources/icons/godot/VBoxContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VBoxContainer.svg.import b/src/resources/icons/godot/VBoxContainer.svg.import new file mode 100644 index 00000000..ef87aabc --- /dev/null +++ b/src/resources/icons/godot/VBoxContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c33invwd257ly" +path="res://.godot/imported/VBoxContainer.svg-c7e6f76d021a763916fb3b6ff38b9128.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VBoxContainer.svg" +dest_files=["res://.godot/imported/VBoxContainer.svg-c7e6f76d021a763916fb3b6ff38b9128.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VCSCommit.svg b/src/resources/icons/godot/VCSCommit.svg new file mode 100644 index 00000000..80956368 --- /dev/null +++ b/src/resources/icons/godot/VCSCommit.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VCSCommit.svg.import b/src/resources/icons/godot/VCSCommit.svg.import new file mode 100644 index 00000000..4c7a1d34 --- /dev/null +++ b/src/resources/icons/godot/VCSCommit.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3d4521prsas7" +path="res://.godot/imported/VCSCommit.svg-800cc18df781bd1e0ce0bf4ed5e23558.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VCSCommit.svg" +dest_files=["res://.godot/imported/VCSCommit.svg-800cc18df781bd1e0ce0bf4ed5e23558.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VFlowContainer.svg b/src/resources/icons/godot/VFlowContainer.svg new file mode 100644 index 00000000..104ca381 --- /dev/null +++ b/src/resources/icons/godot/VFlowContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VFlowContainer.svg.import b/src/resources/icons/godot/VFlowContainer.svg.import new file mode 100644 index 00000000..86d6e498 --- /dev/null +++ b/src/resources/icons/godot/VFlowContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buuc1b0860hrg" +path="res://.godot/imported/VFlowContainer.svg-fb9b243ff3e7958d229350954dd5f0a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VFlowContainer.svg" +dest_files=["res://.godot/imported/VFlowContainer.svg-fb9b243ff3e7958d229350954dd5f0a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VScrollBar.svg b/src/resources/icons/godot/VScrollBar.svg new file mode 100644 index 00000000..dbaadb92 --- /dev/null +++ b/src/resources/icons/godot/VScrollBar.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VScrollBar.svg.import b/src/resources/icons/godot/VScrollBar.svg.import new file mode 100644 index 00000000..8f200cae --- /dev/null +++ b/src/resources/icons/godot/VScrollBar.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckxhim484r4ps" +path="res://.godot/imported/VScrollBar.svg-7da51fb272d92c6c2b69b9d0f12995a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VScrollBar.svg" +dest_files=["res://.godot/imported/VScrollBar.svg-7da51fb272d92c6c2b69b9d0f12995a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VSeparator.svg b/src/resources/icons/godot/VSeparator.svg new file mode 100644 index 00000000..b03cf647 --- /dev/null +++ b/src/resources/icons/godot/VSeparator.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VSeparator.svg.import b/src/resources/icons/godot/VSeparator.svg.import new file mode 100644 index 00000000..498276ff --- /dev/null +++ b/src/resources/icons/godot/VSeparator.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0df4b74p8l1s" +path="res://.godot/imported/VSeparator.svg-f19e7c6d75f53c4947c8b3cadc386132.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VSeparator.svg" +dest_files=["res://.godot/imported/VSeparator.svg-f19e7c6d75f53c4947c8b3cadc386132.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VSlider.svg b/src/resources/icons/godot/VSlider.svg new file mode 100644 index 00000000..90bd8074 --- /dev/null +++ b/src/resources/icons/godot/VSlider.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VSlider.svg.import b/src/resources/icons/godot/VSlider.svg.import new file mode 100644 index 00000000..511bb857 --- /dev/null +++ b/src/resources/icons/godot/VSlider.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5djur4qe4h0u" +path="res://.godot/imported/VSlider.svg-63ab0b46c035f732b39a32c178486bad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VSlider.svg" +dest_files=["res://.godot/imported/VSlider.svg-63ab0b46c035f732b39a32c178486bad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VSplitContainer.svg b/src/resources/icons/godot/VSplitContainer.svg new file mode 100644 index 00000000..bc1c68d0 --- /dev/null +++ b/src/resources/icons/godot/VSplitContainer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VSplitContainer.svg.import b/src/resources/icons/godot/VSplitContainer.svg.import new file mode 100644 index 00000000..674ae3ca --- /dev/null +++ b/src/resources/icons/godot/VSplitContainer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://goe0wnmequug" +path="res://.godot/imported/VSplitContainer.svg-4a29faa1be342dbd558a6571a39ffc3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VSplitContainer.svg" +dest_files=["res://.godot/imported/VSplitContainer.svg-4a29faa1be342dbd558a6571a39ffc3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Variant.svg b/src/resources/icons/godot/Variant.svg new file mode 100644 index 00000000..b1df9c5d --- /dev/null +++ b/src/resources/icons/godot/Variant.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Variant.svg.import b/src/resources/icons/godot/Variant.svg.import new file mode 100644 index 00000000..49c5d50b --- /dev/null +++ b/src/resources/icons/godot/Variant.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duwfrn4fgkr1e" +path="res://.godot/imported/Variant.svg-3da9cf062fb4a6a887660d8ae7b62bb0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Variant.svg" +dest_files=["res://.godot/imported/Variant.svg-3da9cf062fb4a6a887660d8ae7b62bb0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VcsBranches.svg b/src/resources/icons/godot/VcsBranches.svg new file mode 100644 index 00000000..91c767b7 --- /dev/null +++ b/src/resources/icons/godot/VcsBranches.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VcsBranches.svg.import b/src/resources/icons/godot/VcsBranches.svg.import new file mode 100644 index 00000000..b240553e --- /dev/null +++ b/src/resources/icons/godot/VcsBranches.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b28anst3rhmqj" +path="res://.godot/imported/VcsBranches.svg-da983126ce255226646d114d0f7ec35a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VcsBranches.svg" +dest_files=["res://.godot/imported/VcsBranches.svg-da983126ce255226646d114d0f7ec35a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Vector2.svg b/src/resources/icons/godot/Vector2.svg new file mode 100644 index 00000000..dab0fa35 --- /dev/null +++ b/src/resources/icons/godot/Vector2.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Vector2.svg.import b/src/resources/icons/godot/Vector2.svg.import new file mode 100644 index 00000000..acc4f1ca --- /dev/null +++ b/src/resources/icons/godot/Vector2.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccii26wnshlm7" +path="res://.godot/imported/Vector2.svg-36f159aacc526e2e10a2701091a7bf3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Vector2.svg" +dest_files=["res://.godot/imported/Vector2.svg-36f159aacc526e2e10a2701091a7bf3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Vector2i.svg b/src/resources/icons/godot/Vector2i.svg new file mode 100644 index 00000000..21fdce6a --- /dev/null +++ b/src/resources/icons/godot/Vector2i.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Vector2i.svg.import b/src/resources/icons/godot/Vector2i.svg.import new file mode 100644 index 00000000..74855972 --- /dev/null +++ b/src/resources/icons/godot/Vector2i.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjh53f5f1cx1q" +path="res://.godot/imported/Vector2i.svg-10a3cb1573adfc62817163d974ae6744.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Vector2i.svg" +dest_files=["res://.godot/imported/Vector2i.svg-10a3cb1573adfc62817163d974ae6744.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Vector3.svg b/src/resources/icons/godot/Vector3.svg new file mode 100644 index 00000000..676d12d1 --- /dev/null +++ b/src/resources/icons/godot/Vector3.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Vector3.svg.import b/src/resources/icons/godot/Vector3.svg.import new file mode 100644 index 00000000..e1a9d163 --- /dev/null +++ b/src/resources/icons/godot/Vector3.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1ckfq7xjakdv" +path="res://.godot/imported/Vector3.svg-7d9a8bdcd3a27af2b8ba2a3b26359d25.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Vector3.svg" +dest_files=["res://.godot/imported/Vector3.svg-7d9a8bdcd3a27af2b8ba2a3b26359d25.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Vector3i.svg b/src/resources/icons/godot/Vector3i.svg new file mode 100644 index 00000000..7b17c07c --- /dev/null +++ b/src/resources/icons/godot/Vector3i.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Vector3i.svg.import b/src/resources/icons/godot/Vector3i.svg.import new file mode 100644 index 00000000..232f56e9 --- /dev/null +++ b/src/resources/icons/godot/Vector3i.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0mydc3ee1ux8" +path="res://.godot/imported/Vector3i.svg-d60c97fca870d5ca4b78a5b42265aab2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Vector3i.svg" +dest_files=["res://.godot/imported/Vector3i.svg-d60c97fca870d5ca4b78a5b42265aab2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Vector4.svg b/src/resources/icons/godot/Vector4.svg new file mode 100644 index 00000000..0b0f3835 --- /dev/null +++ b/src/resources/icons/godot/Vector4.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Vector4.svg.import b/src/resources/icons/godot/Vector4.svg.import new file mode 100644 index 00000000..2262c5e1 --- /dev/null +++ b/src/resources/icons/godot/Vector4.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvbnml6f2y3eh" +path="res://.godot/imported/Vector4.svg-3d9dc156d9e4c5d064520128032a2a58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Vector4.svg" +dest_files=["res://.godot/imported/Vector4.svg-3d9dc156d9e4c5d064520128032a2a58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Vector4i.svg b/src/resources/icons/godot/Vector4i.svg new file mode 100644 index 00000000..d1679482 --- /dev/null +++ b/src/resources/icons/godot/Vector4i.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Vector4i.svg.import b/src/resources/icons/godot/Vector4i.svg.import new file mode 100644 index 00000000..5f9cac0c --- /dev/null +++ b/src/resources/icons/godot/Vector4i.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2eh0in3fldtt" +path="res://.godot/imported/Vector4i.svg-0df0bbfd50df215985aa4a09f3e387d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Vector4i.svg" +dest_files=["res://.godot/imported/Vector4i.svg-0df0bbfd50df215985aa4a09f3e387d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VehicleBody3D.svg b/src/resources/icons/godot/VehicleBody3D.svg new file mode 100644 index 00000000..d82d8040 --- /dev/null +++ b/src/resources/icons/godot/VehicleBody3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VehicleBody3D.svg.import b/src/resources/icons/godot/VehicleBody3D.svg.import new file mode 100644 index 00000000..684c7bfc --- /dev/null +++ b/src/resources/icons/godot/VehicleBody3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jfahhm5ybr7l" +path="res://.godot/imported/VehicleBody3D.svg-d58d74bcb785c2a6a45056f4bb83f69f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VehicleBody3D.svg" +dest_files=["res://.godot/imported/VehicleBody3D.svg-d58d74bcb785c2a6a45056f4bb83f69f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VehicleWheel3D.svg b/src/resources/icons/godot/VehicleWheel3D.svg new file mode 100644 index 00000000..09d654e8 --- /dev/null +++ b/src/resources/icons/godot/VehicleWheel3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VehicleWheel3D.svg.import b/src/resources/icons/godot/VehicleWheel3D.svg.import new file mode 100644 index 00000000..647c1283 --- /dev/null +++ b/src/resources/icons/godot/VehicleWheel3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fvw5ysaa55fm" +path="res://.godot/imported/VehicleWheel3D.svg-39e68d8829ed23c56dad445f519a7489.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VehicleWheel3D.svg" +dest_files=["res://.godot/imported/VehicleWheel3D.svg-39e68d8829ed23c56dad445f519a7489.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Verified.svg b/src/resources/icons/godot/Verified.svg new file mode 100644 index 00000000..d3b396ad --- /dev/null +++ b/src/resources/icons/godot/Verified.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Verified.svg.import b/src/resources/icons/godot/Verified.svg.import new file mode 100644 index 00000000..40d238bf --- /dev/null +++ b/src/resources/icons/godot/Verified.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceru0vaw65qrn" +path="res://.godot/imported/Verified.svg-f2a57ee013cf81d8f2d204f1ac16e56d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Verified.svg" +dest_files=["res://.godot/imported/Verified.svg-f2a57ee013cf81d8f2d204f1ac16e56d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VideoStream.svg b/src/resources/icons/godot/VideoStream.svg new file mode 100644 index 00000000..a82e94df --- /dev/null +++ b/src/resources/icons/godot/VideoStream.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VideoStream.svg.import b/src/resources/icons/godot/VideoStream.svg.import new file mode 100644 index 00000000..e91aa182 --- /dev/null +++ b/src/resources/icons/godot/VideoStream.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qp60nsbl4wpe" +path="res://.godot/imported/VideoStream.svg-af4677e5509d8a7c2b56b95ba50e7896.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VideoStream.svg" +dest_files=["res://.godot/imported/VideoStream.svg-af4677e5509d8a7c2b56b95ba50e7896.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VideoStreamPlayer.svg b/src/resources/icons/godot/VideoStreamPlayer.svg new file mode 100644 index 00000000..50115085 --- /dev/null +++ b/src/resources/icons/godot/VideoStreamPlayer.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VideoStreamPlayer.svg.import b/src/resources/icons/godot/VideoStreamPlayer.svg.import new file mode 100644 index 00000000..5b2b9c36 --- /dev/null +++ b/src/resources/icons/godot/VideoStreamPlayer.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bltyvocp0jtfh" +path="res://.godot/imported/VideoStreamPlayer.svg-5ec50583fdc01db4312e2eee932588af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VideoStreamPlayer.svg" +dest_files=["res://.godot/imported/VideoStreamPlayer.svg-5ec50583fdc01db4312e2eee932588af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VideoStreamTheora.svg b/src/resources/icons/godot/VideoStreamTheora.svg new file mode 100644 index 00000000..72d12de4 --- /dev/null +++ b/src/resources/icons/godot/VideoStreamTheora.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VideoStreamTheora.svg.import b/src/resources/icons/godot/VideoStreamTheora.svg.import new file mode 100644 index 00000000..a7fe8e23 --- /dev/null +++ b/src/resources/icons/godot/VideoStreamTheora.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://145bhac4gcx8" +path="res://.godot/imported/VideoStreamTheora.svg-474c5365e65d3c0f1e8cf8f8021456b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VideoStreamTheora.svg" +dest_files=["res://.godot/imported/VideoStreamTheora.svg-474c5365e65d3c0f1e8cf8f8021456b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Viewport.svg b/src/resources/icons/godot/Viewport.svg new file mode 100644 index 00000000..0dc3f064 --- /dev/null +++ b/src/resources/icons/godot/Viewport.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Viewport.svg.import b/src/resources/icons/godot/Viewport.svg.import new file mode 100644 index 00000000..dcfbcf65 --- /dev/null +++ b/src/resources/icons/godot/Viewport.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2bknh5yghkc6" +path="res://.godot/imported/Viewport.svg-0d625d193eeb5e44857708ee8c5a08fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Viewport.svg" +dest_files=["res://.godot/imported/Viewport.svg-0d625d193eeb5e44857708ee8c5a08fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ViewportSpeed.svg b/src/resources/icons/godot/ViewportSpeed.svg new file mode 100644 index 00000000..abe4e064 --- /dev/null +++ b/src/resources/icons/godot/ViewportSpeed.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ViewportSpeed.svg.import b/src/resources/icons/godot/ViewportSpeed.svg.import new file mode 100644 index 00000000..4d02202e --- /dev/null +++ b/src/resources/icons/godot/ViewportSpeed.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbkg6r40hfdei" +path="res://.godot/imported/ViewportSpeed.svg-848ef7dda71c2b71f03cb95ae02a1200.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ViewportSpeed.svg" +dest_files=["res://.godot/imported/ViewportSpeed.svg-848ef7dda71c2b71f03cb95ae02a1200.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ViewportTexture.svg b/src/resources/icons/godot/ViewportTexture.svg new file mode 100644 index 00000000..de475f65 --- /dev/null +++ b/src/resources/icons/godot/ViewportTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ViewportTexture.svg.import b/src/resources/icons/godot/ViewportTexture.svg.import new file mode 100644 index 00000000..7a81f0c7 --- /dev/null +++ b/src/resources/icons/godot/ViewportTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bot7m6aopjb1r" +path="res://.godot/imported/ViewportTexture.svg-0b22b8e24be5f3956b0ce1c59c05fada.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ViewportTexture.svg" +dest_files=["res://.godot/imported/ViewportTexture.svg-0b22b8e24be5f3956b0ce1c59c05fada.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ViewportZoom.svg b/src/resources/icons/godot/ViewportZoom.svg new file mode 100644 index 00000000..85cb917c --- /dev/null +++ b/src/resources/icons/godot/ViewportZoom.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ViewportZoom.svg.import b/src/resources/icons/godot/ViewportZoom.svg.import new file mode 100644 index 00000000..5d845bbc --- /dev/null +++ b/src/resources/icons/godot/ViewportZoom.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0tjrbh0yfh33" +path="res://.godot/imported/ViewportZoom.svg-ff2af2650832c381dad8a40962caf477.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ViewportZoom.svg" +dest_files=["res://.godot/imported/ViewportZoom.svg-ff2af2650832c381dad8a40962caf477.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VirtualJoystick.svg b/src/resources/icons/godot/VirtualJoystick.svg new file mode 100644 index 00000000..c8972f4f --- /dev/null +++ b/src/resources/icons/godot/VirtualJoystick.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VirtualJoystick.svg.import b/src/resources/icons/godot/VirtualJoystick.svg.import new file mode 100644 index 00000000..7ca684ef --- /dev/null +++ b/src/resources/icons/godot/VirtualJoystick.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk6bsg8bwvqyf" +path="res://.godot/imported/VirtualJoystick.svg-1a64aa5d80657ea17e2ef1e5841fdf7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VirtualJoystick.svg" +dest_files=["res://.godot/imported/VirtualJoystick.svg-1a64aa5d80657ea17e2ef1e5841fdf7a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisibleOnScreenEnabler2D.svg b/src/resources/icons/godot/VisibleOnScreenEnabler2D.svg new file mode 100644 index 00000000..211a3949 --- /dev/null +++ b/src/resources/icons/godot/VisibleOnScreenEnabler2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisibleOnScreenEnabler2D.svg.import b/src/resources/icons/godot/VisibleOnScreenEnabler2D.svg.import new file mode 100644 index 00000000..a84472a6 --- /dev/null +++ b/src/resources/icons/godot/VisibleOnScreenEnabler2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djcs0b2qph7jd" +path="res://.godot/imported/VisibleOnScreenEnabler2D.svg-96b8eb1d5d931334782f6a5f12a821e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisibleOnScreenEnabler2D.svg" +dest_files=["res://.godot/imported/VisibleOnScreenEnabler2D.svg-96b8eb1d5d931334782f6a5f12a821e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisibleOnScreenEnabler3D.svg b/src/resources/icons/godot/VisibleOnScreenEnabler3D.svg new file mode 100644 index 00000000..6e5b6c8c --- /dev/null +++ b/src/resources/icons/godot/VisibleOnScreenEnabler3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisibleOnScreenEnabler3D.svg.import b/src/resources/icons/godot/VisibleOnScreenEnabler3D.svg.import new file mode 100644 index 00000000..bf53cf80 --- /dev/null +++ b/src/resources/icons/godot/VisibleOnScreenEnabler3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cidlwnmkaixg7" +path="res://.godot/imported/VisibleOnScreenEnabler3D.svg-c23808b742828596688cde2f92f9208c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisibleOnScreenEnabler3D.svg" +dest_files=["res://.godot/imported/VisibleOnScreenEnabler3D.svg-c23808b742828596688cde2f92f9208c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisibleOnScreenNotifier2D.svg b/src/resources/icons/godot/VisibleOnScreenNotifier2D.svg new file mode 100644 index 00000000..c2ce7727 --- /dev/null +++ b/src/resources/icons/godot/VisibleOnScreenNotifier2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisibleOnScreenNotifier2D.svg.import b/src/resources/icons/godot/VisibleOnScreenNotifier2D.svg.import new file mode 100644 index 00000000..92b18e55 --- /dev/null +++ b/src/resources/icons/godot/VisibleOnScreenNotifier2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwjgg4tqmbg0r" +path="res://.godot/imported/VisibleOnScreenNotifier2D.svg-f8fc960d16b7be2866ef699982af2486.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisibleOnScreenNotifier2D.svg" +dest_files=["res://.godot/imported/VisibleOnScreenNotifier2D.svg-f8fc960d16b7be2866ef699982af2486.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisibleOnScreenNotifier3D.svg b/src/resources/icons/godot/VisibleOnScreenNotifier3D.svg new file mode 100644 index 00000000..fb5abfd8 --- /dev/null +++ b/src/resources/icons/godot/VisibleOnScreenNotifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisibleOnScreenNotifier3D.svg.import b/src/resources/icons/godot/VisibleOnScreenNotifier3D.svg.import new file mode 100644 index 00000000..cdd74a4d --- /dev/null +++ b/src/resources/icons/godot/VisibleOnScreenNotifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gxy865ul15r2" +path="res://.godot/imported/VisibleOnScreenNotifier3D.svg-fb7f271dcfcfc1ee603df089e137f766.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisibleOnScreenNotifier3D.svg" +dest_files=["res://.godot/imported/VisibleOnScreenNotifier3D.svg-fb7f271dcfcfc1ee603df089e137f766.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualInstance3D.svg b/src/resources/icons/godot/VisualInstance3D.svg new file mode 100644 index 00000000..e0aed3c3 --- /dev/null +++ b/src/resources/icons/godot/VisualInstance3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualInstance3D.svg.import b/src/resources/icons/godot/VisualInstance3D.svg.import new file mode 100644 index 00000000..b135238a --- /dev/null +++ b/src/resources/icons/godot/VisualInstance3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvestaakihtr4" +path="res://.godot/imported/VisualInstance3D.svg-c2c982c6b0db96fd0c23749207541896.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualInstance3D.svg" +dest_files=["res://.godot/imported/VisualInstance3D.svg-c2c982c6b0db96fd0c23749207541896.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShader.svg b/src/resources/icons/godot/VisualShader.svg new file mode 100644 index 00000000..99280e06 --- /dev/null +++ b/src/resources/icons/godot/VisualShader.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShader.svg.import b/src/resources/icons/godot/VisualShader.svg.import new file mode 100644 index 00000000..69c907b2 --- /dev/null +++ b/src/resources/icons/godot/VisualShader.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://icybgvywbua" +path="res://.godot/imported/VisualShader.svg-c5353f63866a8c7cf8ac2febf1d4878b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShader.svg" +dest_files=["res://.godot/imported/VisualShader.svg-c5353f63866a8c7cf8ac2febf1d4878b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderGraphTextureUniform.svg b/src/resources/icons/godot/VisualShaderGraphTextureUniform.svg new file mode 100644 index 00000000..dfa01ecc --- /dev/null +++ b/src/resources/icons/godot/VisualShaderGraphTextureUniform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderGraphTextureUniform.svg.import b/src/resources/icons/godot/VisualShaderGraphTextureUniform.svg.import new file mode 100644 index 00000000..5604d560 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderGraphTextureUniform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8i0n8mi18c8o" +path="res://.godot/imported/VisualShaderGraphTextureUniform.svg-c2137165e1fed40637fc5df064f1e1b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderGraphTextureUniform.svg" +dest_files=["res://.godot/imported/VisualShaderGraphTextureUniform.svg-c2137165e1fed40637fc5df064f1e1b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeBooleanUniform.svg b/src/resources/icons/godot/VisualShaderNodeBooleanUniform.svg new file mode 100644 index 00000000..f6b228a9 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeBooleanUniform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeBooleanUniform.svg.import b/src/resources/icons/godot/VisualShaderNodeBooleanUniform.svg.import new file mode 100644 index 00000000..c64205f4 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeBooleanUniform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i7gqs1765hoa" +path="res://.godot/imported/VisualShaderNodeBooleanUniform.svg-f827a746c829312da7a6b233cb21b3b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeBooleanUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeBooleanUniform.svg-f827a746c829312da7a6b233cb21b3b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeColorConstant.svg b/src/resources/icons/godot/VisualShaderNodeColorConstant.svg new file mode 100644 index 00000000..049884cf --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeColorConstant.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeColorConstant.svg.import b/src/resources/icons/godot/VisualShaderNodeColorConstant.svg.import new file mode 100644 index 00000000..bbd4f83e --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeColorConstant.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpxbljimfhcc5" +path="res://.godot/imported/VisualShaderNodeColorConstant.svg-8be58c9ab775b57b9f2b89a29a72e58c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeColorConstant.svg" +dest_files=["res://.godot/imported/VisualShaderNodeColorConstant.svg-8be58c9ab775b57b9f2b89a29a72e58c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeColorOp.svg b/src/resources/icons/godot/VisualShaderNodeColorOp.svg new file mode 100644 index 00000000..3c5bdf29 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeColorOp.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeColorOp.svg.import b/src/resources/icons/godot/VisualShaderNodeColorOp.svg.import new file mode 100644 index 00000000..a75543ba --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeColorOp.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdc5ogv1i05ny" +path="res://.godot/imported/VisualShaderNodeColorOp.svg-6c800dc8f31f23748c1065f4c82e62fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeColorOp.svg" +dest_files=["res://.godot/imported/VisualShaderNodeColorOp.svg-6c800dc8f31f23748c1065f4c82e62fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeColorUniform.svg b/src/resources/icons/godot/VisualShaderNodeColorUniform.svg new file mode 100644 index 00000000..85c7d042 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeColorUniform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeColorUniform.svg.import b/src/resources/icons/godot/VisualShaderNodeColorUniform.svg.import new file mode 100644 index 00000000..dbe8864c --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeColorUniform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6wyuua2rdmwo" +path="res://.godot/imported/VisualShaderNodeColorUniform.svg-c16740ae2d5f4ad5d0af863df0e85f9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeColorUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeColorUniform.svg-c16740ae2d5f4ad5d0af863df0e85f9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeComment.svg b/src/resources/icons/godot/VisualShaderNodeComment.svg new file mode 100644 index 00000000..75130c58 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeComment.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeComment.svg.import b/src/resources/icons/godot/VisualShaderNodeComment.svg.import new file mode 100644 index 00000000..134243af --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeComment.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjgs87newyxgp" +path="res://.godot/imported/VisualShaderNodeComment.svg-d9de67da9ed51ad7303e050f03e20bb1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeComment.svg" +dest_files=["res://.godot/imported/VisualShaderNodeComment.svg-d9de67da9ed51ad7303e050f03e20bb1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeCubemap.svg b/src/resources/icons/godot/VisualShaderNodeCubemap.svg new file mode 100644 index 00000000..1e1ff259 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeCubemap.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeCubemap.svg.import b/src/resources/icons/godot/VisualShaderNodeCubemap.svg.import new file mode 100644 index 00000000..200d7c24 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeCubemap.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsu1hbsmpuncb" +path="res://.godot/imported/VisualShaderNodeCubemap.svg-5fdacd55f340eb3ec100f9b4dcf73fc6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeCubemap.svg" +dest_files=["res://.godot/imported/VisualShaderNodeCubemap.svg-5fdacd55f340eb3ec100f9b4dcf73fc6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeCubemapUniform.svg b/src/resources/icons/godot/VisualShaderNodeCubemapUniform.svg new file mode 100644 index 00000000..d4d7c9f2 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeCubemapUniform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeCubemapUniform.svg.import b/src/resources/icons/godot/VisualShaderNodeCubemapUniform.svg.import new file mode 100644 index 00000000..b9d5bc08 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeCubemapUniform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxxjirl5xvhly" +path="res://.godot/imported/VisualShaderNodeCubemapUniform.svg-7881f21879d055498c70f34d96384cae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeCubemapUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeCubemapUniform.svg-7881f21879d055498c70f34d96384cae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeCurveTexture.svg b/src/resources/icons/godot/VisualShaderNodeCurveTexture.svg new file mode 100644 index 00000000..e02c1988 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeCurveTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeCurveTexture.svg.import b/src/resources/icons/godot/VisualShaderNodeCurveTexture.svg.import new file mode 100644 index 00000000..29e7b0a1 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeCurveTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4516xk4pd82a" +path="res://.godot/imported/VisualShaderNodeCurveTexture.svg-1af925ef50910db5a598692a9924efa6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeCurveTexture.svg" +dest_files=["res://.godot/imported/VisualShaderNodeCurveTexture.svg-1af925ef50910db5a598692a9924efa6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeCurveXYZTexture.svg b/src/resources/icons/godot/VisualShaderNodeCurveXYZTexture.svg new file mode 100644 index 00000000..e02c1988 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeCurveXYZTexture.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeCurveXYZTexture.svg.import b/src/resources/icons/godot/VisualShaderNodeCurveXYZTexture.svg.import new file mode 100644 index 00000000..c5bec7e0 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeCurveXYZTexture.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd32pk1m1v846" +path="res://.godot/imported/VisualShaderNodeCurveXYZTexture.svg-29144c4b4b85515c8e497f85cda046a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeCurveXYZTexture.svg" +dest_files=["res://.godot/imported/VisualShaderNodeCurveXYZTexture.svg-29144c4b4b85515c8e497f85cda046a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeExpression.svg b/src/resources/icons/godot/VisualShaderNodeExpression.svg new file mode 100644 index 00000000..e16f6ce6 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeExpression.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeExpression.svg.import b/src/resources/icons/godot/VisualShaderNodeExpression.svg.import new file mode 100644 index 00000000..949ba5a5 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeExpression.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs4a2dvueo3il" +path="res://.godot/imported/VisualShaderNodeExpression.svg-f9b35b6e6944c9dc3ccf9732cf2f31bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeExpression.svg" +dest_files=["res://.godot/imported/VisualShaderNodeExpression.svg-f9b35b6e6944c9dc3ccf9732cf2f31bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeFloatFunc.svg b/src/resources/icons/godot/VisualShaderNodeFloatFunc.svg new file mode 100644 index 00000000..a00bc794 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeFloatFunc.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeFloatFunc.svg.import b/src/resources/icons/godot/VisualShaderNodeFloatFunc.svg.import new file mode 100644 index 00000000..3862a77d --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeFloatFunc.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doe3hjx884tcu" +path="res://.godot/imported/VisualShaderNodeFloatFunc.svg-840a5fc771088b0734494590413d2b35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeFloatFunc.svg" +dest_files=["res://.godot/imported/VisualShaderNodeFloatFunc.svg-840a5fc771088b0734494590413d2b35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeFloatOp.svg b/src/resources/icons/godot/VisualShaderNodeFloatOp.svg new file mode 100644 index 00000000..b84aa7a3 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeFloatOp.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeFloatOp.svg.import b/src/resources/icons/godot/VisualShaderNodeFloatOp.svg.import new file mode 100644 index 00000000..c4ce0b48 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeFloatOp.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wusrh6eshrq" +path="res://.godot/imported/VisualShaderNodeFloatOp.svg-9b3d0feebf9c39ad28bdd2d1b8502c33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeFloatOp.svg" +dest_files=["res://.godot/imported/VisualShaderNodeFloatOp.svg-9b3d0feebf9c39ad28bdd2d1b8502c33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeFloatUniform.svg b/src/resources/icons/godot/VisualShaderNodeFloatUniform.svg new file mode 100644 index 00000000..971c1999 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeFloatUniform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeFloatUniform.svg.import b/src/resources/icons/godot/VisualShaderNodeFloatUniform.svg.import new file mode 100644 index 00000000..0adcc882 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeFloatUniform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfx2uym1vctbk" +path="res://.godot/imported/VisualShaderNodeFloatUniform.svg-693db4723eee47b2360b38e7b52cbed1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeFloatUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeFloatUniform.svg-693db4723eee47b2360b38e7b52cbed1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeGlobalExpression.svg b/src/resources/icons/godot/VisualShaderNodeGlobalExpression.svg new file mode 100644 index 00000000..e5c9bfd1 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeGlobalExpression.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeGlobalExpression.svg.import b/src/resources/icons/godot/VisualShaderNodeGlobalExpression.svg.import new file mode 100644 index 00000000..0a28f9f4 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeGlobalExpression.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cehdbcn1oje8h" +path="res://.godot/imported/VisualShaderNodeGlobalExpression.svg-dd7afa6fe0f8695d594f14f91c602e92.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeGlobalExpression.svg" +dest_files=["res://.godot/imported/VisualShaderNodeGlobalExpression.svg-dd7afa6fe0f8695d594f14f91c602e92.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeInput.svg b/src/resources/icons/godot/VisualShaderNodeInput.svg new file mode 100644 index 00000000..4946fd5f --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeInput.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeInput.svg.import b/src/resources/icons/godot/VisualShaderNodeInput.svg.import new file mode 100644 index 00000000..7256c814 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeInput.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://roksbcj7iy7w" +path="res://.godot/imported/VisualShaderNodeInput.svg-986c1b58a176408eef71daa90e9fc3ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeInput.svg" +dest_files=["res://.godot/imported/VisualShaderNodeInput.svg-986c1b58a176408eef71daa90e9fc3ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeIntFunc.svg b/src/resources/icons/godot/VisualShaderNodeIntFunc.svg new file mode 100644 index 00000000..a00bc794 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeIntFunc.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeIntFunc.svg.import b/src/resources/icons/godot/VisualShaderNodeIntFunc.svg.import new file mode 100644 index 00000000..d15fb719 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeIntFunc.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5i6213t5yubh" +path="res://.godot/imported/VisualShaderNodeIntFunc.svg-1b432411b8940befc46b21bda1714c03.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeIntFunc.svg" +dest_files=["res://.godot/imported/VisualShaderNodeIntFunc.svg-1b432411b8940befc46b21bda1714c03.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeIntOp.svg b/src/resources/icons/godot/VisualShaderNodeIntOp.svg new file mode 100644 index 00000000..b84aa7a3 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeIntOp.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeIntOp.svg.import b/src/resources/icons/godot/VisualShaderNodeIntOp.svg.import new file mode 100644 index 00000000..5fe4b532 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeIntOp.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doqw7nsnt24sq" +path="res://.godot/imported/VisualShaderNodeIntOp.svg-74f55fc8177b12c66ed64e96a5c556fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeIntOp.svg" +dest_files=["res://.godot/imported/VisualShaderNodeIntOp.svg-74f55fc8177b12c66ed64e96a5c556fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeIntUniform.svg b/src/resources/icons/godot/VisualShaderNodeIntUniform.svg new file mode 100644 index 00000000..971c1999 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeIntUniform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeIntUniform.svg.import b/src/resources/icons/godot/VisualShaderNodeIntUniform.svg.import new file mode 100644 index 00000000..70e3c1ab --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeIntUniform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fxuohpvrnf04" +path="res://.godot/imported/VisualShaderNodeIntUniform.svg-b95b7f5d0b4dc107213838a5a07f2078.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeIntUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeIntUniform.svg-b95b7f5d0b4dc107213838a5a07f2078.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeTexture2DArrayUniform.svg b/src/resources/icons/godot/VisualShaderNodeTexture2DArrayUniform.svg new file mode 100644 index 00000000..dfa01ecc --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTexture2DArrayUniform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeTexture2DArrayUniform.svg.import b/src/resources/icons/godot/VisualShaderNodeTexture2DArrayUniform.svg.import new file mode 100644 index 00000000..2237f676 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTexture2DArrayUniform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh8gn17bqthgt" +path="res://.godot/imported/VisualShaderNodeTexture2DArrayUniform.svg-bc54a16f90d840f5f91678a9046ba596.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeTexture2DArrayUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTexture2DArrayUniform.svg-bc54a16f90d840f5f91678a9046ba596.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeTexture3DUniform.svg b/src/resources/icons/godot/VisualShaderNodeTexture3DUniform.svg new file mode 100644 index 00000000..dfa01ecc --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTexture3DUniform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeTexture3DUniform.svg.import b/src/resources/icons/godot/VisualShaderNodeTexture3DUniform.svg.import new file mode 100644 index 00000000..8929628b --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTexture3DUniform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq8fun7k5pfj8" +path="res://.godot/imported/VisualShaderNodeTexture3DUniform.svg-bcb1d31bd8808f26e2626c3353642e1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeTexture3DUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTexture3DUniform.svg-bcb1d31bd8808f26e2626c3353642e1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeTextureUniform.svg b/src/resources/icons/godot/VisualShaderNodeTextureUniform.svg new file mode 100644 index 00000000..dfa01ecc --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTextureUniform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeTextureUniform.svg.import b/src/resources/icons/godot/VisualShaderNodeTextureUniform.svg.import new file mode 100644 index 00000000..daac502b --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTextureUniform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj8cyl7hiue5y" +path="res://.godot/imported/VisualShaderNodeTextureUniform.svg-6c192fb336a31ea11f0831cdd822fc3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeTextureUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTextureUniform.svg-6c192fb336a31ea11f0831cdd822fc3e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeTextureUniformTriplanar.svg b/src/resources/icons/godot/VisualShaderNodeTextureUniformTriplanar.svg new file mode 100644 index 00000000..dfa01ecc --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTextureUniformTriplanar.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeTextureUniformTriplanar.svg.import b/src/resources/icons/godot/VisualShaderNodeTextureUniformTriplanar.svg.import new file mode 100644 index 00000000..6d76e9ca --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTextureUniformTriplanar.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmlx1lcewwiul" +path="res://.godot/imported/VisualShaderNodeTextureUniformTriplanar.svg-a7f426f519b6b67b81150853d967fd5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeTextureUniformTriplanar.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTextureUniformTriplanar.svg-a7f426f519b6b67b81150853d967fd5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeTransformCompose.svg b/src/resources/icons/godot/VisualShaderNodeTransformCompose.svg new file mode 100644 index 00000000..87232c5a --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTransformCompose.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeTransformCompose.svg.import b/src/resources/icons/godot/VisualShaderNodeTransformCompose.svg.import new file mode 100644 index 00000000..9b828ec4 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTransformCompose.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw88f7mm4xfne" +path="res://.godot/imported/VisualShaderNodeTransformCompose.svg-dccab8c8c4b09b4a47abd26d1d15c149.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeTransformCompose.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTransformCompose.svg-dccab8c8c4b09b4a47abd26d1d15c149.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeTransformDecompose.svg b/src/resources/icons/godot/VisualShaderNodeTransformDecompose.svg new file mode 100644 index 00000000..697e049f --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTransformDecompose.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeTransformDecompose.svg.import b/src/resources/icons/godot/VisualShaderNodeTransformDecompose.svg.import new file mode 100644 index 00000000..50368c59 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTransformDecompose.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl1pw7ev2pg8w" +path="res://.godot/imported/VisualShaderNodeTransformDecompose.svg-0f786d5f6d5c1f33cb1802755d013dce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeTransformDecompose.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTransformDecompose.svg-0f786d5f6d5c1f33cb1802755d013dce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeTransformUniform.svg b/src/resources/icons/godot/VisualShaderNodeTransformUniform.svg new file mode 100644 index 00000000..04599f61 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTransformUniform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeTransformUniform.svg.import b/src/resources/icons/godot/VisualShaderNodeTransformUniform.svg.import new file mode 100644 index 00000000..81284c77 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTransformUniform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n88xj4innlfx" +path="res://.godot/imported/VisualShaderNodeTransformUniform.svg-4174d9bf33d005d3e072e27a87cf04c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeTransformUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTransformUniform.svg-4174d9bf33d005d3e072e27a87cf04c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeTransformVecMult.svg b/src/resources/icons/godot/VisualShaderNodeTransformVecMult.svg new file mode 100644 index 00000000..ef31e551 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTransformVecMult.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeTransformVecMult.svg.import b/src/resources/icons/godot/VisualShaderNodeTransformVecMult.svg.import new file mode 100644 index 00000000..9667090c --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeTransformVecMult.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpvto3yakilld" +path="res://.godot/imported/VisualShaderNodeTransformVecMult.svg-d03925b611ef93e37fe3987ff747a884.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeTransformVecMult.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTransformVecMult.svg-d03925b611ef93e37fe3987ff747a884.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeVec3Uniform.svg b/src/resources/icons/godot/VisualShaderNodeVec3Uniform.svg new file mode 100644 index 00000000..dab366bc --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVec3Uniform.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeVec3Uniform.svg.import b/src/resources/icons/godot/VisualShaderNodeVec3Uniform.svg.import new file mode 100644 index 00000000..05316acb --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVec3Uniform.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbqmxvv0bivmi" +path="res://.godot/imported/VisualShaderNodeVec3Uniform.svg-0d0bd4342b7816d346a9a0ab955371bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeVec3Uniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVec3Uniform.svg-0d0bd4342b7816d346a9a0ab955371bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeVectorCompose.svg b/src/resources/icons/godot/VisualShaderNodeVectorCompose.svg new file mode 100644 index 00000000..5df835fb --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVectorCompose.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeVectorCompose.svg.import b/src/resources/icons/godot/VisualShaderNodeVectorCompose.svg.import new file mode 100644 index 00000000..f7956e1c --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVectorCompose.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r3wkhjnff1du" +path="res://.godot/imported/VisualShaderNodeVectorCompose.svg-87e6884733a6f5a4fed6214e7e799664.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeVectorCompose.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVectorCompose.svg-87e6884733a6f5a4fed6214e7e799664.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeVectorDecompose.svg b/src/resources/icons/godot/VisualShaderNodeVectorDecompose.svg new file mode 100644 index 00000000..b00fbba2 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVectorDecompose.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeVectorDecompose.svg.import b/src/resources/icons/godot/VisualShaderNodeVectorDecompose.svg.import new file mode 100644 index 00000000..557d5c37 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVectorDecompose.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coudbo11n7o4h" +path="res://.godot/imported/VisualShaderNodeVectorDecompose.svg-3e8933986ae8418db9a608f8199ebf43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeVectorDecompose.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVectorDecompose.svg-3e8933986ae8418db9a608f8199ebf43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeVectorDistance.svg b/src/resources/icons/godot/VisualShaderNodeVectorDistance.svg new file mode 100644 index 00000000..9701e153 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVectorDistance.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeVectorDistance.svg.import b/src/resources/icons/godot/VisualShaderNodeVectorDistance.svg.import new file mode 100644 index 00000000..5e7cdd39 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVectorDistance.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ttmyhwogs1pa" +path="res://.godot/imported/VisualShaderNodeVectorDistance.svg-71abafef5f320aa236b82eb6b91c073c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeVectorDistance.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVectorDistance.svg-71abafef5f320aa236b82eb6b91c073c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeVectorFunc.svg b/src/resources/icons/godot/VisualShaderNodeVectorFunc.svg new file mode 100644 index 00000000..c6b62c98 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVectorFunc.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeVectorFunc.svg.import b/src/resources/icons/godot/VisualShaderNodeVectorFunc.svg.import new file mode 100644 index 00000000..e0c1b16b --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVectorFunc.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0u3wjtqfvbvh" +path="res://.godot/imported/VisualShaderNodeVectorFunc.svg-71428b30a86e0b955fbf95a3b434612e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeVectorFunc.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVectorFunc.svg-71428b30a86e0b955fbf95a3b434612e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderNodeVectorLen.svg b/src/resources/icons/godot/VisualShaderNodeVectorLen.svg new file mode 100644 index 00000000..f396d610 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVectorLen.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderNodeVectorLen.svg.import b/src/resources/icons/godot/VisualShaderNodeVectorLen.svg.import new file mode 100644 index 00000000..3960eee7 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderNodeVectorLen.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn6kjqgkick6w" +path="res://.godot/imported/VisualShaderNodeVectorLen.svg-2935b8965983c2b5d053d75adf2bf086.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderNodeVectorLen.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVectorLen.svg-2935b8965983c2b5d053d75adf2bf086.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VisualShaderPort.svg b/src/resources/icons/godot/VisualShaderPort.svg new file mode 100644 index 00000000..1bff21d1 --- /dev/null +++ b/src/resources/icons/godot/VisualShaderPort.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VisualShaderPort.svg.import b/src/resources/icons/godot/VisualShaderPort.svg.import new file mode 100644 index 00000000..7dcd697d --- /dev/null +++ b/src/resources/icons/godot/VisualShaderPort.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbe6pauqjca0f" +path="res://.godot/imported/VisualShaderPort.svg-a7f0c4cdc9ade2d6196613a28d50e0a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VisualShaderPort.svg" +dest_files=["res://.godot/imported/VisualShaderPort.svg-a7f0c4cdc9ade2d6196613a28d50e0a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VoxelGI.svg b/src/resources/icons/godot/VoxelGI.svg new file mode 100644 index 00000000..eb9e6cff --- /dev/null +++ b/src/resources/icons/godot/VoxelGI.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VoxelGI.svg.import b/src/resources/icons/godot/VoxelGI.svg.import new file mode 100644 index 00000000..16922ad8 --- /dev/null +++ b/src/resources/icons/godot/VoxelGI.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4oc5qdgrynhn" +path="res://.godot/imported/VoxelGI.svg-476d8e9c93b0f73e5a5b59ae0f6c3ca6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VoxelGI.svg" +dest_files=["res://.godot/imported/VoxelGI.svg-476d8e9c93b0f73e5a5b59ae0f6c3ca6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/VoxelGIData.svg b/src/resources/icons/godot/VoxelGIData.svg new file mode 100644 index 00000000..05c30150 --- /dev/null +++ b/src/resources/icons/godot/VoxelGIData.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/VoxelGIData.svg.import b/src/resources/icons/godot/VoxelGIData.svg.import new file mode 100644 index 00000000..95cfd9ad --- /dev/null +++ b/src/resources/icons/godot/VoxelGIData.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brleq0owbm6hf" +path="res://.godot/imported/VoxelGIData.svg-daf1182e6f00ed370f54d3d039d74b65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/VoxelGIData.svg" +dest_files=["res://.godot/imported/VoxelGIData.svg-daf1182e6f00ed370f54d3d039d74b65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Warning.svg b/src/resources/icons/godot/Warning.svg new file mode 100644 index 00000000..dcc0dd99 --- /dev/null +++ b/src/resources/icons/godot/Warning.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Warning.svg.import b/src/resources/icons/godot/Warning.svg.import new file mode 100644 index 00000000..7ecb35db --- /dev/null +++ b/src/resources/icons/godot/Warning.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0oifl8ota6hu" +path="res://.godot/imported/Warning.svg-64956c933ba1bde8f8ea956f6954224a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Warning.svg" +dest_files=["res://.godot/imported/Warning.svg-64956c933ba1bde8f8ea956f6954224a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/WarningPattern.svg b/src/resources/icons/godot/WarningPattern.svg new file mode 100644 index 00000000..8988abf4 --- /dev/null +++ b/src/resources/icons/godot/WarningPattern.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/WarningPattern.svg.import b/src/resources/icons/godot/WarningPattern.svg.import new file mode 100644 index 00000000..d0514ebc --- /dev/null +++ b/src/resources/icons/godot/WarningPattern.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://54hovl8vahco" +path="res://.godot/imported/WarningPattern.svg-f9302daf3e03243b9d00e2296aab9556.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/WarningPattern.svg" +dest_files=["res://.godot/imported/WarningPattern.svg-f9302daf3e03243b9d00e2296aab9556.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Window.svg b/src/resources/icons/godot/Window.svg new file mode 100644 index 00000000..5beddbf7 --- /dev/null +++ b/src/resources/icons/godot/Window.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Window.svg.import b/src/resources/icons/godot/Window.svg.import new file mode 100644 index 00000000..31b921ab --- /dev/null +++ b/src/resources/icons/godot/Window.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4ij6ko2if0x0" +path="res://.godot/imported/Window.svg-9dfde8ea538dc3836c66079b565e9311.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Window.svg" +dest_files=["res://.godot/imported/Window.svg-9dfde8ea538dc3836c66079b565e9311.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/World2D.svg b/src/resources/icons/godot/World2D.svg new file mode 100644 index 00000000..dcee7fd1 --- /dev/null +++ b/src/resources/icons/godot/World2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/World2D.svg.import b/src/resources/icons/godot/World2D.svg.import new file mode 100644 index 00000000..02b5c0c6 --- /dev/null +++ b/src/resources/icons/godot/World2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5ukat0guem7r" +path="res://.godot/imported/World2D.svg-164d8e4ab4a4c856a83dad000597c585.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/World2D.svg" +dest_files=["res://.godot/imported/World2D.svg-164d8e4ab4a4c856a83dad000597c585.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/World3D.svg b/src/resources/icons/godot/World3D.svg new file mode 100644 index 00000000..650e8766 --- /dev/null +++ b/src/resources/icons/godot/World3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/World3D.svg.import b/src/resources/icons/godot/World3D.svg.import new file mode 100644 index 00000000..3c8c3d2a --- /dev/null +++ b/src/resources/icons/godot/World3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw8erklrxa784" +path="res://.godot/imported/World3D.svg-f034b64046b9c1781a006fc98fe0fe09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/World3D.svg" +dest_files=["res://.godot/imported/World3D.svg-f034b64046b9c1781a006fc98fe0fe09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/WorldBoundaryShape2D.svg b/src/resources/icons/godot/WorldBoundaryShape2D.svg new file mode 100644 index 00000000..f519e851 --- /dev/null +++ b/src/resources/icons/godot/WorldBoundaryShape2D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/WorldBoundaryShape2D.svg.import b/src/resources/icons/godot/WorldBoundaryShape2D.svg.import new file mode 100644 index 00000000..8fdc24fa --- /dev/null +++ b/src/resources/icons/godot/WorldBoundaryShape2D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsdpisidarblb" +path="res://.godot/imported/WorldBoundaryShape2D.svg-3bfe01ec66799e2234389d4536c3802b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/WorldBoundaryShape2D.svg" +dest_files=["res://.godot/imported/WorldBoundaryShape2D.svg-3bfe01ec66799e2234389d4536c3802b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/WorldBoundaryShape3D.svg b/src/resources/icons/godot/WorldBoundaryShape3D.svg new file mode 100644 index 00000000..af30bdef --- /dev/null +++ b/src/resources/icons/godot/WorldBoundaryShape3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/WorldBoundaryShape3D.svg.import b/src/resources/icons/godot/WorldBoundaryShape3D.svg.import new file mode 100644 index 00000000..c007178c --- /dev/null +++ b/src/resources/icons/godot/WorldBoundaryShape3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bio841gwww3gr" +path="res://.godot/imported/WorldBoundaryShape3D.svg-8b31c3b8eab2370e754534654fe751dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/WorldBoundaryShape3D.svg" +dest_files=["res://.godot/imported/WorldBoundaryShape3D.svg-8b31c3b8eab2370e754534654fe751dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/WorldEnvironment.svg b/src/resources/icons/godot/WorldEnvironment.svg new file mode 100644 index 00000000..a2c036ec --- /dev/null +++ b/src/resources/icons/godot/WorldEnvironment.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/WorldEnvironment.svg.import b/src/resources/icons/godot/WorldEnvironment.svg.import new file mode 100644 index 00000000..395ea977 --- /dev/null +++ b/src/resources/icons/godot/WorldEnvironment.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8rvofwa4k380" +path="res://.godot/imported/WorldEnvironment.svg-9b8713325e5fff3f734edc7e103ca688.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/WorldEnvironment.svg" +dest_files=["res://.godot/imported/WorldEnvironment.svg-9b8713325e5fff3f734edc7e103ca688.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/X509Certificate.svg b/src/resources/icons/godot/X509Certificate.svg new file mode 100644 index 00000000..db294bbf --- /dev/null +++ b/src/resources/icons/godot/X509Certificate.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/X509Certificate.svg.import b/src/resources/icons/godot/X509Certificate.svg.import new file mode 100644 index 00000000..85945f9a --- /dev/null +++ b/src/resources/icons/godot/X509Certificate.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6bmpb7240bgr" +path="res://.godot/imported/X509Certificate.svg-2fd1d29fc2188f22d8c1aac981747aeb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/X509Certificate.svg" +dest_files=["res://.godot/imported/X509Certificate.svg-2fd1d29fc2188f22d8c1aac981747aeb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/XRAnchor3D.svg b/src/resources/icons/godot/XRAnchor3D.svg new file mode 100644 index 00000000..1d325830 --- /dev/null +++ b/src/resources/icons/godot/XRAnchor3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/XRAnchor3D.svg.import b/src/resources/icons/godot/XRAnchor3D.svg.import new file mode 100644 index 00000000..53d34f6e --- /dev/null +++ b/src/resources/icons/godot/XRAnchor3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn7yh1ehbjjf" +path="res://.godot/imported/XRAnchor3D.svg-69867ca9c6c52a5df834659c98e162f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/XRAnchor3D.svg" +dest_files=["res://.godot/imported/XRAnchor3D.svg-69867ca9c6c52a5df834659c98e162f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/XRBodyModifier3D.svg b/src/resources/icons/godot/XRBodyModifier3D.svg new file mode 100644 index 00000000..c4aa17ad --- /dev/null +++ b/src/resources/icons/godot/XRBodyModifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/XRBodyModifier3D.svg.import b/src/resources/icons/godot/XRBodyModifier3D.svg.import new file mode 100644 index 00000000..8a8e6368 --- /dev/null +++ b/src/resources/icons/godot/XRBodyModifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfxbtwdu4yowk" +path="res://.godot/imported/XRBodyModifier3D.svg-590ccfb1367f8d1766db6fe20a9b8d1f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/XRBodyModifier3D.svg" +dest_files=["res://.godot/imported/XRBodyModifier3D.svg-590ccfb1367f8d1766db6fe20a9b8d1f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/XRCamera3D.svg b/src/resources/icons/godot/XRCamera3D.svg new file mode 100644 index 00000000..a7351cdc --- /dev/null +++ b/src/resources/icons/godot/XRCamera3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/XRCamera3D.svg.import b/src/resources/icons/godot/XRCamera3D.svg.import new file mode 100644 index 00000000..3c0d6660 --- /dev/null +++ b/src/resources/icons/godot/XRCamera3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu060osqeiye5" +path="res://.godot/imported/XRCamera3D.svg-1ed2f45b90ff4abc3370698a54df82fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/XRCamera3D.svg" +dest_files=["res://.godot/imported/XRCamera3D.svg-1ed2f45b90ff4abc3370698a54df82fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/XRController3D.svg b/src/resources/icons/godot/XRController3D.svg new file mode 100644 index 00000000..b4e3467f --- /dev/null +++ b/src/resources/icons/godot/XRController3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/XRController3D.svg.import b/src/resources/icons/godot/XRController3D.svg.import new file mode 100644 index 00000000..d667e89e --- /dev/null +++ b/src/resources/icons/godot/XRController3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwg1tjvw1qscg" +path="res://.godot/imported/XRController3D.svg-f59e95637dd93c358fdc1180fec1e2cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/XRController3D.svg" +dest_files=["res://.godot/imported/XRController3D.svg-f59e95637dd93c358fdc1180fec1e2cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/XRFaceModifier3D.svg b/src/resources/icons/godot/XRFaceModifier3D.svg new file mode 100644 index 00000000..9eaf6eaa --- /dev/null +++ b/src/resources/icons/godot/XRFaceModifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/XRFaceModifier3D.svg.import b/src/resources/icons/godot/XRFaceModifier3D.svg.import new file mode 100644 index 00000000..2670a6b1 --- /dev/null +++ b/src/resources/icons/godot/XRFaceModifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db86vtfs3rg2m" +path="res://.godot/imported/XRFaceModifier3D.svg-cd560230e1c6f260849afdbfdcec67a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/XRFaceModifier3D.svg" +dest_files=["res://.godot/imported/XRFaceModifier3D.svg-cd560230e1c6f260849afdbfdcec67a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/XRHandModifier3D.svg b/src/resources/icons/godot/XRHandModifier3D.svg new file mode 100644 index 00000000..aed527aa --- /dev/null +++ b/src/resources/icons/godot/XRHandModifier3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/XRHandModifier3D.svg.import b/src/resources/icons/godot/XRHandModifier3D.svg.import new file mode 100644 index 00000000..e8a3bc4e --- /dev/null +++ b/src/resources/icons/godot/XRHandModifier3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh7ljfr7bfcpt" +path="res://.godot/imported/XRHandModifier3D.svg-4a34e6bca561f33023c543e0388a2ee2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/XRHandModifier3D.svg" +dest_files=["res://.godot/imported/XRHandModifier3D.svg-4a34e6bca561f33023c543e0388a2ee2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/XRNode3D.svg b/src/resources/icons/godot/XRNode3D.svg new file mode 100644 index 00000000..72de6f4e --- /dev/null +++ b/src/resources/icons/godot/XRNode3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/XRNode3D.svg.import b/src/resources/icons/godot/XRNode3D.svg.import new file mode 100644 index 00000000..8fcb30e1 --- /dev/null +++ b/src/resources/icons/godot/XRNode3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1rep7kihvvom" +path="res://.godot/imported/XRNode3D.svg-b16af4ed331da6754f836b296c699a85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/XRNode3D.svg" +dest_files=["res://.godot/imported/XRNode3D.svg-b16af4ed331da6754f836b296c699a85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/XROrigin3D.svg b/src/resources/icons/godot/XROrigin3D.svg new file mode 100644 index 00000000..0ba68f11 --- /dev/null +++ b/src/resources/icons/godot/XROrigin3D.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/XROrigin3D.svg.import b/src/resources/icons/godot/XROrigin3D.svg.import new file mode 100644 index 00000000..fe2cbfe6 --- /dev/null +++ b/src/resources/icons/godot/XROrigin3D.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3omg1yl01l5v" +path="res://.godot/imported/XROrigin3D.svg-9d4c65f44426b9f499319cc680464093.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/XROrigin3D.svg" +dest_files=["res://.godot/imported/XROrigin3D.svg-9d4c65f44426b9f499319cc680464093.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/YSort.svg b/src/resources/icons/godot/YSort.svg new file mode 100644 index 00000000..66353d49 --- /dev/null +++ b/src/resources/icons/godot/YSort.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/YSort.svg.import b/src/resources/icons/godot/YSort.svg.import new file mode 100644 index 00000000..4ee06106 --- /dev/null +++ b/src/resources/icons/godot/YSort.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l0shkn7ct8xn" +path="res://.godot/imported/YSort.svg-ac06563c7d80febbee45ee09eae2a48d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/YSort.svg" +dest_files=["res://.godot/imported/YSort.svg-ac06563c7d80febbee45ee09eae2a48d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/Zoom.svg b/src/resources/icons/godot/Zoom.svg new file mode 100644 index 00000000..d2300b04 --- /dev/null +++ b/src/resources/icons/godot/Zoom.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/Zoom.svg.import b/src/resources/icons/godot/Zoom.svg.import new file mode 100644 index 00000000..226ada7f --- /dev/null +++ b/src/resources/icons/godot/Zoom.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://svy52caccs5a" +path="res://.godot/imported/Zoom.svg-d560139aa36f035f87623bbd1662f1fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/Zoom.svg" +dest_files=["res://.godot/imported/Zoom.svg-d560139aa36f035f87623bbd1662f1fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ZoomLess.svg b/src/resources/icons/godot/ZoomLess.svg new file mode 100644 index 00000000..ecdb23f5 --- /dev/null +++ b/src/resources/icons/godot/ZoomLess.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ZoomLess.svg.import b/src/resources/icons/godot/ZoomLess.svg.import new file mode 100644 index 00000000..855cef27 --- /dev/null +++ b/src/resources/icons/godot/ZoomLess.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgh7d4t1bw0yh" +path="res://.godot/imported/ZoomLess.svg-12e6f3927a14fee3bf4949e30a398f21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ZoomLess.svg" +dest_files=["res://.godot/imported/ZoomLess.svg-12e6f3927a14fee3bf4949e30a398f21.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ZoomMore.svg b/src/resources/icons/godot/ZoomMore.svg new file mode 100644 index 00000000..a6dda358 --- /dev/null +++ b/src/resources/icons/godot/ZoomMore.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ZoomMore.svg.import b/src/resources/icons/godot/ZoomMore.svg.import new file mode 100644 index 00000000..76e44dd3 --- /dev/null +++ b/src/resources/icons/godot/ZoomMore.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cupef8rhxanm3" +path="res://.godot/imported/ZoomMore.svg-26e569298e0a0c8aa27ef6091bac0ae4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ZoomMore.svg" +dest_files=["res://.godot/imported/ZoomMore.svg-26e569298e0a0c8aa27ef6091bac0ae4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/ZoomReset.svg b/src/resources/icons/godot/ZoomReset.svg new file mode 100644 index 00000000..06b8ff75 --- /dev/null +++ b/src/resources/icons/godot/ZoomReset.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/ZoomReset.svg.import b/src/resources/icons/godot/ZoomReset.svg.import new file mode 100644 index 00000000..9f0ce58e --- /dev/null +++ b/src/resources/icons/godot/ZoomReset.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bew1khjkmeff7" +path="res://.godot/imported/ZoomReset.svg-e2aca2579ea511ef6d3fd38231eb6518.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/ZoomReset.svg" +dest_files=["res://.godot/imported/ZoomReset.svg-e2aca2579ea511ef6d3fd38231eb6518.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/bool.svg b/src/resources/icons/godot/bool.svg new file mode 100644 index 00000000..d8b7ae39 --- /dev/null +++ b/src/resources/icons/godot/bool.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/bool.svg.import b/src/resources/icons/godot/bool.svg.import new file mode 100644 index 00000000..a4d9165d --- /dev/null +++ b/src/resources/icons/godot/bool.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd2sf7pdfcfw3" +path="res://.godot/imported/bool.svg-e2afedd2e8cae9efdde6cead8ab1f405.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/bool.svg" +dest_files=["res://.godot/imported/bool.svg-e2afedd2e8cae9efdde6cead8ab1f405.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/editor_icons_builders.py b/src/resources/icons/godot/editor_icons_builders.py new file mode 100644 index 00000000..24ae0b80 --- /dev/null +++ b/src/resources/icons/godot/editor_icons_builders.py @@ -0,0 +1,47 @@ +"""Functions used to generate source files during build time""" + +import os + +import methods + + +# See also `scene/theme/icons/default_theme_icons_builders.py`. +def make_editor_icons_action(target, source, env): + icons_names = [] + icons_raw = [] + icons_med = [] + icons_big = [] + + for idx, svg in enumerate(source): + path = str(svg) + with open(path, encoding="utf-8", newline="\n") as file: + icons_raw.append(methods.to_raw_cstring(file.read())) + + name = os.path.splitext(os.path.basename(path))[0] + icons_names.append(f'"{name}"') + + if name.endswith("MediumThumb"): + icons_med.append(str(idx)) + elif name.endswith(("BigThumb", "GodotFile")): + icons_big.append(str(idx)) + + icons_names_str = ",\n\t".join(icons_names) + icons_raw_str = ",\n\t".join(icons_raw) + + with methods.generated_wrapper(str(target[0])) as file: + file.write(f"""\ +inline constexpr int editor_icons_count = {len(icons_names)}; +inline constexpr const char *editor_icons_sources[] = {{ + {icons_raw_str} +}}; + +inline constexpr const char *editor_icons_names[] = {{ + {icons_names_str} +}}; + +inline constexpr int editor_md_thumbs_count = {len(icons_med)}; +inline constexpr int editor_md_thumbs_indices[] = {{ {", ".join(icons_med)} }}; + +inline constexpr int editor_bg_thumbs_count = {len(icons_big)}; +inline constexpr int editor_bg_thumbs_indices[] = {{ {", ".join(icons_big)} }}; +""") diff --git a/src/resources/icons/godot/float.svg b/src/resources/icons/godot/float.svg new file mode 100644 index 00000000..a9e8c4ee --- /dev/null +++ b/src/resources/icons/godot/float.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/float.svg.import b/src/resources/icons/godot/float.svg.import new file mode 100644 index 00000000..82968756 --- /dev/null +++ b/src/resources/icons/godot/float.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmjq65kf33fp5" +path="res://.godot/imported/float.svg-96aca4fdf9df509e69f39c2af71bd714.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/float.svg" +dest_files=["res://.godot/imported/float.svg-96aca4fdf9df509e69f39c2af71bd714.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/int.svg b/src/resources/icons/godot/int.svg new file mode 100644 index 00000000..d90714b1 --- /dev/null +++ b/src/resources/icons/godot/int.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/int.svg.import b/src/resources/icons/godot/int.svg.import new file mode 100644 index 00000000..a5eab8cf --- /dev/null +++ b/src/resources/icons/godot/int.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsouwfnj185vo" +path="res://.godot/imported/int.svg-8b0d03f1085e5b49be83c1b693d24ee5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/int.svg" +dest_files=["res://.godot/imported/int.svg-8b0d03f1085e5b49be83c1b693d24ee5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/godot/uint.svg b/src/resources/icons/godot/uint.svg new file mode 100644 index 00000000..3d6786d5 --- /dev/null +++ b/src/resources/icons/godot/uint.svg @@ -0,0 +1 @@ + diff --git a/src/resources/icons/godot/uint.svg.import b/src/resources/icons/godot/uint.svg.import new file mode 100644 index 00000000..c0584358 --- /dev/null +++ b/src/resources/icons/godot/uint.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b368gsqlivxql" +path="res://.godot/imported/uint.svg-9ec99246d6f2b201df1b78f2ce27f25f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/godot/uint.svg" +dest_files=["res://.godot/imported/uint.svg-9ec99246d6f2b201df1b78f2ce27f25f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/home.svg b/src/resources/icons/home.svg new file mode 100644 index 00000000..47c10057 --- /dev/null +++ b/src/resources/icons/home.svg @@ -0,0 +1,37 @@ + + + + + + + + diff --git a/src/resources/icons/home.svg.import b/src/resources/icons/home.svg.import new file mode 100644 index 00000000..01010dba --- /dev/null +++ b/src/resources/icons/home.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7mgxvhy58nhp" +path="res://.godot/imported/home.svg-2b476043e26df33e5e1ff306597ac95d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/home.svg" +dest_files=["res://.godot/imported/home.svg-2b476043e26df33e5e1ff306597ac95d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=true +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/inventory.svg b/src/resources/icons/inventory.svg new file mode 100644 index 00000000..360351c5 --- /dev/null +++ b/src/resources/icons/inventory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/inventory.svg.import b/src/resources/icons/inventory.svg.import new file mode 100644 index 00000000..9f5a8135 --- /dev/null +++ b/src/resources/icons/inventory.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br6hpysqvuhek" +path="res://.godot/imported/inventory.svg-4df2a15583a1909dfe17d480c9308b85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/inventory.svg" +dest_files=["res://.godot/imported/inventory.svg-4df2a15583a1909dfe17d480c9308b85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/logos/logo-big.png b/src/resources/icons/logos/logo-big.png new file mode 100644 index 00000000..93238832 Binary files /dev/null and b/src/resources/icons/logos/logo-big.png differ diff --git a/src/resources/icons/logos/logo-big.png.import b/src/resources/icons/logos/logo-big.png.import new file mode 100644 index 00000000..87ddf999 --- /dev/null +++ b/src/resources/icons/logos/logo-big.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpdryj57noc4c" +path="res://.godot/imported/logo-big.png-8df91e22a8df12fa9010f3b5b5799846.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/logos/logo-big.png" +dest_files=["res://.godot/imported/logo-big.png-8df91e22a8df12fa9010f3b5b5799846.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/src/resources/icons/logos/logo.icns b/src/resources/icons/logos/logo.icns new file mode 100644 index 00000000..4dcaa944 Binary files /dev/null and b/src/resources/icons/logos/logo.icns differ diff --git a/src/resources/icons/logos/logo.ico b/src/resources/icons/logos/logo.ico new file mode 100644 index 00000000..87c9bd91 Binary files /dev/null and b/src/resources/icons/logos/logo.ico differ diff --git a/src/resources/icons/logos/logo.svg b/src/resources/icons/logos/logo.svg new file mode 100644 index 00000000..00edb2b0 --- /dev/null +++ b/src/resources/icons/logos/logo.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + diff --git a/src/resources/icons/logos/logo.svg.import b/src/resources/icons/logos/logo.svg.import new file mode 100644 index 00000000..d21bf7cc --- /dev/null +++ b/src/resources/icons/logos/logo.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt4tkqkxr41ob" +path="res://.godot/imported/logo.svg-6ed21cb00320c581a372293d3be1caf2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/logos/logo.svg" +dest_files=["res://.godot/imported/logo.svg-6ed21cb00320c581a372293d3be1caf2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=1.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/logos/logo.webp b/src/resources/icons/logos/logo.webp new file mode 100644 index 00000000..8c42e030 Binary files /dev/null and b/src/resources/icons/logos/logo.webp differ diff --git a/src/resources/icons/logos/logo.webp.import b/src/resources/icons/logos/logo.webp.import new file mode 100644 index 00000000..64c377fa --- /dev/null +++ b/src/resources/icons/logos/logo.webp.import @@ -0,0 +1,36 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du7qkxsv0v82d" +valid=false + +[deps] + +source_file="res://resources/icons/logos/logo.webp" + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/src/resources/icons/science.svg b/src/resources/icons/science.svg new file mode 100644 index 00000000..44ef30a9 --- /dev/null +++ b/src/resources/icons/science.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/science.svg.import b/src/resources/icons/science.svg.import new file mode 100644 index 00000000..37a6512b --- /dev/null +++ b/src/resources/icons/science.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fkfiymss8p57" +path="res://.godot/imported/science.svg-cafdac4bdbb3c0808227ace8b523bf6d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/science.svg" +dest_files=["res://.godot/imported/science.svg-cafdac4bdbb3c0808227ace8b523bf6d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/search.svg b/src/resources/icons/search.svg new file mode 100644 index 00000000..1de92dbd --- /dev/null +++ b/src/resources/icons/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/search.svg.import b/src/resources/icons/search.svg.import new file mode 100644 index 00000000..bb324b15 --- /dev/null +++ b/src/resources/icons/search.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rdp5i1i18jus" +path="res://.godot/imported/search.svg-82a26f800f89de19aeb402de255cb51a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/search.svg" +dest_files=["res://.godot/imported/search.svg-82a26f800f89de19aeb402de255cb51a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/send.svg b/src/resources/icons/send.svg new file mode 100644 index 00000000..826ac4cc --- /dev/null +++ b/src/resources/icons/send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/send.svg.import b/src/resources/icons/send.svg.import new file mode 100644 index 00000000..2bc6aec3 --- /dev/null +++ b/src/resources/icons/send.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc24ve1rlrlpq" +path="res://.godot/imported/send.svg-bb321525a8b68976793a8352e1678c24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/send.svg" +dest_files=["res://.godot/imported/send.svg-bb321525a8b68976793a8352e1678c24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/settings.svg b/src/resources/icons/settings.svg new file mode 100644 index 00000000..87e6549e --- /dev/null +++ b/src/resources/icons/settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/settings.svg.import b/src/resources/icons/settings.svg.import new file mode 100644 index 00000000..ce424d02 --- /dev/null +++ b/src/resources/icons/settings.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://basvqob80u3l6" +path="res://.godot/imported/settings.svg-0b4f826fa9066b225cd3dbb381f4b59c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/settings.svg" +dest_files=["res://.godot/imported/settings.svg-0b4f826fa9066b225cd3dbb381f4b59c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/subtitles.svg b/src/resources/icons/subtitles.svg new file mode 100644 index 00000000..b128d913 --- /dev/null +++ b/src/resources/icons/subtitles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/subtitles.svg.import b/src/resources/icons/subtitles.svg.import new file mode 100644 index 00000000..3cdb66e9 --- /dev/null +++ b/src/resources/icons/subtitles.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2yhyfcuop7gx" +path="res://.godot/imported/subtitles.svg-9f1342bf97e0fea8eeb93e4877d4aa61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/subtitles.svg" +dest_files=["res://.godot/imported/subtitles.svg-9f1342bf97e0fea8eeb93e4877d4aa61.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/ui/block.svg b/src/resources/icons/ui/block.svg new file mode 100644 index 00000000..d4cbede2 --- /dev/null +++ b/src/resources/icons/ui/block.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/ui/block.svg.import b/src/resources/icons/ui/block.svg.import new file mode 100644 index 00000000..18b4b7f6 --- /dev/null +++ b/src/resources/icons/ui/block.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4mmsxpws0l2k" +path="res://.godot/imported/block.svg-6cfa996c8806ab64f944c5134364e097.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/ui/block.svg" +dest_files=["res://.godot/imported/block.svg-6cfa996c8806ab64f944c5134364e097.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/ui/check.svg b/src/resources/icons/ui/check.svg new file mode 100644 index 00000000..a73f3ba4 --- /dev/null +++ b/src/resources/icons/ui/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/ui/check.svg.import b/src/resources/icons/ui/check.svg.import new file mode 100644 index 00000000..782cab86 --- /dev/null +++ b/src/resources/icons/ui/check.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl0bn4f34xl51" +path="res://.godot/imported/check.svg-5c326901df346860690e651c5c76add9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/ui/check.svg" +dest_files=["res://.godot/imported/check.svg-5c326901df346860690e651c5c76add9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/ui/podiatry.svg b/src/resources/icons/ui/podiatry.svg new file mode 100644 index 00000000..7fe63645 --- /dev/null +++ b/src/resources/icons/ui/podiatry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/ui/podiatry.svg.import b/src/resources/icons/ui/podiatry.svg.import new file mode 100644 index 00000000..d3888fd6 --- /dev/null +++ b/src/resources/icons/ui/podiatry.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daebexy1etluo" +path="res://.godot/imported/podiatry.svg-07f24e83803c9675de4651b8b1e18f5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/ui/podiatry.svg" +dest_files=["res://.godot/imported/podiatry.svg-07f24e83803c9675de4651b8b1e18f5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/ui/settings.svg b/src/resources/icons/ui/settings.svg new file mode 100644 index 00000000..5dd859aa --- /dev/null +++ b/src/resources/icons/ui/settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/ui/settings.svg.import b/src/resources/icons/ui/settings.svg.import new file mode 100644 index 00000000..303ea47b --- /dev/null +++ b/src/resources/icons/ui/settings.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byxgefy5xsbuu" +path="res://.godot/imported/settings.svg-441728aa7483309d4207a8a780e19829.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/ui/settings.svg" +dest_files=["res://.godot/imported/settings.svg-441728aa7483309d4207a8a780e19829.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/ui/trash.svg b/src/resources/icons/ui/trash.svg new file mode 100644 index 00000000..714432c3 --- /dev/null +++ b/src/resources/icons/ui/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/ui/trash.svg.import b/src/resources/icons/ui/trash.svg.import new file mode 100644 index 00000000..a2920489 --- /dev/null +++ b/src/resources/icons/ui/trash.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5admxcll28y4" +path="res://.godot/imported/trash.svg-b904a4d3b8b45a279de3fbe344053dc8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/ui/trash.svg" +dest_files=["res://.godot/imported/trash.svg-b904a4d3b8b45a279de3fbe344053dc8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/ui/volume.svg b/src/resources/icons/ui/volume.svg new file mode 100644 index 00000000..5ff96d45 --- /dev/null +++ b/src/resources/icons/ui/volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/ui/volume.svg.import b/src/resources/icons/ui/volume.svg.import new file mode 100644 index 00000000..09627f5f --- /dev/null +++ b/src/resources/icons/ui/volume.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ma5txk116bd0" +path="res://.godot/imported/volume.svg-bbcdade9bc2926f6c1390f115e0e5c98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/ui/volume.svg" +dest_files=["res://.godot/imported/volume.svg-bbcdade9bc2926f6c1390f115e0e5c98.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/icons/world.svg b/src/resources/icons/world.svg new file mode 100644 index 00000000..5d5101b9 --- /dev/null +++ b/src/resources/icons/world.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/resources/icons/world.svg.import b/src/resources/icons/world.svg.import new file mode 100644 index 00000000..db923a2b --- /dev/null +++ b/src/resources/icons/world.svg.import @@ -0,0 +1,43 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7ofnclcof0ud" +path="res://.godot/imported/world.svg-e1d8d3b0524fba3a4befec8a9a4380bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://resources/icons/world.svg" +dest_files=["res://.godot/imported/world.svg-e1d8d3b0524fba3a4befec8a9a4380bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=5.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/src/resources/shaders/grid_shader.gdshader b/src/resources/shaders/grid_shader.gdshader new file mode 100644 index 00000000..c7b7864c --- /dev/null +++ b/src/resources/shaders/grid_shader.gdshader @@ -0,0 +1,125 @@ +// https://godotshaders.com/shader/dashed-grid-the-best-darn-grid-shader-yet/ +// Minor edits made to add a triplaner like effect. + +shader_type spatial; + +uniform float subdivisions : hint_range(1, 1024, 1.0) = 1; +uniform float grid_width : hint_range(0.0, 1.0, 0.01) = 0.02; +uniform vec3 background_color : source_color = vec3(0.2, 0.2, 0.2); +uniform vec3 background_color_two : source_color = vec3(0.1, 0.1, 0.1); +uniform vec3 grid_color : source_color = vec3(0.5, 0.5, 0.5); +uniform float dashed_scale_x : hint_range(0.0, 0.99, 0.01) = 0.02; +uniform float dashed_scale_y : hint_range(0.0, 0.99, 0.01) = 0.02; +uniform float dashed_count_x : hint_range(0.0, 16.0, 1.0) = 1.0; +uniform float dashed_count_y : hint_range(0.0, 16.0, 1.0) = 1.0; + +group_uniforms Point; +uniform float point_width : hint_range(0.0, 1.0, 0.01) = 0.021; +uniform vec3 point_color : source_color = vec3(0.0, 0.0, 0.0); +uniform float point_scale_x : hint_range(0.0, 1.0, 0.01) = 0.05; +uniform float point_scale_y : hint_range(0.0, 1.0, 0.01) = 0.05; + +group_uniforms InsideGrid; +uniform float inside_width : hint_range(0.0, 1.0, 0.01) = 0.01; +uniform float inside_subdivisions : hint_range(1, 9, 1) = 5; +uniform vec3 inside_color : source_color = vec3(0.4, 0.4, 0.4); +uniform float in_dashed_scale_x : hint_range(0.0, 0.99, 0.01) = 0.3; +uniform float in_dashed_scale_y : hint_range(0.0, 0.99, 0.01) = 0.3; +uniform float in_dashed_count_x : hint_range(0.0, 18.0, 1.0) = 6.0; +uniform float in_dashed_count_y : hint_range(0.0, 18.0, 1.0) = 6.0; + + +float grid(vec2 uv, vec2 lineWidth,bool check) { + vec4 uvDDXY = vec4(dFdx(uv), dFdy(uv)); + vec2 uvDeriv = vec2(length(uvDDXY.xz), length(uvDDXY.yw)); + + bvec2 invertLine = bvec2(lineWidth.x > 0.5, lineWidth.y > 0.5); //RV + vec2 targetWidth = vec2( + invertLine.x ? 1.0 - lineWidth.x : lineWidth.x, + invertLine.y ? 1.0 - lineWidth.y : lineWidth.y + ); + + + vec2 lineAA = uvDeriv * 1.5; + vec2 gridUV = abs((fract(uv)) * 2.0 - 1.0); + + + if (check == true){ + targetWidth = vec2(1.0); + lineAA *= 1.5; + + float index = 0.0; + index += step(1.0, mod(uv.x, 2.0)); + index += step(1.0, mod(uv.y, 2.0)) * 2.0; + + if (index == 1.0 || index == 2.0) { + lineAA = -lineAA; + } + } else { + gridUV = vec2( + invertLine.x ? gridUV.x : 1.0 - gridUV.x, + invertLine.y ? gridUV.y : 1.0 - gridUV.y + ); + } + + vec2 drawWidth = clamp(targetWidth, uvDeriv, vec2(1.0)); + vec2 gridBase = smoothstep(drawWidth + lineAA, drawWidth - lineAA, gridUV); + + + gridBase *= clamp(targetWidth / drawWidth, 0.0, 1.0); + gridBase = mix(gridBase , targetWidth , clamp((uvDeriv * 2.0 - 1.0) , 0.0, 1.0)); + gridBase.x = invertLine.x ? 1.0 - gridBase.x : gridBase.x; + gridBase.y = invertLine.y ? 1.0 - gridBase.y : gridBase.y; + + + return mix(gridBase.x, 1.0, gridBase.y); +} + + +float dashed_grid(vec2 uv, vec2 lineWidth, vec2 dot_width, vec2 count, float add){ + //Inverts the width values + lineWidth = 1.0 - lineWidth; + //Create two "masks", one for X and one for Y + float gridX = 1.0 - grid(vec2(uv.x * count.x, uv.y + add), vec2(dot_width.x, lineWidth.x), false); + float gridY = 1.0 - grid(vec2(uv.y * count.y, uv.x + add), vec2(dot_width.y, lineWidth.y), false); + + float grid = mix(gridX, 1.0, gridY); + return grid; +} + + +void fragment() { + vec3 WORLD_POSITION = (INV_VIEW_MATRIX * vec4(VERTEX, 1.0)).xyz; + //Subdividing uv + vec2 uv = WORLD_POSITION.xz * subdivisions; + + //CheckerBoard + float checkeredGrid = grid(uv , vec2(0.5), true); + + //Grid + float mainGrid = dashed_grid( + uv , vec2(grid_width), vec2(dashed_scale_x, dashed_scale_y), + vec2(dashed_count_x, dashed_count_y), 0.5); + + //Inside Grid + float insideGrid = dashed_grid( + uv * inside_subdivisions, vec2(inside_width), + vec2(in_dashed_scale_x, in_dashed_scale_y), + vec2(in_dashed_count_x, in_dashed_count_y), 0.5); + + //Points + float pointGrid = dashed_grid( + uv + 0.5, vec2(point_width), + 1.0 - vec2(point_scale_x , point_scale_y), + vec2(1.0), 0.0); + + //Add final color + vec3 grid = mix(background_color, background_color_two, checkeredGrid); + if (insideGrid != 0.0) grid = mix(grid, inside_color, insideGrid); + if (mainGrid != 0.0) grid = mix(grid, grid_color, mainGrid); + if (pointGrid != 0.0) grid = mix(grid, point_color, pointGrid); + + ALBEDO = grid; + + +} diff --git a/src/resources/shaders/grid_shader.gdshader.uid b/src/resources/shaders/grid_shader.gdshader.uid new file mode 100644 index 00000000..d4a6ee47 --- /dev/null +++ b/src/resources/shaders/grid_shader.gdshader.uid @@ -0,0 +1 @@ +uid://bh250q6rfv615 diff --git a/src/resources/themes/default.tres b/src/resources/themes/default.tres new file mode 100644 index 00000000..9a10f21f --- /dev/null +++ b/src/resources/themes/default.tres @@ -0,0 +1,144 @@ +[gd_resource type="Theme" format=3 uid="uid://ckqsvvccivw0x"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_sn1o5"] +bg_color = Color(0.07, 0, 0, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kyium"] +bg_color = Color(0, 0.2784314, 0.6, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_w1m0q"] +bg_color = Color(4.7745703e-05, 0.4621603, 0.95651287, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dgxsq"] +bg_color = Color(0.0627451, 0.0627451, 0.0627451, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_lmgqb"] +bg_color = Color(0, 0.391321, 0.8202678, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nfgd4"] +bg_color = Color(0.38, 0, 0, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hge1u"] +bg_color = Color(0.68, 0.095199995, 0.095199995, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_hvbjw"] +bg_color = Color(0.06, 0.06, 0.06, 0.39215687) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_2d1ky"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +bg_color = Color(0.1, 0.1, 0.1, 0.6) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 +corner_detail = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_ipp3m"] +bg_color = Color(0.078431375, 0.078431375, 0.078431375, 0.78431374) +corner_radius_top_left = 10 +corner_radius_top_right = 10 +corner_radius_bottom_right = 10 +corner_radius_bottom_left = 10 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_kpyni"] +bg_color = Color(0, 0.19833338, 0.34, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_x2xen"] +bg_color = Color(0.038397167, 0.038397167, 0.03839716, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_gvfoe"] +bg_color = Color(0.11062177, 0.15318072, 0.26589048, 1) +border_width_left = 5 +border_width_top = 5 +border_width_right = 5 +border_width_bottom = 5 +border_color = Color(0.018563958, 0.2571708, 0.35101107, 1) +border_blend = true +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_m5j5c"] +bg_color = Color(0.0627451, 0.0627451, 0.0627451, 1) +corner_radius_top_left = 5 +corner_radius_top_right = 5 +corner_radius_bottom_right = 5 +corner_radius_bottom_left = 5 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_iga00"] +content_margin_left = 4.0 +content_margin_top = 4.0 +content_margin_right = 4.0 +content_margin_bottom = 4.0 +bg_color = Color(0.1, 0.1, 0.1, 0.6) +border_color = Color(0, 0, 0, 0.6) +corner_radius_top_left = 3 +corner_radius_top_right = 3 +corner_radius_bottom_right = 3 +corner_radius_bottom_left = 3 +corner_detail = 5 + +[resource] +Button/styles/disabled = SubResource("StyleBoxFlat_sn1o5") +Button/styles/focus = SubResource("StyleBoxFlat_kyium") +Button/styles/hover = SubResource("StyleBoxFlat_kyium") +Button/styles/hover_pressed = SubResource("StyleBoxFlat_w1m0q") +Button/styles/normal = SubResource("StyleBoxFlat_dgxsq") +Button/styles/pressed = SubResource("StyleBoxFlat_lmgqb") +Danger/base_type = &"Button" +Danger/styles/focus = SubResource("StyleBoxFlat_nfgd4") +Danger/styles/hover = SubResource("StyleBoxFlat_nfgd4") +Danger/styles/hover_pressed = SubResource("StyleBoxFlat_nfgd4") +Danger/styles/pressed = SubResource("StyleBoxFlat_hge1u") +LightButton/base_type = &"Button" +LightButton/styles/normal = SubResource("StyleBoxFlat_hvbjw") +LineEdit/styles/normal = SubResource("StyleBoxFlat_2d1ky") +Panel/styles/panel = SubResource("StyleBoxFlat_ipp3m") +PopupMenu/constants/item_end_padding = 5 +PopupMenu/constants/item_start_padding = 5 +PopupMenu/constants/v_separation = 10 +PopupMenu/styles/hover = SubResource("StyleBoxFlat_kpyni") +PopupMenu/styles/panel = SubResource("StyleBoxFlat_x2xen") +PopupPanel/styles/panel = SubResource("StyleBoxFlat_dgxsq") +ScrollContainer/constants/scrollbar_h_separation = 10 +SessionListing/base_type = &"Button" +SessionListing/styles/hover = SubResource("StyleBoxFlat_gvfoe") +SolidBackground/base_type = &"PanelContainer" +SolidBackground/styles/panel = SubResource("StyleBoxFlat_m5j5c") +TextEdit/styles/normal = SubResource("StyleBoxFlat_iga00") diff --git a/src/scenes/levels/base.tscn b/src/scenes/levels/base.tscn new file mode 100644 index 00000000..c4dd0de4 --- /dev/null +++ b/src/scenes/levels/base.tscn @@ -0,0 +1,27 @@ +[gd_scene format=3 uid="uid://bysrhijnau31g"] + +[ext_resource type="Script" uid="uid://p7vrlersnv7p" path="res://scenes/managers/scene/spawnable_manager.gd" id="1_5on25"] +[ext_resource type="Script" uid="uid://c13l6ywhxq6n5" path="res://scenes/managers/scene/player.gd" id="1_c3hqj"] +[ext_resource type="Script" uid="uid://bmm4mxv8pm5gh" path="res://scenes/managers/scene/network.gd" id="1_fundk"] +[ext_resource type="Script" uid="uid://cxbdjoelope42" path="res://scenes/managers/scene/signalbus.gd" id="2_fundk"] +[ext_resource type="Script" uid="uid://b0dicnumx46f8" path="res://addons/rpc-await/rpc_await.gd" id="5_nd5i0"] + +[node name="Base" type="Node3D" unique_id=2084163635] + +[node name="SpawnableManager" type="Node" parent="." unique_id=1378414814] +script = ExtResource("1_5on25") + +[node name="NetworkManager" type="Node" parent="." unique_id=2144728320] +script = ExtResource("1_fundk") + +[node name="PlayerManager" type="Node" parent="." unique_id=412138074] +script = ExtResource("1_c3hqj") + +[node name="SignalBus" type="Node" parent="." unique_id=165926833] +script = ExtResource("2_fundk") + +[node name="RpcAwaiter" type="Node" parent="." unique_id=742842153] +script = ExtResource("5_nd5i0") +metadata/_custom_type_script = "uid://b0dicnumx46f8" + +[node name="root" type="Node3D" parent="." unique_id=345927695] diff --git a/src/scenes/levels/empty.tscn b/src/scenes/levels/empty.tscn new file mode 100644 index 00000000..38777f80 --- /dev/null +++ b/src/scenes/levels/empty.tscn @@ -0,0 +1,3 @@ +[gd_scene format=3 uid="uid://dih3y05s4aj3j"] + +[node name="Home" type="Node3D" unique_id=1178951762] diff --git a/src/scenes/levels/grid.tscn b/src/scenes/levels/grid.tscn new file mode 100644 index 00000000..450d0e65 --- /dev/null +++ b/src/scenes/levels/grid.tscn @@ -0,0 +1,78 @@ +[gd_scene format=3 uid="uid://b3t1dk4vpjk6p"] + +[ext_resource type="Shader" uid="uid://bh250q6rfv615" path="res://resources/shaders/grid_shader.gdshader" id="1_ikf4c"] + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_bcgop"] +sky_top_color = Color(0.297, 0.40241668, 0.55, 1) +energy_multiplier = 1.25 + +[sub_resource type="Sky" id="Sky_8gpll"] +sky_material = SubResource("ProceduralSkyMaterial_bcgop") + +[sub_resource type="Environment" id="Environment_q28r8"] +background_mode = 2 +sky = SubResource("Sky_8gpll") +tonemap_mode = 2 +ssr_enabled = true +ssao_enabled = true +glow_enabled = true + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_gbca3"] +render_priority = 0 +shader = ExtResource("1_ikf4c") +shader_parameter/subdivisions = 1.0 +shader_parameter/grid_width = 0.02 +shader_parameter/background_color = Color(0.2, 0.2, 0.2, 1) +shader_parameter/background_color_two = Color(0.1, 0.1, 0.1, 1) +shader_parameter/grid_color = Color(0.5, 0.5, 0.5, 1) +shader_parameter/dashed_scale_x = 0.01999999955296 +shader_parameter/dashed_scale_y = 0.01999999955296 +shader_parameter/dashed_count_x = 1.0 +shader_parameter/dashed_count_y = 1.0 +shader_parameter/point_width = 0.021 +shader_parameter/point_color = Color(0, 0, 0, 1) +shader_parameter/point_scale_x = 0.05 +shader_parameter/point_scale_y = 0.05 +shader_parameter/inside_width = 0.01 +shader_parameter/inside_subdivisions = 5.0 +shader_parameter/inside_color = Color(0.4, 0.4, 0.4, 1) +shader_parameter/in_dashed_scale_x = 0.3 +shader_parameter/in_dashed_scale_y = 0.3 +shader_parameter/in_dashed_count_x = 6.0 +shader_parameter/in_dashed_count_y = 6.0 + +[sub_resource type="QuadMesh" id="QuadMesh_8gpll"] +material = SubResource("ShaderMaterial_gbca3") +size = Vector2(1000, 1000) +subdivide_width = 10 +subdivide_depth = 10 +orientation = 1 + +[sub_resource type="BoxShape3D" id="BoxShape3D_8gpll"] +size = Vector3(1000, 0.001, 1000) + +[node name="Grid" type="Node3D" unique_id=53262658] +metadata/spawnable_type = "Node3D" + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="." unique_id=1916430820] +transform = Transform3D(-0.8660254, -0.43301278, 0.25, 0, 0.49999997, 0.86602545, -0.50000006, 0.75, -0.43301266, 0, 0, 0) +shadow_enabled = true +metadata/scene_node = true +metadata/spawnable_type = "DirectionalLight3D" + +[node name="WorldEnvironment" type="WorldEnvironment" parent="." unique_id=1457348223] +environment = SubResource("Environment_q28r8") +metadata/scene_node = true +metadata/spawnable_type = "WorldEnvironment" + +[node name="Ground" type="MeshInstance3D" parent="." unique_id=1644270184] +mesh = SubResource("QuadMesh_8gpll") +metadata/scene_node = true +metadata/spawnable_type = "MeshInstance3D" + +[node name="StaticBody3D" type="StaticBody3D" parent="Ground" unique_id=1945745055] +metadata/spawnable_type = "StaticBody3D" + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Ground/StaticBody3D" unique_id=1464818279] +shape = SubResource("BoxShape3D_8gpll") +metadata/spawnable_type = "CollisionShape3D" diff --git a/src/scenes/levels/home.tscn b/src/scenes/levels/home.tscn new file mode 100644 index 00000000..29fff881 --- /dev/null +++ b/src/scenes/levels/home.tscn @@ -0,0 +1,88 @@ +[gd_scene format=3 uid="uid://j0e4j8yqq00s"] + +[ext_resource type="Shader" uid="uid://bh250q6rfv615" path="res://resources/shaders/grid_shader.gdshader" id="1_ikf4c"] + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_q28r8"] +render_priority = 0 +shader = ExtResource("1_ikf4c") +shader_parameter/subdivisions = 1.0 +shader_parameter/grid_width = 0.02 +shader_parameter/background_color = Color(0.2, 0.2, 0.2, 1) +shader_parameter/background_color_two = Color(0.1, 0.1, 0.1, 1) +shader_parameter/grid_color = Color(0.5, 0.5, 0.5, 1) +shader_parameter/dashed_scale_x = 0.02 +shader_parameter/dashed_scale_y = 0.02 +shader_parameter/dashed_count_x = 1.0 +shader_parameter/dashed_count_y = 1.0 +shader_parameter/point_width = 0.021 +shader_parameter/point_color = Color(0, 0, 0, 1) +shader_parameter/point_scale_x = 0.05 +shader_parameter/point_scale_y = 0.05 +shader_parameter/inside_width = 0.01 +shader_parameter/inside_subdivisions = 5.0 +shader_parameter/inside_color = Color(0.4, 0.4, 0.4, 1) +shader_parameter/in_dashed_scale_x = 0.3 +shader_parameter/in_dashed_scale_y = 0.3 +shader_parameter/in_dashed_count_x = 6.0 +shader_parameter/in_dashed_count_y = 6.0 + +[sub_resource type="CylinderMesh" id="CylinderMesh_pagie"] +material = SubResource("ShaderMaterial_q28r8") +top_radius = 15.0 +bottom_radius = 15.0 +height = 0.1 +radial_segments = 128 + +[sub_resource type="CylinderShape3D" id="CylinderShape3D_dbach"] +height = 0.1 +radius = 15.0 + +[sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_q28r8"] +sky_top_color = Color(0.297, 0.40241668, 0.55, 1) +ground_bottom_color = Color(0.089319594, 0.2460128, 0.5241066, 1) +ground_curve = 0.0063728117 +ground_energy_multiplier = 1.2 +energy_multiplier = 1.25 + +[sub_resource type="Sky" id="Sky_gbca3"] +sky_material = SubResource("ProceduralSkyMaterial_q28r8") + +[sub_resource type="Environment" id="Environment_2vl8h"] +background_mode = 2 +background_energy_multiplier = 1.5 +sky = SubResource("Sky_gbca3") +ambient_light_source = 3 +tonemap_mode = 2 +ssr_enabled = true +ssao_enabled = true +glow_enabled = true + +[node name="Home" type="Node3D" unique_id=1178951762] +metadata/spawnable_type = "Node3D" +metadata/pretty_name = "Home" + +[node name="Platform" type="MeshInstance3D" parent="." unique_id=2023447140] +mesh = SubResource("CylinderMesh_pagie") +metadata/scene_node = true +metadata/spawnable_type = "MeshInstance3D" + +[node name="StaticBody3D" type="StaticBody3D" parent="Platform" unique_id=1029779551] +metadata/spawnable_type = "StaticBody3D" +metadata/scene_node = true + +[node name="CollisionShape3D" type="CollisionShape3D" parent="Platform/StaticBody3D" unique_id=2142745815] +shape = SubResource("CylinderShape3D_dbach") +metadata/spawnable_type = "CollisionShape3D" +metadata/scene_node = true + +[node name="DirectionalLight3D" type="DirectionalLight3D" parent="." unique_id=1673060133] +transform = Transform3D(1, 0, 0, 0, 0.995942, 0.08999716, 0, -0.08999716, 0.995942, 0, 0, 0) +shadow_enabled = true +metadata/scene_node = false +metadata/spawnable_type = "DirectionalLight3D" +metadata/pretty_name = "DirectionalLight3D" + +[node name="WorldEnvironment" type="WorldEnvironment" parent="." unique_id=1956146366] +environment = SubResource("Environment_2vl8h") +metadata/scene_node = true +metadata/spawnable_type = "WorldEnvironment" diff --git a/src/scenes/managers/app/network.gd b/src/scenes/managers/app/network.gd new file mode 100644 index 00000000..f66ef086 --- /dev/null +++ b/src/scenes/managers/app/network.gd @@ -0,0 +1,456 @@ +# --- License +# File: /client/src/scenes/managers/app/network.gd +# Project: OpenMinerva +# Created Date: 13 April 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +const MAX_CLIENTS = 1000 +const MINIMUM_INCREMENTAL_PORT = 20205 +# TODO: This interal DB template assumes only a single session server is being advertised to. +const _instance_database_template = { + "public_id": "", + "name": "", + "description": "", + "port": 0, + "max_connected_users": 1, + "privacy": null, + "active": false, + "connected_players": [], + "start_time": 0, + "networking": { + "use_steam": false, + "use_lan": false, + }, +} + +var url_regex: RegEx = RegEx.create_from_string("^(https?)://([^/:]+)(?::(\\d+))?(.*)$") +var _session_db = { } +var _heartbeats = { } + +@onready var scene_m = get_node("../SceneManager") + + +func start_server(port: int = 0, root_scene: Enum.BaseLevel = Enum.BaseLevel.GRID) -> bool: + GlobalLogger.log("Starting a new server.") + + # Get an available port. If port was defined, force that port or fail. + if port != 0: + GlobalLogger.log("Forcing port '%s'" % port) + var port_available = !_is_port_in_use(port) + if !port_available: + GlobalLogger.log("Could not open server on port '%s', unavailable." % port) + return false + else: + port = _find_available_port() + + # Create server master scene. + var _scene: String = scene_m.create_master_scene() + + # Get a reference to the master scene from our scene ID. + var master_scene: Node3D = scene_m.get_master_scene(_scene) + + # Create a new server and peer. + var _mp_api = ServerPeerHelper.create_server(port, MAX_CLIENTS, master_scene.get_path()) + + # Check if _mp_api was successfull. + if _mp_api == null: + GlobalLogger.log("Failed to start server.", Enum.LogLevel.INFO) + scene_m.destroy_master_scene(_scene) + return false + + var net_manager = master_scene.get_node("NetworkManager") + net_manager.setup_connection(_mp_api, _scene) + + _session_db.set(_scene, _create_instance_db_entry(_mp_api, _scene, Enum.PrivacyLevel.INVITE, port, "host")) + + # Create server root scene. + if root_scene: + scene_m.set_master_root_from_program(_scene, root_scene) + else: + scene_m.set_master_root_from_program(_scene, Enum.BaseLevel.GRID) + + scene_m.start_master_scene(_scene) + scene_m.set_active_session(_scene) + + # FIXME: Force spawn the host. This is probably bad design. + scene_m.get_master_scene(_scene).get_node("NetworkManager")._on_peer_connected(1) + + Events.dash_session_changed.emit(_scene) + Events.session_joined.emit() + + return true + + +func stop_server(id: String): + var _is_valid: bool = _session_db.has(id) + GlobalLogger.log("Stopping server '%s'." % id) + + # TODO: Disable join requests to server + + if _is_valid == false: + GlobalLogger.log("Session '%s' does not exist, cannot stop the server." % id, Enum.LogLevel.WARNING) + return + + var mp_api: SceneMultiplayer = _session_db.get(id).api + var all_peers = mp_api.get_peers() + + # Kick all players + for _peer in all_peers: + kick_player(id, _peer, "Server Closing") + + # Close the server + mp_api.multiplayer_peer.close() + mp_api.multiplayer_peer = null + + # Application cleanup + scene_m.stop_master_scene(id) + scene_m.destroy_master_scene(id) + + # Database cleanup + _session_db.erase(id) + return + + +func update_server(id: String, server_info: Dictionary): + GlobalLogger.log("Updating server '%s'." % id) + + var _saved_session_servers = SettingsManager.get_session_servers() + + if server_info.privacy > Enum.PrivacyLevel.INVITE: + for _server in _saved_session_servers: + if _heartbeats.has(id): + GlobalLogger.log("Session '%s' is already advertised. Updating instead." % id) + await _update_session_server_listing(server_info, _server.url) + else: + GlobalLogger.log("Advertising Session '%s'." % id) + var advertise_response = await _advertise_session(server_info, _server.url) + + if advertise_response.ok == true: + _session_db[id].public_id = advertise_response.data.id + _create_heartbeat_timer(server_info.id, _server.url) + + if server_info.privacy == Enum.PrivacyLevel.INVITE: + if _heartbeats.has(id): + GlobalLogger.log("Destroying session heartbeat for '%s'" % id) + _heartbeats.erase(id) + + for _server in _saved_session_servers: + _remove_session_from_server(id, _server.url) + + Events.emit_signal("instance_updated") + return + + +func join_server(ip: String = "", port: int = 0) -> bool: + GlobalLogger.log("Joining server at '%s:%s'" % [ip, port], Enum.LogLevel.INFO) + var _port_is_valid = port > 0 && port < 65535 + + if ip.is_empty() || !_port_is_valid: + GlobalLogger.log("Server information is invalid '%s:%s'." % [ip, port], Enum.LogLevel.INFO) + return false + + # Create server master scene. + var _scene: String = scene_m.create_master_scene() + + # Get a reference to the master scene from our scene ID. + var master_scene: Node3D = scene_m.get_master_scene(_scene) + + # Create a new client peer. + var _mp_api = ServerPeerHelper.create_client(ip, port, master_scene.get_path()) + + # Check if _mp_api was successfull. + if _mp_api == null: + GlobalLogger.log("Failed to join server.", Enum.LogLevel.INFO) + scene_m.destroy_master_scene(_scene) + return false + + var net_manager = master_scene.get_node("NetworkManager") + net_manager.setup_connection(_mp_api, _scene) + + # TODO: Do we need such a heavy Database entry? Isn't it only used once? + _session_db.set(_scene, _create_instance_db_entry(_mp_api, _scene, Enum.PrivacyLevel.INVITE, port, "client")) + + Events.emit_signal("session_joined") + return true + + +func leave_server(id: String): + GlobalLogger.log("Trying to leave server '%s'." % id) + var _is_valid: bool = _session_db.has(id) + + if _is_valid == false: + GlobalLogger.log("Session '%s' does not exist, cannot disconnect." % id, Enum.LogLevel.WARNING) + return + + var mp_api: SceneMultiplayer = _session_db[id].api + + if mp_api.multiplayer_peer: + mp_api.multiplayer_peer.close() + GlobalLogger.log("Disconnected from session '%s'." % id, Enum.LogLevel.DEBUG) + + scene_m.set_active_session(get_connected_sessions()[0].id) + + scene_m.stop_master_scene(id) + scene_m.destroy_master_scene(id) + + _session_db.erase(id) + + GlobalLogger.log("Successfully disconnected from session '%s' and cleaned up." % id, Enum.LogLevel.DEBUG) + Events.emit_signal("session_left") + return + + +func kick_player(server_id: String, peer_id: int, reason: String): + GlobalLogger.log("Kicking peer '%s' from '%s' for reason '%s'" % [peer_id, server_id, reason], Enum.LogLevel.DEBUG) + var _is_valid: bool = _session_db.has(server_id) + + # TODO: Check if peer exists + if _is_valid == true: + var mp_api: SceneMultiplayer = _session_db[server_id].api + # TODO: Notify user of kick + mp_api.disconnect_peer(peer_id) + return + + +func get_connected_sessions(): + var result = [] + # TODO: Is JSON required here? + for session_id in _session_db.keys(): + result.append(_session_db[session_id].merged({ "id": session_id })) + + return result + + +func set_active_session(id: String): + var _is_valid: bool = _session_db.has(id) + + if _is_valid: + GlobalLogger.log("Tried to mark an invalid session as active: '%s'" % id, Enum.LogLevel.WARNING) + return + + for session_id in _session_db.keys(): + var _my_session_id = _session_db[session_id].api.multiplayer.get_unique_id() + _session_db[session_id].active = false + scene_m.get_master_root(session_id).get_node("PlayerManager").players.get(_my_session_id).get("node").camera.current = false + + var my_id = _session_db[id].api.multiplayer.get_unique_id() + scene_m.get_master_root(id).get_node("PlayerManager").players.get(my_id).get("node").camera.current = true + _session_db[id].active = true + scene_m.set_active_session(id) + Events.dash_session_changed.emit(id) + return + + +func _update_session_server_listing(session_info: Dictionary, session_server: String) -> Dictionary: + var response_dict = { "ok": false, "error": null, "data": null } + + GlobalLogger.log("Updating session '%s' to the server '%s'" % [session_info.id, session_server]) + var url = UrlParser.deconstruct("%s/api/v1/updateSession" % session_server) + + if url.ok != true: + GlobalLogger.log("Failed to deconstruct the URL '%s'. Error: '%s'" % [session_server, url.error]) + response_dict.error = url.error + return response_dict + + url = url.data + var _api_key = Accounts.get_session_server_token(url.host) + var _body = { + "id": _session_db[session_info.id].public_id, + "session_name": session_info.name, + "session_description": session_info.description, + "session_privacy": session_info.privacy, + } + + var _update_response = await HTTP.req( + HTTPClient.Method.METHOD_POST, + url.host, + url.path, + url.port, + ["Accept: application/json", "Content-Type: application/json", "x-api-key: %s" % _api_key], + JSON.stringify(_body), + ) + + return response_dict + + +func _remove_session_from_server(server_id: String, session_server: String) -> Dictionary: + var response_dict = { "ok": false, "error": null, "data": { } } + var _full_url = "%s/api/v1/deleteSession" % session_server + + GlobalLogger.log("Removing session '%s' to the server '%s'" % [server_id, session_server]) + var url = UrlParser.deconstruct(_full_url) + + if url.ok != true: + GlobalLogger.log("Failed to deconstruct the URL '%s'. Error: '%s'" % [_full_url, url.error]) + response_dict.error = url.error + return response_dict + + url = url.data + var _api_key = Accounts.get_session_server_token(url.host) + var _body = { + "id": _session_db[server_id].public_id, + } + + var _removal_response = await HTTP.req( + HTTPClient.Method.METHOD_DELETE, + url.host, + url.path, + url.port, + ["Accept: application/json", "Content-Type: application/json", "x-api-key: %s" % _api_key], + JSON.stringify(_body), + ) + + if _removal_response.ok: + response_dict.ok = true + response_dict.data = JSON.parse_string(_removal_response.body) + return response_dict + + response_dict.error = _removal_response.error + return response_dict + + +func _find_available_port(target_port: int = MINIMUM_INCREMENTAL_PORT) -> int: + GlobalLogger.log("Trying to find an available port starting at '%s'." % target_port) + var _found_port = null + var _is_found = false + + while _is_found == false: + var port_available = !_is_port_in_use(target_port) + if port_available: + _found_port = target_port + _is_found = true + break + target_port = target_port + 1 + + GlobalLogger.log("Port found: '%s'" % target_port) + + return _found_port + + +func _is_port_in_use(port: int) -> bool: + var udp_server = UDPServer.new() + var err_udp = udp_server.listen(port, "*") + var tcp_server = TCPServer.new() + var err_tcp = tcp_server.listen(port, "*") + + if err_udp == OK && err_tcp == OK: + udp_server.stop() + tcp_server.stop() + return false + + udp_server.stop() + tcp_server.stop() + return true + + +func _create_heartbeat_timer(session_id: String, session_server_url: String): + GlobalLogger.log("Creating a heartbeat timer for server '%s'" % session_id) + var timer = get_tree().create_timer(20) + + _heartbeats[session_id] = timer + + timer.timeout.connect(_heartbeat_timer_timeout.bind(session_id, session_server_url)) + return + + +func _heartbeat_timer_timeout(session_id: String, session_server_url: String): + GlobalLogger.log("Sending a heartbeat for server '%s'" % session_id) + if _heartbeats.has(session_id) == false: + GlobalLogger.log("Server '%s' does not exist anymore, not sending a heartbeat." % session_id) + return + + _heartbeat_session(session_id, session_server_url) + + _create_heartbeat_timer(session_id, session_server_url) + return + + +func _heartbeat_session(session_id: String, session_server_url: String) -> void: + var _full_url = "%s/api/v1/heartbeatSession" % session_server_url + var _url = UrlParser.deconstruct(_full_url) + + if _url.ok != true: + GlobalLogger.log("Failed to deconstruct the URL '%s'. Error: '%s'" % [_full_url, _url.error]) + return + + _url = _url.data + var _api_key = Accounts.get_session_server_token(_url.host) + var body = { "session_id": _session_db[session_id].public_id } + + var response = await HTTP.req( + HTTPClient.Method.METHOD_POST, + _url.host, + _url.path, + _url.port, + ["Accept: application/json", "Content-Type: application/json", "x-api-key: %s" % _api_key], + JSON.stringify(body), + ) + + if response and response.get("ok"): + GlobalLogger.log("Heartbeat sent for session '%s'" % session_id) + return + + +func _advertise_session(session_info: Dictionary, session_server: String) -> Dictionary: + var response_dict = { "ok": false, "error": null, "data": null } + GlobalLogger.log("Advertising session '%s' to the server '%s'" % [session_info.id, session_server]) + var _full_url = "%s/api/v1/postSession" % session_server + var url = UrlParser.deconstruct(_full_url) + + if url.ok != true: + GlobalLogger.log("Failed to deconstruct the URL '%s'. Error: '%s'" % [_full_url, url.error]) + response_dict.error = url.error + return response_dict + + url = url.data + + var _api_key = Accounts.get_session_server_token(url.host) + var _body = { + "session_name": session_info.name, + "session_description": session_info.description, + "session_privacy": session_info.privacy, + "session_port": session_info.port, + } + + var advertise_response = await HTTP.req( + HTTPClient.Method.METHOD_POST, + url.host, + url.path, + url.port, + ["Accept: application/json", "Content-Type: application/json", "x-api-key: %s" % _api_key], + JSON.stringify(_body), + ) + + # FIXME: What is this flow? This is bad? + if advertise_response.ok != true: + response_dict.error = advertise_response.error + return response_dict + + advertise_response = JSON.parse_string(advertise_response.body) + # FIXME: When logging in, immediately trying to host a session results in a fatal error here. + if advertise_response.ok == false: + response_dict.error = advertise_response.error + return response_dict + + advertise_response = advertise_response.data + + response_dict.ok = true + response_dict.data = advertise_response + return response_dict + + +func _create_instance_db_entry(api: SceneMultiplayer, name: String, privacy: Enum.PrivacyLevel, port: int, type: String = "host") -> Dictionary: + var _instance = _instance_database_template.duplicate() + + _instance.api = api + _instance.name = name + _instance.start_time = int(Time.get_unix_time_from_system()) + _instance.privacy = privacy + _instance.port = port + _instance.type = type + + return _instance diff --git a/src/scenes/managers/app/network.gd.uid b/src/scenes/managers/app/network.gd.uid new file mode 100644 index 00000000..6ce12726 --- /dev/null +++ b/src/scenes/managers/app/network.gd.uid @@ -0,0 +1 @@ +uid://bh55hvwwmnob1 diff --git a/src/scenes/managers/app/network.tscn b/src/scenes/managers/app/network.tscn new file mode 100644 index 00000000..91f644a7 --- /dev/null +++ b/src/scenes/managers/app/network.tscn @@ -0,0 +1,6 @@ +[gd_scene format=3 uid="uid://5v8rbnp716b0"] + +[ext_resource type="Script" uid="uid://bh55hvwwmnob1" path="res://scenes/managers/app/network.gd" id="1_daels"] + +[node name="NetworkManager" type="Node" unique_id=823257785] +script = ExtResource("1_daels") diff --git a/src/scenes/managers/app/scene.gd b/src/scenes/managers/app/scene.gd new file mode 100644 index 00000000..575935d2 --- /dev/null +++ b/src/scenes/managers/app/scene.gd @@ -0,0 +1,232 @@ +# --- License +# File: /client/src/scenes/managers/app/scene_manager.gd +# Project: OpenMinerva +# Created Date: 13 April 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +var active_session: String = "" + +# Game managers +@onready var network_m: Node = get_tree().current_scene.get_node("NetworkManager") +@onready var scene_container: Node3D = get_tree().current_scene.get_node("Scenes") +@onready var spawnable_file_handling: Node = get_tree().current_scene.get_node("SpawnableFileHandling") + + +func _ready(): + network_m.start_server(0, Enum.BaseLevel.HOME) + return + + +func create_master_scene(): + var _scene_id = Random.string(6) + var _base_scene = preload("res://scenes/levels/base.tscn") + + _base_scene = _base_scene.instantiate() + _base_scene.name = _scene_id + _base_scene.top_level = true + _base_scene.visible = false + + scene_container.add_child(_base_scene) + + return _scene_id + + +func get_master_scene(id: String) -> Node3D: + var _scene = scene_container.get_node(id) + return _scene + + +func destroy_master_scene(id: String): + var _scene = scene_container.get_node_or_null(id) + + if _scene == null: + GlobalLogger.log("'%s' does not exist, could not delete." % id, Enum.LogLevel.WARNING) + return + + _scene.queue_free() + return + + +func set_master_root_from_program(id: String, scene_type: Enum.BaseLevel) -> void: + var _scene = get_master_scene(id) + + var _root_scene: String = _get_scene_by_type(scene_type) + var _root_node = get_master_root(id) + + # Stop everything + stop_master_scene(id) + + # Remove everything + _scene.remove_child(_root_node) + _root_node.queue_free() + + var _root_scene_node: Node3D = Node3D.new() + _root_scene_node.name = "root" + _scene.add_child(_root_scene_node) + + # HACK: Wait a frame for the active_session variable to populate + await get_tree().process_frame + + # Use spawnable system to read the TSCN file, and instantiate it into the multiplayer instance. + await spawnable_file_handling.load_spawnable(_root_scene) + + # Remove the "root" node of the world, and instead parent all nodes under the true instance root. + # HACK: Force reparent the children of the node to the world root. + if _root_scene_node.get_children().size() > 0: + var _target_node: Node3D = _root_scene_node.get_children()[1] + var _spawnable_manager: Node = _scene.get_node("SpawnableManager") + + for _world_node in _target_node.get_children(): + _spawnable_manager.set_parent.rpc(int(_world_node.name), 0) + + # Delete the initial fake root from the loaded world. + _spawnable_manager.destroy.rpc(int(_target_node.name)) + + # Allow scene to be visible in the inspector + _root_scene_node.set_meta("scene_node", true) + + # Add new scene + _scene.add_child(_root_scene_node) + + # Start everything + start_master_scene(id) + + Events.emit_signal("instance_root_changed") + return + + +func get_master_root(id: String) -> Node3D: + var _scene: Node3D = get_master_scene(id) + var _root = _scene.get_node_or_null("root") + return _root + + +func set_master_root_from_inventory(_id: String, _scene_type: Enum.BaseLevel) -> bool: + GlobalLogger.log("'%s' is not implemented." % get_stack()[0]["function"], Enum.LogLevel.WARNING) + # get_master_scene + # Find scene from inventory. + # Validate scene integrity. + # Find node "root". + # Destroy node. + # Replace with new scene. + return false + + +func start_master_scene(id: String): + const MANAGERS = ["PlayerManager", "SignalBus"] + + var _scene = get_master_scene(id) + + for node_name in MANAGERS: + var _scene_manager = _scene.get_node_or_null(node_name) + if _scene_manager: + GlobalLogger.log("'%s' started in server '%s'" % [node_name, id]) + continue + + GlobalLogger.log("Could not start invalid manager '%s' in server '%s'" % [node_name, id], Enum.LogLevel.ERROR) + return + + +func stop_master_scene(id: String): + const MANAGERS = ["PlayerManager", "SignalBus"] + + var _scene = get_master_scene(id) + + for node_name in MANAGERS: + var _scene_manager = _scene.get_node_or_null(node_name) + if _scene_manager: + GlobalLogger.log("'%s' stopped in server '%s'" % [node_name, id]) + continue + + GlobalLogger.log("Could not stop invalid manager '%s' in server '%s'" % [node_name, id], Enum.LogLevel.ERROR) + return + + +func set_active_session(session_id: String): + GlobalLogger.log("Setting session '%s' active." % session_id) + + active_session = session_id + + for _scene in network_m.get_connected_sessions(): + # Each session gets disabled + scene_container.get_node(_scene.id).visible = false + scene_container.get_node(_scene.id).process_mode = Node.PROCESS_MODE_DISABLED + _set_camera_active_state(_scene.id, false) + _set_player_authority_state(_scene.id, false) + + # session_id gets enabled. + scene_container.get_node(session_id).process_mode = Node.PROCESS_MODE_INHERIT + _set_camera_active_state(session_id, true) + scene_container.get_node(session_id).visible = true + _set_player_authority_state(session_id, true) + Events.dash_session_changed.emit(session_id) + return + + +func _get_scene_by_type(scene_type: Enum.BaseLevel) -> String: + var _scene_dir: String = "" + + match scene_type: + Enum.BaseLevel.DEBUG: + _scene_dir = "res://scenes/levels/debug.tscn" + Enum.BaseLevel.EMPTY: + _scene_dir = "res://scenes/levels/empty.tscn" + Enum.BaseLevel.GRID: + _scene_dir = "res://scenes/levels/grid.tscn" + Enum.BaseLevel.HOME: + _scene_dir = "res://scenes/levels/home.tscn" + _: + _scene_dir = "res://scenes/levels/debug.tscn" + + return _scene_dir + + +func _set_camera_active_state(session_id, state: bool = false) -> void: + # TODO: check if session exists. + var my_id: String = str(network_m._session_db[session_id].api.get_unique_id()) + var master_scene: Node3D = get_master_scene(session_id) + # HACK: If my_id = 0, we get the desired result. This is not safe though. + if my_id == "0": + GlobalLogger.log("Could not set active state for session '%s', is session open?" % [session_id], Enum.LogLevel.WARNING) + return + var player_manager: Node = master_scene.get_node("PlayerManager") + var player_database = player_manager.players + var my_database_entry = player_database.get(my_id) + if my_database_entry != null: + if my_database_entry.node == null: + # FIXME: This error should not be necessary, there is a bigger problem somewhere else. + return + + var camera = my_database_entry.node.get_node("Head/Camera3D") + camera.current = state + return + + +func _set_player_authority_state(session_id, is_active: bool = false) -> void: + var my_id: String = str(network_m._session_db[session_id].api.get_unique_id()) + var master_scene: Node3D = get_master_scene(session_id) + # HACK: If my_id = 0, we get the desired result. This is not safe though. + if my_id == "0": + GlobalLogger.log("Could not set player authority for session '%s', is session open?" % [session_id], Enum.LogLevel.WARNING) + return + var player_manager: Node = master_scene.get_node("PlayerManager") + var player_database = player_manager.players + var my_database_entry = player_database.get(my_id) + + if my_database_entry != null: + var player = my_database_entry.node + + if player == null: + # FIXME: This error should not be necessary, there is a bigger problem somewhere else. + return + + if is_active: + player.set_multiplayer_authority(int(my_id)) + return + + player.set_multiplayer_authority(0) + return diff --git a/src/scenes/managers/app/scene.gd.uid b/src/scenes/managers/app/scene.gd.uid new file mode 100644 index 00000000..02824f9f --- /dev/null +++ b/src/scenes/managers/app/scene.gd.uid @@ -0,0 +1 @@ +uid://3ylijxenr1bg diff --git a/src/scenes/managers/app/scene.tscn b/src/scenes/managers/app/scene.tscn new file mode 100644 index 00000000..d3825837 --- /dev/null +++ b/src/scenes/managers/app/scene.tscn @@ -0,0 +1,6 @@ +[gd_scene format=3 uid="uid://cmknpdx5ba15o"] + +[ext_resource type="Script" uid="uid://3ylijxenr1bg" path="res://scenes/managers/app/scene.gd" id="1_i8qdd"] + +[node name="SceneManager" type="Node"] +script = ExtResource("1_i8qdd") diff --git a/src/scenes/managers/scene/network.gd b/src/scenes/managers/scene/network.gd new file mode 100644 index 00000000..e45e7a16 --- /dev/null +++ b/src/scenes/managers/scene/network.gd @@ -0,0 +1,142 @@ +extends Node + +var _specific_api: SceneMultiplayer = null +var _my_id: int = 0 +var _server_id: String = "" + +@onready var player_m = get_node("../PlayerManager") +@onready var spawnable_m = get_node("../SpawnableManager") +@onready var scene_m = get_tree().current_scene.get_node("SceneManager") +@onready var network_m = get_tree().current_scene.get_node("NetworkManager") + + +func _process(_delta): + if multiplayer: + multiplayer.poll() + return + + +func setup_connection(api: SceneMultiplayer, id: String): + _specific_api = api + _server_id = id + + _specific_api.connected_to_server.connect(_on_connected_to_server) + _specific_api.peer_connected.connect(_on_peer_connected) + _specific_api.peer_disconnected.connect(_on_peer_disconnected) + _specific_api.server_disconnected.connect(_on_server_disconnected) + + _my_id = multiplayer.get_unique_id() + + +@rpc("authority", "unreliable") +func ban_player(): + GlobalLogger.log("'%s' is not implemented." % get_stack()[0]["function"], Enum.LogLevel.WARNING) + return + + +func on_kicked(): + GlobalLogger.log("'%s' is not implemented." % get_stack()[0]["function"], Enum.LogLevel.WARNING) + return + + +func on_banned(): + GlobalLogger.log("'%s' is not implemented." % get_stack()[0]["function"], Enum.LogLevel.WARNING) + return + + +@rpc("any_peer", "reliable") +func req_spawnable_db() -> void: + # A peer wants the server database. + var caller_id = multiplayer.get_remote_sender_id() + + GlobalLogger.log("Sending spawnable database to peer %d: %d entries" % [caller_id, spawnable_m._database.size()]) + + # Send the spawnable and player database to the client. + rec_spawnable_db.rpc_id(caller_id, spawnable_m._database, player_m.players, spawnable_m._asset_database, spawnable_m._asset_node_relation_database) + + return + + +@rpc("authority", "reliable") +func rec_spawnable_db(db: Array, players: Dictionary, assets: Array, asset_relations: Array) -> void: + # We have the database, set it. + await spawnable_m.receive_database(db, players, assets, asset_relations) + + # Tell the server we have finished spawning the nodes, tell the server to sync the transforms. + spawnable_m.sync_all.rpc_id(1) + + return + + +func _on_connected_to_server(): + # When the client is connected to the server, request the database from the server. + GlobalLogger.log("[%s] Connected to a server." % _my_id) + + # Set the scene root to empty. + scene_m.set_master_root_from_program(_server_id, Enum.BaseLevel.EMPTY) + + # Request the spawnable database from host + req_spawnable_db.rpc_id(1) + + +func _on_server_disconnected(): + network_m.leave_server(_server_id) + return + + +func _on_peer_connected(peer_id: int): + if is_multiplayer_authority() == false: + # Only the host runs the function. + return + + GlobalLogger.log("Peer '%s' is connected! Creating a player controller." % [peer_id]) + + # Add player to the database. + player_m.add_player.rpc(peer_id) + + # Spawn the player controller. + var _entity = await spawnable_m.create("OM_PlayerController") + + # Set the player node in the player database. + player_m.set_player_node(peer_id, _entity) + + # The host adds a listener for the on_delete, then spawns the player back in. + _entity.connect("tree_exiting", _on_peer_player_node_destroyed.bind(peer_id, int(_entity.name))) + + GlobalLogger.log("[%s] Peer '%s' connected to our server." % [_my_id, peer_id]) + + return + + +func _on_peer_disconnected(peer_id: int) -> void: + if is_multiplayer_authority() == false: + return + + player_m.remove_player(peer_id) + player_m.remove_player.rpc(peer_id) + + GlobalLogger.log("[%s] Peer '%s' disconnected to our server." % [_my_id, peer_id]) + return + + +func _on_peer_player_node_destroyed(peer_id: int, node_id: int) -> void: + GlobalLogger.log("Peer '%s' was destroyed! Queued a player controller respawn." % [peer_id]) + spawnable_m.destroy(node_id) + spawnable_m.destroy.rpc(node_id) + + var _timer = get_tree().create_timer(1) + + _timer.timeout.connect( + func() -> void: + if player_m.players.keys().has(peer_id) == false: + # Check to see if player still exists in the database, don't spawn if they are gone. + GlobalLogger.log("Peer '%s' was disconnected, not respawning a player controller." % [peer_id]) + return + + var _entity = await spawnable_m.create("OM_PlayerController") + spawnable_m.set_authority.rpc(int(_entity.name), peer_id) + player_m.set_player_node(peer_id, _entity) + _entity.connect("tree_exiting", _on_peer_player_node_destroyed.bind(peer_id)) + ) + + return diff --git a/src/scenes/managers/scene/network.gd.uid b/src/scenes/managers/scene/network.gd.uid new file mode 100644 index 00000000..e6f3014a --- /dev/null +++ b/src/scenes/managers/scene/network.gd.uid @@ -0,0 +1 @@ +uid://bmm4mxv8pm5gh diff --git a/src/scenes/managers/scene/player.gd b/src/scenes/managers/scene/player.gd new file mode 100644 index 00000000..08bced32 --- /dev/null +++ b/src/scenes/managers/scene/player.gd @@ -0,0 +1,72 @@ +# --- License +# File: /client/src/scenes/managers/scene/player.gd +# Project: OpenMinerva +# Created Date: 13 April 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +@onready var spawnable_m = get_node("../SpawnableManager") + +const PLAYER_TEMPLATE = { + "peer_id": 0, + "node_id": -1, + "node": null, +} + +var players = { } + +@rpc("call_local", "authority", "reliable") +func add_player(peer_id: int) -> void: + var caller_id = multiplayer.get_remote_sender_id() + var database_template = PLAYER_TEMPLATE.duplicate() + + GlobalLogger.log("[%s] Adding peer '%s' to the player list" % [caller_id, peer_id]) + database_template.set("peer_id", peer_id) + players.set(str(peer_id), database_template) + return + +func set_player_database(database: Dictionary) -> void: + players = database + + # Fix the database references + for _player in players.keys(): + var _entry = players[_player] + var _db_entry = spawnable_m.get_by_id(int(_entry.node_id)) + _entry.node = _db_entry.node + + return + +@rpc("authority", "reliable") +func remove_player(peer_id: int) -> void: + var caller_id = multiplayer.get_remote_sender_id() + + GlobalLogger.log("[%s] Removing peer '%s' from the player list" % [caller_id, peer_id]) + players[str(peer_id)].get("node").queue_free() + players.erase(str(peer_id)) + +@rpc("authority", "reliable") +func set_player_node(peer_id: int, node: Node3D) -> void: + var _target = players[str(peer_id)] + + # TODO: Error warnings + if _target == null: + return + + _target.node = node + _target.node_id = node.name + + # If this is our own player node being set, ensure we have authority + if peer_id == multiplayer.get_unique_id(): + if node and node.has_method("set_multiplayer_authority"): + node.set_multiplayer_authority(peer_id) + return + +func kill_player() -> void: + GlobalLogger.log("'%s' is not implemented." % get_stack()[0]["function"], Enum.LogLevel.WARNING) + return + +func get_player_count() -> int: + return players.keys().size() diff --git a/src/scenes/managers/scene/player.gd.uid b/src/scenes/managers/scene/player.gd.uid new file mode 100644 index 00000000..bb355fa5 --- /dev/null +++ b/src/scenes/managers/scene/player.gd.uid @@ -0,0 +1 @@ +uid://c13l6ywhxq6n5 diff --git a/src/scenes/managers/scene/signalbus.gd b/src/scenes/managers/scene/signalbus.gd new file mode 100644 index 00000000..bda1d12b --- /dev/null +++ b/src/scenes/managers/scene/signalbus.gd @@ -0,0 +1,14 @@ +# --- License +# File: /client/src/scenes/managers/scene/signalbus.gd +# Project: OpenMinerva +# Created Date: 13 April 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +@warning_ignore("unused_signal") +signal node_created(node: Node) +@warning_ignore("unused_signal") +signal node_destroyed(node: Node) diff --git a/src/scenes/managers/scene/signalbus.gd.uid b/src/scenes/managers/scene/signalbus.gd.uid new file mode 100644 index 00000000..98146587 --- /dev/null +++ b/src/scenes/managers/scene/signalbus.gd.uid @@ -0,0 +1 @@ +uid://cxbdjoelope42 diff --git a/src/scenes/managers/scene/spawnable_manager.gd b/src/scenes/managers/scene/spawnable_manager.gd new file mode 100644 index 00000000..dcc0d61b --- /dev/null +++ b/src/scenes/managers/scene/spawnable_manager.gd @@ -0,0 +1,587 @@ +# --- License +# File: /client/src/scenes/managers/scene/spawnable_manager.gd +# Project: OpenMinerva +# Created Date: 18 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +# TODO: Network: +# Node renaming. +# Node reparenting. +# Node position updating. +# TODO: Database: +# Sane _database_id. Don't hardcode 10. +const SPAWNABLE_TEMPLATE: Dictionary = { + "type": -1, + "spawner": -1, + "physics_owner": 1, + "node": null, + "parent": -1, + "id": -1, + "pretty_name": "ERROR", +} + +var _spawnable_network_batches: int = 4 +var _database_id: int = 10 +var _database: Array[Dictionary] = [] +var _asset_database: Array[Dictionary] = [] +var _asset_node_relation_database: Array[Dictionary] = [] + +@onready var app_scene_m: Node = get_tree().current_scene.get_node("SceneManager") +@onready var app_network_m: Node = get_tree().current_scene.get_node("NetworkManager") +@onready var network_m: Node = get_node("../NetworkManager") +@onready var instance_root: Node = get_parent().get_node("root") +@onready var rpcawaiter: Node = get_parent().get_node("RpcAwaiter") +@onready var session_signalbus: Node = get_node("../SignalBus") +@onready var player_m: Node = get_node("../PlayerManager") + + +# TODO: Handle physics for our items, and +func _physics_process(_delta): + # NOTE: Networking is done in batches of 4. Meaning 25% of the scene is networked at any given frame. + # There was no reason in me doing this, but I think I was trying to make it so that you do not have to network so many things in a given instant. + # As far as I know there was not an existing problem I was trying to solve and I have no idea what I was thinking. + # However, it's not breaking anything in the current instant so I will leave it in until it proves to be a problem or if I think of a better way of doing this. + var current_batch: int = Engine.get_physics_frames() % _spawnable_network_batches + + if !is_multiplayer_authority(): + return + for spawnable in _database: + if spawnable.type != "RigidBody3D": + continue + if spawnable.node.sleeping == true: + continue + if spawnable.id % _spawnable_network_batches == current_batch: + continue + + transform_spawnable.rpc(spawnable.id, spawnable.node.transform) + return + + +@rpc("any_peer", "reliable") +func sync_all() -> void: + if !is_multiplayer_authority(): + return + + for spawnable in _database: + if spawnable.node == null: + GlobalLogger.log("Node does not exist.", Enum.LogLevel.WARNING) + return + + if spawnable.node.has_method("transform") == false: + # We can't transform something without a transform field! + return + + set_transform.rpc(spawnable.id, spawnable.node.transform) + return + + +@rpc("any_peer", "reliable") +func create(node_type: String, node_parent: int = 0, model_path: String = "") -> Variant: + var my_id: int = app_network_m._session_db[app_scene_m.active_session].api.get_unique_id() + var caller_id: int = multiplayer.get_remote_sender_id() + GlobalLogger.log("[%s] Spawning '%s'." % [my_id, node_type]) + + if my_id == 1: + var _target_id: String = str(_database_id) + + var entity: int = spawn_spawnable(node_type, _target_id, model_path, node_parent) + spawn_spawnable.rpc(node_type, _target_id, model_path, node_parent) + + # HACK: Reparent the node again so that it gets saved in the database. + set_parent(entity, node_parent) + + var database_index: int = _database.find_custom(func(entry): return entry.id == entity) + if caller_id != 0 && caller_id != my_id: + # This is a client request to spawn. + # We return the synced node name here so we can get the client-side node later. + return int(_database[database_index].node.name) + + return _database[database_index].node + else: + var entity: int = await rpcawaiter.send_rpc(1, create.bind(node_type, node_parent, model_path)) + + # Since we are given the node name, we will need to find the node in our database. + var database_index: int = _database.find_custom(func(entry): return entry.id == entity) + + # Database index was found, get the node at that index. + return _database[database_index].node + + +@rpc("call_local", "any_peer", "reliable") +func destroy(node_id: int) -> Variant: + if app_network_m._session_db.has(app_scene_m.active_session) == false: + GlobalLogger.log("Failed to destroy node '%s'." % node_id, Enum.LogLevel.ERROR) + return + + var my_id: int = app_network_m._session_db[app_scene_m.active_session].api.get_unique_id() + var caller_id: int = multiplayer.get_remote_sender_id() + + if my_id == 1: + var _queue = _get_deletion_queue(str(node_id)) + for node in _queue: + delete_spawnable(node.name) + delete_spawnable.rpc(node.name) + + if caller_id != 0 && caller_id != my_id: + # This is a client request to delete + return + + return + else: + await rpcawaiter.send_rpc(1, destroy.bind(node_id)) + return + + +@rpc("any_peer", "reliable") +func set_transform(node_id: int, p_transform: Transform3D) -> void: + var _my_id: int = app_network_m._session_db[app_scene_m.active_session].api.get_unique_id() + var _caller_id: int = multiplayer.get_remote_sender_id() + + if _my_id == 1: + # TODO: Compress for network? + transform_spawnable.rpc(node_id, p_transform) + else: + await rpcawaiter.send_rpc(1, set_transform.bind(node_id, p_transform)) + return + return + + +@rpc("any_peer", "reliable") +func set_property(node_id: int, property_name: String, property_value: Variant) -> void: + var _my_id: int = app_network_m._session_db[app_scene_m.active_session].api.get_unique_id() + var _caller_id: int = multiplayer.get_remote_sender_id() + + if _my_id == 1: + set_property_on_spawnable.rpc(node_id, property_name, property_value) + else: + await rpcawaiter.send_rpc(1, set_property.bind(node_id, property_name, property_value)) + return + return + + +@rpc("any_peer", "reliable") +func set_resource(node_id: int, property_name: String, resource_id: int) -> void: + # NOTE: This resource settter is very basic and only works as a way for initializing a joining peer on the server. + # There is not a complex nor complete lifecycle management for these assets. + var _my_id: int = app_network_m._session_db[app_scene_m.active_session].api.get_unique_id() + var _caller_id: int = multiplayer.get_remote_sender_id() + + if _my_id == 1: + var _resource: Dictionary = get_resource_by_id(resource_id) + + if _resource.has("resource") == false: + GlobalLogger.log("Resource '%s' is in invalid state.", Enum.LogLevel.ERROR) + return + + set_property_on_spawnable.rpc(node_id, property_name, _resource.resource) + + # FIXME: When a node gets deleted, there is no cleanup for the database. + _asset_node_relation_database.append({ "node_id": node_id, "node_property": property_name, "resource_id": resource_id }) + else: + await rpcawaiter.send_rpc(1, set_resource.bind(node_id, property_name, resource_id)) + return + return + + +@rpc("any_peer", "reliable") +func set_authority(node_id: int, peer_id: int) -> void: + # TODO: Only allow the host to call this function. + var _my_id: int = app_network_m._session_db[app_scene_m.active_session].api.get_unique_id() + var _caller_id: int = multiplayer.get_remote_sender_id() + + if _my_id == 1: + set_authority_on_spawnable.rpc(node_id, peer_id) + else: + await rpcawaiter.send_rpc(1, set_authority.bind(node_id, peer_id)) + return + + +@rpc("call_local", "any_peer", "reliable") +func create_asset(asset_type: String, properties: Array) -> Variant: + var my_id: int = app_network_m._session_db[app_scene_m.active_session].api.get_unique_id() + var caller_id: int = multiplayer.get_remote_sender_id() + GlobalLogger.log("[%s] Creating Asset '%s'." % [my_id, asset_type]) + + if my_id == 1: + # This was a host calling this function. + var _target_id: String = str(_database_id) + + # Actually spawn in the asset for us, and all clients. + var _asset = spawn_asset(asset_type, properties) + spawn_asset.rpc(asset_type, properties) + + var _asset_db_index: int = _asset_database.find_custom(func(entry): return entry.id == _asset) + + if caller_id != 0 && caller_id != my_id: + # This call originated from a client, we need to return a reference to the spawned asset, and not the asset itself. + return int(_asset_database[_asset_db_index].resource.name) + + return _asset_database[_asset_db_index].resource + else: + # Call on the host to create (and sync) the resource. + var _asset: int = await rpcawaiter.send_rpc(1, create_asset.bind(asset_type, properties)) + + # We have the asset name (id), we need to find it in the asset_database. + var _asset_db_index: int = _asset_database.find_custom(func(entry): return entry.id == _asset) + + # Return the resource directly. + return _asset_database[_asset_db_index].resource + + +@rpc("call_local", "any_peer", "reliable") +func set_parent(node_id: int, parent_node_id: int) -> void: + var my_id: int = app_network_m._session_db[app_scene_m.active_session].api.get_unique_id() + + GlobalLogger.log("[%s] Setting parent of '%s' to '%s'." % [my_id, node_id, parent_node_id]) + + if my_id == 1: + # Get the node references. + var _node = get_by_id(node_id) + var _parent_node = get_by_id(parent_node_id) + + if parent_node_id <= 0: + # Invalid state, reparent to root. + _parent_node = { "node": app_scene_m.get_master_root(app_scene_m.active_session) } + + # Send the reparent signal to all clients. + _set_node_parent.rpc(_node.node, _parent_node.node) + + # Update the database. + var _db_index: int = _database.find_custom(func(entry): return entry.id == node_id) + _database[_db_index].parent = parent_node_id + return + else: + # Call on the host to create (and sync) the resource. + var _asset: int = await rpcawaiter.send_rpc(1, set_parent.bind(node_id, parent_node_id)) + return + + return + + +# TODO: How would large assets work? +@rpc("authority", "reliable") +func spawn_spawnable(p_type: String, p_name: String = "", p_path: String = "", parent_id: int = 0) -> int: + var _spawned_entity + var parent_node = get_parent().get_node("root") + + if parent_id > 1: + var database_index = _database.find_custom(func(entry): return entry.id == parent_id) + parent_node = _database[database_index].node + + # HACK: When connecting to the server, the entity of the joining user is attempted to spawn twice. This null check will see if the node already exists on the server by name. + _spawned_entity = _spawn_node(p_type, 1, parent_node, p_path, p_name) + + if _spawned_entity == null: + GlobalLogger.log("Tried to spawn in something that already exists? Returning the reference to the existing node.", Enum.LogLevel.WARNING) + return int(p_name) + + _spawned_entity.owner = parent_node + + session_signalbus.node_created.emit(_spawned_entity) + return int(_spawned_entity.name) + + +# TODO: require actioning user +@rpc("authority", "reliable") +func delete_spawnable(node_name: String) -> void: + GlobalLogger.log("Deleting node '%s'." % node_name) + var _entry_index = _database.find_custom(func(item): return item.id == int(node_name)) + if _entry_index == -1: + # This should never happen! The node can never be removed from the scene tree then. + GlobalLogger.log("'%s' could not be located in the scene tree." % node_name, Enum.LogLevel.ERROR) + return + + var _entry = _database[_entry_index] + + session_signalbus.node_destroyed.emit(_entry) + _entry.node.queue_free() + _database.remove_at(_entry_index) + return + + +@rpc("call_local", "authority", "reliable") +func transform_spawnable(node_id: int, transform: Transform3D) -> void: + var _entity_db = get_by_id(node_id) + + if _entity_db == { }: + GlobalLogger.log("Could not locate node id '%s'" % node_id, Enum.LogLevel.WARNING) + return + + if _entity_db.node == null: + GlobalLogger.log("Could not locate node '%s'" % node_id, Enum.LogLevel.WARNING) + return + + _entity_db.node.transform = transform + return + + +@rpc("call_local", "authority", "reliable") +func set_property_on_spawnable(node_id: int, property_name: String, property_value: Variant): + var _entity_db = get_by_id(node_id) + + if _entity_db == { }: + return + + _entity_db.node.set_indexed(property_name, property_value) + return + + +@rpc("call_local", "authority", "reliable") +func set_authority_on_spawnable(node_id: int, peer_id: int) -> void: + # TODO: Only allow the host to call this function. + var _entity_db = get_by_id(node_id) + + # TODO: Error Check + + _entity_db.node.set_multiplayer_authority(peer_id) + + GlobalLogger.log("Giving peer '%s' authority for node '%s'." % [peer_id, node_id]) + return + + +func receive_database(database: Array, players: Dictionary, assets: Array, asset_relations: Array) -> void: + var _my_id: int = app_network_m._session_db[app_scene_m.active_session].api.get_unique_id() + + GlobalLogger.log("[%s] Receiving spawnable database with %d entries" % [_my_id, database.size()]) + + # Spawn in all of the nodes + for spawnable in database: + GlobalLogger.log("Spawning '%s' as '%s'." % [spawnable.id, spawnable.type]) + spawn_spawnable(spawnable.type, str(spawnable.id), "", int(spawnable.parent)) + + # Spawn in all of the assets + for asset in assets: + GlobalLogger.log("Spawning asset '%s'." % [asset.id]) + spawn_asset(asset.asset_class, asset.props, str(asset.id)) + + # Set the relations of the assets to the nodes. + for relation in asset_relations: + var _asset = get_resource_by_id(relation.resource_id) + + set_property_on_spawnable(relation.node_id, relation.node_property, _asset.resource) + continue + + GlobalLogger.log("[%s] Database sync complete." % _my_id) + + # Update the player database. + player_m.set_player_database(players) + + return + + +func set_node_visible_to_inspector(node: Node) -> void: + var nodes = get_all_node_children(node) + + # Check if we had already declared this node to be hidden. + if node.get_meta("scene_node", true) == false: + return + + for target in nodes: + target.set_meta("scene_node", true) + + return + + +func get_all_node_children(node: Node) -> Array: + var nodes = [] + + if node: + nodes.append(node) + for child in node.get_children(): + nodes.append_array(get_all_node_children(child)) + + return nodes + + +func get_by_id(spawnable_id: int) -> Dictionary: + var target_entry = _database.find_custom(func(entry): return entry.id == spawnable_id) + + if target_entry == -1: + return { } + + return _database[target_entry] + + +func get_resource_by_id(resource_id: int) -> Dictionary: + var target_entry = _asset_database.find_custom(func(entry): return entry.id == resource_id) + + if target_entry == -1: + return { } + + return _asset_database[target_entry] + + +@rpc("authority", "reliable") +func spawn_asset(asset_type, properties, id: String = str(_database_id)) -> int: + GlobalLogger.log("Spawning '%s'." % asset_type) + + # Create the resource on our end, and include it in the database. + var _resource: Resource = _spawn_resource(asset_type, properties, id) + + # Return the _asset_database id of the resource. + return int(_resource.get_name()) + + +@rpc("call_local", "any_peer", "reliable") +func _set_node_parent(node: Node, parent_node: Node) -> void: + # Change node parent. + node.reparent(parent_node) + return + + +func _spawn_resource(resource_class: String, properties, asset_id: String = str(_database_id)) -> Resource: + var _resource: Resource = null + + # Create the resource + _resource = ClassDB.instantiate(resource_class) + + # Set the resource properties + for _prop in properties: + _resource.set_indexed(_prop.name, _prop.value) + + # Add the resource to the database + var _db_id: int = _add_asset_to_database(resource_class, _resource, properties, int(asset_id)) + + # Set the resource name + _resource.set_name(str(_db_id)) + + # Return the resource + return _resource + + +func _add_asset_to_database(asset_class: String, resource: Resource, props: Array, asset_id: int = 0) -> int: + # If we are a client, we ignore the database completely, we are supplied the id by the server. + var _db_entry = { + "id": 0, + "asset_class": "", + "properties": { }, + } + + if asset_id == 0: + GlobalLogger.log("No asset_id supplied.", Enum.LogLevel.ERROR) + return 0 + else: + _db_entry.id = asset_id + + _db_entry.resource = resource + _db_entry.props = props + _db_entry.asset_class = asset_class + + _asset_database.append(_db_entry) + _database_id = _database_id + 1 + return _db_entry.id + + +func _get_deletion_queue(node_name: String) -> Array: + var _entry_index = _database.find_custom(func(item): return item.id == int(node_name)) + var _node = _database[_entry_index].node + + var _queue = _add_to_deletion_queue(_node) + _queue.reverse() + return _queue + + +func _add_to_deletion_queue(node: Node, list: Array[Node] = []) -> Array[Node]: + list.append(node) + + if node.get_meta("deep_delete", true) == false: + return list + + for child in node.get_children(): + _add_to_deletion_queue(child, list) + + return list + + +func _spawn_node(node_type: String, node_owner: int, parent: Node = instance_root, model_path = "", node_name: String = str(_database_id)) -> Node: + var _node: Node + var _node_name = node_type + var _node_schema = NSB.get_entry(_node_name) + var _pretty_name: String + + var _database_index: int = _database.find_custom(func(entry): return entry.id == int(node_name)) + if _database_index > -1: + GlobalLogger.log("Tried to spawn in a node that already exists.", Enum.LogLevel.ERROR) + return + + if node_type == "": + GlobalLogger.log("Tried to spawn in a invalid node.", Enum.LogLevel.ERROR) + return + + # HACK: Fixes importing skeletons? + if _node_name == "Model" && model_path == "": + _node = NSB.build("Node3D") + else: + _node = NSB.build(_node_name, model_path) + + # Add to database + var _db_id = _add_to_database(_node, node_type, node_owner, int(node_name)) + + if model_path != "": + _pretty_name = model_path.get_file() + else: + _pretty_name = str(_node_schema.pretty_name) + + # Editor changes + set_node_visible_to_inspector(_node) + _node.name = str(_db_id) + _node.set_meta("pretty_name", _pretty_name) + _node.set_meta("spawnable_type", node_type) + _node.set_meta("icon", _node_schema.icon) + if _node.get("position") != null: + _node.position = Vector3(0, 0, 0) + + # Add to scene tree + parent.add_child(_node) + return _node + + +func _add_to_database(node: Node, type: String, node_owner: int, node_id: int = 0) -> int: + # If we are a client, we ignore _database_id entirely. + var _db_entry = SPAWNABLE_TEMPLATE.duplicate() + + if node_id == 0: + GlobalLogger.log("No node_id supplied.", Enum.LogLevel.ERROR) + return 0 + else: + _db_entry.id = node_id + + _db_entry.node = node + _db_entry.type = type + _db_entry.spawner = node_owner + _database.append(_db_entry) + + _database_id = _database_id + 1 + + return _db_entry.id + + +func _add_collisions_recursive(node: Node): + var meshes = _find_all_mesh_instances(node) + var colliders = [] + + for mesh in meshes: + var collision_shape = CollisionShape3D.new() + var convex_shape = ConvexPolygonShape3D.new() + convex_shape.set_points(mesh.mesh.get_faces()) + + collision_shape.shape = convex_shape + colliders.append(collision_shape) + + return colliders + + +func _find_all_mesh_instances(node: Node) -> Array: + var found = [] + + if node is MeshInstance3D: + found.append(node) + + for child in node.get_children(): + found.append_array(_find_all_mesh_instances(child)) + + return found diff --git a/src/scenes/managers/scene/spawnable_manager.gd.uid b/src/scenes/managers/scene/spawnable_manager.gd.uid new file mode 100644 index 00000000..66e0c7c9 --- /dev/null +++ b/src/scenes/managers/scene/spawnable_manager.gd.uid @@ -0,0 +1 @@ +uid://p7vrlersnv7p diff --git a/src/scenes/master.tscn b/src/scenes/master.tscn new file mode 100644 index 00000000..5147b153 --- /dev/null +++ b/src/scenes/master.tscn @@ -0,0 +1,61 @@ +[gd_scene format=3 uid="uid://cxk6c0uipjjpo"] + +[ext_resource type="PackedScene" uid="uid://5v8rbnp716b0" path="res://scenes/managers/app/network.tscn" id="1_jooxx"] +[ext_resource type="PackedScene" uid="uid://cmknpdx5ba15o" path="res://scenes/managers/app/scene.tscn" id="2_h2qy3"] +[ext_resource type="PackedScene" uid="uid://c4y1sb6lmdr0q" path="res://userinterface/dash/dashboard.tscn" id="4_h2qy3"] +[ext_resource type="PackedScene" uid="uid://bqtqfooa7qncp" path="res://userinterface/client_edit_mode/desktop/inspector.tscn" id="5_q3f5g"] +[ext_resource type="Script" uid="uid://4rhvu1oluj66" path="res://scripts/spawnable_file_handling.gd" id="6_kjytq"] + +[node name="Master" type="Node3D" unique_id=420526444] + +[node name="Inspector" parent="." unique_id=879206536 instance=ExtResource("5_q3f5g")] +visible = false +custom_minimum_size = Vector2(400, 0) +mouse_filter = 1 + +[node name="Crosshair" type="Control" parent="." unique_id=472699475] +layout_mode = 3 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +mouse_filter = 1 + +[node name="CenterContainer" type="CenterContainer" parent="Crosshair" unique_id=2141251222] +layout_mode = 1 +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Line2D" type="Line2D" parent="Crosshair/CenterContainer" unique_id=880619905] +points = PackedVector2Array(5, 0, -5, 0) +closed = true +width = 2.0 + +[node name="Line2D2" type="Line2D" parent="Crosshair/CenterContainer" unique_id=696942631] +points = PackedVector2Array(0, 5, 0, -5) +closed = true +width = 2.0 + +[node name="Scenes" type="Node3D" parent="." unique_id=308239834] +top_level = true + +[node name="NetworkManager" parent="." unique_id=1960146969 instance=ExtResource("1_jooxx")] + +[node name="SceneManager" parent="." unique_id=5477810 instance=ExtResource("2_h2qy3")] + +[node name="SpawnableFileHandling" type="Node" parent="." unique_id=1121013970] +script = ExtResource("6_kjytq") + +[node name="Dashboard" parent="." unique_id=505457833 instance=ExtResource("4_h2qy3")] +visible = false +mouse_filter = 1 diff --git a/src/scenes/players/player.gd b/src/scenes/players/player.gd new file mode 100644 index 00000000..3fc1a068 --- /dev/null +++ b/src/scenes/players/player.gd @@ -0,0 +1,219 @@ +# --- License +# File: /client/src/scenes/players/player.gd +# Project: OpenMinerva +# Created Date: 04 July 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends CharacterBody3D + +# Constants +const _DEFAULT_FOV: float = 90.0 +const _DEFAULT_JUMP_VELOCITY: float = 4.5 +const _DEFAULT_SENSITIVITY: float = 1.5 +const _DEFAULT_GRAVITY: float = 9.81 +const _DEFAULT_SPRINT_SPEED: float = 6.0 +const _DEFAULT_SPEED: float = 3.0 +const _DEFAULT_CROUCH_SPEED: float = 1.5 + +# States +var _cem_camera: bool = false +var _dash_state: bool = false +var _cem_panning: bool = false +var _cem_rotating: bool = false +var _scene_root: Node3D +# Variables +var _speed: float = 0 + +# FIXME: Multiplayer CEM camera: +# When one player activates CEM camera, all players spawn the camera? +# Size not networked. +# Position not networked. +# Libraries +@onready var _app_scene_m: Node = get_tree().current_scene.get_node("SceneManager") +@onready var _session_spawnable_m: Node +# Nodes +@onready var _node_body = get_node(".") +@onready var _node_camera = get_node("Head/Camera3D") +@onready var _node_cem_camera: Node3D = null +@onready var _inspector_tree_node: Node = get_tree().current_scene.get_node("Inspector/VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer") +@onready var _inspector_properties_node: Node = get_tree().current_scene.get_node("Inspector/VBoxContainer/HBoxContainer/HSplitContainer/Properties") +@onready var _inspector_toolbar_node: Node = get_tree().current_scene.get_node("Inspector/VBoxContainer/Toolbar") + + +func _enter_tree() -> void: + set_multiplayer_authority(0) + + # FIXME: Properly get the session spawnable node. + _session_spawnable_m = get_parent().get_parent().get_node("SpawnableManager") + return + + +func _ready() -> void: + _node_camera.fov = _DEFAULT_FOV + + Events.connect("dash_set_state", _handle_dash_state) + return + + +func _physics_process(delta) -> void: + if is_multiplayer_authority() == false: + return + + _phys_buildmode() + _phys_normal(delta) + + return + + +func _input(event) -> void: + if is_multiplayer_authority() == false: + return + + if StateManager.is_mouse_captured() && event is InputEventMouseMotion: + if _cem_camera == false: + _node_body.rotate_y(-event.relative.x * _DEFAULT_SENSITIVITY * 0.001) + _node_camera.rotate_x(-event.relative.y * _DEFAULT_SENSITIVITY * 0.001) + _node_camera.rotation.x = clamp(_node_camera.rotation.x, deg_to_rad(-85), deg_to_rad(89)) + + if _cem_camera == true && _node_cem_camera != null: + if _cem_panning == true: + _node_cem_camera.translate(Vector3(event.relative.x * 0.01, -event.relative.y * 0.01, 0)) + + # Network position: + var _transform = _node_cem_camera.transform + _session_spawnable_m.set_transform(int(_node_cem_camera.name), _transform) + + _node_cem_camera.rotation.y -= event.relative.x * _DEFAULT_SENSITIVITY * 0.001 + _node_cem_camera.rotation.x = clampf(_node_cem_camera.rotation.x - event.relative.y * _DEFAULT_SENSITIVITY * 0.001, deg_to_rad(-89), deg_to_rad(89)) + + return + + +func _phys_buildmode() -> void: + if _cem_camera == false: + return + + var _input_dir = Input.get_vector("left", "right", "forward", "backward") + var _local_direction = Vector3(_input_dir.x, 0, _input_dir.y) + + if Input.is_action_just_pressed("cem_camera_pan"): + _cem_panning = true + return + + if Input.is_action_just_released("cem_camera_pan"): + _cem_panning = false + return + + if Input.is_action_just_pressed("cem_camera_rotate"): + # Check if we are interacting with the inspector. + var _hovered_node = get_viewport().gui_get_hovered_control() + if _hovered_node: + if _inspector_tree_node.is_ancestor_of(_hovered_node) || _inspector_properties_node.is_ancestor_of(_hovered_node) || _inspector_toolbar_node.is_ancestor_of(_hovered_node): + return + + _cem_rotating = true + Events.emit_signal("cem_camera_rotating", true) + StateManager.update_mouse_state() + return + + if Input.is_action_just_released("cem_camera_rotate"): + Events.emit_signal("cem_camera_rotating", false) + _cem_rotating = false + StateManager.update_mouse_state() + return + + if _node_cem_camera != null: + _node_cem_camera.translate(Vector3(_local_direction.x * 0.1, 0, _local_direction.z * 0.1)) + + var _transform = _node_cem_camera.transform + _session_spawnable_m.set_transform(int(_node_cem_camera.name), _transform) + return + + +func _phys_normal(delta) -> void: + if is_on_floor() == false: + velocity.y -= _DEFAULT_GRAVITY * delta + + if StateManager.is_mouse_captured() == false: + velocity.x = 0 + velocity.z = 0 + + move_and_slide() + _send_player_position() + return + + _speed = _DEFAULT_SPEED + if Input.is_action_pressed("sprint"): + _speed = _DEFAULT_SPRINT_SPEED + + if _cem_camera == false: + var _input_dir = Input.get_vector("left", "right", "forward", "backward") + var _direction = (transform.basis * Vector3(_input_dir.x, 0, _input_dir.y)).normalized() + velocity.x = _direction.x * _speed + velocity.z = _direction.z * _speed + + if Input.is_action_pressed("jump") && is_on_floor(): + velocity.y = _DEFAULT_JUMP_VELOCITY + + move_and_slide() + _send_player_position() + return + + +func _send_player_position() -> void: + if is_multiplayer_authority() == false: + return + + _session_spawnable_m.set_transform(int(name), transform) + + return + + +func _handle_dash_state(state: bool) -> void: + _dash_state = state + return + + +func _cem_camera_state(state: bool) -> void: + _scene_root = _app_scene_m.get_master_root(_app_scene_m.active_session) + _cem_camera = state + + if _cem_camera == true: + _node_cem_camera = await _cem_camera_build() + var _player_pos = position + + _node_camera.current = false + # FIXME: Improper camera get. + _node_cem_camera.get_child(0).current = true + + _node_cem_camera.position = Vector3(_player_pos.x + 2, _player_pos.y + 2, _player_pos.z + 2) + _session_spawnable_m.set_transform(int(_node_cem_camera.name), _node_cem_camera.transform) + + _node_cem_camera.look_at(_node_body.global_position) + return + + # FIXME: Improper camera get. + # TODO: Add error if this code is ran without _node_cem_camera defined. + if _node_cem_camera != null: + _node_cem_camera.get_child(0).current = false + await _session_spawnable_m.destroy(int(_node_cem_camera.name)) + _node_camera.current = true + + return + + +func _cem_camera_build() -> Node3D: + var _cem_root = await _session_spawnable_m.create("Node3D") + await _session_spawnable_m.create("Camera3D", int(_cem_root.name)) + await _session_spawnable_m.create("Box", int(_cem_root.name)) + + _cem_root.set_meta("persistent", false) + + return _cem_root + + +func _cem_camera_lookat(node: Node) -> void: + _node_camera.look_at(node) + return diff --git a/src/scenes/players/player.gd.uid b/src/scenes/players/player.gd.uid new file mode 100644 index 00000000..bb95b199 --- /dev/null +++ b/src/scenes/players/player.gd.uid @@ -0,0 +1 @@ +uid://dutdx0fa6di2g diff --git a/src/scenes/players/player.tscn b/src/scenes/players/player.tscn new file mode 100644 index 00000000..c71a9fb9 --- /dev/null +++ b/src/scenes/players/player.tscn @@ -0,0 +1,45 @@ +[gd_scene format=3 uid="uid://dvx1vs2ig7st4"] + +[ext_resource type="Script" uid="uid://dutdx0fa6di2g" path="res://scenes/players/player.gd" id="1_plyga"] + +[sub_resource type="CapsuleMesh" id="CapsuleMesh_p1mvi"] + +[sub_resource type="CapsuleShape3D" id="CapsuleShape3D_plyga"] + +[sub_resource type="SeparationRayShape3D" id="SeparationRayShape3D_xrm3l"] +length = 0.25 + +[node name="Player" type="CharacterBody3D" unique_id=823362684 groups=["Players"]] +script = ExtResource("1_plyga") +metadata/scene_node = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="." unique_id=1660137540] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) +mesh = SubResource("CapsuleMesh_p1mvi") + +[node name="CollisionShape3D" type="CollisionShape3D" parent="." unique_id=2036338215] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0) +shape = SubResource("CapsuleShape3D_plyga") + +[node name="Head" type="Node3D" parent="." unique_id=401421687] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.7, -0.15) + +[node name="Camera3D" type="Camera3D" parent="Head" unique_id=1141552766] +fov = 40.0 + +[node name="InteractionRay" type="RayCast3D" parent="Head/Camera3D" unique_id=1005810842] +target_position = Vector3(0, 0, -2) +collision_mask = 2 +hit_back_faces = false + +[node name="AimSight" type="RayCast3D" parent="Head/Camera3D" unique_id=1914541974] +transform = Transform3D(1, 0, 0, 0, -1, -8.74228e-08, 0, 8.74228e-08, -1, 0, 0, 0) +target_position = Vector3(0, 0, 3000) +hit_back_faces = false + +[node name="Hands" type="Node3D" parent="Head/Camera3D" unique_id=553484413] +transform = Transform3D(-4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 0, 0, 0) + +[node name="StairStep" type="CollisionShape3D" parent="." unique_id=1633399245] +transform = Transform3D(1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0.3, -0.5194253) +shape = SubResource("SeparationRayShape3D_xrm3l") diff --git a/src/scripts/enum.gd b/src/scripts/enum.gd new file mode 100644 index 00000000..5ac1a376 --- /dev/null +++ b/src/scripts/enum.gd @@ -0,0 +1,53 @@ +# --- License +# File: /client/src/scripts/enum.gd +# Project: OpenMinerva +# Created Date: 13 April 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +class_name Enum + +enum AccountLoginType { + NULL = 0, + OAUTH = 1, + OAUTH_DEVICE = 2, + PASSWORD = 10, +} +enum BaseLevel { + DEBUG = 0, + HOME = 1, + EMPTY = 2, + GRID = 3, +} +enum PrivacyLevel { + INVITE = 0, + FRIENDS = 1, + FRIENDS_PLUS = 2, + CONTACTS = 3, + CONTACTS_PLUS = 4, + PUBLIC = 5, +} +enum LogLevel { + DEBUG = 0, + INFO = 1, + WARNING = 2, + ERROR = 3, +} +enum SpawnableType { + EMPTY = 0, + BOX = 1, + RIGIDBODY = 2, + CAPSULE = 3, + MODEL = 10, +} + +const Settings = { + Graphics = { + DisplayMode = { + FULLSCREEN = 0, + WINDOWED = 1, + BORDERLESS = 2, + }, + }, +} diff --git a/src/scripts/enum.gd.uid b/src/scripts/enum.gd.uid new file mode 100644 index 00000000..26a0b4df --- /dev/null +++ b/src/scripts/enum.gd.uid @@ -0,0 +1 @@ +uid://dgpvcem71xdbn diff --git a/src/scripts/libs/account.gd b/src/scripts/libs/account.gd new file mode 100644 index 00000000..70292e2b --- /dev/null +++ b/src/scripts/libs/account.gd @@ -0,0 +1,256 @@ +# --- License +# File: /client/src/scripts/libs/account.gd +# Project: OpenMinerva +# Created Date: 26 February 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +const ACCOUNT_DATABASE_DIRECTORY: String = "user://database/accounts.bin" +const ACCOUNT_DATABASE_TEMPLATE: Dictionary = { + "id": "", + "display_name": "", + "keys": { + "private": "", + "public": "", + }, + "auth_type": Enum.AccountLoginType.NULL, + "auth": { }, + "session_servers": { }, +} +const ACCOUNT_DATABASE_OAUTH_TEMPLATE: Dictionary = { + "id": "", + "expirey": 0, + "access_token": "", + "refresh_token": "", +} + +var stop_connection_timer = false +var active_account: String = "" +var _database: Dictionary = { } + + +func _ready(): + _load_account_database() + + +## Get a list of all accounts and return their information. +func get_all() -> Array[Dictionary]: + var _return_value: Array[Dictionary] = [] + for _account_id in _database.keys(): + var _account = _database.get(_account_id) + _return_value.append(_account) + return _return_value + + +# Get a single account or null +func get_account(id: String) -> Dictionary: + var _account = _database.get(id, { }) + return _account + + +## Adds an account to the account database. +func create(account: Dictionary, type: String) -> Dictionary: + # Make sure we are only recording data we are intending on. + var account_formatted: Dictionary = { } + + if type == "oauth": + account_formatted = _create_oauth(account) + + if len(account_formatted.keys()) == 0: + GlobalLogger.log("Tried to create an account, but there was nothing to save.", Enum.LogLevel.ERROR) + return { "ok": false, "error": "No account formatted.", "id": null } + + _database.set(account_formatted.id, account_formatted) + + _save_account_database() + + Events.emit_signal("dash_account_list_loaded") + return { "ok": true, "id": account_formatted.id } + + +## Removes an account from the account database. +func remove(id: String) -> Dictionary: + GlobalLogger.log("Attempting to remove account '%s'" % id) + _database.erase(id) + _save_account_database() + + Events.emit_signal("dash_account_list_loaded") + + return { "ok": true } + + +## Sets an account as the active account. +func use(id: String) -> void: + GlobalLogger.log("Setting active account to '%s'." % id, Enum.LogLevel.INFO) + var _account = _database.get(id) + + # TODO: Error checking + var url = UrlParser.deconstruct(_account.account_server) + url = url.data + + var _oauth = OAuth2Client.new( + url.host, + url.port, + "OpenMinerva-Game-Client", + 54000, + GlobalLogger, + HTTP, + true, + ) + + if _account.type == Enum.AccountLoginType.OAUTH: + var _oauth_valid: Dictionary = await _oauth.validate(_account.auth) + + if _oauth_valid.ok == OAuth2Client.OAUTH2_CLIENT_RESULT.OK && _oauth_valid.data == false: + await authenticate_oauth(id) + + active_account = _account.id + Events.emit_signal("dash_active_account_changed", active_account) + return + + +## Signs out of the active account. +func clear() -> void: + active_account = "" + return + + +func update(id: String, data: Dictionary) -> void: + var _account = _database.get(id) + + var _database_keys = _account.keys() + var _data_keys = data.keys() + + for key in _data_keys: + if key not in _database_keys: + GlobalLogger.log("Tried to update an invalid key in an account, '%s'." % key, Enum.LogLevel.WARNING) + continue + + _account[key] = data[key] + + _database.set(id, _account) + _save_account_database() + return + + +func set_session_server_token(url: String, token: String) -> void: + var _account = _database.get(active_account) + _account.session_servers.set(url, token) + _save_account_database() + return + + +func get_session_server_token(url: String) -> String: + var _account = _database.get(active_account) + var _token = _account.session_servers.get(url, "") + return _token + + +func authenticate_oauth(id: String, _remember_me: bool = false) -> void: + # TODO: Error checks + GlobalLogger.log("Attempting to connect account '%s' using oauth." % id) + + var _account = _database.get(id) + + # TODO: Check if account is still valid without trying to sign in. + var url = UrlParser.deconstruct(_account.account_server) + url = url.data + + var _oauth = OAuth2Client.new( + url.host, + url.port, + "OpenMinerva-Game-Client", + 54000, + GlobalLogger, + HTTP, + true, + ) + + var oauth_tokens = await _oauth.authenticate() + if oauth_tokens.ok == OAuth2Client.OAUTH2_CLIENT_RESULT.OK: + update(id, { "auth": oauth_tokens.data }) + + return + + +func _create_oauth(account) -> Dictionary: + var _account_authentication: Dictionary = { } + var _account = ACCOUNT_DATABASE_TEMPLATE.duplicate() + _account.set("id", Random.string(6)) + _account.set("display_name", account.get("display_name", null)) + _account.set("account_server", account.get("account_server", null)) + + _account.set("type", Enum.AccountLoginType.OAUTH) + + _account.set("auth", ACCOUNT_DATABASE_OAUTH_TEMPLATE) + + return _account + + +## Save the current account database we have in memory to the disk. +func _save_account_database() -> void: + GlobalLogger.log("Saving account database to disk.") + DirAccess.open("user://").make_dir_recursive("user://database") + + var file = FileAccess.open(ACCOUNT_DATABASE_DIRECTORY, FileAccess.WRITE) + if file: + file.store_var(_database) # Serializes variable to binary + file.close() + return + + +## Read the account database from the config file on our disk. +func _load_account_database() -> Dictionary: + GlobalLogger.log("Loading the local account database.", Enum.LogLevel.INFO) + + var account_file_exists = FileAccess.file_exists(ACCOUNT_DATABASE_DIRECTORY) + if account_file_exists == false: + GlobalLogger.log("Account database does not exist, creating one now.", Enum.LogLevel.INFO) + _save_account_database() + + var file = FileAccess.open(ACCOUNT_DATABASE_DIRECTORY, FileAccess.READ) + + var account_data: Dictionary = { } + + if file: + var _file_contents = file.get_var() + + if _file_contents == null: + account_data = { } + else: + account_data = _file_contents # Deserializes variable back + + file.close() + + _database = account_data + return account_data + + +func _update_account_by_key(id: String, key: String, value: Variant) -> void: + # TODO: Check if key is a valid key. + # TODO: This is unsafe. + _database.get(id).set(key, value) + _save_account_database() + return + + +func _handle_response(response: Dictionary) -> Dictionary: + var response_data = { "ok": false, "error": "", "body": { } } + + if response.get("ok", false) == false: + response_data.error = "Request failed for unknown reason." + GlobalLogger.log(response_data.error, Enum.LogLevel.ERROR) + return response_data + + if response.get("body", null) == null: + response_data.error = "No body provided from the request." + GlobalLogger.log(response_data.error, Enum.LogLevel.ERROR) + return response_data + + response_data.ok = true + response_data.body = JSON.parse_string(response.get("body")) + + return response_data diff --git a/src/scripts/libs/account.gd.uid b/src/scripts/libs/account.gd.uid new file mode 100644 index 00000000..dfb4d402 --- /dev/null +++ b/src/scripts/libs/account.gd.uid @@ -0,0 +1 @@ +uid://sdrs0dnojnes diff --git a/src/scripts/libs/bootstrap.gd b/src/scripts/libs/bootstrap.gd new file mode 100644 index 00000000..34a14158 --- /dev/null +++ b/src/scripts/libs/bootstrap.gd @@ -0,0 +1,31 @@ +# --- License +# File: /client/src/scripts/libs/bootstrap.gd +# Project: OpenMinerva +# Created Date: 21 April 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +@onready var network_m = get_tree().current_scene.get_node("NetworkManager") + +func _ready() -> void: + NSB.init() + Discord.set_enabled(true) + return + +func _notification(what: int) -> void: + if what == NOTIFICATION_WM_CLOSE_REQUEST: + GlobalLogger.log("Shutting down") + + # Shutdown / leave all servers. + for server in network_m.get_connected_sessions(): + if server.type == "host": + network_m.stop_server(server.id) + continue + if server.type == "client": + network_m.leave_server(server.id) + continue + + get_tree().quit() diff --git a/src/scripts/libs/bootstrap.gd.uid b/src/scripts/libs/bootstrap.gd.uid new file mode 100644 index 00000000..0343796e --- /dev/null +++ b/src/scripts/libs/bootstrap.gd.uid @@ -0,0 +1 @@ +uid://cvj10vdw6hlqw diff --git a/src/scripts/libs/file_drop.gd b/src/scripts/libs/file_drop.gd new file mode 100644 index 00000000..2eccd5e5 --- /dev/null +++ b/src/scripts/libs/file_drop.gd @@ -0,0 +1,38 @@ +# --- License +# File: /client/src/scrips/libs/file_drop.gd +# Project: OpenMinerva +# Created Date: 26 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +class_name FileDropHandler +extends Node + +@onready var scene_m = get_tree().current_scene.get_node("SceneManager") + + +func _ready(): + get_viewport().files_dropped.connect(on_drop) + return + + +func on_drop(files) -> void: + GlobalLogger.log("'%s' file(s) dropped onto the window." % len(files)) + + for file in files: + # TODO: check if file exists + match file.get_extension(): + "glb": + var model_path: String = ModelHandling.get_glb_assets(file) + scene_m.get_master_scene(scene_m.active_session).get_node("SpawnableManager").spawn_spawnable("Model", "", model_path) + scene_m.get_master_scene(scene_m.active_session).get_node("SpawnableManager").spawn_spawnable.rpc("Model", "", model_path) + "gltf": + scene_m.get_master_scene(scene_m.active_session).get_node("SpawnableManager").spawn_spawnable("Model", "", file) + scene_m.get_master_scene(scene_m.active_session).get_node("SpawnableManager").spawn_spawnable.rpc("Model", "", file) + "jpg", "png", "webp": + return + _: + return + + return diff --git a/src/scripts/libs/file_drop.gd.uid b/src/scripts/libs/file_drop.gd.uid new file mode 100644 index 00000000..063a9b99 --- /dev/null +++ b/src/scripts/libs/file_drop.gd.uid @@ -0,0 +1 @@ +uid://btgqgfpx0av4m diff --git a/src/scripts/libs/models.gd b/src/scripts/libs/models.gd new file mode 100644 index 00000000..4ff9c05c --- /dev/null +++ b/src/scripts/libs/models.gd @@ -0,0 +1,110 @@ +# --- License +# File: /client/src/scrips/libs/models.gd +# Project: OpenMinerva +# Created Date: 25 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +class_name ModelHandling + +static var global_logger = GlobalLogger + + +static func get_glb_assets(file_path: String) -> String: + global_logger.log("Deconstructing '%s' into assets" % file_path) + var cache_dir = OS.get_cache_dir() + + var app_cache_dir = cache_dir.path_join("OpenMinerva/") + DirAccess.make_dir_absolute(app_cache_dir) + + var gltf_doc = GLTFDocument.new() + var gltf_state = GLTFState.new() + + var error = gltf_doc.append_from_file(file_path, gltf_state) + + var manifest = gltf_state.json.duplicate() + + manifest.base_path = app_cache_dir + manifest["images"] = [] + + if error != OK: + print("Error loading GLB: ", error) + + var gltf_extracted_images = extract_images(gltf_state, app_cache_dir + 'images/') + for image_id in range(gltf_extracted_images.size()): + manifest["images"].append(gltf_extracted_images[image_id]) + + gltf_state.set_handle_binary_image_mode(GLTFState.HANDLE_BINARY_IMAGE_MODE_DISCARD_TEXTURES) + var gltf_extracted_meshes = extract_meshes(gltf_state, app_cache_dir + 'meshes/') + manifest.buffers[0]["uri"] = '../meshes/' + gltf_extracted_meshes + ".bin" + DirAccess.make_dir_absolute(app_cache_dir + 'gltf') + + # HACK: Force WEBP extensions in the gltf file. + manifest["extensionsRequired"] = ["EXT_texture_webp"] + manifest["extensionsUsed"] = ["EXT_texture_webp"] + + var gltf_hash = JSON.stringify(manifest).sha256_text() + var gltf_manifest_path = app_cache_dir + "gltf/%s.gltf" % gltf_hash + + var file = FileAccess.open(gltf_manifest_path, FileAccess.WRITE) + file.store_string(JSON.stringify(manifest, "", true)) + file.close() + return gltf_manifest_path + + +static func extract_images(gltf_state: GLTFState, path_root: String) -> Array: + var response_images = [] + var gltf_images = gltf_state.get_images() + DirAccess.make_dir_absolute(path_root) + + for img_idx in range(gltf_images.size()): + var image_entry = gltf_images[img_idx] + var image = image_entry.get_image() + var img_hash = hash_image_sha256_hex(image) + var img_path = path_root + img_hash + ".webp" + image.save_webp(img_path, false, 0.85) + + response_images.append( + { + "hash": img_hash, + "uri": '../images/' + img_hash + ".webp", + "format": image.get_format(), + }, + ) + return response_images + + +static func extract_meshes(gltf_state: GLTFState, path_root: String) -> String: + var buffers = gltf_state.get_buffers() + var buffer_hash = hash_buffer_sha256_hex(buffers) + var bin_path = path_root + "/%s.bin" % buffer_hash + DirAccess.make_dir_absolute(path_root) + + var file = FileAccess.open(bin_path, FileAccess.WRITE) + + for buffer in buffers: + file.store_buffer(buffer) + + file.close() + return buffer_hash + + +# TODO: Validate that this creates a good hash +static func hash_buffer_sha256_hex(buffers) -> String: + var ctx = HashingContext.new() + ctx.start(HashingContext.HASH_SHA256) + for surface in buffers: + ctx.update(surface) + + return ctx.finish().hex_encode() + + +static func hash_image_sha256_hex(image: Image) -> String: + var ctx = HashingContext.new() + ctx.start(HashingContext.HASH_SHA256) + + var image_data = image.get_data() + ctx.update(image_data) + + return ctx.finish().hex_encode() diff --git a/src/scripts/libs/models.gd.uid b/src/scripts/libs/models.gd.uid new file mode 100644 index 00000000..f2e1b5d9 --- /dev/null +++ b/src/scripts/libs/models.gd.uid @@ -0,0 +1 @@ +uid://b76ody8p5cbvr diff --git a/src/scripts/libs/server_peer_helper.gd b/src/scripts/libs/server_peer_helper.gd new file mode 100644 index 00000000..98a0f4eb --- /dev/null +++ b/src/scripts/libs/server_peer_helper.gd @@ -0,0 +1,43 @@ +# --- License +# File: /client/src/scrips/libs/server_peer_helper.gd +# Project: OpenMinerva +# Created Date: 26 July 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +class_name ServerPeerHelper + +# TODO: Is this safe? +static var tree = Engine.get_main_loop() as SceneTree + +static func create_server(port: int, max_clients: int, master_scene_path: String) -> SceneMultiplayer: + var _session_peer = ENetMultiplayerPeer.new() + var _create_response = _session_peer.create_server(port, max_clients) + + var _session_api = _setup_peer(_create_response, _session_peer, master_scene_path) + + return _session_api + +static func create_client(ip: String, port: int, master_scene_path: String) -> SceneMultiplayer: + var _session_peer = ENetMultiplayerPeer.new() + var _create_response = _session_peer.create_client(ip, port) + + var _session_api = _setup_peer(_create_response, _session_peer, master_scene_path) + + return _session_api + +static func _setup_peer(_create_response, _session_peer, master_scene_path) -> SceneMultiplayer: + var _session_api = SceneMultiplayer.new() + + if _create_response != OK: + GlobalLogger.log("Failed to create a client. Error: '%s'" % _create_response, Enum.LogLevel.INFO) + return null + + # Set the multiplayer peer for the api to the ENetMultiplayer peer. + _session_api.multiplayer_peer = _session_peer + + # Set the root path for the multiplayer api + tree.set_multiplayer(_session_api, master_scene_path) + + return _session_api diff --git a/src/scripts/libs/server_peer_helper.gd.uid b/src/scripts/libs/server_peer_helper.gd.uid new file mode 100644 index 00000000..d92d39b4 --- /dev/null +++ b/src/scripts/libs/server_peer_helper.gd.uid @@ -0,0 +1 @@ +uid://dvjakgteeqinw diff --git a/src/scripts/logger.gd b/src/scripts/logger.gd new file mode 100644 index 00000000..821f44a2 --- /dev/null +++ b/src/scripts/logger.gd @@ -0,0 +1,84 @@ +extends Node + +var console_logging_enabled: bool = true +var file_logging_enabled: bool = true +var log_file: FileAccess +var log_file_initialized = false +var log_file_path = "" +var log_level_colors = { + 0: "lightblue", + 1: "green", + 2: "yellow", + 3: "red", +} +var log_level_names = { + 0: "Debug", + 1: "Info", + 2: "Warning", + 3: "Error", +} + + +func _ready(): + var launch_arguments: Dictionary = LaunchArguments.get_command_line_args() + console_logging_enabled = !launch_arguments.has("console_log") || launch_arguments.console_log == "True" + file_logging_enabled = !launch_arguments.has("file_log") || launch_arguments.file_log == "True" + _initialize_log_file() + set_console_logging(true) + set_file_logging(true) + self.log("Logger initialized") + + +## Logs a message to both file and console (if enabled). +## @param message: The message string to log. If omitted, defaults to an empty string. +## @param level: The log level indicating the severity. Must be an integer: +func log(message: String = "", level: Enum.LogLevel = Enum.LogLevel.DEBUG): + _log_to_file(message, level) + + if console_logging_enabled: + var stack := get_stack() + print_rich("[[color=%s]%s[/color]] %s [[color=lightyellow]%s[/color]]" % [log_level_colors[level], log_level_names[level], message, stack[1]["function"]]) + if level == 3: + # We are skipping the first frame, otherwise this function will be logged. + for i in range(1, stack.size()): + var frame = stack[i] + print( + "%s:%d @ %s()" % [ + frame.source, + frame.line, + frame.function, + ], + ) + pass + + +func set_console_logging(enabled: bool): + if enabled: + console_logging_enabled = true + self.log("Console logging enabled for this session.", Enum.LogLevel.INFO) + else: + console_logging_enabled = false + self.log("Console logging disabled for this session.", Enum.LogLevel.INFO) + + +func set_file_logging(enabled: bool): + if enabled: + file_logging_enabled = true + self.log("File logging enabled for this session.", Enum.LogLevel.INFO) + else: + file_logging_enabled = false + self.log("File logging disabled for this session.", Enum.LogLevel.INFO) + + +func _initialize_log_file(): + log_file_path = FileManager.create_log_file() + log_file = FileAccess.open(log_file_path, FileAccess.WRITE) + log_file_initialized = true + self.log("Opened log file at %s" % log_file_path) + + +func _log_to_file(message: String = "", level: int = 0): + if file_logging_enabled && log_file: + var formatted_log = "[%s] %s" % [log_level_names[level], message] + log_file.store_line(formatted_log) + log_file.flush() diff --git a/src/scripts/logger.gd.uid b/src/scripts/logger.gd.uid new file mode 100644 index 00000000..ac95df21 --- /dev/null +++ b/src/scripts/logger.gd.uid @@ -0,0 +1 @@ +uid://dgmfafi41y1nk diff --git a/src/scripts/managers/discord_manager.gd b/src/scripts/managers/discord_manager.gd new file mode 100644 index 00000000..49f7015a --- /dev/null +++ b/src/scripts/managers/discord_manager.gd @@ -0,0 +1,61 @@ +# --- License +# File: /client/src/scripts/managers/discord_manager.gd +# Project: OpenMinerva +# Created Date: 13 June 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +class_name Discord + +static var _current_players: int = 0 +static var _max_players: int = 0 +static var _first_run: bool = true + +static func _init() -> void: + DiscordRPC.app_id = 1526274978486554684 + DiscordRPC.large_image_text = "OpenMinerva" + DiscordRPC.large_image = "om-logo" + + set_playercount(-1, -1) + set_world("Private") + + DiscordRPC.start_timestamp = int(Time.get_unix_time_from_system()) + + DiscordRPC.refresh() + return + +static func set_playercount(current: int = -1, _max_count: int = -1) -> void: + _current_players = current + _max_players = _max_count + DiscordRPC.state = "%s / %s" % [_current_players, _max_players] + DiscordRPC.refresh() + return + +static func set_world(privacy: String = "Private", session_name: String = "Unnamed") -> void: + if privacy == "Public": + DiscordRPC.small_image_text = "Public world" + DiscordRPC.small_image = "public-1" + DiscordRPC.details = "In '%s'" % session_name + elif privacy == "Private": + DiscordRPC.small_image_text = "Private world" + DiscordRPC.small_image = "private-1" + DiscordRPC.details = "In a private world" + + DiscordRPC.refresh() + return + +static func set_enabled(enabled: bool = true) -> void: + if enabled == true: + GlobalLogger.log("Enabling Discord rich presence.") + + if _first_run == false: + # We never cleared it to begin with. + DiscordRPC.unclear() + + _first_run = false + _init() + else: + GlobalLogger.log("Disabling Discord rich presence.") + DiscordRPC.clear() + return diff --git a/src/scripts/managers/discord_manager.gd.uid b/src/scripts/managers/discord_manager.gd.uid new file mode 100644 index 00000000..14275395 --- /dev/null +++ b/src/scripts/managers/discord_manager.gd.uid @@ -0,0 +1 @@ +uid://bjfe4kk3walh5 diff --git a/src/scripts/managers/settings.gd b/src/scripts/managers/settings.gd new file mode 100644 index 00000000..5b982956 --- /dev/null +++ b/src/scripts/managers/settings.gd @@ -0,0 +1,97 @@ +# --- License +# File: /client/src/scripts/managers/settings.gd +# Project: OpenMinerva +# Created Date: 16 April 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +const _templates = { + # The full settings file that is saved and stored. + "settings_file": { + "graphics": { + "display_mode": Enum.Settings.Graphics.DisplayMode.FULLSCREEN, + }, + "config": { + "session_servers": [], + }, + }, + + # Small templates that are duplicated and used to + "session_server": { + "name": "", + "url": "", + "date_added": int(0), + }, +} + +var _settings = { } + + +func _ready(): + _load_settings() + + +# Settings versioning +# Settings file upgrade +# Get setting +func get_session_servers() -> Array: + var return_arr = [] + + return_arr = _settings.get("config", { }).get("session_servers", []) + + return return_arr + + +func add_session_server(server_url: String) -> bool: + var _date_added = Time.get_unix_time_from_system() + + _settings.config.session_servers.append({ "url": server_url, "date_added": _date_added }) + _save_settings() + Events.emit_signal("dash_settings_updated") + return true + + +func remove_session_server(url: String) -> bool: + var _index = -1 + for i in range(_settings.config.session_servers.size()): + if _settings.config.session_servers[i]["url"] == url: + _index = i + break + + if _index != -1: + _settings.config.session_servers.remove_at(_index) + + _save_settings() + Events.emit_signal("dash_settings_updated") + return false + + +func _save_settings(): + var _file = FileAccess.open("user://settings/current.json", FileAccess.WRITE) + var _settings_string: String = JSON.stringify(_settings) + _file.store_string(_settings_string) + _file.close() + GlobalLogger.log("Saved settings file.", Enum.LogLevel.INFO) + return + + +func _load_settings() -> void: + var _settings_exist: bool = FileAccess.file_exists("user://settings/current.json") + if _settings_exist: + var _file = FileAccess.open("user://settings/current.json", FileAccess.READ) + var _content = _file.get_as_text() + var _parsed = JSON.parse_string(_content) + _settings = _parsed + GlobalLogger.log("Settings have been loaded.", Enum.LogLevel.INFO) + return + + # TODO: Check if backup settings exist. + GlobalLogger.log("Settings file does not exist, creating new settings file.", Enum.LogLevel.INFO) + FileManager.create_file("user://settings/", "current.json") + _settings = _templates.settings_file + _save_settings() + GlobalLogger.log("Blank settings have been loaded.", Enum.LogLevel.INFO) + return diff --git a/src/scripts/managers/settings.gd.uid b/src/scripts/managers/settings.gd.uid new file mode 100644 index 00000000..f2c8d9ea --- /dev/null +++ b/src/scripts/managers/settings.gd.uid @@ -0,0 +1 @@ +uid://cgvvntx8o26ds diff --git a/src/scripts/network/http.gd b/src/scripts/network/http.gd new file mode 100644 index 00000000..acf23320 --- /dev/null +++ b/src/scripts/network/http.gd @@ -0,0 +1,82 @@ +# --- License +# File: /http.gd +# Project: openminerva.oauth2 +# Created Date: 04 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License + +extends Node + +signal _completed(result: Dictionary) + +# TODO: When the http client fails to connect to server, no error appears. + +func req(method: HTTPClient.Method, host: String, path: String = "/", port: int = 443, headers: PackedStringArray = [], body: String = "") -> Dictionary: + var thread: Thread = Thread.new() + var params: Dictionary = { + "method": method, + "host": host, + "path": path, + "port": port, + "headers": headers, + "body": body, + "thread": thread + } + thread.start(_thread_main.bind(params)) + + return await _completed + +func _thread_main(params: Dictionary) -> void: + var client: HTTPClient = HTTPClient.new() + var return_dict: Dictionary = {"ok": false, "body": ""} + + var err: int = client.connect_to_host(params.host, params.port) + + # Could not connect to host + if err != OK: + return_dict.error = "Connection failed" + _finish(params, return_dict) + return + + # Wait for connection + while client.get_status() == HTTPClient.STATUS_CONNECTING: + client.poll() + OS.delay_msec(10) + + # TODO: Change the retry attempts? + while client.get_status() != HTTPClient.STATUS_CONNECTED: + client.poll() + OS.delay_msec(10) + + client.request(params.method, params.path, params.headers, params.body) + + while not client.has_response(): + client.poll() + OS.delay_msec(10) + + return_dict.status_code = client.get_response_code() + return_dict.response_headers = client.get_response_headers_as_dictionary() + + var response_body: String = "" + while client.get_status() == HTTPClient.STATUS_BODY: + client.poll() + var chunk: PackedByteArray = client.read_response_body_chunk() + if chunk.size() > 0: + response_body += chunk.get_string_from_utf8() + OS.delay_msec(10) + + client.close() + + return_dict.ok = true + return_dict.body = response_body + + _finish(params, return_dict) + +func _finish(params: Dictionary, result: Dictionary) -> void: + call_deferred("_emit_completed", params.thread, result) + +func _emit_completed(thread: Thread, result: Dictionary) -> void: + emit_signal("_completed", result) + thread.wait_to_finish() diff --git a/src/scripts/network/http.gd.uid b/src/scripts/network/http.gd.uid new file mode 100644 index 00000000..cce1109a --- /dev/null +++ b/src/scripts/network/http.gd.uid @@ -0,0 +1 @@ +uid://d3cnfdwjxopsx diff --git a/src/scripts/signal_bus.gd b/src/scripts/signal_bus.gd new file mode 100644 index 00000000..2e6ce136 --- /dev/null +++ b/src/scripts/signal_bus.gd @@ -0,0 +1,43 @@ +# --- License +# File: /client/src/scripts/signal_bus.gd +# Project: OpenMinerva +# Created Date: 28 March 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License + +@warning_ignore("unused_signal") +extends Node + +# Dashboard +signal dash_set_state(is_open: bool) +signal dash_switch_tab(page_name: String) +signal dash_active_account_changed(account: Dictionary) +signal dash_storage_changed(storage_data: Dictionary) +signal dash_session_changed(session_id: String) +signal dash_message_received(message: Dictionary) +signal dash_notification(notification: Dictionary) +signal dash_account_list_loaded(account_list: PackedStringArray) + +# Debug +signal debug_entity_set_state() + +# Settings +signal dash_settings_updated() + +# Instance +signal instance_updated(instance: Dictionary) +signal instance_root_changed(instance: Dictionary) + +# Client Edit Mode +signal cem_set_state(is_open: bool) +signal cem_set_gizmo_state(state: bool) +signal cem_camera_state(state: bool) +signal cem_camera_rotating(state: bool) + +# Multiplayer +signal session_joined(instance: Dictionary) +signal session_left(instance: Dictionary) + +# App diff --git a/src/scripts/signal_bus.gd.uid b/src/scripts/signal_bus.gd.uid new file mode 100644 index 00000000..55a5805a --- /dev/null +++ b/src/scripts/signal_bus.gd.uid @@ -0,0 +1 @@ +uid://c656spc3ppdlw diff --git a/src/scripts/spawnable_file_handling.gd b/src/scripts/spawnable_file_handling.gd new file mode 100644 index 00000000..11ac60ae --- /dev/null +++ b/src/scripts/spawnable_file_handling.gd @@ -0,0 +1,234 @@ +# --- License +# File: /client/src/scripts/spawnable_file_handling.gd +# Project: OpenMinerva +# Created Date: 16 June 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +@onready var scene_m = get_tree().current_scene.get_node("SceneManager") + + +func _ready() -> void: + return + + +func save_spawnable(root: Node, name_override: String = "") -> void: + # Take a node path from the scene, and save that node to the file + # In order to save nodes using the ResourceSaver, we need to make all nodes that are a child of the root have the owner of the root. + # FIXME: When saving the node scene, The FileManager should be used entirely. + # ResourceLoader / ResourceSaver should not be called from here. + var _spawnable_name: String = "" + + if name_override != "": + _spawnable_name = name_override + elif root.has_meta("pretty_name") == true: + _spawnable_name = root.get_meta("pretty_name") + else: + _spawnable_name = "Untitled" + + # Duplicate the node, this is so we can make modifications to it (if required to) + # This duplicate does not touch the scene tree. + root = root.duplicate() + + var original_owners = _get_node_ownership(root) + _set_temporary_ownership_recursive(root, root) + + # Externalize assets makes it so that networking things are consistent. + _externalize_assets(root) + + # Remove PlayerControllers. + _remove_invalid_nodes(root) + + var packed_scene = _create_packed_scene(root) + var file_path = FileManager._current_path() + "/" + _spawnable_name + ".tscn" + ResourceSaver.save(packed_scene, file_path) + + # I have no idea what ownership is in terms of nodes are right now, so put it back as to not break anything + _restore_ownership(root, original_owners) + + return + + +func load_spawnable(path: String) -> void: + var session_spawnable_manager = scene_m.get_master_scene(scene_m.active_session).get_node("SpawnableManager") + var _tasks: Array[Dictionary] = [] + var _path_parent_dictionary: Dictionary = { } + + # Check if file exists at the given path. + if FileAccess.file_exists(path) == false: + GlobalLogger.log("File '%s' does not exist." % path, Enum.LogLevel.INFO) + return + + var _scene = ResourceLoader.load(path) + var _state = _scene.get_state() + var _num_nodes_in_state: int = _state.get_node_count() + + # Generate the list of tasks we need to preform as well as include the information about the node. + for _node_id in range(_num_nodes_in_state): + var _num_properties: int = _state.get_node_property_count(_node_id) + var _node_path: String = _state.get_node_path(_node_id) + var _task: Dictionary = { } + + _task.id = _node_id + _task.parent = -1 + _task.path = _node_path + _task.properties = [] # An array listing the keys of property fields. + + for _prop_id in range(_num_properties): + var _prop_name: String = _state.get_node_property_name(_node_id, _prop_id) + var _prop_value: Variant = _state.get_node_property_value(_node_id, _prop_id) + + if _prop_value is Resource: + _task.properties.append(_prop_name) + _prop_value = _flatten_resource(_prop_value) + + _task.set(_prop_name, _prop_value) + + _tasks.append(_task) + + # Sort the tasks array using the paths field, the array should be in such an order that the parent of a node is always at a lower index in the array. Meaning when its time for a given node to spawn, the parent already exists. + _tasks.sort_custom(func(a: Dictionary, b: Dictionary) -> bool: return a["path"] < b["path"]) + + # Now we add the correct "parent" value to the tasks, so that we can be sure that the nodes are spawned in such an order that the nodes parent exists before it does. + for _task_from_queue in range(_tasks.size()): + var _task: Dictionary = _tasks[_task_from_queue] + var _task_base_path: String = _task.path.get_base_dir() + var _parent_task_id: int = -1 + + if _path_parent_dictionary.has(_task.path) == false: + # We do not have a listing for this node in the dictionary keeping track of parents. Any node that is a child of this one won't know where this node is. + _path_parent_dictionary[_task.path] = _task.id + + if _task_base_path == "": + # Special case for the root of a spawnable. Do nothing. + continue + + # Set the parent task of this task based upon previously discovered values. + _task.parent = _path_parent_dictionary[_task_base_path] + + # Finally, we spawn in the nodes. + for _task in _tasks: + var _node: Node + if _task.parent == -1: + if _task.has("metadata/spawnable_type") == false: + # HACK: Force unknown spawnable types to be Node3D (Empty). + GlobalLogger.log("Spawnable type not defined. Using Node3D.", Enum.LogLevel.WARNING) + _task["metadata/spawnable_type"] = "Node3D" + + _node = await session_spawnable_manager.create(_task["metadata/spawnable_type"]) + else: + var _parent_task_index_id: int = _tasks.find_custom(func(_entry): return _entry.id == _task.parent) + var _parent_task: Dictionary = _tasks[_parent_task_index_id] + _node = await session_spawnable_manager.create(_task["metadata/spawnable_type"], int(_parent_task.node.name)) + + _task.node = _node + + if _task.has("transform") == true: + session_spawnable_manager.set_transform(int(_task.node.name), _task.transform) + + for _prop in _task.properties: + var _prop_dict = _task[_prop] + + # First we should create the asset on the server + var _asset: Resource = await session_spawnable_manager.create_asset(_prop_dict.class, _prop_dict.properties) + + # Then we set that resource as the value of the resource property. + session_spawnable_manager.set_resource(int(_task.node.name), _prop, int(_asset.get_name())) + + return + + +func _flatten_resource(resource: Resource): + var _resource_props = resource.get_property_list() + var _response: Dictionary = { "properties": [], "class": "" } + + _response.class = resource.get_class() + for resource_id in range(_resource_props.size()): + var _name = _resource_props[resource_id].name + var _value = resource.get(_name) + + _response.properties.append({ "name": _name, "value": _value }) + + return _response + + +func _externalize_assets(root: Node) -> Node: + for property in root.get_property_list(): + var value = root.get(property.name) + + if value is Resource and value.resource_path.is_empty(): + # TODO: Hash the files to use as names? + var external_path = "user://spawnables_assets/%d.res" % randi() + ResourceSaver.save(value, external_path) + + var external_resource = load(external_path) + external_resource.take_over_path(external_path) + + root.set(property.name, external_resource) + + for child in root.get_children(): + _externalize_assets(child) + + return root + + +func _remove_invalid_nodes(root: Node) -> Node: + for _node in root.get_children(): + if _node.get_meta("spawnable_type") == "OM_PlayerController": + _node.free() + continue + + if _node.get_meta("spawnable_type") == "Gizmo": + _node.free() + continue + + # TODO: Add "persistent" metadata. + if _node.has_meta("persistent") && _node.get_meta("persistent") == false: + _node.free() + continue + + _remove_invalid_nodes(_node) + return + + +func _get_node_ownership(root: Node) -> Dictionary: + var ownership: Dictionary = { } + _get_node_ownership_recursive(root, ownership) + return ownership + + +func _get_node_ownership_recursive(node: Node, ownership: Dictionary) -> Dictionary: + if node.owner != null: + ownership[int(node.name)] = int(node.owner.name) + else: + ownership[int(node.name)] = int(-1) + + for child in node.get_children(): + _get_node_ownership_recursive(child, ownership) + return ownership + + +func _set_temporary_ownership_recursive(new_owner: Node, node: Node) -> void: + node.owner = new_owner + for child in node.get_children(): + _set_temporary_ownership_recursive(new_owner, child) + + +func _restore_ownership(_root: Node, _ownership_dict: Dictionary) -> void: + GlobalLogger.log("'%s' is not implemented." % get_stack()[0]["function"], Enum.LogLevel.WARNING) + return + + +func _create_packed_scene(root: Node) -> PackedScene: + var packed_scene = PackedScene.new() + packed_scene.pack(root) + return packed_scene + + +func _create_pck(_name: String = "") -> PCKPacker: + var pck_packer = PCKPacker.new() + pck_packer.pck_start("usr://dev_save.pck") + return pck_packer diff --git a/src/scripts/spawnable_file_handling.gd.uid b/src/scripts/spawnable_file_handling.gd.uid new file mode 100644 index 00000000..e52df7d4 --- /dev/null +++ b/src/scripts/spawnable_file_handling.gd.uid @@ -0,0 +1 @@ +uid://4rhvu1oluj66 diff --git a/src/scripts/utils/files.gd b/src/scripts/utils/files.gd new file mode 100644 index 00000000..3ec3ac6b --- /dev/null +++ b/src/scripts/utils/files.gd @@ -0,0 +1,100 @@ +# --- License +# File: /client/src/scripts/utils/files.gd +# Project: OpenMinerva +# Created Date: 05 February 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License + +extends Node + +const BASE_SPAWNABLE_DIR = "user://spawnables/" +var spawnables_dir: Array[String] = [] + +func _ready() -> void: + _initialize_spawnable_folder() + return + +# Creates a log file following the internal format. +# FIXME: Logger library should handle this. +func create_log_file() -> String: + GlobalLogger.log("Creating a log file for this session.") + _maybe_make_directory("user://logs/") + # TODO: Sanataize param + # TODO: Error checks + # TODO: Try to create a different file if one already exists with that name. + var log_file_name = _get_today_log_file_name() + var log_file_path = "user://logs/%s.%s" % [ProjectSettings.get_setting("application/config/name"), log_file_name] + var file = FileAccess.open(log_file_path, FileAccess.WRITE) + file.close() + GlobalLogger.log("Log file '%s' created." % log_file_path) + return log_file_path + +func create_file(dir: String, file_name: String) -> void: + _maybe_make_directory(dir) + # TODO: Sanitize name + var file = FileAccess.open("%s/%s" % [dir, file_name], FileAccess.WRITE) + GlobalLogger.log("File '%s' created at '%s'." % [file_name, dir]) + file.close() + +func _maybe_make_directory(dir: String): + var dir_access = DirAccess.open("user://") + dir_access.make_dir_recursive(dir) + +func _parse_log_file_name(file_name: String) -> Dictionary: + var date = file_name.split(".")[1].split("-") + var year = date[0].split("_")[0] + var month = date[0].split("_")[1] + var day = date[0].split("_")[2] + var hour = date[1].split("_")[0] + var minute = date[1].split("_")[1] + var second = date[1].split("_")[2] + var time_dictionary = Time.get_datetime_dict_from_datetime_string("%s-%s-%sT%s:%s:%s" % [year, month, day, hour, minute, second], true) + return time_dictionary + +func _get_today_log_file_name() -> String: + var current_timestring = Time.get_datetime_string_from_system() + var file_name = current_timestring.replace("-", "_").replace("T", "-").replace(":", "_") + return file_name + +# TODO: Initialization section to make sure all folders exist. +# Spawnables local file management +func _initialize_spawnable_folder() -> void: + # Check if the folder exists + DirAccess.make_dir_recursive_absolute(BASE_SPAWNABLE_DIR) + + return + +func get_inv_filelist() -> Dictionary: + var response = {"files": [], "directories": []} + + response.files = DirAccess.get_files_at(_current_path()) + response.directories = DirAccess.get_directories_at(_current_path()) + + return response + +func _current_path() -> String: + return BASE_SPAWNABLE_DIR + "/".join(spawnables_dir) + +func move_inv_deeper(folder: String) -> void: + # Move to a new folder from the current _maybe_make_directory + # TODO: Validate folder exists + spawnables_dir.append(folder) + return + +func move_inv_relocate(target: int) -> void: + # Relocate the current spawnable file path to a previous position in the path. + spawnables_dir.resize(target) + return + +func create_folder(folder_name: String = "New Folder") -> void: + # TODO: Sanatize file name + DirAccess.make_dir_recursive_absolute(_current_path() + "/%s" % folder_name) + return + +func delete_folder(folder_name: String) -> void: + # TODO: Sanatize file name + # TODO: Recursive delete for all files + DirAccess.remove_absolute(_current_path() + "/%s" % folder_name) + return diff --git a/src/scripts/utils/files.gd.uid b/src/scripts/utils/files.gd.uid new file mode 100644 index 00000000..805a1b21 --- /dev/null +++ b/src/scripts/utils/files.gd.uid @@ -0,0 +1 @@ +uid://d2s50p717g3n diff --git a/src/scripts/utils/launch_arguments.gd b/src/scripts/utils/launch_arguments.gd new file mode 100644 index 00000000..05235d30 --- /dev/null +++ b/src/scripts/utils/launch_arguments.gd @@ -0,0 +1,17 @@ +extends Node + +var arguments = {} + +func get_command_line_args() -> Dictionary: + for argument in OS.get_cmdline_args(): + if argument.contains("="): + var key_value = argument.split("=") + arguments[key_value[0].trim_prefix("--")] = key_value[1] + else: + # Options without an argument will be present in the dictionary, + # with the value set to an empty string. + arguments[argument.trim_prefix("--")] = "" + return arguments + +func _ready(): + get_command_line_args() \ No newline at end of file diff --git a/src/scripts/utils/launch_arguments.gd.uid b/src/scripts/utils/launch_arguments.gd.uid new file mode 100644 index 00000000..4dda50be --- /dev/null +++ b/src/scripts/utils/launch_arguments.gd.uid @@ -0,0 +1 @@ +uid://c45jrfmrjtnyn diff --git a/src/scripts/utils/node_schema_builder.gd b/src/scripts/utils/node_schema_builder.gd new file mode 100644 index 00000000..39473e7c --- /dev/null +++ b/src/scripts/utils/node_schema_builder.gd @@ -0,0 +1,145 @@ +# --- License +# File: /client/src/scripts/utils/node_schema_builder.gd +# Project: OpenMinerva +# Created Date: 03 June 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +class_name NSB +extends Node + +static var _schema: Dictionary = { } + + +static func init() -> void: + # Clear the schema just in case + _schema = { } + + # Load the schema json file + var _fallback_icon: Texture2D = load("res:///resources/icons/godot/StatusError.svg") + var _schema_raw: Variant = load("res://scripts/utils/schema.json") + var _schema_data: Dictionary = { } + + # TODO: This should be handled more gracefully instead of just closing the application. + # https://github.com/OpenMinerva/client/issues/148 + if _fallback_icon == null: + var tree: SceneTree = Engine.get_main_loop() + GlobalLogger.log("Failed to load fallback icon for the schema.", Enum.LogLevel.ERROR) + tree.quit(1) + return + + if _schema_raw == null: + var tree: SceneTree = Engine.get_main_loop() + GlobalLogger.log("Failed to load the schema.", Enum.LogLevel.ERROR) + tree.quit(1) + return + + _schema_data = _schema_raw.data + + # Build the schema from the information provided + for _item in _schema_data.keys(): + var _entry = _schema_data[_item] + var _custom_icon = load("res://resources/icons/%s" % _entry.icon) + + if _custom_icon != null: + _entry.icon = _custom_icon + else: + _entry.icon = _fallback_icon + + _schema[_item] = _entry + return + + +static func is_valid(_search_key: Variant) -> bool: + GlobalLogger.log("'%s' is not implemented." % get_stack()[0]["function"], Enum.LogLevel.WARNING) + return false + + +static func get_schema() -> Dictionary: + return _schema + + +static func get_entry(node_name: String) -> Dictionary: + if !_schema.keys().has(node_name): + # Invalid node_name + return { } + + return _schema[node_name] + + +static func build(node_name: String, model_path: String = "") -> Node: + if node_name == "": + return + + var _entry = _schema[node_name] + + if _entry.requires_setup == false: + var _work_node = ClassDB.instantiate(_entry.node) + _add_node_metadata(_work_node) + return _work_node + + if node_name == "Box": + var _work_node = MeshInstance3D.new() + _work_node.mesh = BoxMesh.new() + _add_node_metadata(_work_node) + return _work_node + + if node_name == "OM_PlayerController": + var _work_node = load("res://scenes/players/player.tscn").instantiate() + return _work_node + + if node_name == "Capsule": + var _work_node = MeshInstance3D.new() + _work_node.mesh = CapsuleMesh.new() + _add_node_metadata(_work_node) + return _work_node + + if node_name == "RigidBody3D": + var _work_node = RigidBody3D.new() + _work_node.freeze = true + _add_node_metadata(_work_node) + return _work_node + + if node_name == "Gizmo": + var _work_node = Gizmo3D.new() + _work_node.top_level = true + _add_node_metadata(_work_node) + + _work_node.set_meta("scene_node", false) + return _work_node + + if node_name == "Camera3D": + var _work_node = Camera3D.new() + _add_node_metadata(_work_node) + _work_node.current = false + return _work_node + + if node_name == "Model": + # TODO: Generating the scene does not seem to properly set up the MeshInstance3D, causing deletion errors. + # TODO: Throw this into another thread. + # That also means that this probably will not work for sending meshes over the network. + var doc = GLTFDocument.new() + var state = GLTFState.new() + doc.append_from_file(model_path, state) + var glb_scene: Node3D = doc.generate_scene(state) + + _add_node_metadata(glb_scene) + + return glb_scene + + # FIXME: This function should always return what the user wants. If it gets to this point then I made an error in the schema. Proper reporting to the user somehow? + return Node3D.new() + + +static func _add_node_metadata(root: Node) -> void: + var _class = root.get_class() + var _schema_entry = _schema[_class] + + root.set_meta("spawnable_type", _class) + root.set_meta("pretty_name", _schema_entry.pretty_name) + root.set_meta("deep_delete", _schema_entry.deep_delete) + + for child in root.get_children(): + _add_node_metadata(child) + return diff --git a/src/scripts/utils/node_schema_builder.gd.uid b/src/scripts/utils/node_schema_builder.gd.uid new file mode 100644 index 00000000..2f45976c --- /dev/null +++ b/src/scripts/utils/node_schema_builder.gd.uid @@ -0,0 +1 @@ +uid://s8cwd4v263v2 diff --git a/src/scripts/utils/random.gd b/src/scripts/utils/random.gd new file mode 100644 index 00000000..b45734af --- /dev/null +++ b/src/scripts/utils/random.gd @@ -0,0 +1,33 @@ +# --- License +# File: /client/src/scripts/utils/random.gd +# Project: OpenMinerva +# Created Date: 13 January 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License + +class_name Random + +static var char_bytes: PackedByteArray= "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".to_ascii_buffer() +static var rng = RandomNumberGenerator.new() + +static func string(length: int = 6) -> String: + # New array. + var bytes: PackedByteArray = PackedByteArray() + + # Reside the array, avoids performance of increasing the size of the array. + bytes.resize(length) + + for i in length: + # Get a random character from the char_bytes array. + bytes[i] = char_bytes[randi() % char_bytes.size()] + + # Returns the PackedByteArray as a string. + return bytes.get_string_from_ascii() + +static func int(min_num: int = 0, max_num: int = 10) -> int: + return rng.randi_range(min_num, max_num) + +static func float(min_num: float = 0, max_num: float = 10) -> float: + return rng.randf_range(min_num, max_num) diff --git a/src/scripts/utils/random.gd.uid b/src/scripts/utils/random.gd.uid new file mode 100644 index 00000000..72994f64 --- /dev/null +++ b/src/scripts/utils/random.gd.uid @@ -0,0 +1 @@ +uid://1js68qt8w0mv diff --git a/src/scripts/utils/schema.json b/src/scripts/utils/schema.json new file mode 100644 index 00000000..082e6b94 --- /dev/null +++ b/src/scripts/utils/schema.json @@ -0,0 +1,144 @@ +{ + "Gizmo": { + "requires_setup": true, + "pretty_name": "Gizmo", + "node": null, + "icon": "Gizmo.svg", + "hidden": true, + "deep_delete": false + }, + "OM_PlayerController": { + "requires_setup": true, + "pretty_name": "Player", + "node": null, + "icon": "godot/CharacterBody3D.svg", + "hidden": true, + "deep_delete": false + }, + "CollisionShape3D": { + "requires_setup": false, + "pretty_name": "CollisionShape3D", + "node": "CollisionShape3D", + "icon": "godot/CollisionShape3D.svg", + "hidden": false, + "deep_delete": false + }, + "RayCast3D": { + "requires_setup": false, + "pretty_name": "RayCast3D", + "node": "RayCast3D", + "icon": "godot/RayCast3D.svg", + "hidden": false, + "deep_delete": false + }, + "Camera3D": { + "requires_setup": true, + "pretty_name": "Camera3D", + "node": "Camera3D", + "icon": "godot/Camera3D.svg", + "hidden": true, + "deep_delete": false + }, + "WorldEnvironment": { + "requires_setup": false, + "pretty_name": "WorldEnvironment", + "node": "WorldEnvironment", + "icon": "godot/WorldEnvironment.svg", + "hidden": false, + "deep_delete": true, + "tags": [] + }, + "Model": { + "requires_setup": true, + "pretty_name": "Imported Model", + "node": null, + "icon": "godot/MeshInstance3D.svg", + "hidden": true, + "deep_delete": true + }, + "Node3D": { + "requires_setup": false, + "pretty_name": "Node3D", + "node": "Node3D", + "icon": "godot/Node3D.svg", + "hidden": false, + "deep_delete": true + }, + "Box": { + "requires_setup": true, + "pretty_name": "Box", + "node": null, + "icon": "godot/MeshInstance3D.svg", + "hidden": false, + "deep_delete": true + }, + "Capsule": { + "requires_setup": true, + "pretty_name": "Capsule", + "node": null, + "icon": "godot/MeshInstance3D.svg", + "hidden": false, + "deep_delete": true + }, + "RigidBody3D": { + "requires_setup": true, + "pretty_name": "RigidBody3D", + "node": "RigidBody3D", + "icon": "godot/RigidBody3D.svg", + "hidden": false, + "deep_delete": true, + "tags": ["RigidBody"] + }, + "MeshInstance3D": { + "requires_setup": false, + "pretty_name": "MeshInstance3D", + "node": "MeshInstance3D", + "icon": "godot/MeshInstance3D.svg", + "hidden": false, + "deep_delete": true + }, + "Skeleton3D": { + "requires_setup": false, + "pretty_name": "Skeleton3D", + "node": "Skeleton3D", + "icon": "godot/Skeleton3D.svg", + "hidden": false, + "deep_delete": true + }, + "OmniLight3D": { + "requires_setup": false, + "pretty_name": "OmniLight3D", + "node": "OmniLight3D", + "icon": "godot/OmniLight3D.svg", + "hidden": false, + "deep_delete": true, + "tags": ["Light"] + }, + "DirectionalLight3D": { + "requires_setup": false, + "pretty_name": "DirectionalLight3D", + "node": "DirectionalLight3D", + "icon": "godot/DirectionalLight3D.svg", + "hidden": false, + "deep_delete": true, + "tags": ["Light"] + }, + "StaticBody3D": { + "requires_setup": false, + "pretty_name": "StaticBody3D", + "node": "StaticBody3D", + "icon": "godot/StaticBody3D.svg", + "hidden": false, + "deep_delete": true, + "tags": [] + }, + "CharacterBody3D": { + "requires_setup": false, + "pretty_name": "CharacterBody3D", + "node": "CharacterBody3D", + "icon": "godot/CharacterBody3D.svg", + "hidden": false, + "deep_delete": true, + "tags": [] + } +} diff --git a/src/scripts/utils/state_manager.gd b/src/scripts/utils/state_manager.gd new file mode 100644 index 00000000..412ec921 --- /dev/null +++ b/src/scripts/utils/state_manager.gd @@ -0,0 +1,58 @@ +# --- License +# File: /client/src/scripts/utils/state_manager.gd +# Project: OpenMinerva +# Created Date: 10 July 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +# Client Editor Mode +var _cem: bool = false +var _cem_camera: bool = false +var _cem_camera_rotating: bool = false + +# Dashboard +var _dashboard: bool = false + +func _ready() -> void: + Events.cem_set_state.connect(func (state): _cem = state) + Events.dash_set_state.connect(func (state): _dashboard = state) + Events.cem_camera_state.connect(func (state): _cem_camera = state) + Events.cem_camera_rotating.connect(func (state): _cem_camera_rotating = state) + return + +# Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) +func update_mouse_state() -> void: + if _dashboard == true: + # Dashboard always needs input. + Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) + return + + if _cem_camera_rotating == true: + # Rotating the CEM camera requires the mouse. + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + return + + if _cem_camera == true && _cem == true: + # CEM_Camera requires a free mouse as well. + Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) + return + + if _cem_camera == true && _cem == false: + # CEM_Camera but no inspector is just a free cam. + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + return + + if _cem == true: + # Inspector requires a mouse. + Input.set_mouse_mode(Input.MOUSE_MODE_VISIBLE) + return + + Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED) + + return + +func is_mouse_captured() -> bool: + return Input.get_mouse_mode() diff --git a/src/scripts/utils/state_manager.gd.uid b/src/scripts/utils/state_manager.gd.uid new file mode 100644 index 00000000..c412558a --- /dev/null +++ b/src/scripts/utils/state_manager.gd.uid @@ -0,0 +1 @@ +uid://b5vvw77bmn4yc diff --git a/src/userinterface/client_edit_mode/desktop/cem_container.gd b/src/userinterface/client_edit_mode/desktop/cem_container.gd new file mode 100644 index 00000000..23334f24 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/cem_container.gd @@ -0,0 +1,27 @@ +extends Node + +var _cem_state: bool = false + +@onready var inspector: Node = get_node("Inspector") +@onready var crosshair: Node = get_node("VBoxContainer/SubViewportContainer/SubViewport/Crosshair") + + +func _ready() -> void: + Events.cem_set_state.connect(_cem_set_state) + return + + +func _cem_set_state(state: bool) -> void: + var is_different = state != _cem_state + + if is_different == false: + return + _cem_state = state + + if state == true: + inspector.visible = true + crosshair.visible = false + else: + inspector.visible = false + crosshair.visible = true + return diff --git a/src/userinterface/client_edit_mode/desktop/cem_container.gd.uid b/src/userinterface/client_edit_mode/desktop/cem_container.gd.uid new file mode 100644 index 00000000..182545f4 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/cem_container.gd.uid @@ -0,0 +1 @@ +uid://b4mien0qqtx01 diff --git a/src/userinterface/client_edit_mode/desktop/inspector.tscn b/src/userinterface/client_edit_mode/desktop/inspector.tscn new file mode 100644 index 00000000..3120b2fa --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/inspector.tscn @@ -0,0 +1,393 @@ +[gd_scene format=3 uid="uid://bqtqfooa7qncp"] + +[ext_resource type="Script" uid="uid://dlituslp07gvw" path="res://userinterface/client_edit_mode/desktop/scripts/inspector.gd" id="1_7pj7g"] +[ext_resource type="Shader" uid="uid://bwr4b0mhgi4w6" path="res://userinterface/dash/shaders/blur.gdshader" id="2_lsah3"] +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="2_plsgj"] +[ext_resource type="PackedScene" uid="uid://clxgcncfyislv" path="res://userinterface/client_edit_mode/desktop/partial/toolbar_info_entry.tscn" id="4_840b7"] +[ext_resource type="PackedScene" uid="uid://71vuc3qrtgi7" path="res://userinterface/dash/partials/category_button.tscn" id="4_xqsbl"] +[ext_resource type="PackedScene" uid="uid://cyom30b1p54df" path="res://userinterface/dash/partials/search.tscn" id="4_yi8pr"] +[ext_resource type="Texture2D" uid="uid://ddy2wff6euii8" path="res://resources/icons/godot/ToolTransform.svg" id="5_0debx"] +[ext_resource type="Texture2D" uid="uid://fo1d37jtb6vk" path="res://resources/icons/godot/OmniLight3D.svg" id="6_3dh21"] +[ext_resource type="Texture2D" uid="uid://d0eu0hptxnvjd" path="res://resources/icons/godot/ToolRotate.svg" id="6_840b7"] +[ext_resource type="Texture2D" uid="uid://dbh1x1f04arga" path="res://resources/icons/godot/Object.svg" id="6_y7tqo"] +[ext_resource type="Texture2D" uid="uid://bu6vtb71stcjq" path="res://resources/icons/godot/ToolScale.svg" id="7_7pj7g"] +[ext_resource type="Texture2D" uid="uid://8rvofwa4k380" path="res://resources/icons/godot/WorldEnvironment.svg" id="8_7pj7g"] +[ext_resource type="Texture2D" uid="uid://bx7irvaofgk6n" path="res://resources/icons/godot/CharacterBody3D.svg" id="9_840b7"] +[ext_resource type="PackedScene" uid="uid://wmjsfgx486xa" path="res://userinterface/client_edit_mode/node_property_editor/partials/bool.tscn" id="14_8u8qu"] +[ext_resource type="Script" uid="uid://8lm0oig2kxbj" path="res://userinterface/client_edit_mode/desktop/scripts/properties.gd" id="14_at34i"] +[ext_resource type="PackedScene" uid="uid://chbjqqcikq7aj" path="res://userinterface/client_edit_mode/desktop/partial/popup_selection.tscn" id="14_cuj5f"] +[ext_resource type="PackedScene" uid="uid://dkn0gmy8or4hq" path="res://userinterface/client_edit_mode/node_property_editor/partials/Vector3.tscn" id="14_q5c3n"] +[ext_resource type="Texture2D" uid="uid://cq2ec6jy8kynp" path="res://resources/icons/godot/Add.svg" id="15_3i2mc"] +[ext_resource type="PackedScene" uid="uid://c7animyvghvk" path="res://userinterface/client_edit_mode/node_property_editor/partials/FoldableContainer.tscn" id="16_73wcm"] +[ext_resource type="PackedScene" uid="uid://sntuc3p6k4s6" path="res://userinterface/dash/partials/generic_button.tscn" id="16_j7nog"] +[ext_resource type="Texture2D" uid="uid://b54viv8d54q83" path="res://resources/icons/godot/Remove.svg" id="17_akq5y"] +[ext_resource type="Texture2D" uid="uid://dtwfvglraa8t7" path="res://resources/icons/godot/Edit.svg" id="18_akq5y"] +[ext_resource type="Texture2D" uid="uid://blnd7x2qc6b7q" path="res://resources/icons/godot/Save.svg" id="18_k3kne"] +[ext_resource type="PackedScene" uid="uid://bnimj67377v8l" path="res://userinterface/client_edit_mode/desktop/partial/add_node_window.tscn" id="21_q5c3n"] + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_bstjd"] +shader = ExtResource("2_lsah3") +shader_parameter/color = Color(0.4, 0.4, 0.4, 1) +shader_parameter/blur_amount = 3.0000001392401203 +shader_parameter/roughness = 0.2 +shader_parameter/roughness_affect = 0.0 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_plsgj"] +bg_color = Color(0.078431375, 0.078431375, 0.078431375, 0.78431374) + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_lsah3"] +shader = ExtResource("2_lsah3") +shader_parameter/color = Color(1, 1, 1, 1) +shader_parameter/blur_amount = 4.0 +shader_parameter/roughness = 0.2 +shader_parameter/roughness_affect = 0.0 + +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_plsgj"] + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_q5c3n"] +bg_color = Color(0, 0.42455268, 0.75621223, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_8u8qu"] +bg_color = Color(0, 0.37461048, 0.6717304, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_at34i"] +bg_color = Color(0.046598867, 0.577127, 0.99997205, 1) + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_k3kne"] +bg_color = Color(1.540184e-06, 0.32559153, 0.56908864, 1) + +[node name="Inspector" type="Control" unique_id=879206536] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +focus_behavior_recursive = 1 +script = ExtResource("1_7pj7g") + +[node name="VBoxContainer" type="VBoxContainer" parent="." unique_id=1582463689] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/separation = 2 + +[node name="Toolbar" type="Panel" parent="VBoxContainer" unique_id=358133653] +material = SubResource("ShaderMaterial_bstjd") +custom_minimum_size = Vector2(0, 40) +layout_mode = 2 +mouse_filter = 1 +theme = ExtResource("2_plsgj") +theme_override_styles/panel = SubResource("StyleBoxFlat_plsgj") + +[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer/Toolbar" unique_id=178859794] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 4 +theme_override_constants/margin_top = 4 +theme_override_constants/margin_right = 4 +theme_override_constants/margin_bottom = 4 + +[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer/Toolbar/MarginContainer" unique_id=385149579] +layout_mode = 2 + +[node name="GizmoControl" type="HBoxContainer" parent="VBoxContainer/Toolbar/MarginContainer/HBoxContainer" unique_id=554492852] +layout_mode = 2 +size_flags_horizontal = 4 + +[node name="Transform" parent="VBoxContainer/Toolbar/MarginContainer/HBoxContainer/GizmoControl" unique_id=649942124 instance=ExtResource("4_xqsbl")] +custom_minimum_size = Vector2(30, 0) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 1 +toggle = true +default_state = true +only_icon = true +icon = ExtResource("5_0debx") + +[node name="Rotation" parent="VBoxContainer/Toolbar/MarginContainer/HBoxContainer/GizmoControl" unique_id=1920461512 instance=ExtResource("4_xqsbl")] +custom_minimum_size = Vector2(30, 0) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 1 +toggle = true +default_state = true +only_icon = true +icon = ExtResource("6_840b7") + +[node name="Scale" parent="VBoxContainer/Toolbar/MarginContainer/HBoxContainer/GizmoControl" unique_id=1111454066 instance=ExtResource("4_xqsbl")] +custom_minimum_size = Vector2(30, 0) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 1 +toggle = true +default_state = true +only_icon = true +icon = ExtResource("7_7pj7g") + +[node name="GizmoControlMisc" type="HBoxContainer" parent="VBoxContainer/Toolbar/MarginContainer/HBoxContainer" unique_id=2047894102] +layout_mode = 2 +size_flags_horizontal = 4 + +[node name="Space" parent="VBoxContainer/Toolbar/MarginContainer/HBoxContainer/GizmoControlMisc" unique_id=1555249008 instance=ExtResource("4_xqsbl")] +custom_minimum_size = Vector2(30, 0) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 1 +toggle = true +default_state = true +only_icon = true +icon = ExtResource("8_7pj7g") + +[node name="Spacer" type="Control" parent="VBoxContainer/Toolbar/MarginContainer/HBoxContainer" unique_id=1030984806] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="SpawnableCount" parent="VBoxContainer/Toolbar/MarginContainer/HBoxContainer" unique_id=1405780292 instance=ExtResource("4_840b7")] +layout_mode = 2 +icon = ExtResource("6_y7tqo") + +[node name="PlayerCount" parent="VBoxContainer/Toolbar/MarginContainer/HBoxContainer" unique_id=1632871716 instance=ExtResource("4_840b7")] +layout_mode = 2 +icon = ExtResource("9_840b7") + +[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer" unique_id=1142545073] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="HSplitContainer" type="HSplitContainer" parent="VBoxContainer/HBoxContainer" unique_id=234551977] +layout_mode = 2 +size_flags_horizontal = 3 +split_offsets = PackedInt32Array(300) +split_offset = 300 + +[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer" unique_id=1929440074] +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer" unique_id=989599199] +layout_mode = 2 + +[node name="Container" type="Control" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer" unique_id=1148377667] +material = SubResource("ShaderMaterial_lsah3") +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="BackgroundColor" type="Panel" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container" unique_id=1608019550] +material = SubResource("ShaderMaterial_bstjd") +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 1 +theme = ExtResource("2_plsgj") +theme_override_styles/panel = SubResource("StyleBoxFlat_plsgj") + +[node name="VBoxContainer" type="VBoxContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container" unique_id=1984121645] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="InputString" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer" unique_id=1236567120 instance=ExtResource("4_yi8pr")] +layout_mode = 2 +display_text = "Search..." + +[node name="LineEdit" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/InputString/MarginContainer/HBoxContainer/MarginContainer" parent_id_path=PackedInt32Array(1236567120, 514760511) index="0" unique_id=828836954] +focus_mode = 1 + +[node name="Filters" type="MarginContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer" unique_id=104307759] +layout_mode = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_right = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/Filters" unique_id=831013929] +layout_mode = 2 + +[node name="Light" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/Filters/HBoxContainer" unique_id=835715123 instance=ExtResource("4_xqsbl")] +custom_minimum_size = Vector2(0, 30) +layout_mode = 2 +toggle = true +default_state = false +only_icon = true +icon = ExtResource("6_3dh21") + +[node name="Button" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/Filters/HBoxContainer/Light" index="0" unique_id=1422381468] +toggle_mode = true + +[node name="TextureRect" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/Filters/HBoxContainer/Light/Button/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(835715123, 86696220) index="0" unique_id=1429445374] +size_flags_horizontal = 3 +texture = ExtResource("6_3dh21") +stretch_mode = 5 + +[node name="Player" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/Filters/HBoxContainer" unique_id=930128724 instance=ExtResource("4_xqsbl")] +custom_minimum_size = Vector2(0, 30) +layout_mode = 2 +toggle = true +default_state = false +only_icon = true +icon = ExtResource("9_840b7") + +[node name="Button" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/Filters/HBoxContainer/Player" index="0" unique_id=1422381468] +toggle_mode = true + +[node name="TextureRect" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/Filters/HBoxContainer/Player/Button/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(930128724, 86696220) index="0" unique_id=1429445374] +size_flags_horizontal = 3 +texture = ExtResource("9_840b7") +stretch_mode = 5 + +[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer" unique_id=1666616570] +layout_mode = 2 +size_flags_vertical = 3 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="Tree" type="Tree" parent="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/MarginContainer" unique_id=1139166924] +layout_mode = 2 +focus_mode = 0 +theme_override_colors/font_color = Color(1, 1, 1, 1) +theme_override_constants/draw_guides = 0 +theme_override_constants/draw_relationship_lines = 1 +theme_override_constants/relationship_line_width = 1 +theme_override_font_sizes/font_size = 14 +theme_override_styles/panel = SubResource("StyleBoxEmpty_plsgj") +theme_override_styles/hovered = SubResource("StyleBoxFlat_q5c3n") +theme_override_styles/hovered_dimmed = SubResource("StyleBoxFlat_8u8qu") +theme_override_styles/hovered_selected = SubResource("StyleBoxFlat_at34i") +theme_override_styles/selected = SubResource("StyleBoxFlat_k3kne") +allow_rmb_select = true +allow_search = false +hide_root = true +select_mode = 1 + +[node name="Control" type="Control" parent="VBoxContainer/HBoxContainer/HSplitContainer" unique_id=250118725] +layout_mode = 2 +size_flags_horizontal = 3 +mouse_filter = 1 + +[node name="Properties" type="MarginContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer" unique_id=1127572109] +visible = false +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 +script = ExtResource("14_at34i") + +[node name="VBoxContainer" type="VBoxContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties" unique_id=1772787264] +layout_mode = 2 + +[node name="Container" type="Control" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer" unique_id=367695551] +material = SubResource("ShaderMaterial_lsah3") +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="BackgroundColor" type="Panel" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer/Container" unique_id=641370686] +material = SubResource("ShaderMaterial_bstjd") +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 1 +theme = ExtResource("2_plsgj") +theme_override_styles/panel = SubResource("StyleBoxFlat_plsgj") + +[node name="ScrollContainer" type="ScrollContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer/Container" unique_id=1256337211] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +horizontal_scroll_mode = 0 + +[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer/Container/ScrollContainer" unique_id=1523084746] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="VBoxContainer" type="VBoxContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer/Container/ScrollContainer/MarginContainer" unique_id=413793585] +layout_mode = 2 + +[node name="Visible" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer/Container/ScrollContainer/MarginContainer/VBoxContainer" unique_id=933711176 instance=ExtResource("14_8u8qu")] +layout_mode = 2 +property_name = "Visible" + +[node name="FoldableContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer/Container/ScrollContainer/MarginContainer/VBoxContainer" unique_id=1542739099 instance=ExtResource("16_73wcm")] +layout_mode = 2 +folded = false + +[node name="VBoxContainer" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer/Container/ScrollContainer/MarginContainer/VBoxContainer/FoldableContainer" index="0" unique_id=238553897] +visible = true + +[node name="Position" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer/Container/ScrollContainer/MarginContainer/VBoxContainer/FoldableContainer/VBoxContainer" index="0" unique_id=352534286 instance=ExtResource("14_q5c3n")] +layout_mode = 2 +size_flags_vertical = 1 +property_name = "Position" + +[node name="Rotation" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer/Container/ScrollContainer/MarginContainer/VBoxContainer/FoldableContainer/VBoxContainer" index="1" unique_id=204239032 instance=ExtResource("14_q5c3n")] +layout_mode = 2 +size_flags_vertical = 1 +property_name = "Rotation" + +[node name="Scale" parent="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer/Container/ScrollContainer/MarginContainer/VBoxContainer/FoldableContainer/VBoxContainer" index="2" unique_id=172565004 instance=ExtResource("14_q5c3n")] +layout_mode = 2 +size_flags_vertical = 1 +property_name = "Scale" + +[node name="InspectorPopup" parent="." unique_id=629092317 instance=ExtResource("14_cuj5f")] +visible = false +layout_mode = 0 +offset_right = 150.0 +offset_bottom = 102.0 + +[node name="GenericButton" parent="InspectorPopup/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(629092317, 979136800) index="0" unique_id=649942124] +custom_minimum_size = Vector2(0, 30) +label = "New" +icon = ExtResource("15_3i2mc") + +[node name="GenericButton2" parent="InspectorPopup/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(629092317, 979136800) index="1" unique_id=1910021656 instance=ExtResource("16_j7nog")] +custom_minimum_size = Vector2(0, 30) +layout_mode = 2 +label = "Remove" +icon = ExtResource("17_akq5y") + +[node name="GenericButton4" parent="InspectorPopup/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(629092317, 979136800) index="2" unique_id=1020681052 instance=ExtResource("16_j7nog")] +custom_minimum_size = Vector2(0, 30) +layout_mode = 2 +label = "Save" +icon = ExtResource("18_k3kne") + +[node name="GenericButton3" parent="InspectorPopup/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(629092317, 979136800) index="3" unique_id=1650386814 instance=ExtResource("16_j7nog")] +custom_minimum_size = Vector2(0, 30) +layout_mode = 2 +label = "Rename" +icon = ExtResource("18_akq5y") + +[node name="AddNodeWindow" parent="." unique_id=524781090 instance=ExtResource("21_q5c3n")] +visible = false +layout_mode = 1 + +[editable path="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/InputString"] +[editable path="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/Filters/HBoxContainer/Light"] +[editable path="VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/Filters/HBoxContainer/Player"] +[editable path="VBoxContainer/HBoxContainer/HSplitContainer/Properties/VBoxContainer/Container/ScrollContainer/MarginContainer/VBoxContainer/FoldableContainer"] +[editable path="InspectorPopup"] diff --git a/src/userinterface/client_edit_mode/desktop/partial/add_node_window.tscn b/src/userinterface/client_edit_mode/desktop/partial/add_node_window.tscn new file mode 100644 index 00000000..30ac9690 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/partial/add_node_window.tscn @@ -0,0 +1,85 @@ +[gd_scene format=3 uid="uid://bnimj67377v8l"] + +[ext_resource type="Script" uid="uid://f3bibh57bqdj" path="res://userinterface/client_edit_mode/desktop/scripts/add_node_window.gd" id="1_u7aab"] +[ext_resource type="Shader" uid="uid://bwr4b0mhgi4w6" path="res://userinterface/dash/shaders/blur.gdshader" id="1_yw3ky"] +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="2_lacy5"] +[ext_resource type="PackedScene" uid="uid://sntuc3p6k4s6" path="res://userinterface/dash/partials/generic_button.tscn" id="3_j380t"] +[ext_resource type="Texture2D" uid="uid://bmjw8t1c6bi75" path="res://resources/icons/godot/Close.svg" id="4_u7aab"] + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_j380t"] +shader = ExtResource("1_yw3ky") +shader_parameter/color = Color(0.2, 0.2, 0.2, 1) +shader_parameter/blur_amount = 3.0000001392401203 +shader_parameter/roughness = 0.2 +shader_parameter/roughness_affect = 0.0 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_u7aab"] +bg_color = Color(0.078431375, 0.078431375, 0.078431375, 0.78431374) + +[node name="AddNodeWindow" type="Control" unique_id=524781090] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_right = -1620.0 +offset_bottom = -680.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +script = ExtResource("1_u7aab") +window_name = null + +[node name="BackgroundColor" type="Panel" parent="." unique_id=889545988] +material = SubResource("ShaderMaterial_j380t") +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 1 +theme = ExtResource("2_lacy5") +theme_override_styles/panel = SubResource("StyleBoxFlat_u7aab") + +[node name="MarginContainer" type="MarginContainer" parent="BackgroundColor" unique_id=802103033] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="VBoxContainer" type="VBoxContainer" parent="BackgroundColor/MarginContainer" unique_id=969090938] +layout_mode = 2 + +[node name="HBoxContainer" type="HBoxContainer" parent="BackgroundColor/MarginContainer/VBoxContainer" unique_id=1407239756] +layout_mode = 2 + +[node name="Label" type="Label" parent="BackgroundColor/MarginContainer/VBoxContainer/HBoxContainer" unique_id=665280700] +layout_mode = 2 +size_flags_horizontal = 3 +theme_override_font_sizes/font_size = 16 +text = "Window Name" +horizontal_alignment = 1 +vertical_alignment = 1 + +[node name="GenericButton" parent="BackgroundColor/MarginContainer/VBoxContainer/HBoxContainer" unique_id=649942124 instance=ExtResource("3_j380t")] +custom_minimum_size = Vector2(30, 30) +layout_mode = 2 +size_flags_horizontal = 1 +icon = ExtResource("4_u7aab") +only_icon = true + +[node name="ScrollContainer" type="ScrollContainer" parent="BackgroundColor/MarginContainer/VBoxContainer" unique_id=497988716] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="VBoxContainer" type="VBoxContainer" parent="BackgroundColor/MarginContainer/VBoxContainer/ScrollContainer" unique_id=1702841490] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 diff --git a/src/userinterface/client_edit_mode/desktop/partial/movable_window.tscn b/src/userinterface/client_edit_mode/desktop/partial/movable_window.tscn new file mode 100644 index 00000000..70f00f7d --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/partial/movable_window.tscn @@ -0,0 +1,75 @@ +[gd_scene format=3 uid="uid://b6qb2oq26yooy"] + +[ext_resource type="Script" uid="uid://bapubedba8eiu" path="res://userinterface/client_edit_mode/desktop/scripts/moveable_window.gd" id="1_le5nq"] +[ext_resource type="Shader" uid="uid://bwr4b0mhgi4w6" path="res://userinterface/dash/shaders/blur.gdshader" id="2_4cmho"] +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="3_ddx82"] +[ext_resource type="PackedScene" uid="uid://sntuc3p6k4s6" path="res://userinterface/dash/partials/generic_button.tscn" id="4_l1byb"] +[ext_resource type="Texture2D" uid="uid://bmjw8t1c6bi75" path="res://resources/icons/godot/Close.svg" id="5_752f5"] + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_j380t"] +shader = ExtResource("2_4cmho") +shader_parameter/color = Color(0.2, 0.2, 0.2, 1) +shader_parameter/blur_amount = 3.0000001392401203 +shader_parameter/roughness = 0.2 +shader_parameter/roughness_affect = 0.0 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_u7aab"] +bg_color = Color(0.078431375, 0.078431375, 0.078431375, 0.78431374) + +[node name="MoveableWindow" type="Control" unique_id=524781090] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_right = -1620.0 +offset_bottom = -680.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +script = ExtResource("1_le5nq") + +[node name="BackgroundColor" type="Panel" parent="." unique_id=889545988] +material = SubResource("ShaderMaterial_j380t") +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 1 +theme = ExtResource("3_ddx82") +theme_override_styles/panel = SubResource("StyleBoxFlat_u7aab") + +[node name="MarginContainer" type="MarginContainer" parent="BackgroundColor" unique_id=802103033] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="VBoxContainer" type="VBoxContainer" parent="BackgroundColor/MarginContainer" unique_id=969090938] +layout_mode = 2 + +[node name="HBoxContainer" type="HBoxContainer" parent="BackgroundColor/MarginContainer/VBoxContainer" unique_id=1407239756] +layout_mode = 2 + +[node name="Label" type="Label" parent="BackgroundColor/MarginContainer/VBoxContainer/HBoxContainer" unique_id=665280700] +layout_mode = 2 +size_flags_horizontal = 3 +theme_override_font_sizes/font_size = 16 +text = "Window Name" +horizontal_alignment = 1 +vertical_alignment = 1 + +[node name="GenericButton" parent="BackgroundColor/MarginContainer/VBoxContainer/HBoxContainer" unique_id=649942124 instance=ExtResource("4_l1byb")] +custom_minimum_size = Vector2(30, 30) +layout_mode = 2 +size_flags_horizontal = 1 +icon = ExtResource("5_752f5") +only_icon = true diff --git a/src/userinterface/client_edit_mode/desktop/partial/popup_selection.tscn b/src/userinterface/client_edit_mode/desktop/partial/popup_selection.tscn new file mode 100644 index 00000000..7f099361 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/partial/popup_selection.tscn @@ -0,0 +1,32 @@ +[gd_scene format=3 uid="uid://chbjqqcikq7aj"] + +[ext_resource type="Shader" uid="uid://bwr4b0mhgi4w6" path="res://userinterface/dash/shaders/blur.gdshader" id="1_jto5w"] +[ext_resource type="Script" uid="uid://4c55ofsmcun6" path="res://userinterface/client_edit_mode/desktop/scripts/popup_selection.gd" id="2_jto5w"] +[ext_resource type="PackedScene" uid="uid://sntuc3p6k4s6" path="res://userinterface/dash/partials/generic_button.tscn" id="3_jto5w"] + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_p7kwe"] +shader = ExtResource("1_jto5w") +shader_parameter/color = Color(0.2, 0.2, 0.2, 1) +shader_parameter/blur_amount = 3.0000001392401203 +shader_parameter/roughness = 0.2 +shader_parameter/roughness_affect = 0.0 + +[node name="PopupSelection" type="PanelContainer" unique_id=924058111] +material = SubResource("ShaderMaterial_p7kwe") +offset_right = 20.0 +offset_bottom = 20.0 +size_flags_horizontal = 3 +script = ExtResource("2_jto5w") + +[node name="MarginContainer" type="MarginContainer" parent="." unique_id=195396554] +layout_mode = 2 +theme_override_constants/margin_left = 2 +theme_override_constants/margin_top = 2 +theme_override_constants/margin_right = 2 +theme_override_constants/margin_bottom = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer" unique_id=979136800] +layout_mode = 2 + +[node name="GenericButton" parent="MarginContainer/VBoxContainer" unique_id=649942124 instance=ExtResource("3_jto5w")] +layout_mode = 2 diff --git a/src/userinterface/client_edit_mode/desktop/partial/toolbar_info_entry.tscn b/src/userinterface/client_edit_mode/desktop/partial/toolbar_info_entry.tscn new file mode 100644 index 00000000..e84b9472 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/partial/toolbar_info_entry.tscn @@ -0,0 +1,58 @@ +[gd_scene format=3 uid="uid://clxgcncfyislv"] + +[ext_resource type="Shader" uid="uid://bwr4b0mhgi4w6" path="res://userinterface/dash/shaders/blur.gdshader" id="1_i1jlm"] +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="2_l5h25"] +[ext_resource type="Script" uid="uid://bsuywy3ql6bof" path="res://userinterface/client_edit_mode/desktop/scripts/toolbar_info_entry.gd" id="3_l5h25"] +[ext_resource type="Texture2D" uid="uid://dbh1x1f04arga" path="res://resources/icons/godot/Object.svg" id="3_uolk7"] + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_0debx"] +shader = ExtResource("1_i1jlm") +shader_parameter/color = Color(0.2, 0.2, 0.2, 1) +shader_parameter/blur_amount = 3.0000001392401203 +shader_parameter/roughness = 0.2 +shader_parameter/roughness_affect = 0.0 + +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_plsgj"] +bg_color = Color(0.078431375, 0.078431375, 0.078431375, 0.78431374) + +[node name="ToolbarInfoEntry" type="Panel" unique_id=1405780292] +material = SubResource("ShaderMaterial_0debx") +custom_minimum_size = Vector2(150, 30) +mouse_filter = 1 +theme = ExtResource("2_l5h25") +theme_override_styles/panel = SubResource("StyleBoxFlat_plsgj") +script = ExtResource("3_l5h25") +metadata/label = "" + +[node name="MarginContainer" type="MarginContainer" parent="." unique_id=993431883] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer" unique_id=121293984] +layout_mode = 2 + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="MarginContainer/HBoxContainer" unique_id=477031744] +custom_minimum_size = Vector2(30, 0) +layout_mode = 2 +size_flags_horizontal = 4 +stretch_mode = 1 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/HBoxContainer/AspectRatioContainer" unique_id=569244619] +layout_mode = 2 +texture = ExtResource("3_uolk7") +expand_mode = 4 + +[node name="Label" type="Label" parent="MarginContainer/HBoxContainer" unique_id=1632303862] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 1 +text = "0" +horizontal_alignment = 2 diff --git a/src/userinterface/client_edit_mode/desktop/scripts/add_node_window.gd b/src/userinterface/client_edit_mode/desktop/scripts/add_node_window.gd new file mode 100644 index 00000000..551691b2 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/add_node_window.gd @@ -0,0 +1,98 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/desktop/scripts/add_node_window.gd +# Project: OpenMinerva +# Created Date: 10 June 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends "moveable_window.gd" + +@onready var _list_container = get_node("BackgroundColor/MarginContainer/VBoxContainer/ScrollContainer/VBoxContainer") +@onready var _button_template = preload("res://userinterface/dash/partials/generic_button.tscn") + +var parent_node_id: int = 0 + +func _ready() -> void: + _build_content() + + _node_window_title.text = window_name + + _button_close.clicked.connect(_close) + + gui_input.connect(_on_input) + return + +func _build_content() -> void: + var valid_options = NSB.get_schema().keys() + + for node in valid_options: + var _schema_listing = NSB.get_entry(node) + + if _schema_listing.hidden == true: + # This is not available for spawning. + continue + + var _button = _button_template.instantiate() + + _list_container.add_child(_button) + + _button.clicked.connect(_node_selected.bind(node)) + + _button.custom_minimum_size = Vector2(0, 25) + _button.set_label(_schema_listing.pretty_name) + _button.set_icon(_schema_listing.icon) + return + +func _node_selected(node_db_index) -> void: + selection.emit(node_db_index, parent_node_id) + return + +func _close() -> void: + visible = false + return + +func _on_input(event) -> void: + if event is InputEventMouseButton: + _mouse_click(event) + return + + if event is InputEventMouseMotion: + _mouse_drag(event) + return + + return + +func _mouse_drag(_event) -> void: + if _is_dragging: + var _game_size: Vector2 = DisplayServer.window_get_size() + var _target_position = get_global_mouse_position() - _drag_offset + var _is_out_of_bounds = _target_position.x < 0 || _target_position.y < 0 || _target_position.x >= _game_size.x - size.x || _target_position.y >= _game_size.y - size.y + + if _is_out_of_bounds == false: + global_position = _target_position + return + +func _mouse_click(event) -> void: + if event.button_index != MOUSE_BUTTON_LEFT: + return + + if event.pressed: + _is_dragging = true + _drag_offset = get_global_mouse_position() - global_position + else: + _is_dragging = false + return + +func _on_item_activated(index: int) -> void: + var tree_node = get_node("PanelContainer/ItemList") + var item_text = tree_node.get_item_text(index) + var item_type = NSB.get_entry(item_text) + + var parent_node = get_meta("selected_node") + if parent_node == null: + GlobalLogger.log("Tried to add a child to an invalid node.", Enum.LogLevel.WARNING) + return + + selection.emit(item_type, int(parent_node.name)) + return diff --git a/src/userinterface/client_edit_mode/desktop/scripts/add_node_window.gd.uid b/src/userinterface/client_edit_mode/desktop/scripts/add_node_window.gd.uid new file mode 100644 index 00000000..71844d54 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/add_node_window.gd.uid @@ -0,0 +1 @@ +uid://f3bibh57bqdj diff --git a/src/userinterface/client_edit_mode/desktop/scripts/inspector.gd b/src/userinterface/client_edit_mode/desktop/scripts/inspector.gd new file mode 100644 index 00000000..859764bc --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/inspector.gd @@ -0,0 +1,554 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/desktop/scripts/inspector.gd +# Project: OpenMinerva +# Created Date: 10 June 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +# FIXME: Selecting Gizmo crashes +# FIXME: You can select the selected spawnable. (Safe but probably should be changed) + +# External Libraries / scripts +# FIXME: DevSpawnableManager node +@onready var _app_spawnable_file_handling_m: Node = get_tree().current_scene.get_node("SpawnableFileHandling") +@onready var app_scene_m: Node = get_tree().current_scene.get_node("SceneManager") +@onready var app_network_m: Node = get_tree().current_scene.get_node("NetworkManager") +@onready var session_spawnable_m: Node +@onready var session_signalbus: Node +@onready var session_players_m: Node +@onready var session_root: Node3D + +# Gizmos +var world_gizmos: Array[Dictionary] = [] +var my_gizmo: Node +var _gizmo_mode: int = 0 +var _gizmo_space_local: bool = true + +# UI Elements +@onready var _node_toolbar: Control = get_node("VBoxContainer/Toolbar") +@onready var _node_toolbar_gizmo_control_container: Control = _node_toolbar.get_node("MarginContainer/HBoxContainer/GizmoControl") +@onready var _node_toolbar_gizmo_control_container_misc: Control = _node_toolbar.get_node("MarginContainer/HBoxContainer/GizmoControlMisc") +@onready var _node_toolbar_spawnable_count: Control = _node_toolbar.get_node("MarginContainer/HBoxContainer/SpawnableCount") +@onready var _node_toolbar_player_count: Control = _node_toolbar.get_node("MarginContainer/HBoxContainer/PlayerCount") +@onready var _node_crosshair: Node = get_tree().current_scene.get_node("Crosshair") +@onready var _inspector_popup: Node = get_node("InspectorPopup") +@onready var _inspector_add_node_window: Node = get_node("AddNodeWindow") +@onready var _inspector_filter_search: LineEdit = get_node("VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/InputString/MarginContainer/HBoxContainer/MarginContainer/LineEdit") +@onready var _inspector_filters: Node = get_node("VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/Filters/HBoxContainer") + +@onready var _node_property_editor: Node = get_node("VBoxContainer/HBoxContainer/HSplitContainer/Properties") + +# UI Inspector +@onready var _inspector_tree: Tree = get_node("VBoxContainer/HBoxContainer/HSplitContainer/MarginContainer/VBoxContainer/Container/VBoxContainer/MarginContainer/Tree") + +# Inspector data +var _inspector_selected: TreeItem = null +var _inspector_editing: TreeItem = null +var _inspector_focused: TreeItem = null +var _inspector_opened_tree_nodes: Array[Node] = [] +var _inspector_selected_node: Node = null +var _inspector_tree_filters: Array[String] = [] +var _inspector_tree_search: String = "" + +var _cem_state: bool = false +var _cem_camera: bool = false + +func _ready() -> void: + _set_state(false) + _add_signalbus_event_listeners() + _add_gizmo_event_listeners() + _add_button_event_listeners() + _add_misc_event_listeners() + + _add_drag_events() + + _inspector_popup.visible = false + + # TODO: Proper wait until building the inspector. + await get_tree().process_frame + + _inspector_build() + _gizmo_set_mode() + return + +func _add_drag_events() -> void: + _inspector_tree.set_drag_forwarding( + self._get_drag_data, + self._can_drop_data, + self._drop_data + ) + return + +func _get_drag_data(mouse_position: Vector2): + var _target_tree_item: TreeItem = _inspector_tree.get_item_at_position(mouse_position) + + if _target_tree_item && _target_tree_item.get_parent(): + return {"item": _target_tree_item, "node": _target_tree_item.get_metadata(0)} + + return null + +func _can_drop_data(mouse_position: Vector2, data: Variant): + var _target_item: TreeItem = _inspector_tree.get_item_at_position(mouse_position) + var _dragged_item: TreeItem = data["item"] + + if _dragged_item == _target_item: + # Don't parent to self. + return false + + # Don't parent to any of own children. + # FIXME: Find safe ways to escape this while loop. + var _checking = _target_item + while _checking: + if _checking == _dragged_item: + return false + _checking = _checking.get_parent() + + # TODO: Check to see if node is inside of root. + + return true + +func _drop_data(mouse_position: Vector2, data: Variant): + var _dragged_node: Node = data["node"] + var _target_tree_item: TreeItem = _inspector_tree.get_item_at_position(mouse_position) + var _target_node: Node + + if _target_tree_item == null: + _target_node = session_root + else: + _target_node = _target_tree_item.get_metadata(0) + + # Send the reparent RPC request. + session_spawnable_m.set_parent(int(_dragged_node.name), int(_target_node.name)) + + _inspector_build() + +func _input(event: InputEvent): + # Used to remove focus of the search area when clicking inside of the scene. + if event is InputEventMouseButton && event.pressed: + var focused = get_viewport().gui_get_focus_owner() + if focused: + focused.release_focus() + + # Close the inspector popup + if _inspector_popup.visible == true: + var _rect = _inspector_popup.get_global_rect() + var _mouse_pos = event.position + + if _rect.has_point(_mouse_pos) == false: + _inspector_popup.visible = false + + + if event.is_action_pressed("cem_activate"): + _cem_state = !_cem_state + Events.emit_signal("cem_set_state", _cem_state) + + StateManager.update_mouse_state() + + get_viewport().set_input_as_handled() + + if event.is_action_pressed("cem_camera"): + _cem_camera = !_cem_camera + _cem_camera_state(_cem_camera) + + return + +# Signals and other event listeners +func _add_signalbus_event_listeners() -> void: + GlobalLogger.log("Adding signal bus event listeners to the inspector.") + Events.cem_set_state.connect(_set_state) + Events.dash_session_changed.connect(_on_session_changed) + # TODO: Events.cem_set_gizmo_state.connect(_toggle_gizmos) + return + +func _add_gizmo_event_listeners() -> void: + var _node_children: Array[Node] = _node_toolbar_gizmo_control_container.get_children() + var _misc_node_children: Array[Node] = _node_toolbar_gizmo_control_container_misc.get_children() + + for node_index in _node_children.size(): + var _node = _node_children[node_index] + _node.get_node("Button").pressed.connect(_gizmo_set_mode) + + _misc_node_children[0].get_node("Button").pressed.connect(_gizmo_set_mode) + return + +func _add_button_event_listeners() -> void: + _inspector_popup.entry_clicked.connect(_inspector_popup_button_pressed) + _inspector_tree.item_mouse_selected.connect(_inspector_tree_item_mouse_selected) + + _inspector_filter_search.text_changed.connect(_inspector_search_changed) + + # When clicking on a filter button, apply the filter immediately. + for _filter_button in _inspector_filters.get_children(): + _filter_button.get_node("Button").pressed.connect( + func (): + _inspector_get_filters() + _inspector_build() + ) + + return + +func _add_misc_event_listeners() -> void: + _inspector_add_node_window.selection.connect(_inspector_spawn_node) + _inspector_tree.item_edited.connect(_inspector_item_edited) + return + +func _inspector_tree_item_mouse_selected(mouse_position: Vector2, mouse_button_index: int) -> void: + if mouse_button_index == MOUSE_BUTTON_LEFT: + _inspector_selected = _inspector_tree.get_item_at_position(mouse_position) + + if _inspector_selected == null: + return + + _inspector_selected_node = _inspector_selected.get_metadata(0) + _set_npe_state(_inspector_selected_node != null) + + _select(int(_inspector_selected.get_metadata(0).name)) + return + + if mouse_button_index == MOUSE_BUTTON_RIGHT: + _inspector_selected = _inspector_tree.get_item_at_position(mouse_position) + + if _inspector_selected == null: + return + + _inspector_selected_node = _inspector_selected.get_metadata(0) + _set_npe_state(_inspector_selected_node != null) + + var _mouse_pos = _inspector_tree.get_global_mouse_position() + _inspector_popup.position = _mouse_pos + _inspector_popup.visible = true + return + +func _set_state(state: bool) -> void: + GlobalLogger.log("Inspector state is being set to '%s'." % state) + _gizmo_visibility(state) + visible = state + _node_crosshair.visible = !state + return + +func _on_node_created(_node: Node) -> void: + # TODO: Instead of rebuilding the entire tree, just update the respective entry. + GlobalLogger.log("Inspector: Node created.") + _inspector_build() + return + +func _on_node_destroyed(node_entry: Dictionary) -> void: + # TODO: Instead of rebuilding the entire tree, just update the respective entry. + GlobalLogger.log("Inspector: Node destroyed.") + + # Deselect the node if selected. + if my_gizmo: + my_gizmo.deselect(node_entry.node) + + _inspector_build() + return + +func _on_session_changed(_session_id: String) -> void: + session_signalbus = app_scene_m.get_master_scene(app_scene_m.active_session).get_node("SignalBus") + session_spawnable_m = app_scene_m.get_master_scene(app_scene_m.active_session).get_node("SpawnableManager") + session_players_m = app_scene_m.get_master_scene(app_scene_m.active_session).get_node("PlayerManager") + session_root = app_scene_m.get_master_root(app_scene_m.active_session) + + _inspector_selected = null + _inspector_editing = null + _inspector_focused = null + + if session_signalbus.is_connected("node_created", _on_node_created) == false: + session_signalbus.node_created.connect(_on_node_created) + session_signalbus.node_destroyed.connect(_on_node_destroyed) + return + +# User Interface +func _inspector_build(root_node: Node = session_root) -> void: + # TODO: Proper wait until building the inspector. + await get_tree().process_frame + + var _total_spawnable_label: String = str(session_spawnable_m._database.size()) + var _total_player_label: String = str(session_players_m.get_player_count()) + + GlobalLogger.log("Generating the inspector view with parent '%s'." % root_node) + _inspector_save_openness() + _inspector_clear() + var _inspector_root = _inspector_tree.create_item() + _inspector_add_node(root_node, _inspector_root) + + if _inspector_tree_filters.size() > 0 || _inspector_tree_search != "": + _inspector_apply_filters() + + # Update the Toolbar counts. + _node_toolbar_spawnable_count.update_meta(_total_spawnable_label) + _node_toolbar_player_count.update_meta(_total_player_label) + + return + +func _inspector_save_openness() -> void: + # Parse the entire tree, and save node values that are open + _inspector_opened_tree_nodes = [] + var _item = _inspector_tree.get_root() + + # TODO: Breakout / Safety! + while _item: + if _item.is_collapsed() == true: + _item = _item.get_next_in_tree() + continue + + # Save the item to the list + var _node = _item.get_metadata(0) + if _node != null: + _inspector_opened_tree_nodes.append(_item.get_metadata(0)) + + _item = _item.get_next_in_tree() + + return + +func _inspector_add_node(node: Node, parent: TreeItem) -> void: + if node.get_meta("scene_node", false) == false: + return + + var _tree_node = _inspector_tree.create_item(parent) + var _tree_icon = NSB.get_entry(node.get_class()).icon + var _is_collapsed = !_inspector_opened_tree_nodes.has(node) + + _tree_node.set_text(0, node.get_meta("pretty_name", node.name)) + _tree_node.set_icon(0, _tree_icon) + _tree_node.set_icon_max_width(0, 20) + _tree_node.set_metadata(0, node) + _tree_node.collapsed = _is_collapsed + + if _inspector_selected_node == node: + _inspector_tree.set_selected(_tree_node, 0) + + for child in node.get_children(): + _inspector_add_node(child, _tree_node) + return + +# Inspector filters +func _inspector_apply_filters(): + var _all_tree_items: Array[TreeItem] = _inspector_get_all_tree_entries(_inspector_tree) + var _valid_nodes: Array = [] + + for _tree_item in _all_tree_items: + var _tree_item_node = _tree_item.get_metadata(0) + if _tree_item_node == null: + GlobalLogger.log("Could not find the associated node for entry '%s'" % _tree_item.get_text(0), Enum.LogLevel.WARNING) + continue + + # TODO: This is probably expensive to run, surely there is a better way to get this information. + # Would adding this to the metadata of the tree listing be more performant? + var _nsb_entry = NSB.get_entry(_tree_item_node.get_class()) + + if _tree_item_node.get_meta("pretty_name", "").contains(_inspector_tree_search): + # If the pretty name in the node contains text that matches the search. + for _ancestor in _inspector_get_all_tree_ancestors(_tree_item): + # Get all tree items that lead to this tree item. From listing up through each parent. + if _ancestor not in _valid_nodes: + # If we do not already have the tree item added to the list, add it. + _valid_nodes.append(_ancestor) + + if "tags" in _nsb_entry: + # Does the NSB DB entry have the "tags" field? (Error check) + for _node_tag in _nsb_entry.tags: + # For each of the tags in the DB tags field. + if _node_tag in _inspector_tree_filters: + # Does this tag exist in the active inspector filter? + for _ancestor in _inspector_get_all_tree_ancestors(_tree_item): + # Get all tree items that lead to this tree item. From listing up through each parent. + if _ancestor not in _valid_nodes: + # If we do not already have the tree item added to the list, add it. + _valid_nodes.append(_ancestor) + + for _tree_item in _all_tree_items: + # For each item in the tree, set the visible state based the items presense in the _valid_nodes variable, and if the name matches search. + var _is_visible: bool = false + + if _valid_nodes.has(_tree_item): + _is_visible = true + + elif _tree_item.get_text(0).contains(_inspector_tree_search): + _is_visible = true + + _tree_item.set_visible(_is_visible) + return + +func _inspector_get_filters(): + _inspector_tree_filters = [] + + for child in _inspector_filters.get_children(): + if child.get_node("Button").button_pressed: + _inspector_tree_filters.append(child.name) + + return + +func _inspector_search_changed(text) -> void: + _inspector_tree_search = text + _inspector_build() + return + +func _inspector_get_all_tree_entries(tree: Tree) -> Array[TreeItem]: + var _tree_items: Array[TreeItem] = [] + var _tree_current = tree.get_root() + + # NOTE: There is not a safety check for this, I hope I wont need one here. + while _tree_current: + _tree_items.append(_tree_current) + _tree_current = _tree_current.get_next_in_tree() + + return _tree_items + +func _inspector_get_all_tree_ancestors(starting_item: TreeItem) -> Array[TreeItem]: + var _tree_ancestors: Array[TreeItem] = [] + var _tree_item_parent: TreeItem = starting_item.get_parent() + + _tree_ancestors.append(starting_item) + _tree_ancestors.append(_tree_item_parent) + + # NOTE: There is not a safety check for this, I hope I wont need one here. + while _tree_item_parent: + _tree_item_parent = _tree_item_parent.get_parent() + if _tree_item_parent != null: + _tree_ancestors.append(_tree_item_parent) + + return _tree_ancestors + +# Inspector events +func _inspector_item_edited() -> void: + _inspector_editing.set_editable(0, false) + _inspector_editing.get_metadata(0).set_meta("pretty_name", _inspector_editing.get_text(0)) + +func _inspector_clear() -> void: + GlobalLogger.log("Clearing the inspector.") + _inspector_tree.clear() + return + +func _inspector_popup_button_pressed(label: String) -> void: + GlobalLogger.log("Pressed button: '%s' on '%s'" % [label, _inspector_selected.get_text(0)]) + _inspector_popup.visible = false + + var _node = _inspector_selected.get_metadata(0) + if _node == null: + GlobalLogger.log("Tried to preform an action on an invalid node.", Enum.LogLevel.WARNING) + _inspector_build() + return + + match label: + "New": + _inspector_add_node_window.parent_node_id = int(_node.name) + _inspector_add_node_window.show() + "Remove": + await session_spawnable_m.destroy(int(_node.name)) + "Rename": + _inspector_selected.set_editable(0, true) + _inspector_tree.edit_selected() + _inspector_editing = _inspector_selected + "Save": + GlobalLogger.log("Saving spawnable.") + _app_spawnable_file_handling_m.save_spawnable(_node) + _: + GlobalLogger.log("Unhandled inspector popup selection", Enum.LogLevel.WARNING) + return + +func _inspector_spawn_node(type: String, parent: int) -> void: + GlobalLogger.log("Spawning node type '%s' with parent '%s'" % [type, parent]) + var _entity = await session_spawnable_m.create(type, parent) + _select(int(_entity.name)) + # TODO: Gizmo select the new entity + return + +func _select(target_node: int) -> void: + var _node_db_entry = session_spawnable_m.get_by_id(target_node) + + if my_gizmo != null: + _gizmo_delete() + + if _node_db_entry == {}: + GlobalLogger.log("Tried to select a node that should not exist!", Enum.LogLevel.ERROR) + + _inspector_selected_node = null + _set_npe_state(false) + return + + my_gizmo = await session_spawnable_m.create("Gizmo") + # TODO: Add to array of Gizmos + my_gizmo.select(_node_db_entry.node) + my_gizmo.mode = _gizmo_mode + my_gizmo.use_local_space = _gizmo_space_local + + _node_property_editor.get_node_properties(_node_db_entry.node) + my_gizmo.transform_changed.connect(func(_mode, _value): session_spawnable_m.set_transform(target_node, _node_db_entry.node.transform)) + # HACK: Update ALL of the node properties after a transformation was done. + my_gizmo.transform_end.connect(func(_mode): _node_property_editor.update_node_properties(_node_db_entry.node)) + +func _gizmo_delete() -> void: + my_gizmo.clear_selection() + await session_spawnable_m.destroy(int(my_gizmo.name)) + return + +func _gizmo_set_mode() -> void: + var _gizmo_modes: Dictionary + var _node_children: Array[Node] = _node_toolbar_gizmo_control_container.get_children() + var _misc_node_children: Array[Node] = _node_toolbar_gizmo_control_container_misc.get_children() + + for node_index in _node_children.size(): + var _node = _node_children[node_index] + var _dict_name = _node.name.to_lower() + var _is_active = _node.get_node("Button").button_pressed + + _gizmo_modes[_dict_name] = _is_active + + _gizmo_mode = 0 + _gizmo_space_local = !_misc_node_children[0].get_node("Button").button_pressed + + if _gizmo_modes.get("transform", false): + _gizmo_mode |= Gizmo3D.ToolMode.MOVE + if _gizmo_modes.get("rotation", false): + _gizmo_mode |= Gizmo3D.ToolMode.ROTATE + if _gizmo_modes.get("scale", false): + _gizmo_mode |= Gizmo3D.ToolMode.SCALE + + if my_gizmo != null: + my_gizmo.mode = _gizmo_mode + my_gizmo.use_local_space = _gizmo_space_local + + return + +func _gizmo_visibility(to_set_visible: bool = false) -> void: + var _gizmo_target_mode = 0 + + if to_set_visible == true: + _gizmo_target_mode = _gizmo_mode + + if my_gizmo: + my_gizmo.show_selection_box = to_set_visible + my_gizmo.mode = _gizmo_target_mode + + for gizmo in world_gizmos: + gizmo.show_selection_box = to_set_visible + gizmo.mode = _gizmo_target_mode + return + +# CEM Camera +func _cem_camera_state(state: bool) -> void: + var _active_session_id = app_scene_m.active_session + var _session_api = app_network_m._session_db[_active_session_id].api + var _player_id: int = _session_api.get_unique_id() + var _player_db = session_players_m.players[str(_player_id)] + var _player_node: Node3D + + # HACK: Hardcoded fix for force host spawn. + # The host is forcefully spawned into a instance as it is created, bypassing the database entirely. + if _player_db == null: + _player_node = session_root.get_node("1") + else: + _player_node = session_players_m.players[str(_player_id)].node + + _player_node._cem_camera_state(state) + Events.emit_signal("cem_camera_state", state) + return + +# Node Property Editor +func _set_npe_state(state: bool) -> void: + _node_property_editor.visible = state + return diff --git a/src/userinterface/client_edit_mode/desktop/scripts/inspector.gd.uid b/src/userinterface/client_edit_mode/desktop/scripts/inspector.gd.uid new file mode 100644 index 00000000..7610cb6b --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/inspector.gd.uid @@ -0,0 +1 @@ +uid://dlituslp07gvw diff --git a/src/userinterface/client_edit_mode/desktop/scripts/moveable_window.gd b/src/userinterface/client_edit_mode/desktop/scripts/moveable_window.gd new file mode 100644 index 00000000..39031cbc --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/moveable_window.gd @@ -0,0 +1,63 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/desktop/scripts/moveable_window.gd +# Project: OpenMinerva +# Created Date: 17 July 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +signal selection(type: String, parent: int) + +@export var window_name: String = "Window Name" + +@onready var _button_close = get_node("BackgroundColor/MarginContainer/VBoxContainer/HBoxContainer/GenericButton") +@onready var _node_window_title = get_node("BackgroundColor/MarginContainer/VBoxContainer/HBoxContainer/Label") + +var _is_dragging: bool = false +var _drag_offset: Vector2 + +func _ready() -> void: + _node_window_title.text = window_name + _button_close.clicked.connect(_close) + + gui_input.connect(_on_input) + gui_input.connect(_on_input) + return + +func _close() -> void: + visible = false + return + +func _on_input(event) -> void: + if event is InputEventMouseButton: + _mouse_click(event) + return + + if event is InputEventMouseMotion: + _mouse_drag(event) + return + + return + +func _mouse_drag(_event) -> void: + if _is_dragging: + var _game_size: Vector2 = DisplayServer.window_get_size() + var _target_position = get_global_mouse_position() - _drag_offset + var _is_out_of_bounds = _target_position.x < 0 || _target_position.y < 0 || _target_position.x >= _game_size.x - size.x || _target_position.y >= _game_size.y - size.y + + if _is_out_of_bounds == false: + global_position = _target_position + return + +func _mouse_click(event) -> void: + if event.button_index != MOUSE_BUTTON_LEFT: + return + + if event.pressed: + _is_dragging = true + _drag_offset = get_global_mouse_position() - global_position + else: + _is_dragging = false + return diff --git a/src/userinterface/client_edit_mode/desktop/scripts/moveable_window.gd.uid b/src/userinterface/client_edit_mode/desktop/scripts/moveable_window.gd.uid new file mode 100644 index 00000000..4f555474 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/moveable_window.gd.uid @@ -0,0 +1 @@ +uid://bapubedba8eiu diff --git a/src/userinterface/client_edit_mode/desktop/scripts/popup_selection.gd b/src/userinterface/client_edit_mode/desktop/scripts/popup_selection.gd new file mode 100644 index 00000000..21778e89 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/popup_selection.gd @@ -0,0 +1,31 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/desktop/scripts/popup_selection.gd +# Project: OpenMinerva +# Created Date: 30 June 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +signal entry_clicked(name: String) + +@onready var _button_container = get_node("MarginContainer/VBoxContainer") + +var _entries = [] + +func _ready() -> void: + for child in _button_container.get_children(): + _add_entry(child) + return + +func _add_entry(button: Node) -> void: + + button.clicked.connect(_on_button_clicked.bind(button)) + + _entries.append(button) + return + +func _on_button_clicked(button: Node) -> void: + entry_clicked.emit(button.label) + return diff --git a/src/userinterface/client_edit_mode/desktop/scripts/popup_selection.gd.uid b/src/userinterface/client_edit_mode/desktop/scripts/popup_selection.gd.uid new file mode 100644 index 00000000..00f8ac58 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/popup_selection.gd.uid @@ -0,0 +1 @@ +uid://4c55ofsmcun6 diff --git a/src/userinterface/client_edit_mode/desktop/scripts/properties.gd b/src/userinterface/client_edit_mode/desktop/scripts/properties.gd new file mode 100644 index 00000000..4a107ac1 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/properties.gd @@ -0,0 +1,138 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/desktop/scripts/properties.gd +# Project: OpenMinerva +# Created Date: 15 July 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends MarginContainer + +const _dev_basic_props = ["position", "rotation", "scale", "visible"] +const _dev_whitelist_properties = ["mesh"] +const _dev_whitelist_mesh_properties = ["material", "flip_faces", "add_uv2", "uv2_padding", "size", "subdivide_width", "subdivide_height", "subdivide_depth", ] + +var _node: Node + +# TODO: Add protections from making changes on null nodes (invalid nodes) +# TODO: Handle enums for ints. + +@onready var _dev_transform_container: Node = get_node("VBoxContainer/Container/ScrollContainer/MarginContainer/VBoxContainer/FoldableContainer/VBoxContainer") +@onready var _dev_property_container: Node = get_node("VBoxContainer/Container/ScrollContainer/MarginContainer/VBoxContainer") + +@onready var app_scene_m: Node = get_tree().current_scene.get_node("SceneManager") + +var session_spawnable_m: Node + +var partials: Dictionary = {} + +func _ready() -> void: + _dev_property_container.get_node("Visible").value_changed.connect(func (new_value): _property_changed("visible", new_value)) + _dev_transform_container.get_node("Position").value_changed.connect(func (new_value): _property_changed("position", new_value)) + _dev_transform_container.get_node("Rotation").value_changed.connect(func (new_value): _property_changed("rotation_degrees", new_value)) + _dev_transform_container.get_node("Scale").value_changed.connect(func (new_value): _property_changed("scale", new_value)) + + Events.dash_session_changed.connect(_on_session_changed) + return + +func get_node_properties(node: Node) -> void: + _clear_node_properties() + _node = node + var _property_tree: Dictionary = _get_property_tree(node) + + var _property_categories: Array = _property_tree.keys() + _property_categories.reverse() + + for _category in _property_categories: + # Create the container node. + var _category_node = _get_partial("FoldableContainer") + _dev_property_container.add_child(_category_node) + _category_node.set_label(_category) + + # Add all of the sub properties. + for _prop in _property_tree[_category]: + var _sub_property = _get_partial("%s" % type_string(_prop.type)) + + if _sub_property == null: + continue + + _category_node.get_node("VBoxContainer").add_child(_sub_property) + _sub_property.set_value(node.get(_prop.name)) + _sub_property.set_label(_prop.name.capitalize()) + _sub_property.value_changed.connect(func (new_value): _property_changed(_prop.name, new_value)) + continue + + update_node_properties(node) + return + +func _get_property_tree(node: Node) -> Dictionary: + var tree: Dictionary = {} + var current_category: String = "" + + for _property in node.get_property_list(): + var _usage: int = _property["usage"] + var _p_name: String = _property["name"] + + if _p_name.begins_with("metadata/"): + # Metadata is ignored. + continue + + if _dev_basic_props.has(_p_name): + # These properties are handled at the top of the NPE. + continue + + if _usage & PROPERTY_USAGE_CATEGORY: + # If this property is a category. + current_category = _p_name + tree[current_category] = [] + continue + + if _usage & (PROPERTY_USAGE_GROUP | PROPERTY_USAGE_SUBGROUP): + # TODO: Subgroups? + # Ignore groups and subgroups. + continue + + if _usage & PROPERTY_USAGE_EDITOR && !current_category.is_empty(): + tree[current_category].append(_property) + + return tree + +func _clear_node_properties() -> void: + var _child_number: int = 0 + for child in _dev_property_container.get_children(): + if _child_number <= 1: + _child_number = _child_number + 1 + continue + child.queue_free() + return + +func update_node_properties(node: Node) -> void: + _dev_property_container.get_node("Visible").set_value(node.get("visible")) + _dev_transform_container.get_node("Position").set_value(node.get("position")) + _dev_transform_container.get_node("Rotation").set_value(node.get("rotation_degrees")) + _dev_transform_container.get_node("Scale").set_value(node.get("scale")) + return + +func _property_changed(property_name: String, property_value: Variant) -> void: + # TODO: Network change + if _node == null: + return + + session_spawnable_m.set_property(int(_node.name), property_name, property_value) + return + +func _get_partial(type: String) -> Node: + if partials.keys().has(type): + return partials[type].instantiate() + + var _new_partial = load("res://userinterface/client_edit_mode/node_property_editor/partials/%s.tscn" % type) + if _new_partial == null: + GlobalLogger.log("Could not find partial for type '%s'" % type, Enum.LogLevel.WARNING) + return null + + partials[type] = _new_partial + return partials[type].instantiate() + +func _on_session_changed(_session_id: String) -> void: + session_spawnable_m = app_scene_m.get_master_scene(app_scene_m.active_session).get_node("SpawnableManager") + return diff --git a/src/userinterface/client_edit_mode/desktop/scripts/properties.gd.uid b/src/userinterface/client_edit_mode/desktop/scripts/properties.gd.uid new file mode 100644 index 00000000..ed14acc5 --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/properties.gd.uid @@ -0,0 +1 @@ +uid://8lm0oig2kxbj diff --git a/src/userinterface/client_edit_mode/desktop/scripts/toolbar_info_entry.gd b/src/userinterface/client_edit_mode/desktop/scripts/toolbar_info_entry.gd new file mode 100644 index 00000000..f8fc04be --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/toolbar_info_entry.gd @@ -0,0 +1,27 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/desktop/scripts/toolbar_info_entry.gd +# Project: OpenMinerva +# Created Date: 30 June 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License + +extends Node + +@export var icon: Texture2D +@export var label: String = "0" + +@onready var icon_node = get_node("MarginContainer/HBoxContainer/AspectRatioContainer/TextureRect") +@onready var label_node = get_node("MarginContainer/HBoxContainer/Label") + +func _ready() -> void: + if icon: + icon_node.texture = icon + + label_node.text = label + +func update_meta(value: String) -> void: + set_meta("label", value) + label_node.text = value + return diff --git a/src/userinterface/client_edit_mode/desktop/scripts/toolbar_info_entry.gd.uid b/src/userinterface/client_edit_mode/desktop/scripts/toolbar_info_entry.gd.uid new file mode 100644 index 00000000..e461f1ac --- /dev/null +++ b/src/userinterface/client_edit_mode/desktop/scripts/toolbar_info_entry.gd.uid @@ -0,0 +1 @@ +uid://bsuywy3ql6bof diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/Color.tscn b/src/userinterface/client_edit_mode/node_property_editor/partials/Color.tscn new file mode 100644 index 00000000..1c5e4fef --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/Color.tscn @@ -0,0 +1,33 @@ +[gd_scene format=3 uid="uid://c5iqs1ro62837"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_0b8ag"] +[ext_resource type="Script" uid="uid://dht8p10d785is" path="res://userinterface/client_edit_mode/node_property_editor/partials/color.gd" id="2_0b8ag"] + +[node name="Color" type="Control" unique_id=933711176] +custom_minimum_size = Vector2(80, 30) +layout_mode = 3 +anchor_right = 1.0 +anchor_bottom = 0.027777778 +grow_horizontal = 2 +size_flags_horizontal = 3 +theme = ExtResource("1_0b8ag") +script = ExtResource("2_0b8ag") +metadata/_edit_use_anchors_ = true + +[node name="VBoxContainer" type="HBoxContainer" parent="." unique_id=1972995258] +layout_mode = 1 +anchors_preset = -1 +anchor_right = 1.0 +anchor_bottom = 0.053703703 +grow_horizontal = 2 +metadata/_edit_use_anchors_ = true + +[node name="Label" type="Label" parent="VBoxContainer" unique_id=482404396] +layout_mode = 2 +size_flags_horizontal = 3 +text = "Color" + +[node name="ColorPickerButton" type="ColorPickerButton" parent="VBoxContainer" unique_id=1428418942] +custom_minimum_size = Vector2(60, 0) +layout_mode = 2 +theme = ExtResource("1_0b8ag") diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/FoldableContainer.tscn b/src/userinterface/client_edit_mode/node_property_editor/partials/FoldableContainer.tscn new file mode 100644 index 00000000..56d9f74c --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/FoldableContainer.tscn @@ -0,0 +1,13 @@ +[gd_scene format=3 uid="uid://c7animyvghvk"] + +[ext_resource type="Script" uid="uid://s14au1dc165i" path="res://userinterface/client_edit_mode/node_property_editor/partials/foldable_container.gd" id="1_wndr3"] + +[node name="FoldableContainer" type="FoldableContainer" unique_id=1542739099] +folded = true +title = "Transform" +title_alignment = 1 +script = ExtResource("1_wndr3") + +[node name="VBoxContainer" type="VBoxContainer" parent="." unique_id=238553897] +visible = false +layout_mode = 2 diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/Vector3.tscn b/src/userinterface/client_edit_mode/node_property_editor/partials/Vector3.tscn new file mode 100644 index 00000000..254b6e05 --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/Vector3.tscn @@ -0,0 +1,44 @@ +[gd_scene format=3 uid="uid://dkn0gmy8or4hq"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_fenjf"] +[ext_resource type="Script" uid="uid://fo05ubo6hera" path="res://userinterface/client_edit_mode/node_property_editor/partials/vector_3.gd" id="2_iwkrw"] +[ext_resource type="PackedScene" uid="uid://b58b25jtckb2c" path="res://userinterface/client_edit_mode/node_property_editor/partials/spin_box.tscn" id="3_yo0a0"] + +[node name="Vector3" type="Control" unique_id=933711176] +custom_minimum_size = Vector2(80, 60) +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +size_flags_vertical = 0 +theme = ExtResource("1_fenjf") +script = ExtResource("2_iwkrw") + +[node name="VBoxContainer" type="VBoxContainer" parent="." unique_id=1067102212] +layout_mode = 1 +anchors_preset = -1 +anchor_right = 1.0 +anchor_bottom = 0.053703703 +grow_horizontal = 2 +metadata/_edit_use_anchors_ = true + +[node name="Label" type="Label" parent="VBoxContainer" unique_id=482404396] +layout_mode = 2 +size_flags_horizontal = 3 +text = "Vector3" + +[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer" unique_id=287908761] +layout_mode = 2 +focus_behavior_recursive = 2 + +[node name="X" parent="VBoxContainer/HBoxContainer" unique_id=1631362233 instance=ExtResource("3_yo0a0")] +layout_mode = 2 + +[node name="Y" parent="VBoxContainer/HBoxContainer" unique_id=1007326326 instance=ExtResource("3_yo0a0")] +layout_mode = 2 + +[node name="Z" parent="VBoxContainer/HBoxContainer" unique_id=1538313912 instance=ExtResource("3_yo0a0")] +layout_mode = 2 diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/bool.gd b/src/userinterface/client_edit_mode/node_property_editor/partials/bool.gd new file mode 100644 index 00000000..bcc9edfa --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/bool.gd @@ -0,0 +1,36 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/node_property_editor/partials/bool.gd +# Project: OpenMinerva +# Created Date: 15 July 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License + +extends Control + +signal value_changed(new_value: bool) + +@export var property_name: String = "" +@export var value: bool + +@onready var _label = get_node("VBoxContainer/Label") +@onready var _bool = get_node("VBoxContainer/CheckBox") + +func _ready() -> void: + _label.text = property_name + _bool.toggled.connect(_on_value_changed) + return + +func set_value(new_value: bool) -> void: + value = new_value + _bool.button_pressed = new_value + return + +func set_label(new_label: String) -> void: + _label.text = new_label + property_name = new_label + return + +func _on_value_changed(new_value: bool) -> void: + value_changed.emit(new_value) diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/bool.gd.uid b/src/userinterface/client_edit_mode/node_property_editor/partials/bool.gd.uid new file mode 100644 index 00000000..bc04b673 --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/bool.gd.uid @@ -0,0 +1 @@ +uid://dev0tv8ldaegm diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/bool.tscn b/src/userinterface/client_edit_mode/node_property_editor/partials/bool.tscn new file mode 100644 index 00000000..059ac0fe --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/bool.tscn @@ -0,0 +1,40 @@ +[gd_scene format=3 uid="uid://wmjsfgx486xa"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_h5new"] +[ext_resource type="Script" uid="uid://dev0tv8ldaegm" path="res://userinterface/client_edit_mode/node_property_editor/partials/bool.gd" id="2_1puyx"] + +[node name="Bool" type="Control" unique_id=933711176] +custom_minimum_size = Vector2(80, 30) +layout_mode = 3 +anchor_right = 1.0 +anchor_bottom = 0.027777778 +grow_horizontal = 2 +size_flags_horizontal = 3 +theme = ExtResource("1_h5new") +script = ExtResource("2_1puyx") +metadata/_edit_use_anchors_ = true + +[node name="VBoxContainer" type="HBoxContainer" parent="." unique_id=1972995258] +layout_mode = 1 +anchors_preset = -1 +anchor_right = 1.0 +anchor_bottom = 0.053703703 +grow_horizontal = 2 +metadata/_edit_use_anchors_ = true + +[node name="Label" type="Label" parent="VBoxContainer" unique_id=482404396] +layout_mode = 2 +size_flags_horizontal = 3 +text = "Vector3" + +[node name="CheckBox" type="CheckButton" parent="VBoxContainer" unique_id=643167569] +custom_minimum_size = Vector2(30, 30) +custom_maximum_size = Vector2(120, 30) +layout_mode = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_h5new") +flat = true +alignment = 1 +clip_text = true +icon_alignment = 1 +expand_icon = true diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/color.gd b/src/userinterface/client_edit_mode/node_property_editor/partials/color.gd new file mode 100644 index 00000000..7d74d50d --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/color.gd @@ -0,0 +1,36 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/node_property_editor/partials/color.gd +# Project: OpenMinerva +# Created Date: 17 July 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License + +extends Control + +signal value_changed(new_value: Color) + +@export var property_name: String = "" +@export var value: Color + +@onready var _label = get_node("VBoxContainer/Label") +@onready var _value = get_node("VBoxContainer/ColorPickerButton") + +func _ready() -> void: + _label.text = property_name + _value.color_changed.connect(_on_value_changed) + return + +func set_value(new_value: Color) -> void: + value = new_value + _value.color = new_value + return + +func set_label(new_label: String) -> void: + _label.text = new_label + property_name = new_label + return + +func _on_value_changed(new_value: Color) -> void: + value_changed.emit(new_value) diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/color.gd.uid b/src/userinterface/client_edit_mode/node_property_editor/partials/color.gd.uid new file mode 100644 index 00000000..5f53cc3e --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/color.gd.uid @@ -0,0 +1 @@ +uid://dht8p10d785is diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/float.tscn b/src/userinterface/client_edit_mode/node_property_editor/partials/float.tscn new file mode 100644 index 00000000..028be55f --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/float.tscn @@ -0,0 +1,35 @@ +[gd_scene format=3 uid="uid://b1u12udwoner2"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_2mmn2"] +[ext_resource type="Script" uid="uid://066ucgk4rilk" path="res://userinterface/client_edit_mode/node_property_editor/partials/int.gd" id="2_c1vag"] +[ext_resource type="PackedScene" uid="uid://b58b25jtckb2c" path="res://userinterface/client_edit_mode/node_property_editor/partials/spin_box.tscn" id="3_j4p26"] + +[node name="float" type="Control" unique_id=933711176] +custom_minimum_size = Vector2(80, 30) +layout_mode = 3 +anchor_right = 1.0 +anchor_bottom = 0.027777778 +offset_bottom = -30.0 +grow_horizontal = 2 +size_flags_horizontal = 3 +theme = ExtResource("1_2mmn2") +script = ExtResource("2_c1vag") +metadata/_edit_use_anchors_ = true + +[node name="VBoxContainer" type="HBoxContainer" parent="." unique_id=1972995258] +layout_mode = 1 +anchors_preset = -1 +anchor_right = 1.0 +anchor_bottom = 0.053703703 +grow_horizontal = 2 +metadata/_edit_use_anchors_ = true + +[node name="Label" type="Label" parent="VBoxContainer" unique_id=482404396] +layout_mode = 2 +size_flags_horizontal = 3 +text = "Float" +clip_text = true +text_overrun_behavior = 3 + +[node name="SpinBox" parent="VBoxContainer" unique_id=1631362233 instance=ExtResource("3_j4p26")] +layout_mode = 2 diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/foldable_container.gd b/src/userinterface/client_edit_mode/node_property_editor/partials/foldable_container.gd new file mode 100644 index 00000000..d5d09422 --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/foldable_container.gd @@ -0,0 +1,17 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/node_property_editor/partials/foldable_container.gd +# Project: OpenMinerva +# Created Date: 15 July 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License + +extends FoldableContainer + +func _ready() -> void: + return + +func set_label(new_label: String) -> void: + title = new_label + return diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/foldable_container.gd.uid b/src/userinterface/client_edit_mode/node_property_editor/partials/foldable_container.gd.uid new file mode 100644 index 00000000..dbcb40e4 --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/foldable_container.gd.uid @@ -0,0 +1 @@ +uid://s14au1dc165i diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/int.gd b/src/userinterface/client_edit_mode/node_property_editor/partials/int.gd new file mode 100644 index 00000000..416604c1 --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/int.gd @@ -0,0 +1,36 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/node_property_editor/partials/int.gd +# Project: OpenMinerva +# Created Date: 16 July 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License + +extends Control + +signal value_changed(new_value: bool) + +@export var property_name: String = "" +@export var value: int + +@onready var _label = get_node("VBoxContainer/Label") +@onready var _spinbox = get_node("VBoxContainer/SpinBox") + +func _ready() -> void: + _label.text = property_name + _spinbox.spinbox_value_changed.connect(_on_value_changed) + return + +func set_value(new_value: int) -> void: + value = new_value + _spinbox.set_value(new_value) + return + +func set_label(new_label: String) -> void: + _label.text = new_label + property_name = new_label + return + +func _on_value_changed(new_value: int) -> void: + value_changed.emit(new_value) diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/int.gd.uid b/src/userinterface/client_edit_mode/node_property_editor/partials/int.gd.uid new file mode 100644 index 00000000..97ee63a3 --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/int.gd.uid @@ -0,0 +1 @@ +uid://066ucgk4rilk diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/int.tscn b/src/userinterface/client_edit_mode/node_property_editor/partials/int.tscn new file mode 100644 index 00000000..a2e10d10 --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/int.tscn @@ -0,0 +1,37 @@ +[gd_scene format=3 uid="uid://c08ywv1r18wq4"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_ecork"] +[ext_resource type="Script" uid="uid://066ucgk4rilk" path="res://userinterface/client_edit_mode/node_property_editor/partials/int.gd" id="2_7lgys"] +[ext_resource type="PackedScene" uid="uid://b58b25jtckb2c" path="res://userinterface/client_edit_mode/node_property_editor/partials/spin_box.tscn" id="3_fivcc"] + +[node name="int" type="Control" unique_id=933711176] +custom_minimum_size = Vector2(80, 30) +layout_mode = 3 +anchor_right = 1.0 +anchor_bottom = 0.027777778 +offset_bottom = -30.0 +grow_horizontal = 2 +size_flags_horizontal = 3 +theme = ExtResource("1_ecork") +script = ExtResource("2_7lgys") +metadata/_edit_use_anchors_ = true + +[node name="VBoxContainer" type="HBoxContainer" parent="." unique_id=1972995258] +layout_mode = 1 +anchors_preset = -1 +anchor_right = 1.0 +anchor_bottom = 0.053703703 +grow_horizontal = 2 +metadata/_edit_use_anchors_ = true + +[node name="Label" type="Label" parent="VBoxContainer" unique_id=482404396] +layout_mode = 2 +size_flags_horizontal = 3 +text = "Int" +clip_text = true +text_overrun_behavior = 3 + +[node name="SpinBox" parent="VBoxContainer" unique_id=1631362233 instance=ExtResource("3_fivcc")] +layout_mode = 2 +max_decimals = 0 +is_int = true diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/spin_box.gd b/src/userinterface/client_edit_mode/node_property_editor/partials/spin_box.gd new file mode 100644 index 00000000..ec7c6445 --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/spin_box.gd @@ -0,0 +1,39 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/node_property_editor/partials/spin_box.gd +# Project: OpenMinerva +# Created Date: 15 July 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends SpinBox + +signal spinbox_value_changed(value: float) + +@export var max_decimals: int = 4 +@export var is_int: bool = false + +func _ready() -> void: + if is_int == true: + max_decimals = 0 + step = 1 + + value_changed.connect(_on_value_changed) + get_line_edit().focus_entered.connect(_on_focus_entered) + get_line_edit().focus_exited.connect(_on_focus_exited) + + get_line_edit().text = _format_value(value) + return + +func _on_value_changed(new_value: float) -> void: + get_line_edit().text = _format_value(new_value) + spinbox_value_changed.emit(new_value) + +func _on_focus_entered() -> void: + get_line_edit().text = String.num(value, max_decimals) + +func _on_focus_exited() -> void: + get_line_edit().text = _format_value(value) + +func _format_value(v: float) -> String: + return (prefix + String.num(v, max_decimals) + suffix).trim_suffix(".0") diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/spin_box.gd.uid b/src/userinterface/client_edit_mode/node_property_editor/partials/spin_box.gd.uid new file mode 100644 index 00000000..e76cd3d7 --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/spin_box.gd.uid @@ -0,0 +1 @@ +uid://susq40b1r4sx diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/spin_box.tscn b/src/userinterface/client_edit_mode/node_property_editor/partials/spin_box.tscn new file mode 100644 index 00000000..662060f4 --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/spin_box.tscn @@ -0,0 +1,18 @@ +[gd_scene format=3 uid="uid://b58b25jtckb2c"] + +[ext_resource type="Script" uid="uid://susq40b1r4sx" path="res://userinterface/client_edit_mode/node_property_editor/partials/spin_box.gd" id="1_30qog"] + +[node name="SpinBox" type="SpinBox" unique_id=1631362233] +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +focus_behavior_recursive = 2 +min_value = inf_neg +max_value = inf +step = 0.001 +alignment = 1 +select_all_on_focus = true +script = ExtResource("1_30qog") diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/vector_3.gd b/src/userinterface/client_edit_mode/node_property_editor/partials/vector_3.gd new file mode 100644 index 00000000..b0bc356a --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/vector_3.gd @@ -0,0 +1,45 @@ +# --- License +# File: /client/src/userinterface/client_edit_mode/node_property_editor/partials/vector_3.gd +# Project: OpenMinerva +# Created Date: 15 July 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License + +extends Control + +signal value_changed(new_value: Vector3) + +@export var property_name: String = "" +@export var value: Vector3 = Vector3(0, 0, 0) + +@onready var _label = get_node("VBoxContainer/Label") +@onready var _container: HBoxContainer = get_node("VBoxContainer/HBoxContainer") + +func _ready() -> void: + _label.text = property_name + + for child in _container.get_children(): + var _name = child.name + child.spinbox_value_changed.connect(func (new_value): _child_value_changed(_name, new_value)) + return + +func set_value(new_value: Vector3) -> void: + value = new_value + + for child in _container.get_children(): + var _node_name: String = child.name + _container.get_node(_node_name).value = value[_node_name.to_lower()] + return + +func set_label(new_label: String) -> void: + _label.text = new_label + property_name = new_label + return + +func _child_value_changed(type: String, new_value: float) -> void: + type = type.to_lower() + value[type] = new_value + value_changed.emit(value) + return diff --git a/src/userinterface/client_edit_mode/node_property_editor/partials/vector_3.gd.uid b/src/userinterface/client_edit_mode/node_property_editor/partials/vector_3.gd.uid new file mode 100644 index 00000000..9d2be77e --- /dev/null +++ b/src/userinterface/client_edit_mode/node_property_editor/partials/vector_3.gd.uid @@ -0,0 +1 @@ +uid://fo05ubo6hera diff --git a/src/userinterface/dash/dashboard.tscn b/src/userinterface/dash/dashboard.tscn new file mode 100644 index 00000000..0d71779a --- /dev/null +++ b/src/userinterface/dash/dashboard.tscn @@ -0,0 +1,966 @@ +[gd_scene format=3 uid="uid://c4y1sb6lmdr0q"] + +[ext_resource type="Script" uid="uid://ci5jkh01ixats" path="res://userinterface/dash/scripts/master.gd" id="1_7d87s"] +[ext_resource type="Shader" uid="uid://bwr4b0mhgi4w6" path="res://userinterface/dash/shaders/blur.gdshader" id="1_co0dt"] +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="2_0nfpo"] +[ext_resource type="Script" uid="uid://bd7a7r2u4cbtf" path="res://userinterface/dash/scripts/header.gd" id="2_7obga"] +[ext_resource type="Script" uid="uid://bkqsi1aebefhj" path="res://userinterface/dash/scripts/navigation.gd" id="3_8u0v7"] +[ext_resource type="PackedScene" uid="uid://dog17wkc4h48c" path="res://userinterface/dash/partials/left_nav_container.tscn" id="3_av8ee"] +[ext_resource type="PackedScene" uid="uid://ccoyv1v4otf1b" path="res://userinterface/dash/partials/nav_button.tscn" id="3_ocjmf"] +[ext_resource type="Script" uid="uid://ba1v2y41s8drb" path="res://userinterface/dash/scripts/pages/settings.gd" id="4_ap0b5"] +[ext_resource type="PackedScene" uid="uid://clvk6h18vwcd3" path="res://userinterface/dash/partials/account_button.tscn" id="4_aw6p6"] +[ext_resource type="PackedScene" uid="uid://71vuc3qrtgi7" path="res://userinterface/dash/partials/category_button.tscn" id="4_ql400"] +[ext_resource type="Script" uid="uid://behsvrk7cf3e3" path="res://userinterface/dash/scripts/pages/home.gd" id="6_bh4hj"] +[ext_resource type="PackedScene" uid="uid://dh0u5xtwooa0v" path="res://userinterface/dash/partials/home_server_listing.tscn" id="7_kk1ia"] +[ext_resource type="Script" uid="uid://g1gvftyku5mb" path="res://userinterface/dash/scripts/pages/sessions.gd" id="7_kk4yy"] +[ext_resource type="Script" uid="uid://cs3l7uq2q5uvo" path="res://userinterface/dash/scripts/pages/instance.gd" id="7_o4evp"] +[ext_resource type="PackedScene" uid="uid://sntuc3p6k4s6" path="res://userinterface/dash/partials/generic_button.tscn" id="8_0mns2"] +[ext_resource type="PackedScene" uid="uid://cyom30b1p54df" path="res://userinterface/dash/partials/search.tscn" id="9_gtfiv"] +[ext_resource type="Texture2D" uid="uid://dw8erklrxa784" path="res://resources/icons/godot/World3D.svg" id="9_kowlf"] +[ext_resource type="PackedScene" uid="uid://b1q1rp1y4dt2f" path="res://userinterface/dash/partials/account_userlist_listing.tscn" id="9_o4evp"] +[ext_resource type="Script" uid="uid://dhdqv7d4orjgy" path="res://userinterface/dash/scripts/pages/account_selection.gd" id="9_qutrk"] +[ext_resource type="PackedScene" uid="uid://crp73pbni8ils" path="res://userinterface/dash/partials/input_boxstring.tscn" id="11_hia1r"] +[ext_resource type="Script" uid="uid://b2snjauxtpn22" path="res://userinterface/dash/scripts/pages/account_creation.gd" id="11_jgxeq"] +[ext_resource type="PackedScene" uid="uid://dg8ypxmuk8rv" path="res://userinterface/dash/partials/input_string.tscn" id="11_qutrk"] +[ext_resource type="PackedScene" uid="uid://bqf6iew4kyf0b" path="res://userinterface/dash/partials/input_dropdown.tscn" id="12_86ms5"] +[ext_resource type="Texture2D" uid="uid://c7ofnclcof0ud" path="res://resources/icons/world.svg" id="14_njqt8"] +[ext_resource type="PackedScene" uid="uid://dtdvrvilw4fwr" path="res://userinterface/dash/partials/input_button.tscn" id="16_7lova"] +[ext_resource type="Texture2D" uid="uid://blnd7x2qc6b7q" path="res://resources/icons/godot/Save.svg" id="17_xunij"] +[ext_resource type="PackedScene" uid="uid://bgr4s3s31rfsi" path="res://userinterface/dash/partials/input_stringlist.tscn" id="18_njqt8"] +[ext_resource type="PackedScene" uid="uid://c314yewjhuk8s" path="res://userinterface/dash/partials/input_stringconfirm.tscn" id="19_s6s1v"] +[ext_resource type="PackedScene" uid="uid://gopciccm8xx5" path="res://userinterface/dash/partials/removable_string_listing.tscn" id="20_v67rh"] +[ext_resource type="Script" uid="uid://2vk6cxto4xw" path="res://userinterface/dash/scripts/pages/spawnables.gd" id="21_d3sj0"] +[ext_resource type="Texture2D" uid="uid://8fwxg1ipf0fp" path="res://resources/icons/exit.svg" id="24_nakrv"] +[ext_resource type="Script" uid="uid://cnm74wceowx3y" path="res://userinterface/dash/scripts/pages/debug.gd" id="24_v7inj"] +[ext_resource type="Script" uid="uid://cah3jpmu1x72b" path="res://userinterface/dash/scripts/pages/exit.gd" id="24_wvg7d"] +[ext_resource type="PackedScene" uid="uid://b6qb2oq26yooy" path="res://userinterface/client_edit_mode/desktop/partial/movable_window.tscn" id="32_rmxmm"] +[ext_resource type="Texture2D" uid="uid://bb6karp2363a5" path="res://resources/icons/at-icons/rocketship.svg" id="33_h0jai"] + +[sub_resource type="ShaderMaterial" id="ShaderMaterial_v7inj"] +shader = ExtResource("1_co0dt") +shader_parameter/color = Color(0.4, 0.4, 0.4, 1) +shader_parameter/blur_amount = 3.0000001392401203 +shader_parameter/roughness = 0.2 +shader_parameter/roughness_affect = 0.0 + +[node name="Dashboard" type="Control" unique_id=505457833] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +script = ExtResource("1_7d87s") + +[node name="MarginContainer" type="MarginContainer" parent="." unique_id=235504345] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 10 +theme_override_constants/margin_top = 10 +theme_override_constants/margin_right = 10 +theme_override_constants/margin_bottom = 10 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer" unique_id=124409058] +layout_mode = 2 + +[node name="TopBar" type="Control" parent="MarginContainer/VBoxContainer" unique_id=1724217308] +custom_minimum_size = Vector2(0, 70) +layout_mode = 2 +script = ExtResource("2_7obga") + +[node name="BackgroundColor" type="Panel" parent="MarginContainer/VBoxContainer/TopBar" unique_id=1739661515] +material = SubResource("ShaderMaterial_v7inj") +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("2_0nfpo") + +[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/VBoxContainer/TopBar" unique_id=1173993118] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/VBoxContainer/TopBar/MarginContainer" unique_id=1648745915] +layout_mode = 2 +theme_override_constants/separation = 10 + +[node name="AccountButton" parent="MarginContainer/VBoxContainer/TopBar/MarginContainer/HBoxContainer" unique_id=649942124 instance=ExtResource("4_aw6p6")] +layout_mode = 2 +selected_theme_type = "LightButton" + +[node name="Spacer" type="Control" parent="MarginContainer/VBoxContainer/TopBar/MarginContainer/HBoxContainer" unique_id=1621069338] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Spacer2" type="Control" parent="MarginContainer/VBoxContainer/TopBar/MarginContainer/HBoxContainer" unique_id=47996349] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Spacer3" type="Control" parent="MarginContainer/VBoxContainer/TopBar/MarginContainer/HBoxContainer" unique_id=187996788] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Content" type="Control" parent="MarginContainer/VBoxContainer" unique_id=1517512624] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="BackgroundColor" type="Panel" parent="MarginContainer/VBoxContainer/Content" unique_id=730467318] +material = SubResource("ShaderMaterial_v7inj") +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("2_0nfpo") + +[node name="Container" type="MarginContainer" parent="MarginContainer/VBoxContainer/Content" unique_id=226262957] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 10 +theme_override_constants/margin_top = 10 +theme_override_constants/margin_right = 10 +theme_override_constants/margin_bottom = 10 + +[node name="Home" type="Control" parent="MarginContainer/VBoxContainer/Content/Container" unique_id=154112638] +visible = false +layout_mode = 2 +script = ExtResource("6_bh4hj") + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Home" unique_id=1195053231] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Home/HBoxContainer" unique_id=1457867721] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="PanelContainer" type="PanelContainer" parent="MarginContainer/VBoxContainer/Content/Container/Home/HBoxContainer/VBoxContainer" unique_id=650457035] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme = ExtResource("2_0nfpo") + +[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/VBoxContainer/Content/Container/Home/HBoxContainer/VBoxContainer/PanelContainer" unique_id=409134466] +layout_mode = 2 +theme_override_constants/margin_left = 10 +theme_override_constants/margin_top = 10 +theme_override_constants/margin_right = 10 +theme_override_constants/margin_bottom = 10 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Home/HBoxContainer/VBoxContainer/PanelContainer/MarginContainer" unique_id=758556458] +layout_mode = 2 + +[node name="Listing" parent="MarginContainer/VBoxContainer/Content/Container/Home/HBoxContainer/VBoxContainer/PanelContainer/MarginContainer/VBoxContainer" unique_id=902887409 instance=ExtResource("7_kk1ia")] +layout_mode = 2 +theme = ExtResource("2_0nfpo") +theme_type_variation = &"SolidBackground" + +[node name="CreateNewWorld" parent="MarginContainer/VBoxContainer/Content/Container/Home/HBoxContainer/VBoxContainer" unique_id=1412816903 instance=ExtResource("8_0mns2")] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 40) +layout_mode = 2 +label = "Create World" +icon = ExtResource("9_kowlf") + +[node name="Spacing" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/Home/HBoxContainer" unique_id=643242587] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Spacing2" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/Home/HBoxContainer" unique_id=2026218850] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Spacing3" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/Home/HBoxContainer" unique_id=2092666911] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Instance" parent="MarginContainer/VBoxContainer/Content/Container" unique_id=17586745 instance=ExtResource("3_av8ee")] +layout_mode = 2 +script = ExtResource("7_o4evp") + +[node name="Users" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Left" parent_id_path=PackedInt32Array(17586745, 1799305671) index="0" unique_id=612707214 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Permissions" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Left" parent_id_path=PackedInt32Array(17586745, 1799305671) index="1" unique_id=915845213 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="World" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Left" parent_id_path=PackedInt32Array(17586745, 1799305671) index="2" unique_id=1224429742 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Hosting" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Left" parent_id_path=PackedInt32Array(17586745, 1799305671) index="3" unique_id=536388283 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Users" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right" parent_id_path=PackedInt32Array(17586745, 892180341) index="0" unique_id=1908722423] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="AccountButtonListing" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/Users" unique_id=430751695 instance=ExtResource("9_o4evp")] +layout_mode = 2 + +[node name="Permissions" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right" parent_id_path=PackedInt32Array(17586745, 892180341) index="1" unique_id=522357128] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="World" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right" parent_id_path=PackedInt32Array(17586745, 892180341) index="2" unique_id=1519071951] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="InstanceName" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/World" unique_id=1236567120 instance=ExtResource("11_qutrk")] +unique_name_in_owner = true +layout_mode = 2 +display_text = "Name" + +[node name="InstanceDescription" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/World" unique_id=368136274 instance=ExtResource("11_hia1r")] +unique_name_in_owner = true +layout_mode = 2 +display_text = "Description" + +[node name="SaveWorld" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/World" unique_id=1676692906 instance=ExtResource("16_7lova")] +unique_name_in_owner = true +layout_mode = 2 +display_text = "Save World" +button_label = "Save" +button_icon = ExtResource("17_xunij") + +[node name="Hosting" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right" parent_id_path=PackedInt32Array(17586745, 892180341) index="3" unique_id=1206037028] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="ScrollContainer" type="ScrollContainer" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/Hosting" unique_id=264747709] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/Hosting/ScrollContainer" unique_id=233870972] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/Hosting/ScrollContainer/VBoxContainer" unique_id=1973332395] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Privacy" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/Hosting/ScrollContainer/VBoxContainer/VBoxContainer" unique_id=1881042579 instance=ExtResource("12_86ms5")] +layout_mode = 2 +display_text = "Privacy" +options = Array[String](["Invite", "Friends", "Friends+", "Contacts+", "Contacts", "Public"]) + +[node name="Save" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/Hosting/ScrollContainer/VBoxContainer" unique_id=995560766 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Save" +selected_icon = "Instance" + +[node name="Button" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/Hosting/ScrollContainer/VBoxContainer/Save" index="0" unique_id=1422381468] +toggle_mode = false + +[node name="TextureRect" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/Hosting/ScrollContainer/VBoxContainer/Save/Button/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(995560766, 86696220) index="0" unique_id=1429445374] +texture = ExtResource("14_njqt8") + +[node name="Label" parent="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/Hosting/ScrollContainer/VBoxContainer/Save/Button/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(995560766, 86696220) index="1" unique_id=1807295119] +text = "Save" + +[node name="Sessions" parent="MarginContainer/VBoxContainer/Content/Container" unique_id=1512510126 instance=ExtResource("3_av8ee")] +visible = false +layout_mode = 2 +script = ExtResource("7_kk4yy") + +[node name="Art" parent="MarginContainer/VBoxContainer/Content/Container/Sessions/HBox/Left" parent_id_path=PackedInt32Array(1512510126, 1799305671) index="0" unique_id=790930258 instance=ExtResource("4_ql400")] +layout_mode = 2 +selected_icon = "Art" +default_state = false + +[node name="Environment" parent="MarginContainer/VBoxContainer/Content/Container/Sessions/HBox/Left" parent_id_path=PackedInt32Array(1512510126, 1799305671) index="1" unique_id=1381397115 instance=ExtResource("4_ql400")] +layout_mode = 2 +selected_icon = "Environment" +default_state = false + +[node name="Science" parent="MarginContainer/VBoxContainer/Content/Container/Sessions/HBox/Left" parent_id_path=PackedInt32Array(1512510126, 1799305671) index="2" unique_id=937204749 instance=ExtResource("4_ql400")] +layout_mode = 2 +selected_icon = "Science" +default_state = false + +[node name="Games" parent="MarginContainer/VBoxContainer/Content/Container/Sessions/HBox/Left" parent_id_path=PackedInt32Array(1512510126, 1799305671) index="3" unique_id=618470106 instance=ExtResource("4_ql400")] +layout_mode = 2 +selected_icon = "Games" +default_state = false + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Sessions/HBox/Right" parent_id_path=PackedInt32Array(1512510126, 892180341) index="0" unique_id=1522418383] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="InputString" parent="MarginContainer/VBoxContainer/Content/Container/Sessions/HBox/Right/VBoxContainer" unique_id=125373846 instance=ExtResource("9_gtfiv")] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="ScrollContainer" type="ScrollContainer" parent="MarginContainer/VBoxContainer/Content/Container/Sessions/HBox/Right/VBoxContainer" unique_id=1395158644] +layout_mode = 2 +size_flags_vertical = 3 +theme = ExtResource("2_0nfpo") + +[node name="GridContainer" type="GridContainer" parent="MarginContainer/VBoxContainer/Content/Container/Sessions/HBox/Right/VBoxContainer/ScrollContainer" unique_id=2033791184] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/h_separation = 10 +theme_override_constants/v_separation = 10 +columns = 5 + +[node name="Settings" parent="MarginContainer/VBoxContainer/Content/Container" unique_id=739538319 instance=ExtResource("3_av8ee")] +visible = false +layout_mode = 2 +script = ExtResource("4_ap0b5") + +[node name="General" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Left" parent_id_path=PackedInt32Array(739538319, 1799305671) index="0" unique_id=1084146267 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Display" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Left" parent_id_path=PackedInt32Array(739538319, 1799305671) index="1" unique_id=884696286 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Audio" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Left" parent_id_path=PackedInt32Array(739538319, 1799305671) index="2" unique_id=83468254 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Controls" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Left" parent_id_path=PackedInt32Array(739538319, 1799305671) index="3" unique_id=1439698396 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Interface" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Left" parent_id_path=PackedInt32Array(739538319, 1799305671) index="4" unique_id=1049312458 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Network" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Left" parent_id_path=PackedInt32Array(739538319, 1799305671) index="5" unique_id=1617618443 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Config" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Left" parent_id_path=PackedInt32Array(739538319, 1799305671) index="6" unique_id=599049097 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Security" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Left" parent_id_path=PackedInt32Array(739538319, 1799305671) index="7" unique_id=1818668003 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Misc" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Left" parent_id_path=PackedInt32Array(739538319, 1799305671) index="8" unique_id=1457644847 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Advanced" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Left" parent_id_path=PackedInt32Array(739538319, 1799305671) index="9" unique_id=498611097 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="General" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right" parent_id_path=PackedInt32Array(739538319, 892180341) index="0" unique_id=1586946041] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Display" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right" parent_id_path=PackedInt32Array(739538319, 892180341) index="1" unique_id=2012861645] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Audio" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right" parent_id_path=PackedInt32Array(739538319, 892180341) index="2" unique_id=1568674734] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Controls" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right" parent_id_path=PackedInt32Array(739538319, 892180341) index="3" unique_id=837764346] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Interface" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right" parent_id_path=PackedInt32Array(739538319, 892180341) index="4" unique_id=795526067] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Network" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right" parent_id_path=PackedInt32Array(739538319, 892180341) index="5" unique_id=247371837] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Config" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right" parent_id_path=PackedInt32Array(739538319, 892180341) index="6" unique_id=1318053714] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="InputDropdown" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right/Config" unique_id=1674546469 instance=ExtResource("18_njqt8")] +layout_mode = 2 +display_text = "Session Servers" + +[node name="MarginContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right/Config/InputDropdown/VBoxContainer" parent_id_path=PackedInt32Array(1674546469, 1064225030) index="0" unique_id=169083657] +theme_override_constants/margin_top = 0 + +[node name="Label" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right/Config/InputDropdown/VBoxContainer/MarginContainer/HBoxContainer" parent_id_path=PackedInt32Array(1674546469, 358122007) index="0" unique_id=144539274] +text = "Session Servers" + +[node name="InputString" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right/Config/InputDropdown/VBoxContainer/MarginContainer2/PanelContainer/VBoxContainer" parent_id_path=PackedInt32Array(1674546469, 1765425757) index="0" unique_id=1750441705 instance=ExtResource("19_s6s1v")] +layout_mode = 2 +display_text = "Add a Session Server" + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right/Config/InputDropdown/VBoxContainer/MarginContainer2/PanelContainer/VBoxContainer" parent_id_path=PackedInt32Array(1674546469, 1765425757) index="1" unique_id=923149220] +layout_mode = 2 + +[node name="InputString" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right/Config/InputDropdown/VBoxContainer/MarginContainer2/PanelContainer/VBoxContainer/VBoxContainer" unique_id=2057714596 instance=ExtResource("20_v67rh")] +layout_mode = 2 + +[node name="Security" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right" parent_id_path=PackedInt32Array(739538319, 892180341) index="7" unique_id=1254009990] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Misc" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right" parent_id_path=PackedInt32Array(739538319, 892180341) index="8" unique_id=547943782] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Advanced" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right" parent_id_path=PackedInt32Array(739538319, 892180341) index="9" unique_id=1440915562] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Spawnables" parent="MarginContainer/VBoxContainer/Content/Container" unique_id=1982137112 instance=ExtResource("3_av8ee")] +visible = false +layout_mode = 2 +script = ExtResource("21_d3sj0") + +[node name="Filesystem" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Left" parent_id_path=PackedInt32Array(1982137112, 1799305671) index="0" unique_id=1857841582 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Local" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Left" parent_id_path=PackedInt32Array(1982137112, 1799305671) index="1" unique_id=1530762010 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Cloud" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Left" parent_id_path=PackedInt32Array(1982137112, 1799305671) index="2" unique_id=1842483100 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Local" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Right" parent_id_path=PackedInt32Array(1982137112, 892180341) index="0" unique_id=99513489] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/separation = 15 + +[node name="Path" type="HFlowContainer" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Right/Local" unique_id=1614962154] +layout_mode = 2 + +[node name="Search" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Right/Local" unique_id=645937409 instance=ExtResource("9_gtfiv")] +layout_mode = 2 + +[node name="Actions" type="HFlowContainer" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Right/Local" unique_id=1048294567] +layout_mode = 2 + +[node name="NewFolder" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Right/Local/Actions" unique_id=1102827445 instance=ExtResource("4_ql400")] +custom_minimum_size = Vector2(200, 35) +layout_mode = 2 +default_state = false +metadata/label = "New Folder" + +[node name="DeleteSelected" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Right/Local/Actions" unique_id=52618569 instance=ExtResource("4_ql400")] +custom_minimum_size = Vector2(200, 35) +layout_mode = 2 +default_state = false +metadata/label = "Delete Selected" + +[node name="Folders" type="HFlowContainer" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Right/Local" unique_id=924126430] +layout_mode = 2 + +[node name="Files" type="HFlowContainer" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Right/Local" unique_id=68463159] +layout_mode = 2 + +[node name="Cloud" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/HBox/Right" parent_id_path=PackedInt32Array(1982137112, 892180341) index="1" unique_id=1583883317] +visible = false +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="FolderCreation" type="ConfirmationDialog" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables" unique_id=1641134432] +oversampling_override = 1.0 +title = "Create Folder" +initial_position = 2 + +[node name="LineEdit" type="LineEdit" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables/FolderCreation" unique_id=306815796] +offset_left = 8.0 +offset_top = 8.0 +offset_right = 192.0 +offset_bottom = 51.0 +size_flags_horizontal = 4 +size_flags_vertical = 4 +placeholder_text = "Folder Name..." + +[node name="DeleteConfirmation" type="ConfirmationDialog" parent="MarginContainer/VBoxContainer/Content/Container/Spawnables" unique_id=167116521] +oversampling_override = 1.0 +title = "Delete Item" +initial_position = 2 +size = Vector2i(348, 104) +ok_button_text = "Delete" +dialog_text = "Are you sure you want to delete the item +\"Item\"" + +[node name="Debug" parent="MarginContainer/VBoxContainer/Content/Container" unique_id=506436187 instance=ExtResource("3_av8ee")] +visible = false +layout_mode = 2 +script = ExtResource("24_v7inj") + +[node name="General" parent="MarginContainer/VBoxContainer/Content/Container/Debug/HBox/Left" parent_id_path=PackedInt32Array(506436187, 1799305671) index="0" unique_id=725321320 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Display" parent="MarginContainer/VBoxContainer/Content/Container/Debug/HBox/Left" parent_id_path=PackedInt32Array(506436187, 1799305671) index="1" unique_id=1791779287 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Audio" parent="MarginContainer/VBoxContainer/Content/Container/Debug/HBox/Left" parent_id_path=PackedInt32Array(506436187, 1799305671) index="2" unique_id=1517275417 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Controls" parent="MarginContainer/VBoxContainer/Content/Container/Debug/HBox/Left" parent_id_path=PackedInt32Array(506436187, 1799305671) index="3" unique_id=127589259 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Interface" parent="MarginContainer/VBoxContainer/Content/Container/Debug/HBox/Left" parent_id_path=PackedInt32Array(506436187, 1799305671) index="4" unique_id=1269426169 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Network" parent="MarginContainer/VBoxContainer/Content/Container/Debug/HBox/Left" parent_id_path=PackedInt32Array(506436187, 1799305671) index="5" unique_id=571186988 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Config" parent="MarginContainer/VBoxContainer/Content/Container/Debug/HBox/Left" parent_id_path=PackedInt32Array(506436187, 1799305671) index="6" unique_id=1737883581 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Security" parent="MarginContainer/VBoxContainer/Content/Container/Debug/HBox/Left" parent_id_path=PackedInt32Array(506436187, 1799305671) index="7" unique_id=1319373843 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Misc" parent="MarginContainer/VBoxContainer/Content/Container/Debug/HBox/Left" parent_id_path=PackedInt32Array(506436187, 1799305671) index="8" unique_id=821001346 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="Advanced" parent="MarginContainer/VBoxContainer/Content/Container/Debug/HBox/Left" parent_id_path=PackedInt32Array(506436187, 1799305671) index="9" unique_id=59859102 instance=ExtResource("4_ql400")] +layout_mode = 2 +toggle = true +default_state = false + +[node name="General" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Debug/HBox/Right" parent_id_path=PackedInt32Array(506436187, 892180341) index="0" unique_id=588937059] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Exit" type="Control" parent="MarginContainer/VBoxContainer/Content/Container" unique_id=2026000436] +visible = false +layout_mode = 2 +script = ExtResource("24_wvg7d") + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Exit" unique_id=242586756] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Control2" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/Exit/VBoxContainer" unique_id=1920615328] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Label" type="Label" parent="MarginContainer/VBoxContainer/Content/Container/Exit/VBoxContainer" unique_id=2046503768] +layout_mode = 2 +size_flags_vertical = 6 +theme_override_font_sizes/font_size = 60 +text = "Thank you for using OpenMinerva!" +horizontal_alignment = 1 + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/Exit/VBoxContainer" unique_id=1333815646] +custom_minimum_size = Vector2(0, 50) +layout_mode = 2 + +[node name="Control2" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/Exit/VBoxContainer/HBoxContainer" unique_id=1575232925] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Cancel" type="Button" parent="MarginContainer/VBoxContainer/Content/Container/Exit/VBoxContainer/HBoxContainer" unique_id=1827195067] +layout_mode = 2 +size_flags_horizontal = 3 +mouse_default_cursor_shape = 2 +theme = ExtResource("2_0nfpo") +theme_type_variation = &"Danger" +text = "Cancel" + +[node name="Exit" type="Button" parent="MarginContainer/VBoxContainer/Content/Container/Exit/VBoxContainer/HBoxContainer" unique_id=498096560] +layout_mode = 2 +size_flags_horizontal = 3 +mouse_default_cursor_shape = 2 +theme = ExtResource("2_0nfpo") +theme_type_variation = &"Danger" + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="MarginContainer/VBoxContainer/Content/Container/Exit/VBoxContainer/HBoxContainer/Exit" unique_id=782073328] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/VBoxContainer/Content/Container/Exit/VBoxContainer/HBoxContainer/Exit/AspectRatioContainer" unique_id=1077428590] +layout_mode = 2 +texture = ExtResource("24_nakrv") +expand_mode = 2 + +[node name="Control3" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/Exit/VBoxContainer/HBoxContainer" unique_id=2059609441] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="Control" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/Exit/VBoxContainer" unique_id=772658709] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Control3" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/Exit/VBoxContainer" unique_id=215825983] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="_AccountSelection" type="Control" parent="MarginContainer/VBoxContainer/Content/Container" unique_id=942492755] +visible = false +layout_mode = 2 +script = ExtResource("9_qutrk") + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/_AccountSelection" unique_id=1122171112] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Spacer" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/_AccountSelection/HBoxContainer" unique_id=1558467922] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/_AccountSelection/HBoxContainer" unique_id=886733571] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="ScrollContainer" type="ScrollContainer" parent="MarginContainer/VBoxContainer/Content/Container/_AccountSelection/HBoxContainer/VBoxContainer" unique_id=1823464631] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/scrollbar_h_separation = 10 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/_AccountSelection/HBoxContainer/VBoxContainer/ScrollContainer" unique_id=295905298] +custom_minimum_size = Vector2(500, 0) +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="NavButton" parent="MarginContainer/VBoxContainer/Content/Container/_AccountSelection/HBoxContainer/VBoxContainer" unique_id=1677704621 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Create Account" + +[node name="Button" parent="MarginContainer/VBoxContainer/Content/Container/_AccountSelection/HBoxContainer/VBoxContainer/NavButton" index="0" unique_id=1422381468] +toggle_mode = false + +[node name="Label" parent="MarginContainer/VBoxContainer/Content/Container/_AccountSelection/HBoxContainer/VBoxContainer/NavButton/Button/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(1677704621, 86696220) index="1" unique_id=1807295119] +size_flags_horizontal = 3 +text = "Create Account" + +[node name="Spacer2" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/_AccountSelection/HBoxContainer" unique_id=962768924] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="_AccountCreation" type="Control" parent="MarginContainer/VBoxContainer/Content/Container" unique_id=580645222] +visible = false +layout_mode = 2 +script = ExtResource("11_jgxeq") + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/_AccountCreation" unique_id=165524708] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Spacer" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/_AccountCreation/HBoxContainer" unique_id=309184611] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/_AccountCreation/HBoxContainer" unique_id=1428128737] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="ScrollContainer" type="ScrollContainer" parent="MarginContainer/VBoxContainer/Content/Container/_AccountCreation/HBoxContainer/VBoxContainer" unique_id=2089091704] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme_override_constants/scrollbar_h_separation = 10 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/Content/Container/_AccountCreation/HBoxContainer/VBoxContainer/ScrollContainer" unique_id=1579107512] +custom_minimum_size = Vector2(500, 0) +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 4 + +[node name="Username" parent="MarginContainer/VBoxContainer/Content/Container/_AccountCreation/HBoxContainer/VBoxContainer/ScrollContainer/VBoxContainer" unique_id=829702118 instance=ExtResource("11_qutrk")] +layout_mode = 2 +display_text = "Display Name" + +[node name="AccountServer" parent="MarginContainer/VBoxContainer/Content/Container/_AccountCreation/HBoxContainer/VBoxContainer/ScrollContainer/VBoxContainer" unique_id=1844371600 instance=ExtResource("11_qutrk")] +layout_mode = 2 +display_text = "Account Server" + +[node name="Accept" parent="MarginContainer/VBoxContainer/Content/Container/_AccountCreation/HBoxContainer/VBoxContainer" unique_id=223705548 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Add" + +[node name="Button" parent="MarginContainer/VBoxContainer/Content/Container/_AccountCreation/HBoxContainer/VBoxContainer/Accept" index="0" unique_id=1422381468] +toggle_mode = false + +[node name="Label" parent="MarginContainer/VBoxContainer/Content/Container/_AccountCreation/HBoxContainer/VBoxContainer/Accept/Button/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(223705548, 86696220) index="1" unique_id=1807295119] +size_flags_horizontal = 3 +text = "Add" + +[node name="Spacer2" type="Control" parent="MarginContainer/VBoxContainer/Content/Container/_AccountCreation/HBoxContainer" unique_id=275254948] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="NavBar" type="Control" parent="MarginContainer/VBoxContainer" unique_id=401495078] +custom_minimum_size = Vector2(0, 60) +layout_mode = 2 +script = ExtResource("3_8u0v7") + +[node name="BackgroundColor" type="Panel" parent="MarginContainer/VBoxContainer/NavBar" unique_id=1463524110] +material = SubResource("ShaderMaterial_v7inj") +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("2_0nfpo") + +[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/VBoxContainer/NavBar" unique_id=1303027290] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer/VBoxContainer/NavBar/MarginContainer" unique_id=1576091722] +layout_mode = 2 +alignment = 1 +metadata/_edit_use_anchors_ = true + +[node name="Home" parent="MarginContainer/VBoxContainer/NavBar/MarginContainer/HBoxContainer" unique_id=1398937292 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Home" +selected_icon = "Home" + +[node name="Instance" parent="MarginContainer/VBoxContainer/NavBar/MarginContainer/HBoxContainer" unique_id=2065864495 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Instance" +selected_icon = "Instance" + +[node name="Sessions" parent="MarginContainer/VBoxContainer/NavBar/MarginContainer/HBoxContainer" unique_id=115442342 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Sessions" +selected_icon = "Sessions" + +[node name="Contacts" parent="MarginContainer/VBoxContainer/NavBar/MarginContainer/HBoxContainer" unique_id=1218469163 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Contacts" +selected_icon = "Contacts" + +[node name="Spawnables" parent="MarginContainer/VBoxContainer/NavBar/MarginContainer/HBoxContainer" unique_id=1841335532 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Spawnables" +selected_icon = "Assets" + +[node name="Apps" parent="MarginContainer/VBoxContainer/NavBar/MarginContainer/HBoxContainer" unique_id=121060802 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Apps" +selected_icon = "Apps" + +[node name="Settings" parent="MarginContainer/VBoxContainer/NavBar/MarginContainer/HBoxContainer" unique_id=849079664 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Settings" +selected_icon = "Settings" + +[node name="Debug" parent="MarginContainer/VBoxContainer/NavBar/MarginContainer/HBoxContainer" unique_id=194442451 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Debug" +selected_icon = "Debug" + +[node name="Exit" parent="MarginContainer/VBoxContainer/NavBar/MarginContainer/HBoxContainer" unique_id=1580421633 instance=ExtResource("3_ocjmf")] +layout_mode = 2 +display_text = "Exit" +selected_icon = "Exit" +selected_theme_type = "Danger" + +[node name="NewWorld" parent="." unique_id=524781090 instance=ExtResource("32_rmxmm")] +visible = false +layout_mode = 1 +window_name = "Create New World" + +[node name="VBoxContainer" type="VBoxContainer" parent="NewWorld/BackgroundColor/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(524781090, 969090938) index="1" unique_id=1889766629] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="WorldName" type="Label" parent="NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer" unique_id=506539736] +layout_mode = 2 +text = "World Name" + +[node name="WorldNameVal" type="LineEdit" parent="NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer" unique_id=2124841622] +layout_mode = 2 +placeholder_text = "My New World" +alignment = 1 + +[node name="Base" type="Label" parent="NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer" unique_id=413752113] +layout_mode = 2 +text = "Base" + +[node name="BaseVal" type="OptionButton" parent="NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer" unique_id=2057051427] +layout_mode = 2 +selected = 3 +item_count = 4 +popup/item_0/text = "Debug" +popup/item_0/id = 0 +popup/item_0/disabled = true +popup/item_1/text = "Home" +popup/item_1/id = 1 +popup/item_1/disabled = true +popup/item_2/text = "Empty" +popup/item_2/id = 2 +popup/item_2/disabled = true +popup/item_3/text = "Grid" +popup/item_3/id = 3 + +[node name="Privacy" type="Label" parent="NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer" unique_id=1738386897] +layout_mode = 2 +text = "Privacy" + +[node name="PrivacyVal" type="OptionButton" parent="NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer" unique_id=1867545901] +layout_mode = 2 +selected = 0 +item_count = 6 +popup/item_0/text = "Private" +popup/item_0/id = 0 +popup/item_1/text = "Friends" +popup/item_1/id = 1 +popup/item_2/text = "Friends+" +popup/item_2/id = 2 +popup/item_3/text = "Contacts" +popup/item_3/id = 3 +popup/item_4/text = "Contacts+" +popup/item_4/id = 4 +popup/item_5/text = "Public" +popup/item_5/id = 5 + +[node name="Spacer" type="Control" parent="NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer" unique_id=2006504238] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="Create" parent="NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer" unique_id=1897979315 instance=ExtResource("8_0mns2")] +unique_name_in_owner = true +custom_minimum_size = Vector2(0, 30) +layout_mode = 2 +label = "Start" +icon = ExtResource("33_h0jai") + +[node name="TextureRect" parent="NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer/Create/Button/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(1897979315, 86696220) index="0" unique_id=1429445374] +self_modulate = Color(0.5568628, 0.9372549, 0.5921569, 1) + +[node name="Label" parent="NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer/Create/Button/MarginContainer/VBoxContainer" parent_id_path=PackedInt32Array(1897979315, 86696220) index="1" unique_id=1807295119] +horizontal_alignment = 1 + +[editable path="MarginContainer/VBoxContainer/Content/Container/Home/HBoxContainer/VBoxContainer/PanelContainer/MarginContainer/VBoxContainer/Listing"] +[editable path="MarginContainer/VBoxContainer/Content/Container/Instance"] +[editable path="MarginContainer/VBoxContainer/Content/Container/Instance/HBox/Right/Hosting/ScrollContainer/VBoxContainer/Save"] +[editable path="MarginContainer/VBoxContainer/Content/Container/Sessions"] +[editable path="MarginContainer/VBoxContainer/Content/Container/Settings"] +[editable path="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right/Config/InputDropdown"] +[editable path="MarginContainer/VBoxContainer/Content/Container/Settings/HBox/Right/Config/InputDropdown/VBoxContainer/MarginContainer2/PanelContainer/VBoxContainer/InputString"] +[editable path="MarginContainer/VBoxContainer/Content/Container/Spawnables"] +[editable path="MarginContainer/VBoxContainer/Content/Container/Debug"] +[editable path="MarginContainer/VBoxContainer/Content/Container/_AccountSelection/HBoxContainer/VBoxContainer/NavButton"] +[editable path="MarginContainer/VBoxContainer/Content/Container/_AccountCreation/HBoxContainer/VBoxContainer/Accept"] +[editable path="NewWorld"] +[editable path="NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer/Create"] diff --git a/src/userinterface/dash/partials/account_button.tscn b/src/userinterface/dash/partials/account_button.tscn new file mode 100644 index 00000000..b90ff88e --- /dev/null +++ b/src/userinterface/dash/partials/account_button.tscn @@ -0,0 +1,79 @@ +[gd_scene format=3 uid="uid://clvk6h18vwcd3"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_dmbuk"] +[ext_resource type="Texture2D" uid="uid://coqi7w7inqyv1" path="res://resources/icons/account.svg" id="2_clecd"] + +[sub_resource type="GDScript" id="GDScript_q3lw4"] +resource_name = "export" +script/source = "extends Control + +@export var display_text: String = \"Default Text\" + +@onready var button_node = $Button +@export_enum(\"Danger\", \"LightButton\") var selected_theme_type: String + +func _ready(): + button_node.theme_type_variation = selected_theme_type if selected_theme_type != null else \"\" +" + +[node name="AccountButton" type="Control" unique_id=649942124] +custom_minimum_size = Vector2(200, 50) +layout_mode = 3 +anchor_top = 0.47685185 +anchor_right = 1.0 +anchor_bottom = 0.5231481 +offset_top = 25.0 +offset_bottom = -24.999939 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme = ExtResource("1_dmbuk") +script = SubResource("GDScript_q3lw4") + +[node name="Button" type="Button" parent="." unique_id=1422381468] +custom_minimum_size = Vector2(140, 0) +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_dmbuk") +theme_type_variation = &"Danger" + +[node name="MarginContainer" type="MarginContainer" parent="Button" unique_id=665374152] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="HBox" type="HBoxContainer" parent="Button/MarginContainer" unique_id=86696220] +layout_mode = 2 +theme_override_constants/separation = 10 + +[node name="TextureRect" type="TextureRect" parent="Button/MarginContainer/HBox" unique_id=1429445374] +layout_mode = 2 +texture = ExtResource("2_clecd") +expand_mode = 2 + +[node name="VBox" type="VBoxContainer" parent="Button/MarginContainer/HBox" unique_id=1074901883] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Name" type="Label" parent="Button/MarginContainer/HBox/VBox" unique_id=1807295119] +layout_mode = 2 +text = "ERROR" + +[node name="Location" type="Label" parent="Button/MarginContainer/HBox/VBox" unique_id=675948225] +layout_mode = 2 +theme_override_colors/font_color = Color(0.70380783, 0.70380783, 0.70380783, 1) +theme_override_font_sizes/font_size = 10 +text = "ERROR" diff --git a/src/userinterface/dash/partials/account_button_listing.tscn b/src/userinterface/dash/partials/account_button_listing.tscn new file mode 100644 index 00000000..022a7e43 --- /dev/null +++ b/src/userinterface/dash/partials/account_button_listing.tscn @@ -0,0 +1,135 @@ +[gd_scene format=3 uid="uid://cbietn7vfj6ud"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_h0f2g"] +[ext_resource type="Texture2D" uid="uid://coqi7w7inqyv1" path="res://resources/icons/account.svg" id="2_rbo2h"] +[ext_resource type="Texture2D" uid="uid://byxgefy5xsbuu" path="res://resources/icons/ui/settings.svg" id="3_els6r"] +[ext_resource type="Texture2D" uid="uid://5admxcll28y4" path="res://resources/icons/ui/trash.svg" id="4_g1hvg"] + +[sub_resource type="GDScript" id="GDScript_q3lw4"] +resource_name = "export" +script/source = "extends Control +" + +[node name="AccountButtonListing" type="Control" unique_id=649942124] +custom_minimum_size = Vector2(200, 75) +layout_mode = 3 +anchor_top = 0.47685185 +anchor_right = 1.0 +anchor_bottom = 0.5231481 +offset_top = 25.0 +offset_bottom = -24.999939 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +theme = ExtResource("1_h0f2g") +script = SubResource("GDScript_q3lw4") + +[node name="HBoxContainer" type="HBoxContainer" parent="." unique_id=250429512] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Button" type="Button" parent="HBoxContainer" unique_id=1422381468] +custom_minimum_size = Vector2(140, 0) +layout_mode = 2 +size_flags_horizontal = 3 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_h0f2g") + +[node name="MarginContainer" type="MarginContainer" parent="HBoxContainer/Button" unique_id=665374152] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="HBox" type="HBoxContainer" parent="HBoxContainer/Button/MarginContainer" unique_id=86696220] +layout_mode = 2 +theme_override_constants/separation = 10 + +[node name="TextureRect" type="TextureRect" parent="HBoxContainer/Button/MarginContainer/HBox" unique_id=1429445374] +layout_mode = 2 +texture = ExtResource("2_rbo2h") +expand_mode = 2 + +[node name="VBox" type="VBoxContainer" parent="HBoxContainer/Button/MarginContainer/HBox" unique_id=1074901883] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Name" type="Label" parent="HBoxContainer/Button/MarginContainer/HBox/VBox" unique_id=1807295119] +layout_mode = 2 +theme_override_font_sizes/font_size = 20 +text = "ERROR" + +[node name="Location" type="Label" parent="HBoxContainer/Button/MarginContainer/HBox/VBox" unique_id=675948225] +layout_mode = 2 +theme_override_colors/font_color = Color(0.70380783, 0.70380783, 0.70380783, 1) +text = "ERROR" + +[node name="Configure" type="AspectRatioContainer" parent="HBoxContainer" unique_id=559312234] +custom_minimum_size = Vector2(75, 0) +layout_mode = 2 + +[node name="Button" type="Button" parent="HBoxContainer/Configure" unique_id=1933552852] +layout_mode = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_h0f2g") + +[node name="MarginContainer" type="MarginContainer" parent="HBoxContainer/Configure/Button" unique_id=564567149] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="HBoxContainer/Configure/Button/MarginContainer" unique_id=1526419418] +layout_mode = 2 + +[node name="TextureRect" type="TextureRect" parent="HBoxContainer/Configure/Button/MarginContainer/AspectRatioContainer" unique_id=522146680] +layout_mode = 2 +texture = ExtResource("3_els6r") +expand_mode = 2 + +[node name="Delete" type="AspectRatioContainer" parent="HBoxContainer" unique_id=931685674] +custom_minimum_size = Vector2(75, 0) +layout_mode = 2 + +[node name="Button" type="Button" parent="HBoxContainer/Delete" unique_id=1649839441] +layout_mode = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_h0f2g") +theme_type_variation = &"Danger" + +[node name="MarginContainer" type="MarginContainer" parent="HBoxContainer/Delete/Button" unique_id=335685794] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="HBoxContainer/Delete/Button/MarginContainer" unique_id=910803916] +layout_mode = 2 + +[node name="TextureRect" type="TextureRect" parent="HBoxContainer/Delete/Button/MarginContainer/AspectRatioContainer" unique_id=1008457231] +layout_mode = 2 +texture = ExtResource("4_g1hvg") +expand_mode = 2 diff --git a/src/userinterface/dash/partials/account_userlist_listing.tscn b/src/userinterface/dash/partials/account_userlist_listing.tscn new file mode 100644 index 00000000..e6537c55 --- /dev/null +++ b/src/userinterface/dash/partials/account_userlist_listing.tscn @@ -0,0 +1,157 @@ +[gd_scene format=3 uid="uid://b1q1rp1y4dt2f"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_oxocb"] +[ext_resource type="Texture2D" uid="uid://coqi7w7inqyv1" path="res://resources/icons/account.svg" id="2_a7mjn"] +[ext_resource type="Texture2D" uid="uid://daebexy1etluo" path="res://resources/icons/ui/podiatry.svg" id="3_oxocb"] +[ext_resource type="Texture2D" uid="uid://b4mmsxpws0l2k" path="res://resources/icons/ui/block.svg" id="4_a7mjn"] + +[sub_resource type="GDScript" id="GDScript_q3lw4"] +resource_name = "export" +script/source = "extends Control +" + +[node name="AccountButtonListing" type="Control" unique_id=649942124] +custom_minimum_size = Vector2(200, 75) +layout_mode = 3 +anchor_top = 0.4652778 +anchor_right = 1.0 +anchor_bottom = 0.5347222 +offset_top = 37.5 +offset_bottom = -37.5 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +theme = ExtResource("1_oxocb") +script = SubResource("GDScript_q3lw4") + +[node name="HBoxContainer" type="HBoxContainer" parent="." unique_id=250429512] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Button" type="Button" parent="HBoxContainer" unique_id=1422381468] +custom_minimum_size = Vector2(140, 0) +layout_mode = 2 +size_flags_horizontal = 3 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_oxocb") + +[node name="MarginContainer" type="MarginContainer" parent="HBoxContainer/Button" unique_id=665374152] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="HBox" type="HBoxContainer" parent="HBoxContainer/Button/MarginContainer" unique_id=86696220] +layout_mode = 2 +theme_override_constants/separation = 10 + +[node name="TextureRect" type="TextureRect" parent="HBoxContainer/Button/MarginContainer/HBox" unique_id=1429445374] +layout_mode = 2 +texture = ExtResource("2_a7mjn") +expand_mode = 2 + +[node name="VBox" type="VBoxContainer" parent="HBoxContainer/Button/MarginContainer/HBox" unique_id=1074901883] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Name" type="Label" parent="HBoxContainer/Button/MarginContainer/HBox/VBox" unique_id=1807295119] +layout_mode = 2 +theme_override_font_sizes/font_size = 20 +text = "ERROR" + +[node name="Location" type="Label" parent="HBoxContainer/Button/MarginContainer/HBox/VBox" unique_id=675948225] +layout_mode = 2 +theme_override_colors/font_color = Color(0.70380783, 0.70380783, 0.70380783, 1) +text = "ERROR" + +[node name="Volume" type="PanelContainer" parent="HBoxContainer" unique_id=493364002] +custom_minimum_size = Vector2(200, 0) +layout_mode = 2 +theme = ExtResource("1_oxocb") +theme_type_variation = &"SolidBackground" + +[node name="MarginContainer" type="MarginContainer" parent="HBoxContainer/Volume" unique_id=1630519044] +layout_mode = 2 +theme_override_constants/margin_left = 10 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 10 +theme_override_constants/margin_bottom = 5 + +[node name="HSlider" type="HSlider" parent="HBoxContainer/Volume/MarginContainer" unique_id=1470760869] +layout_mode = 2 +size_flags_vertical = 4 +mouse_default_cursor_shape = 2 +max_value = 150.0 +step = 5.0 +value = 100.0 +rounded = true +ticks_on_borders = true + +[node name="Kick" type="AspectRatioContainer" parent="HBoxContainer" unique_id=559312234] +custom_minimum_size = Vector2(75, 0) +layout_mode = 2 + +[node name="Button" type="Button" parent="HBoxContainer/Kick" unique_id=1933552852] +layout_mode = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_oxocb") + +[node name="MarginContainer" type="MarginContainer" parent="HBoxContainer/Kick/Button" unique_id=564567149] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="HBoxContainer/Kick/Button/MarginContainer" unique_id=1526419418] +layout_mode = 2 + +[node name="TextureRect" type="TextureRect" parent="HBoxContainer/Kick/Button/MarginContainer/AspectRatioContainer" unique_id=522146680] +layout_mode = 2 +texture = ExtResource("3_oxocb") +expand_mode = 2 + +[node name="Ban" type="AspectRatioContainer" parent="HBoxContainer" unique_id=931685674] +custom_minimum_size = Vector2(75, 0) +layout_mode = 2 + +[node name="Button" type="Button" parent="HBoxContainer/Ban" unique_id=1649839441] +layout_mode = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_oxocb") +theme_type_variation = &"Danger" + +[node name="MarginContainer" type="MarginContainer" parent="HBoxContainer/Ban/Button" unique_id=335685794] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="HBoxContainer/Ban/Button/MarginContainer" unique_id=910803916] +layout_mode = 2 + +[node name="TextureRect" type="TextureRect" parent="HBoxContainer/Ban/Button/MarginContainer/AspectRatioContainer" unique_id=1008457231] +layout_mode = 2 +texture = ExtResource("4_a7mjn") +expand_mode = 2 diff --git a/src/userinterface/dash/partials/category_button.tscn b/src/userinterface/dash/partials/category_button.tscn new file mode 100644 index 00000000..58a1d830 --- /dev/null +++ b/src/userinterface/dash/partials/category_button.tscn @@ -0,0 +1,134 @@ +[gd_scene format=3 uid="uid://71vuc3qrtgi7"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_dnctg"] + +[sub_resource type="GDScript" id="GDScript_q3lw4"] +resource_name = "export" +script/source = "@tool +extends Control + +signal double_clicked + +@onready var label_node = $Button/MarginContainer/VBoxContainer/Label +@onready var icon_node = $Button/MarginContainer/VBoxContainer/TextureRect +@onready var button_node = $Button +@export_enum(\"Art\", \"Environment\", \"Science\", \"Games\", \"Folder\") var selected_icon: String +@export_enum(\"Danger\") var selected_theme_type: String +@export var toggle: bool = false +@export var default_state: bool = false +@export var only_icon: bool = false +@export var icon: Texture2D + +var _click_count: int = 0 +var _last_click_time: float = 0 +const DOUBLE_CLICK_TIME: float = 0.25 + +var icon_paths = { + \"Art\": \"res://resources/icons/art.svg\", + \"Environment\": \"res://resources/icons/environment.svg\", + \"Science\": \"res://resources/icons/science.svg\", + \"Games\": \"res://resources/icons/circus.svg\", + + \"Folder\": \"res://resources/icons/godot/Folder.svg\" +} + +func _ready(): + button_node.toggle_mode = toggle + button_node.button_pressed = default_state + + button_node.pressed.connect(_on_single_click) + + _get_label_text() + + if icon != null: + icon_node.texture = icon + elif icon_paths.has(selected_icon): + icon_node.texture = load(icon_paths[selected_icon]) + button_node.theme_type_variation = selected_theme_type if selected_theme_type != null else \"\" + + return + +func _get_label_text() -> void: + if only_icon == true: + label_node.queue_free() + icon_node.size_flags_horizontal = Control.SIZE_EXPAND_FILL + return + + var _label_meta = get_meta(\"label\", \"\") + if _label_meta != \"\": + label_node.text = _label_meta + return + + var display_text: String = name + label_node.text = display_text + + return + +func _on_single_click() -> void: + var now = Time.get_ticks_msec() / 1000.0 + if now - _last_click_time < DOUBLE_CLICK_TIME: + _click_count += 1 + if _click_count >= 2: + double_clicked.emit() + _click_count = 0 + else: + _click_count = 1 + _last_click_time = now +" + +[node name="CategoryButton" type="Control" unique_id=649942124] +custom_minimum_size = Vector2(0, 50) +layout_mode = 3 +anchor_top = 0.47685185 +anchor_right = 1.0 +anchor_bottom = 0.5231481 +offset_top = 25.0 +offset_bottom = -24.999939 +grow_vertical = 2 +size_flags_horizontal = 3 +size_flags_vertical = 4 +theme = ExtResource("1_dnctg") +script = SubResource("GDScript_q3lw4") +default_state = null +metadata/_edit_use_anchors_ = true +metadata/label = "" + +[node name="Button" type="Button" parent="." unique_id=1422381468] +clip_contents = true +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_dnctg") + +[node name="MarginContainer" type="MarginContainer" parent="Button" unique_id=665374152] +clip_contents = true +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="VBoxContainer" type="HBoxContainer" parent="Button/MarginContainer" unique_id=86696220] +clip_contents = true +layout_mode = 2 +theme_override_constants/separation = 10 + +[node name="TextureRect" type="TextureRect" parent="Button/MarginContainer/VBoxContainer" unique_id=1429445374] +layout_mode = 2 +expand_mode = 2 + +[node name="Label" type="Label" parent="Button/MarginContainer/VBoxContainer" unique_id=1807295119] +layout_mode = 2 +size_flags_horizontal = 3 +text = "CategoryButton" +clip_text = true +text_overrun_behavior = 3 diff --git a/src/userinterface/dash/partials/generic_button.gd b/src/userinterface/dash/partials/generic_button.gd new file mode 100644 index 00000000..82e57227 --- /dev/null +++ b/src/userinterface/dash/partials/generic_button.gd @@ -0,0 +1,72 @@ +# --- License +# File: /client/src/userinterface/dash/partials/generic_button.gd +# Project: OpenMinerva +# Created Date: 30 June 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +signal clicked +signal double_clicked + +# Double clicking functionality +const DOUBLE_CLICK_TIME: float = 0.25 + +@export var toggle: bool = false +@export var default_state: bool = false +@export var label: String = "" +@export var icon: Texture2D = null +@export var only_icon: bool = false + +var _click_count: int = 0 +var _last_click_time: float = 0 + +@onready var _node_button: Button = get_node("Button") +@onready var _node_label: Label = get_node("Button/MarginContainer/VBoxContainer/Label") +@onready var _node_icon: TextureRect = get_node("Button/MarginContainer/VBoxContainer/TextureRect") + + +func _ready() -> void: + _node_button.toggle_mode = toggle + _node_button.button_pressed = default_state + _node_button.pressed.connect(_on_single_click) + _node_label.text = label + _node_icon.texture = icon + + if only_icon == true: + _node_label.queue_free() + _node_icon.size_flags_horizontal = Control.SIZE_EXPAND_FILL + return + + return + + +func set_label(new_label: String) -> void: + label = new_label + _node_label.text = new_label + return + + +func set_icon(new_icon: Texture2D) -> void: + icon = new_icon + _node_icon.texture = new_icon + return + + +func _on_single_click() -> void: + var now = Time.get_ticks_msec() / 1000.0 + + if now - _last_click_time < DOUBLE_CLICK_TIME: + _click_count += 1 + if _click_count >= 2: + double_clicked.emit() + _click_count = 0 + else: + clicked.emit() + else: + _click_count = 1 + clicked.emit() + + _last_click_time = now diff --git a/src/userinterface/dash/partials/generic_button.gd.uid b/src/userinterface/dash/partials/generic_button.gd.uid new file mode 100644 index 00000000..ce244ab3 --- /dev/null +++ b/src/userinterface/dash/partials/generic_button.gd.uid @@ -0,0 +1 @@ +uid://c1smfaq23k6wn diff --git a/src/userinterface/dash/partials/generic_button.tscn b/src/userinterface/dash/partials/generic_button.tscn new file mode 100644 index 00000000..dc9f2453 --- /dev/null +++ b/src/userinterface/dash/partials/generic_button.tscn @@ -0,0 +1,55 @@ +[gd_scene format=3 uid="uid://sntuc3p6k4s6"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_aa5td"] +[ext_resource type="Script" uid="uid://c1smfaq23k6wn" path="res://userinterface/dash/partials/generic_button.gd" id="2_c3px3"] +[ext_resource type="Texture2D" uid="uid://m8l5vx1j58kj" path="res://resources/icons/godot/Error.svg" id="3_4dmhx"] + +[node name="GenericButton" type="Control" unique_id=649942124] +layout_mode = 3 +anchors_preset = 0 +size_flags_horizontal = 3 +size_flags_vertical = 4 +theme = ExtResource("1_aa5td") +script = ExtResource("2_c3px3") +metadata/_edit_use_anchors_ = true + +[node name="Button" type="Button" parent="." unique_id=1422381468] +clip_contents = true +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_aa5td") + +[node name="MarginContainer" type="MarginContainer" parent="Button" unique_id=665374152] +clip_contents = true +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="VBoxContainer" type="HBoxContainer" parent="Button/MarginContainer" unique_id=86696220] +clip_contents = true +layout_mode = 2 +theme_override_constants/separation = 10 + +[node name="TextureRect" type="TextureRect" parent="Button/MarginContainer/VBoxContainer" unique_id=1429445374] +layout_mode = 2 +texture = ExtResource("3_4dmhx") +expand_mode = 2 + +[node name="Label" type="Label" parent="Button/MarginContainer/VBoxContainer" unique_id=1807295119] +layout_mode = 2 +size_flags_horizontal = 3 +text = "Button" +clip_text = true +text_overrun_behavior = 3 diff --git a/src/userinterface/dash/partials/home_server_listing.tscn b/src/userinterface/dash/partials/home_server_listing.tscn new file mode 100644 index 00000000..e306b713 --- /dev/null +++ b/src/userinterface/dash/partials/home_server_listing.tscn @@ -0,0 +1,63 @@ +[gd_scene format=3 uid="uid://dh0u5xtwooa0v"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_cfy26"] +[ext_resource type="Texture2D" uid="uid://8fwxg1ipf0fp" path="res://resources/icons/exit.svg" id="2_pwepf"] + +[node name="Listing" type="Button" unique_id=639969328] +custom_minimum_size = Vector2(0, 75) +offset_right = 249.0 +offset_bottom = 75.0 + +[node name="MarginContainer" type="MarginContainer" parent="." unique_id=968923659] +layout_mode = 1 +anchors_preset = 14 +anchor_top = 0.5 +anchor_right = 1.0 +anchor_bottom = 0.5 +offset_top = -32.5 +offset_bottom = 32.5 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer" unique_id=181669531] +layout_mode = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/HBoxContainer" unique_id=959619057] +layout_mode = 2 +size_flags_horizontal = 3 + +[node name="Label" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer" unique_id=252860746] +layout_mode = 2 +theme_override_font_sizes/font_size = 20 +text = "Awesome server" + +[node name="Label2" type="Label" parent="MarginContainer/HBoxContainer/VBoxContainer" unique_id=603422230] +layout_mode = 2 +text = "X / 20" + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="MarginContainer/HBoxContainer" unique_id=35108429] +custom_minimum_size = Vector2(75, 0) +layout_mode = 2 + +[node name="Button" type="Button" parent="MarginContainer/HBoxContainer/AspectRatioContainer" unique_id=922118119] +layout_mode = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_cfy26") +theme_type_variation = &"Danger" + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="MarginContainer/HBoxContainer/AspectRatioContainer/Button" unique_id=380622538] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/HBoxContainer/AspectRatioContainer/Button/AspectRatioContainer" unique_id=1848141350] +layout_mode = 2 +texture = ExtResource("2_pwepf") +expand_mode = 2 diff --git a/src/userinterface/dash/partials/input_boxstring.gd b/src/userinterface/dash/partials/input_boxstring.gd new file mode 100644 index 00000000..11a4c70d --- /dev/null +++ b/src/userinterface/dash/partials/input_boxstring.gd @@ -0,0 +1,23 @@ +# --- License +# File: /client/src/userinterface/dash/partials/input_boxstring.gd +# Project: OpenMinerva +# Created Date: 3 August 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +@export var display_text: String = "Default Text" + +@onready var label_node = $PanelContainer/MarginContainer/HBoxContainer/Label +@onready var lineedit_node = $PanelContainer/MarginContainer/HBoxContainer/MarginContainer/LineEdit + + +func _ready(): + label_node.text = display_text + lineedit_node.placeholder_text = display_text + + +func get_value() -> String: + return lineedit_node.text diff --git a/src/userinterface/dash/partials/input_boxstring.gd.uid b/src/userinterface/dash/partials/input_boxstring.gd.uid new file mode 100644 index 00000000..508e41b5 --- /dev/null +++ b/src/userinterface/dash/partials/input_boxstring.gd.uid @@ -0,0 +1 @@ +uid://dvu7u3c20eyud diff --git a/src/userinterface/dash/partials/input_boxstring.tscn b/src/userinterface/dash/partials/input_boxstring.tscn new file mode 100644 index 00000000..4c4059b0 --- /dev/null +++ b/src/userinterface/dash/partials/input_boxstring.tscn @@ -0,0 +1,55 @@ +[gd_scene format=3 uid="uid://crp73pbni8ils"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_f3kam"] +[ext_resource type="Script" uid="uid://dvu7u3c20eyud" path="res://userinterface/dash/partials/input_boxstring.gd" id="1_j78te"] + +[node name="InputBoxString" type="Control" unique_id=1236567120] +custom_minimum_size = Vector2(0, 100) +layout_mode = 3 +anchor_top = 0.4814815 +anchor_right = 1.0 +anchor_bottom = 0.5185185 +grow_horizontal = 2 +script = ExtResource("1_j78te") +metadata/_edit_use_anchors_ = true + +[node name="PanelContainer" type="PanelContainer" parent="." unique_id=382665771] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("1_f3kam") +theme_type_variation = &"SolidBackground" + +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer" unique_id=169083657] +layout_mode = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_right = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="PanelContainer/MarginContainer" unique_id=358122007] +custom_minimum_size = Vector2(0, 40) +layout_mode = 2 +metadata/_edit_use_anchors_ = true + +[node name="Label" type="Label" parent="PanelContainer/MarginContainer/HBoxContainer" unique_id=144539274] +custom_minimum_size = Vector2(200, 0) +layout_mode = 2 +text = "ERROR" + +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer/MarginContainer/HBoxContainer" unique_id=514760511] +layout_mode = 2 +size_flags_horizontal = 3 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 0 +theme_override_constants/margin_bottom = 5 + +[node name="LineEdit" type="TextEdit" parent="PanelContainer/MarginContainer/HBoxContainer/MarginContainer" unique_id=369988496] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("1_f3kam") +text = "This is great" +placeholder_text = "ERROR" +wrap_mode = 1 diff --git a/src/userinterface/dash/partials/input_button.gd b/src/userinterface/dash/partials/input_button.gd new file mode 100644 index 00000000..967b4f36 --- /dev/null +++ b/src/userinterface/dash/partials/input_button.gd @@ -0,0 +1,25 @@ +# --- License +# File: /client/src/userinterface/dash/partials/input_button.gd +# Project: OpenMinerva +# Created Date: 3 August 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +signal clicked + +@export var display_text: String = "Default Text" +@export var button_label: String = "Button" +@export var button_icon: Texture2D + +@onready var button = get_node("PanelContainer/MarginContainer/HBoxContainer/MarginContainer/GenericButton") +@onready var label_node = $PanelContainer/MarginContainer/HBoxContainer/Label + + +func _ready(): + label_node.text = display_text + button.set_label(button_label) + button.set_icon(button_icon) + button.clicked.connect(func(): clicked.emit()) diff --git a/src/userinterface/dash/partials/input_button.gd.uid b/src/userinterface/dash/partials/input_button.gd.uid new file mode 100644 index 00000000..8b74ba5d --- /dev/null +++ b/src/userinterface/dash/partials/input_button.gd.uid @@ -0,0 +1 @@ +uid://b0y3fy6ghm2fb diff --git a/src/userinterface/dash/partials/input_button.tscn b/src/userinterface/dash/partials/input_button.tscn new file mode 100644 index 00000000..0f537747 --- /dev/null +++ b/src/userinterface/dash/partials/input_button.tscn @@ -0,0 +1,56 @@ +[gd_scene format=3 uid="uid://dtdvrvilw4fwr"] + +[ext_resource type="Script" uid="uid://b0y3fy6ghm2fb" path="res://userinterface/dash/partials/input_button.gd" id="1_5bm55"] +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_nt6o7"] +[ext_resource type="PackedScene" uid="uid://sntuc3p6k4s6" path="res://userinterface/dash/partials/generic_button.tscn" id="2_5bm55"] + +[node name="InputButton" type="Control" unique_id=1236567120] +custom_minimum_size = Vector2(0, 40) +layout_mode = 3 +anchor_top = 0.4814815 +anchor_right = 1.0 +anchor_bottom = 0.5185185 +offset_top = 20.0 +offset_bottom = -20.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_5bm55") +metadata/_edit_use_anchors_ = true + +[node name="PanelContainer" type="PanelContainer" parent="." unique_id=382665771] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("1_nt6o7") +theme_type_variation = &"SolidBackground" + +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer" unique_id=169083657] +layout_mode = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_right = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="PanelContainer/MarginContainer" unique_id=358122007] +custom_minimum_size = Vector2(0, 40) +layout_mode = 2 +metadata/_edit_use_anchors_ = true + +[node name="Label" type="Label" parent="PanelContainer/MarginContainer/HBoxContainer" unique_id=144539274] +custom_minimum_size = Vector2(200, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "Default Text" + +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer/MarginContainer/HBoxContainer" unique_id=514760511] +layout_mode = 2 +size_flags_horizontal = 3 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 0 +theme_override_constants/margin_bottom = 5 + +[node name="GenericButton" parent="PanelContainer/MarginContainer/HBoxContainer/MarginContainer" unique_id=649942124 instance=ExtResource("2_5bm55")] +layout_mode = 2 +size_flags_vertical = 1 diff --git a/src/userinterface/dash/partials/input_dropdown.tscn b/src/userinterface/dash/partials/input_dropdown.tscn new file mode 100644 index 00000000..2cf16b65 --- /dev/null +++ b/src/userinterface/dash/partials/input_dropdown.tscn @@ -0,0 +1,76 @@ +[gd_scene format=3 uid="uid://bqf6iew4kyf0b"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_67hgs"] + +[sub_resource type="GDScript" id="GDScript_wtshq"] +script/source = "@tool +extends Control + +@export var display_text: String = \"Default Text\" +@export var options: Array[String] = [] +@export var default_selection: int = 0 + +@onready var label_node = $PanelContainer/MarginContainer/HBoxContainer/Label +@onready var optionsbutton_node = $PanelContainer/MarginContainer/HBoxContainer/MarginContainer/OptionButton +#@export_enum(\"Danger\") var selected_theme_type: String + +func _ready(): + label_node.text = display_text + for _item in options: + optionsbutton_node.add_item(_item) + optionsbutton_node.select(default_selection) +" + +[node name="InputDropdown" type="Control" unique_id=1236567120] +custom_minimum_size = Vector2(0, 40) +layout_mode = 3 +anchor_top = 0.4814815 +anchor_right = 1.0 +anchor_bottom = 0.5185185 +offset_top = 20.0 +offset_bottom = -20.0 +grow_horizontal = 2 +grow_vertical = 2 +script = SubResource("GDScript_wtshq") +metadata/_edit_use_anchors_ = true + +[node name="PanelContainer" type="PanelContainer" parent="." unique_id=382665771] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("1_67hgs") +theme_type_variation = &"SolidBackground" + +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer" unique_id=169083657] +layout_mode = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_right = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="PanelContainer/MarginContainer" unique_id=358122007] +custom_minimum_size = Vector2(0, 40) +layout_mode = 2 +metadata/_edit_use_anchors_ = true + +[node name="Label" type="Label" parent="PanelContainer/MarginContainer/HBoxContainer" unique_id=144539274] +custom_minimum_size = Vector2(200, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "ERROR" + +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer/MarginContainer/HBoxContainer" unique_id=514760511] +layout_mode = 2 +size_flags_horizontal = 3 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 0 +theme_override_constants/margin_bottom = 5 + +[node name="OptionButton" type="OptionButton" parent="PanelContainer/MarginContainer/HBoxContainer/MarginContainer" unique_id=1020799305] +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 +size_flags_horizontal = 10 +theme = ExtResource("1_67hgs") +alignment = 1 diff --git a/src/userinterface/dash/partials/input_string.gd b/src/userinterface/dash/partials/input_string.gd new file mode 100644 index 00000000..735b5fc5 --- /dev/null +++ b/src/userinterface/dash/partials/input_string.gd @@ -0,0 +1,23 @@ +# --- License +# File: /client/src/userinterface/dash/partials/input_string.gd +# Project: OpenMinerva +# Created Date: 3 August 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +@export var display_text: String = "Default Text" + +@onready var label_node = $PanelContainer/MarginContainer/HBoxContainer/Label +@onready var lineedit_node = $PanelContainer/MarginContainer/HBoxContainer/MarginContainer/LineEdit + + +func _ready(): + label_node.text = display_text + lineedit_node.placeholder_text = display_text + + +func get_value() -> String: + return lineedit_node.text diff --git a/src/userinterface/dash/partials/input_string.gd.uid b/src/userinterface/dash/partials/input_string.gd.uid new file mode 100644 index 00000000..da26a8c1 --- /dev/null +++ b/src/userinterface/dash/partials/input_string.gd.uid @@ -0,0 +1 @@ +uid://8iy160ceicvi diff --git a/src/userinterface/dash/partials/input_string.tscn b/src/userinterface/dash/partials/input_string.tscn new file mode 100644 index 00000000..b415265e --- /dev/null +++ b/src/userinterface/dash/partials/input_string.tscn @@ -0,0 +1,57 @@ +[gd_scene format=3 uid="uid://dg8ypxmuk8rv"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_w26cx"] +[ext_resource type="Script" uid="uid://8iy160ceicvi" path="res://userinterface/dash/partials/input_string.gd" id="1_yd6t6"] + +[node name="InputString" type="Control" unique_id=1236567120] +custom_minimum_size = Vector2(0, 40) +layout_mode = 3 +anchor_top = 0.4814815 +anchor_right = 1.0 +anchor_bottom = 0.5185185 +offset_top = 20.0 +offset_bottom = -20.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_yd6t6") +metadata/_edit_use_anchors_ = true + +[node name="PanelContainer" type="PanelContainer" parent="." unique_id=382665771] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("1_w26cx") +theme_type_variation = &"SolidBackground" + +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer" unique_id=169083657] +layout_mode = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_right = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="PanelContainer/MarginContainer" unique_id=358122007] +custom_minimum_size = Vector2(0, 40) +layout_mode = 2 +metadata/_edit_use_anchors_ = true + +[node name="Label" type="Label" parent="PanelContainer/MarginContainer/HBoxContainer" unique_id=144539274] +custom_minimum_size = Vector2(200, 0) +layout_mode = 2 +text = "ERROR" + +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer/MarginContainer/HBoxContainer" unique_id=514760511] +layout_mode = 2 +size_flags_horizontal = 3 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 0 +theme_override_constants/margin_bottom = 5 + +[node name="LineEdit" type="LineEdit" parent="PanelContainer/MarginContainer/HBoxContainer/MarginContainer" unique_id=828836954] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("1_w26cx") +placeholder_text = "ERROR" +clear_button_enabled = true diff --git a/src/userinterface/dash/partials/input_stringconfirm.tscn b/src/userinterface/dash/partials/input_stringconfirm.tscn new file mode 100644 index 00000000..533849d8 --- /dev/null +++ b/src/userinterface/dash/partials/input_stringconfirm.tscn @@ -0,0 +1,100 @@ +[gd_scene format=3 uid="uid://c314yewjhuk8s"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_c0drg"] +[ext_resource type="Texture2D" uid="uid://dl0bn4f34xl51" path="res://resources/icons/ui/check.svg" id="2_suobs"] + +[sub_resource type="GDScript" id="GDScript_wtshq"] +script/source = "extends Control + +@export var display_text: String = \"Default Text\" + +@onready var label_node = $PanelContainer/MarginContainer/HBoxContainer/Label +@onready var lineedit_node = $PanelContainer/MarginContainer/HBoxContainer/MarginContainer/LineEdit +#@export_enum(\"Danger\") var selected_theme_type: String + +func _ready(): + label_node.text = display_text + lineedit_node.placeholder_text = display_text +" + +[node name="InputString" type="Control" unique_id=1236567120] +custom_minimum_size = Vector2(0, 40) +layout_mode = 3 +anchor_top = 0.4814815 +anchor_right = 1.0 +anchor_bottom = 0.5185185 +offset_top = 20.0 +offset_bottom = -20.0 +grow_horizontal = 2 +grow_vertical = 2 +script = SubResource("GDScript_wtshq") +metadata/_edit_use_anchors_ = true + +[node name="PanelContainer" type="PanelContainer" parent="." unique_id=382665771] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("1_c0drg") +theme_type_variation = &"SolidBackground" + +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer" unique_id=169083657] +layout_mode = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_right = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="PanelContainer/MarginContainer" unique_id=358122007] +custom_minimum_size = Vector2(0, 40) +layout_mode = 2 +metadata/_edit_use_anchors_ = true + +[node name="Label" type="Label" parent="PanelContainer/MarginContainer/HBoxContainer" unique_id=144539274] +custom_minimum_size = Vector2(200, 0) +layout_mode = 2 +text = "ERROR" + +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer/MarginContainer/HBoxContainer" unique_id=514760511] +layout_mode = 2 +size_flags_horizontal = 3 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 0 +theme_override_constants/margin_bottom = 5 + +[node name="LineEdit" type="LineEdit" parent="PanelContainer/MarginContainer/HBoxContainer/MarginContainer" unique_id=828836954] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("1_c0drg") +placeholder_text = "ERROR" +clear_button_enabled = true + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="PanelContainer/MarginContainer/HBoxContainer" unique_id=197497637] +custom_minimum_size = Vector2(40, 0) +layout_mode = 2 + +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer/MarginContainer/HBoxContainer/AspectRatioContainer" unique_id=1583604096] +layout_mode = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="Button" type="Button" parent="PanelContainer/MarginContainer/HBoxContainer/AspectRatioContainer/MarginContainer" unique_id=1775270283] +layout_mode = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_c0drg") + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="PanelContainer/MarginContainer/HBoxContainer/AspectRatioContainer/MarginContainer/Button" unique_id=1966080045] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="TextureRect" type="TextureRect" parent="PanelContainer/MarginContainer/HBoxContainer/AspectRatioContainer/MarginContainer/Button/AspectRatioContainer" unique_id=24814137] +layout_mode = 2 +texture = ExtResource("2_suobs") +expand_mode = 2 diff --git a/src/userinterface/dash/partials/input_stringlist.tscn b/src/userinterface/dash/partials/input_stringlist.tscn new file mode 100644 index 00000000..909388cf --- /dev/null +++ b/src/userinterface/dash/partials/input_stringlist.tscn @@ -0,0 +1,89 @@ +[gd_scene format=3 uid="uid://bgr4s3s31rfsi"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_1egk5"] + +[sub_resource type="GDScript" id="GDScript_wtshq"] +script/source = "@tool +extends Control + +@export var display_text: String = \"Default Text\" + +@onready var open_button = $VBoxContainer/MarginContainer/HBoxContainer/MarginContainer/Open +@onready var margin_container = $VBoxContainer/MarginContainer2 +@onready var listing_container = $VBoxContainer/MarginContainer2/PanelContainer/VBoxContainer +@onready var label_container = $VBoxContainer/MarginContainer/HBoxContainer/Label + +func _ready(): + open_button.pressed.connect(_change_state) + label_container.text = display_text + +func _change_state() -> void: + var _state = open_button.button_pressed + + if _state == true: + listing_container.visible = true + return + + listing_container.visible = false + return +" + +[node name="InputDropdown" type="PanelContainer" unique_id=822939208] +custom_minimum_size = Vector2(0, 40) +anchors_preset = -1 +anchor_top = 0.4814815 +anchor_right = 1.0 +anchor_bottom = 0.5185185 +grow_vertical = 0 +size_flags_horizontal = 3 +script = SubResource("GDScript_wtshq") +metadata/_edit_use_anchors_ = true + +[node name="VBoxContainer" type="VBoxContainer" parent="." unique_id=1064225030] +layout_mode = 2 +theme_override_constants/separation = 0 + +[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer" unique_id=169083657] +layout_mode = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_right = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer/MarginContainer" unique_id=358122007] +custom_minimum_size = Vector2(0, 40) +layout_mode = 2 +metadata/_edit_use_anchors_ = true + +[node name="Label" type="Label" parent="VBoxContainer/MarginContainer/HBoxContainer" unique_id=144539274] +custom_minimum_size = Vector2(200, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "Default Text" + +[node name="MarginContainer" type="MarginContainer" parent="VBoxContainer/MarginContainer/HBoxContainer" unique_id=514760511] +layout_mode = 2 +size_flags_horizontal = 3 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 0 +theme_override_constants/margin_bottom = 5 + +[node name="Open" type="Button" parent="VBoxContainer/MarginContainer/HBoxContainer/MarginContainer" unique_id=1808464487] +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 +size_flags_horizontal = 10 +theme = ExtResource("1_1egk5") +toggle_mode = true +text = "Open" + +[node name="MarginContainer2" type="MarginContainer" parent="VBoxContainer" unique_id=2073445125] +layout_mode = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 0 + +[node name="PanelContainer" type="PanelContainer" parent="VBoxContainer/MarginContainer2" unique_id=734963898] +layout_mode = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="VBoxContainer/MarginContainer2/PanelContainer" unique_id=1765425757] +visible = false +layout_mode = 2 diff --git a/src/userinterface/dash/partials/left_nav_container.tscn b/src/userinterface/dash/partials/left_nav_container.tscn new file mode 100644 index 00000000..fbafbeb8 --- /dev/null +++ b/src/userinterface/dash/partials/left_nav_container.tscn @@ -0,0 +1,29 @@ +[gd_scene format=3 uid="uid://dog17wkc4h48c"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_wevnc"] + +[node name="LeftNavContainer" type="Control" unique_id=17586745] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="HBox" type="HBoxContainer" parent="." unique_id=839834062] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/separation = 10 + +[node name="Left" type="VBoxContainer" parent="HBox" unique_id=1799305671] +custom_minimum_size = Vector2(300, 0) +layout_mode = 2 + +[node name="Right" type="ScrollContainer" parent="HBox" unique_id=892180341] +layout_mode = 2 +size_flags_horizontal = 3 +theme = ExtResource("1_wevnc") diff --git a/src/userinterface/dash/partials/nav_button.tscn b/src/userinterface/dash/partials/nav_button.tscn new file mode 100644 index 00000000..24d13386 --- /dev/null +++ b/src/userinterface/dash/partials/nav_button.tscn @@ -0,0 +1,87 @@ +[gd_scene format=3 uid="uid://ccoyv1v4otf1b"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_s6xcj"] + +[sub_resource type="GDScript" id="GDScript_q3lw4"] +resource_name = "export" +script/source = "@tool +extends Control + +@export var display_text: String = \"Default Text\" + +@onready var label_node = $Button/MarginContainer/VBoxContainer/Label +@onready var icon_node = $Button/MarginContainer/VBoxContainer/TextureRect +@onready var button_node = $Button +@export_enum(\"Home\", \"Sessions\", \"Instance\", \"Contacts\", \"Assets\", \"Apps\", \"Settings\", \"Debug\", \"Exit\") var selected_icon: String +@export_enum(\"Danger\") var selected_theme_type: String + +var icon_paths = { + \"Home\": \"res://resources/icons/home.svg\", + \"Sessions\": \"res://resources/icons/flowchart.svg\", + \"Instance\": \"res://resources/icons/world.svg\", + \"Contacts\": \"res://resources/icons/contacts.svg\", + \"Assets\": \"res://resources/icons/inventory.svg\", + \"Apps\": \"res://resources/icons/apps.svg\", + \"Settings\": \"res://resources/icons/settings.svg\", + \"Debug\": \"res://resources/icons/debug.svg\", + \"Exit\": \"res://resources/icons/exit.svg\", +} + +func _ready(): + label_node.text = display_text + if icon_paths.has(selected_icon): + icon_node.texture = load(icon_paths[selected_icon]) + button_node.theme_type_variation = selected_theme_type if selected_theme_type != null else \"\" +" + +[node name="NavButton" type="Control" unique_id=649942124] +custom_minimum_size = Vector2(200, 50) +layout_mode = 3 +anchor_left = 0.44791666 +anchor_top = 0.4675926 +anchor_right = 0.5520833 +anchor_bottom = 0.5231481 +offset_bottom = 6.1035156e-05 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +size_flags_vertical = 4 +theme = ExtResource("1_s6xcj") +script = SubResource("GDScript_q3lw4") + +[node name="Button" type="Button" parent="." unique_id=1422381468] +custom_minimum_size = Vector2(140, 0) +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_s6xcj") +toggle_mode = true + +[node name="MarginContainer" type="MarginContainer" parent="Button" unique_id=665374152] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="VBoxContainer" type="HBoxContainer" parent="Button/MarginContainer" unique_id=86696220] +layout_mode = 2 +theme_override_constants/separation = 10 + +[node name="TextureRect" type="TextureRect" parent="Button/MarginContainer/VBoxContainer" unique_id=1429445374] +layout_mode = 2 +expand_mode = 2 + +[node name="Label" type="Label" parent="Button/MarginContainer/VBoxContainer" unique_id=1807295119] +layout_mode = 2 +text = "Default Text" +horizontal_alignment = 1 diff --git a/src/userinterface/dash/partials/removable_string_listing.tscn b/src/userinterface/dash/partials/removable_string_listing.tscn new file mode 100644 index 00000000..1a66d228 --- /dev/null +++ b/src/userinterface/dash/partials/removable_string_listing.tscn @@ -0,0 +1,64 @@ +[gd_scene format=3 uid="uid://gopciccm8xx5"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_5ae8h"] +[ext_resource type="Texture2D" uid="uid://5admxcll28y4" path="res://resources/icons/ui/trash.svg" id="2_5ae8h"] + +[sub_resource type="GDScript" id="GDScript_wtshq"] +script/source = "extends Control + + +#@onready var label_node = $PanelContainer/MarginContainer/HBoxContainer/Label +#@export_enum(\"Danger\") var selected_theme_type: String + +func _ready(): + return +" + +[node name="RemovableStringListing" type="PanelContainer" unique_id=2057714596] +custom_minimum_size = Vector2(0, 40) +anchors_preset = -1 +anchor_top = 0.4814815 +anchor_right = 1.0 +anchor_bottom = 0.5185185 +grow_horizontal = 2 +grow_vertical = 2 +script = SubResource("GDScript_wtshq") +metadata/_edit_use_anchors_ = true + +[node name="MarginContainer" type="MarginContainer" parent="." unique_id=169083657] +layout_mode = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer" unique_id=2062898268] +layout_mode = 2 + +[node name="Label" type="Label" parent="MarginContainer/HBoxContainer" unique_id=769532347] +layout_mode = 2 +size_flags_horizontal = 3 +text = "This is normal text" + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="MarginContainer/HBoxContainer" unique_id=802951287] +custom_minimum_size = Vector2(50, 0) +layout_mode = 2 + +[node name="Button" type="Button" parent="MarginContainer/HBoxContainer/AspectRatioContainer" unique_id=1639558368] +layout_mode = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_5ae8h") +theme_type_variation = &"Danger" + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="MarginContainer/HBoxContainer/AspectRatioContainer/Button" unique_id=1435786467] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/HBoxContainer/AspectRatioContainer/Button/AspectRatioContainer" unique_id=1147780876] +layout_mode = 2 +texture = ExtResource("2_5ae8h") +expand_mode = 2 diff --git a/src/userinterface/dash/partials/search.tscn b/src/userinterface/dash/partials/search.tscn new file mode 100644 index 00000000..f86d092e --- /dev/null +++ b/src/userinterface/dash/partials/search.tscn @@ -0,0 +1,74 @@ +[gd_scene format=3 uid="uid://cyom30b1p54df"] + +[ext_resource type="Texture2D" uid="uid://rdp5i1i18jus" path="res://resources/icons/search.svg" id="1_ndgnd"] +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="2_p0vin"] + +[sub_resource type="GDScript" id="GDScript_wtshq"] +script/source = "extends Control + +@export var display_text: String = \"Default Text\" + +@onready var lineedit_node = $MarginContainer/HBoxContainer/MarginContainer/LineEdit +#@export_enum(\"Danger\") var selected_theme_type: String + +func _ready(): + lineedit_node.placeholder_text = display_text +" + +[node name="InputString" type="Control" unique_id=1236567120] +custom_minimum_size = Vector2(0, 40) +layout_mode = 3 +anchor_top = 0.4814815 +anchor_right = 1.0 +anchor_bottom = 0.5185185 +offset_top = 20.0 +offset_bottom = -20.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 1 +script = SubResource("GDScript_wtshq") +metadata/_edit_use_anchors_ = true + +[node name="MarginContainer" type="MarginContainer" parent="." unique_id=169083657] +layout_mode = 1 +anchors_preset = 14 +anchor_top = 0.5 +anchor_right = 1.0 +anchor_bottom = 0.5 +offset_top = -20.5 +offset_bottom = 20.5 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_right = 5 + +[node name="HBoxContainer" type="HBoxContainer" parent="MarginContainer" unique_id=358122007] +custom_minimum_size = Vector2(0, 40) +layout_mode = 2 +metadata/_edit_use_anchors_ = true + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="MarginContainer/HBoxContainer" unique_id=1923611684] +custom_minimum_size = Vector2(30, 0) +layout_mode = 2 +size_flags_horizontal = 4 + +[node name="TextureRect" type="TextureRect" parent="MarginContainer/HBoxContainer/AspectRatioContainer" unique_id=200410735] +layout_mode = 2 +texture = ExtResource("1_ndgnd") +expand_mode = 4 + +[node name="MarginContainer" type="MarginContainer" parent="MarginContainer/HBoxContainer" unique_id=514760511] +layout_mode = 2 +size_flags_horizontal = 3 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 0 +theme_override_constants/margin_bottom = 5 + +[node name="LineEdit" type="LineEdit" parent="MarginContainer/HBoxContainer/MarginContainer" unique_id=828836954] +layout_mode = 2 +size_flags_horizontal = 3 +focus_behavior_recursive = 2 +theme = ExtResource("2_p0vin") +placeholder_text = "Search..." +clear_button_enabled = true diff --git a/src/userinterface/dash/partials/session_listing.tscn b/src/userinterface/dash/partials/session_listing.tscn new file mode 100644 index 00000000..dc754426 --- /dev/null +++ b/src/userinterface/dash/partials/session_listing.tscn @@ -0,0 +1,65 @@ +[gd_scene format=3 uid="uid://2nh7b6daby5k"] + +[ext_resource type="Theme" uid="uid://ckqsvvccivw0x" path="res://resources/themes/default.tres" id="1_q20mg"] +[ext_resource type="Texture2D" uid="uid://itsm1b042lj4" path="res://resources/icons/1280x720.webp" id="2_q20mg"] + +[node name="SessionListing" type="Control" unique_id=1752184822] +custom_minimum_size = Vector2(300, 235) +layout_mode = 3 +anchor_left = 0.421875 +anchor_top = 0.3912037 +anchor_right = 0.578125 +anchor_bottom = 0.6087963 +grow_horizontal = 2 +grow_vertical = 2 +size_flags_horizontal = 3 +metadata/_edit_use_anchors_ = true + +[node name="Button" type="Button" parent="." unique_id=730960087] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_default_cursor_shape = 2 +theme = ExtResource("1_q20mg") +theme_type_variation = &"SessionListing" + +[node name="MarginContainer" type="MarginContainer" parent="Button" unique_id=920713370] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 5 +theme_override_constants/margin_top = 5 +theme_override_constants/margin_right = 5 +theme_override_constants/margin_bottom = 5 + +[node name="VBoxContainer" type="VBoxContainer" parent="Button/MarginContainer" unique_id=811068562] +layout_mode = 2 +alignment = 1 + +[node name="AspectRatioContainer" type="AspectRatioContainer" parent="Button/MarginContainer/VBoxContainer" unique_id=1510549408] +custom_minimum_size = Vector2(0, 164) +layout_mode = 2 +size_flags_vertical = 3 +ratio = 1.7778 + +[node name="TextureRect" type="TextureRect" parent="Button/MarginContainer/VBoxContainer/AspectRatioContainer" unique_id=188735628] +layout_mode = 2 +texture = ExtResource("2_q20mg") +expand_mode = 2 + +[node name="Label" type="Label" parent="Button/MarginContainer/VBoxContainer" unique_id=1636360228] +custom_minimum_size = Vector2(50, 0) +layout_mode = 2 +size_flags_vertical = 3 +text = "This is a test +New line and more stuff to make" +autowrap_mode = 2 +clip_text = true +text_overrun_behavior = 3 +max_lines_visible = 2 diff --git a/src/userinterface/dash/scripts/header.gd b/src/userinterface/dash/scripts/header.gd new file mode 100644 index 00000000..ecf4f751 --- /dev/null +++ b/src/userinterface/dash/scripts/header.gd @@ -0,0 +1,36 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/header.gd +# Project: OpenMinerva +# Created Date: 07 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +@onready var navigation_nodes: Array[Node] = get_node("MarginContainer/HBoxContainer").get_children() +@onready var header_account_button: Control = get_node("MarginContainer/HBoxContainer/AccountButton") +@onready var header_account_button_texture = header_account_button.get_node("Button/MarginContainer/HBox/TextureRect") +@onready var header_account_button_name = header_account_button.get_node("Button/MarginContainer/HBox/VBox/Name") +@onready var header_account_button_location = header_account_button.get_node("Button/MarginContainer/HBox/VBox/Location") + + +func _ready(): + Events.connect("dash_active_account_changed", _handle_active_account_changed) + + _setup_header_bar() + return + + +func _setup_header_bar(): + header_account_button.get_node("Button").pressed.connect(Events.emit_signal.bind("dash_switch_tab", "_AccountSelection")) + _handle_active_account_changed(Accounts.active_account) + return + + +func _handle_active_account_changed(_account_id: String) -> void: + GlobalLogger.log("Active account changed: '%s'" % _account_id) + var _account = Accounts.get_account(_account_id) + # TODO: header_account_button_texture + header_account_button_name.text = _account.get("display_name", "Anonymous") + header_account_button_location.text = _account.get("account_server", "local") diff --git a/src/userinterface/dash/scripts/header.gd.uid b/src/userinterface/dash/scripts/header.gd.uid new file mode 100644 index 00000000..92ae523a --- /dev/null +++ b/src/userinterface/dash/scripts/header.gd.uid @@ -0,0 +1 @@ +uid://bd7a7r2u4cbtf diff --git a/src/userinterface/dash/scripts/master.gd b/src/userinterface/dash/scripts/master.gd new file mode 100644 index 00000000..1fd5b83d --- /dev/null +++ b/src/userinterface/dash/scripts/master.gd @@ -0,0 +1,47 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/master.gd +# Project: OpenMinerva +# Created Date: 07 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +@onready var pages: Array[Node] = get_node("MarginContainer/VBoxContainer/Content/Container").get_children() + + +func _ready(): + Events.connect("dash_switch_tab", _handle_switch_tab) + Events.connect("dash_set_state", _handle_dash_state) + + Events.emit_signal("dash_switch_tab", "Home") + return + + +func _handle_switch_tab(tab_name): + GlobalLogger.log("Changing dashboard tab to: '%s'" % tab_name) + for _index in len(pages): + var _target_node = pages[_index] + + if _target_node.name != tab_name: + _target_node.visible = false + continue + + _target_node.visible = true + return + + +func _handle_dash_state(is_open: bool) -> void: + GlobalLogger.log("Changing dashboard state: '%s'" % is_open) + StateManager.update_mouse_state() + visible = is_open + + +func _unhandled_input(event): + if event.is_action_pressed("escape"): + if visible == false: + Events.emit_signal("dash_set_state", true) + else: + Events.emit_signal("dash_set_state", false) + get_viewport().set_input_as_handled() diff --git a/src/userinterface/dash/scripts/master.gd.uid b/src/userinterface/dash/scripts/master.gd.uid new file mode 100644 index 00000000..33a9531c --- /dev/null +++ b/src/userinterface/dash/scripts/master.gd.uid @@ -0,0 +1 @@ +uid://ci5jkh01ixats diff --git a/src/userinterface/dash/scripts/navigation.gd b/src/userinterface/dash/scripts/navigation.gd new file mode 100644 index 00000000..8987e6e9 --- /dev/null +++ b/src/userinterface/dash/scripts/navigation.gd @@ -0,0 +1,42 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/navigation.gd +# Project: OpenMinerva +# Created Date: 07 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +@onready var navigation_nodes: Array[Node] = get_node("MarginContainer/HBoxContainer").get_children() + + +func _ready(): + Events.connect("dash_switch_tab", _handle_switch_tab) + + _setup_dashboard_navigation_bar() + return + + +func _setup_dashboard_navigation_bar(): + for _index in len(navigation_nodes): + var _target_node = navigation_nodes[_index] + var _target_node_button = _target_node.get_node("Button") + + _target_node_button.pressed.connect(Events.emit_signal.bind("dash_switch_tab", _target_node.name)) + + return + + +func _handle_switch_tab(tab_name): + for _index in len(navigation_nodes): + var _target_node = navigation_nodes[_index] + var _target_node_button = _target_node.get_node("Button") + + if _target_node.name != tab_name: + _target_node_button.button_pressed = false + continue + + _target_node_button.button_pressed = true + + return diff --git a/src/userinterface/dash/scripts/navigation.gd.uid b/src/userinterface/dash/scripts/navigation.gd.uid new file mode 100644 index 00000000..c6d3582d --- /dev/null +++ b/src/userinterface/dash/scripts/navigation.gd.uid @@ -0,0 +1 @@ +uid://bkqsi1aebefhj diff --git a/src/userinterface/dash/scripts/pages/account_creation.gd b/src/userinterface/dash/scripts/pages/account_creation.gd new file mode 100644 index 00000000..76997a82 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/account_creation.gd @@ -0,0 +1,39 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/pages/account_creation.gd +# Project: OpenMinerva +# Created Date: 07 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +@onready var _username_node: Control = get_node("HBoxContainer/VBoxContainer/ScrollContainer/VBoxContainer/Username") +@onready var _username_lineedit_node: Control = _username_node.get_node("PanelContainer/MarginContainer/HBoxContainer/MarginContainer/LineEdit") +@onready var _account_server_node: Control = get_node("HBoxContainer/VBoxContainer/ScrollContainer/VBoxContainer/AccountServer") +@onready var _account_server_lineedit_node: Control = _account_server_node.get_node("PanelContainer/MarginContainer/HBoxContainer/MarginContainer/LineEdit") +@onready var _accept_button: Button = get_node("HBoxContainer/VBoxContainer/Accept/Button") + + +func _ready(): + _accept_button.pressed.connect(_create_account) + return + + +func _create_account() -> void: + var _username: String = _username_lineedit_node.text + var _account_server: String = _account_server_lineedit_node.text + var _account_data: Dictionary = { } + var _create_account_response: Dictionary = { } + + _account_data.set("display_name", _username) + _account_data.set("account_server", _account_server) + + _create_account_response = Accounts.create(_account_data, "oauth") + + # Reset page + _username_lineedit_node.text = "" + _account_server_lineedit_node.text = "" + + Events.emit_signal("dash_switch_tab", "_AccountSelection") + return diff --git a/src/userinterface/dash/scripts/pages/account_creation.gd.uid b/src/userinterface/dash/scripts/pages/account_creation.gd.uid new file mode 100644 index 00000000..896a881f --- /dev/null +++ b/src/userinterface/dash/scripts/pages/account_creation.gd.uid @@ -0,0 +1 @@ +uid://b2snjauxtpn22 diff --git a/src/userinterface/dash/scripts/pages/account_selection.gd b/src/userinterface/dash/scripts/pages/account_selection.gd new file mode 100644 index 00000000..9f93f851 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/account_selection.gd @@ -0,0 +1,63 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/pages/account_selection.gd +# Project: OpenMinerva +# Created Date: 07 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +@onready var template_account_listing: PackedScene = preload("res://userinterface/dash/partials/account_button_listing.tscn") +@onready var account_list_container: Control = $"HBoxContainer/VBoxContainer/ScrollContainer/VBoxContainer" +@onready var create_account_button: Control = $"HBoxContainer/VBoxContainer/NavButton/Button" + + +func _ready(): + Events.dash_account_list_loaded.connect(_populate_account_list) + + _populate_account_list() + create_account_button.pressed.connect(Events.emit_signal.bind("dash_switch_tab", "_AccountCreation")) + return + + +func _populate_account_list() -> void: + const TEMPLATE_ACCOUNT_NAME_PATH = "HBoxContainer/Button/MarginContainer/HBox/VBox/Name" + const TEMPLATE_ACCOUNT_DIRECTORY_PATH = "HBoxContainer/Button/MarginContainer/HBox/VBox/Location" + const TEMPLATE_ACCOUNT_PICTURE_PATH = "HBoxContainer/Button/MarginContainer/HBox/TextureRect" + const TEMPLATE_ACCOUNT_BUTTON_PATH = "HBoxContainer/Button" + const TEMPLATE_ACCOUNT_CONFIGURE_BUTTON_PATH = "HBoxContainer/Configure/Button" + const TEMPLATE_ACCOUNT_DELETE_BUTTON_PATH = "HBoxContainer/Delete/Button" + + GlobalLogger.log("Populating account list in '%s'." % name) + var _accounts: Array[Dictionary] = Accounts.get_all() + + # Remove existing listings + for child: Control in account_list_container.get_children(): + child.queue_free() + + for _account: Dictionary in _accounts: + var _template = template_account_listing.instantiate() + var _name_node = _template.get_node(TEMPLATE_ACCOUNT_NAME_PATH) + var _location_node = _template.get_node(TEMPLATE_ACCOUNT_DIRECTORY_PATH) + var _picture_node = _template.get_node(TEMPLATE_ACCOUNT_PICTURE_PATH) + var _button_node = _template.get_node(TEMPLATE_ACCOUNT_BUTTON_PATH) + var _configure_node = _template.get_node(TEMPLATE_ACCOUNT_CONFIGURE_BUTTON_PATH) + var _delete_node = _template.get_node(TEMPLATE_ACCOUNT_DELETE_BUTTON_PATH) + + # Set display visuals + _name_node.text = _account.display_name + _location_node.text = _account.account_server + # TODO: _picture_node.texture = null + + # Add event listeners + _button_node.pressed.connect(Accounts.use.bind(_account.id)) + # TODO: _configure_node + _delete_node.pressed.connect(Accounts.remove.bind(_account.id)) + + # Append + account_list_container.add_child(_template) + + GlobalLogger.log("Added account '%s' to the list." % _account.id) + continue + return diff --git a/src/userinterface/dash/scripts/pages/account_selection.gd.uid b/src/userinterface/dash/scripts/pages/account_selection.gd.uid new file mode 100644 index 00000000..3c56b6d1 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/account_selection.gd.uid @@ -0,0 +1 @@ +uid://dhdqv7d4orjgy diff --git a/src/userinterface/dash/scripts/pages/debug.gd b/src/userinterface/dash/scripts/pages/debug.gd new file mode 100644 index 00000000..c6ed547f --- /dev/null +++ b/src/userinterface/dash/scripts/pages/debug.gd @@ -0,0 +1,22 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/pages/debug.gd +# Project: OpenMinerva +# Created Date: 14 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends "res://userinterface/dash/scripts/pages/left_nav_container.gd" + + +func _ready(): + super._ready() + + Events.dash_switch_tab.connect(_handle_page_opened) + return + + +func _handle_page_opened(page_name) -> void: + if page_name != "Debug": + return + return diff --git a/src/userinterface/dash/scripts/pages/debug.gd.uid b/src/userinterface/dash/scripts/pages/debug.gd.uid new file mode 100644 index 00000000..14859c04 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/debug.gd.uid @@ -0,0 +1 @@ +uid://cnm74wceowx3y diff --git a/src/userinterface/dash/scripts/pages/exit.gd b/src/userinterface/dash/scripts/pages/exit.gd new file mode 100644 index 00000000..ca277a5e --- /dev/null +++ b/src/userinterface/dash/scripts/pages/exit.gd @@ -0,0 +1,28 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/pages/exit.gd +# Project: OpenMinerva +# Created Date: 11 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +@onready var cancel_button: Button = get_node("VBoxContainer/HBoxContainer/Cancel") +@onready var exit_button: Button = get_node("VBoxContainer/HBoxContainer/Exit") + + +func _ready() -> void: + cancel_button.pressed.connect(_cancel_exit) + exit_button.pressed.connect(_exit) + return + + +func _cancel_exit() -> void: + Events.emit_signal("dash_switch_tab", "Home") + return + + +func _exit() -> void: + get_tree().root.propagate_notification(NOTIFICATION_WM_CLOSE_REQUEST) + return diff --git a/src/userinterface/dash/scripts/pages/exit.gd.uid b/src/userinterface/dash/scripts/pages/exit.gd.uid new file mode 100644 index 00000000..2d56c8c7 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/exit.gd.uid @@ -0,0 +1 @@ +uid://cah3jpmu1x72b diff --git a/src/userinterface/dash/scripts/pages/home.gd b/src/userinterface/dash/scripts/pages/home.gd new file mode 100644 index 00000000..50a53065 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/home.gd @@ -0,0 +1,65 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/pages/home.gd +# Project: OpenMinerva +# Created Date: 11 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +@onready var active_sessions_container = get_node("HBoxContainer/VBoxContainer/PanelContainer/MarginContainer/VBoxContainer") +@onready var template_account_session_listing = preload("res://userinterface/dash/partials/home_server_listing.tscn") +@onready var network_m = get_tree().current_scene.get_node("NetworkManager") +@onready var scene_m = get_tree().current_scene.get_node("SceneManager") +@onready var dashboard = get_tree().current_scene.get_node("Dashboard") + + +func _ready() -> void: + Events.connect("session_joined", _show_joined_sessions) + Events.connect("session_left", _show_joined_sessions) + _show_joined_sessions() + + get_node("%CreateNewWorld").clicked.connect(_on_create_new_world_button_pressed) + dashboard.get_node("NewWorld").get_node("%Create").clicked.connect(_on_start_world) + + return + + +func _show_joined_sessions() -> void: + var _sessions = network_m.get_connected_sessions() + + # Remove existing server listings + for node in active_sessions_container.get_children(): + node.queue_free() + + # Add listings to the container + for session in _sessions: + var _entry = template_account_session_listing.instantiate() + var _entry_label = _entry.get_node("MarginContainer/HBoxContainer/VBoxContainer/Label") + var _entry_close = _entry.get_node("MarginContainer/HBoxContainer/AspectRatioContainer/Button") + + _entry_label.text = session.id + _entry.pressed.connect(scene_m.set_active_session.bind(session.id)) + _entry_close.pressed.connect(network_m.leave_server.bind(session.id)) + active_sessions_container.add_child(_entry) + return + + +func _on_create_new_world_button_pressed() -> void: + dashboard.get_node("NewWorld").visible = true + return + + +func _on_start_world() -> void: + var _world_name: String = dashboard.get_node("NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer/WorldNameVal").text + var _world_base: Enum.BaseLevel = dashboard.get_node("NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer/BaseVal").selected + var _world_privacy: Enum.PrivacyLevel = dashboard.get_node("NewWorld/BackgroundColor/MarginContainer/VBoxContainer/VBoxContainer/PrivacyVal").selected + + network_m.start_server(0, _world_base) + _show_joined_sessions() + + # HACK: For some reason, the active session does not get updated when I expect it to. This will force the active session to switch to the newly created session. + var _sessions: Array = network_m.get_connected_sessions() + scene_m.set_active_session(_sessions.back().name) + return diff --git a/src/userinterface/dash/scripts/pages/home.gd.uid b/src/userinterface/dash/scripts/pages/home.gd.uid new file mode 100644 index 00000000..faa232eb --- /dev/null +++ b/src/userinterface/dash/scripts/pages/home.gd.uid @@ -0,0 +1 @@ +uid://behsvrk7cf3e3 diff --git a/src/userinterface/dash/scripts/pages/instance.gd b/src/userinterface/dash/scripts/pages/instance.gd new file mode 100644 index 00000000..0727d034 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/instance.gd @@ -0,0 +1,61 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/pages/instance.gd +# Project: OpenMinerva +# Created Date: 08 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends "res://userinterface/dash/scripts/pages/left_nav_container.gd" + +var session_settings: Dictionary = { + "privacy": 0, +} + +@onready var scene_m = get_tree().current_scene.get_node("SceneManager") +@onready var network_m = get_tree().current_scene.get_node("NetworkManager") +@onready var _app_spawnable_file_handling = get_tree().current_scene.get_node("SpawnableFileHandling") +@onready var privacy_settings: Control = get_node("HBox/Right/Hosting/ScrollContainer/VBoxContainer/VBoxContainer/Privacy/PanelContainer/MarginContainer/HBoxContainer/MarginContainer/OptionButton") +@onready var save_hosting_button = get_node("HBox/Right/Hosting/ScrollContainer/VBoxContainer/Save/Button") +@onready var _save_world_button = get_node("%SaveWorld") +@onready var _instance_name: Control = get_node("%InstanceName") + + +func _ready(): + super._ready() + save_hosting_button.pressed.connect(_save_hosting_settings) + + _save_world_button.clicked.connect(_save_world) + return + + +func _save_hosting_settings() -> void: + var _privacy_enum: Enum.PrivacyLevel = Enum.PrivacyLevel.INVITE + + session_settings.set("privacy", privacy_settings.selected) + + _post_update() + return + + +func _post_update() -> void: + var _sessions = network_m.get_connected_sessions() + var _current_session_id = scene_m.active_session + + var _current_session_db_index = _sessions.find_custom(func(sess): return sess.name == _current_session_id) + var _current_session = _sessions[_current_session_db_index] + + _current_session.set("name", _instance_name.get_value()) + _current_session.set("privacy", session_settings.privacy) + + network_m.update_server(_current_session_id, _current_session) + + return + + +func _save_world() -> void: + var _root_node: Node3D = scene_m.get_master_root(scene_m.active_session) + var _name: String = _instance_name.get_value() + + _app_spawnable_file_handling.save_spawnable(_root_node, _name) + return diff --git a/src/userinterface/dash/scripts/pages/instance.gd.uid b/src/userinterface/dash/scripts/pages/instance.gd.uid new file mode 100644 index 00000000..41af3fca --- /dev/null +++ b/src/userinterface/dash/scripts/pages/instance.gd.uid @@ -0,0 +1 @@ +uid://cs3l7uq2q5uvo diff --git a/src/userinterface/dash/scripts/pages/left_nav_container.gd b/src/userinterface/dash/scripts/pages/left_nav_container.gd new file mode 100644 index 00000000..23bea2a9 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/left_nav_container.gd @@ -0,0 +1,55 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/pages/left_nav_container.gd +# Project: OpenMinerva +# Created Date: 07 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +@onready var navigation_nodes: Array[Node] = get_node("HBox/Left").get_children() +@onready var pages: Array[Node] = get_node("HBox/Right").get_children() + + +func _ready(): + var _first_navigation_node_name: String = navigation_nodes[0].name + + _setup_navigation() + _handle_switch_tab(_first_navigation_node_name) + return + + +func _setup_navigation(): + GlobalLogger.log("Setting up navigation for '%s'" % name) + for index in len(navigation_nodes): + var _target_node = navigation_nodes[index] + var _target_node_button = _target_node.get_node("Button") + + _target_node_button.pressed.connect(_handle_switch_tab.bind(_target_node.name)) + + return + + +func _handle_switch_tab(tab_name): + GlobalLogger.log("Changing to page '%s' in '%s'" % [tab_name, name]) + + for _index in len(navigation_nodes): + var _target_node = navigation_nodes[_index] + var _target_node_button = _target_node.get_node("Button") + + if _target_node.name != tab_name: + _target_node_button.button_pressed = false + continue + + _target_node_button.button_pressed = true + + for _index in len(pages): + var _target_node = pages[_index] + + if _target_node.name != tab_name: + _target_node.visible = false + continue + + _target_node.visible = true + return diff --git a/src/userinterface/dash/scripts/pages/left_nav_container.gd.uid b/src/userinterface/dash/scripts/pages/left_nav_container.gd.uid new file mode 100644 index 00000000..3d6dc3af --- /dev/null +++ b/src/userinterface/dash/scripts/pages/left_nav_container.gd.uid @@ -0,0 +1 @@ +uid://t575b8ljyeap diff --git a/src/userinterface/dash/scripts/pages/sessions.gd b/src/userinterface/dash/scripts/pages/sessions.gd new file mode 100644 index 00000000..fa5b6379 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/sessions.gd @@ -0,0 +1,105 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/pages/sessions.gd +# Project: OpenMinerva +# Created Date: 08 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Control + +var _session_query = preload("res://userinterface/session_query.gd").new() + +@onready var template_world_listing: PackedScene = preload("res://userinterface/dash/partials/session_listing.tscn") +@onready var world_listing_grid: GridContainer = get_node("HBox/Right/VBoxContainer/ScrollContainer/GridContainer") +@onready var tag_nodes: Array[Node] = get_node("HBox/Left").get_children() +@onready var network_m = get_tree().current_scene.get_node("NetworkManager") + + +func _ready(): + Events.connect("dash_switch_tab", _handle_switch_tab) + + _setup_navigation() + return + + +func _handle_switch_tab(tab_name) -> void: + if tab_name != "Sessions": + return + + # TODO: Make a more robust active_account detection mechanism. + if Accounts.active_account == "": + return + + # TODO: Check if we need to authenticate, if so + for _session_server in SettingsManager.get_session_servers(): + await _session_query.authenticate(_session_server.url) + + # Get a list of all sessions from our saved sessions_list + var session_list = await _session_query.get_sessions() + + # Remove all entries in the list + _remove_all_listings() + + # In our flat array, add all sessions to the view + for session in session_list: + _insert_world_into_session_listing(session) + return + + +func _remove_all_listings() -> void: + for _session_listing in world_listing_grid.get_children(): + _session_listing.queue_free() + + GlobalLogger.log("Removed all listings from the session list.") + return + + +func _insert_world_into_session_listing(session: Dictionary) -> void: + var _world = template_world_listing.instantiate() + var _world_title = _world.get_node("Button/MarginContainer/VBoxContainer/Label") + var _world_thumbnail = _world.get_node("Button/MarginContainer/VBoxContainer/AspectRatioContainer/TextureRect") + var _button = _world.get_node("Button") + + _world_title.text = session.get("sessionName", "Unknown session name.") + _world_thumbnail.set_texture(load(session.get("sessionThumbnail", "res://resources/icons/1280x720.webp"))) + + _button.pressed.connect(network_m.join_server.bind(session.url, session.port)) + + world_listing_grid.add_child(_world) + return + + +func _setup_navigation(): + GlobalLogger.log("Setting up navigation for '%s'" % name) + for index in len(tag_nodes): + var _target_node = tag_nodes[index] + var _target_node_button = _target_node.get_node("Button") + + _target_node_button.pressed.connect(_handle_filter_selection.bind(_target_node.name)) + + return + + +func _handle_filter_selection(tab_name): + for _index in len(tag_nodes): + var _target_node = tag_nodes[_index] + var _target_node_button = _target_node.get_node("Button") + + if _target_node.name != tab_name: + _target_node_button.button_pressed = false + continue + + # NOTE: By the time we have the filter button clicked, it is registered as not pressed. + # At this point, if our target node is registered as disabled, it is actually enabled. + # The desired result is to disable the selected filter button. + if _target_node_button.button_pressed == false: + GlobalLogger.log("Disable filtering results '%s' in '%s'" % [tab_name, name]) + _target_node_button.button_pressed = false + continue + + GlobalLogger.log("Filtering results to '%s' in '%s'" % [tab_name, name]) + _target_node_button.button_pressed = true + continue + + return diff --git a/src/userinterface/dash/scripts/pages/sessions.gd.uid b/src/userinterface/dash/scripts/pages/sessions.gd.uid new file mode 100644 index 00000000..e8f82c54 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/sessions.gd.uid @@ -0,0 +1 @@ +uid://g1gvftyku5mb diff --git a/src/userinterface/dash/scripts/pages/settings.gd b/src/userinterface/dash/scripts/pages/settings.gd new file mode 100644 index 00000000..ac0e3c91 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/settings.gd @@ -0,0 +1,59 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/pages/settings.gd +# Project: OpenMinerva +# Created Date: 07 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends "res://userinterface/dash/scripts/pages/left_nav_container.gd" + +@onready var _session_server_list_container = get_node("HBox/Right/Config/InputDropdown/VBoxContainer/MarginContainer2/PanelContainer/VBoxContainer/VBoxContainer") +@onready var _templates_session_server_listing = preload("res://userinterface/dash/partials/removable_string_listing.tscn") +@onready var _add_session_server_button = get_node("HBox/Right/Config/InputDropdown/VBoxContainer/MarginContainer2/PanelContainer/VBoxContainer/InputString/PanelContainer/MarginContainer/HBoxContainer/AspectRatioContainer/MarginContainer/Button") + + +func _ready(): + super._ready() + + Events.dash_switch_tab.connect(_handle_page_opened) + Events.dash_settings_updated.connect(_load_session_servers) + _add_session_server_button.pressed.connect(_add_session_server) + + return + + +func _handle_page_opened(page_name) -> void: + if page_name != "Settings": + return + _load_session_servers() + return + + +func _load_session_servers() -> void: + GlobalLogger.log("Loading session servers.") + const _LABEL_PATH = "MarginContainer/HBoxContainer/Label" + const _REMOVE_BUTTON_PATH = "MarginContainer/HBoxContainer/AspectRatioContainer/Button" + + var _servers = SettingsManager.get_session_servers() + for _existing_listing in _session_server_list_container.get_children(): + _existing_listing.queue_free() + + for server in _servers: + var _template = _templates_session_server_listing.instantiate() + _template.get_node(_LABEL_PATH).text = server.url + _template.get_node(_REMOVE_BUTTON_PATH).pressed.connect(_remove_session_server.bind(server.url)) + _session_server_list_container.add_child(_template) + return + + +func _add_session_server() -> void: + var _session_server_input_field = get_node("HBox/Right/Config/InputDropdown/VBoxContainer/MarginContainer2/PanelContainer/VBoxContainer/InputString/PanelContainer/MarginContainer/HBoxContainer/MarginContainer/LineEdit") + SettingsManager.add_session_server(_session_server_input_field.text) + _session_server_input_field.text = "" + return + + +func _remove_session_server(server_url: String) -> void: + SettingsManager.remove_session_server(server_url) + return diff --git a/src/userinterface/dash/scripts/pages/settings.gd.uid b/src/userinterface/dash/scripts/pages/settings.gd.uid new file mode 100644 index 00000000..f6eb91cc --- /dev/null +++ b/src/userinterface/dash/scripts/pages/settings.gd.uid @@ -0,0 +1 @@ +uid://ba1v2y41s8drb diff --git a/src/userinterface/dash/scripts/pages/spawnables.gd b/src/userinterface/dash/scripts/pages/spawnables.gd new file mode 100644 index 00000000..2ea38191 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/spawnables.gd @@ -0,0 +1,180 @@ +# --- License +# File: /client/src/userinterface/dash/scripts/pages/spawnables.gd +# Project: OpenMinerva +# Created Date: 11 May 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License + +extends "res://userinterface/dash/scripts/pages/left_nav_container.gd" + +const BASE_DIR = "user://inventory/" + +var current_dir: Array[String] = [] +var _action_buttons: Array[Node] = [] +var _template_button = preload("res://userinterface/dash/partials/category_button.tscn") +var _selected_folder: Node + +@onready var _app_spawnable_file_handling_m = get_tree().current_scene.get_node("SpawnableFileHandling") +@onready var _path_container = $"HBox/Right/Local/Path" +@onready var _folder_container = $"HBox/Right/Local/Folders" +@onready var _file_container = $"HBox/Right/Local/Files" + +@onready var _create_folder_btn = $"HBox/Right/Local/Actions/NewFolder/Button" +@onready var _delete_selected_btn = $"HBox/Right/Local/Actions/DeleteSelected/Button" + +@onready var _folder_creation_dialog = $"FolderCreation" +@onready var _deletion_dialog = $"DeleteConfirmation" + +func _ready(): + super._ready() + + Events.dash_switch_tab.connect(_handle_page_opened) + + _create_folder_btn.pressed.connect(_open_file_dialog) + _delete_selected_btn.pressed.connect(_open_delete_dialog) + + _folder_creation_dialog.confirmed.connect(_create_folder) + _deletion_dialog.confirmed.connect(_delete_selected) + + _build_view() + return + +func _handle_page_opened(page_name) -> void: + if page_name != "Spawnables": + return + + return + +func _build_view() -> void: + var _filelist = FileManager.get_inv_filelist() + var _files = _filelist["files"] + var _dirs = _filelist["directories"] + + await _clear_view() + + for file in _files: + var _file_name = file.get_basename() + var _listing = _create_button(_file_name, "", _load_file.bind(file)) + _file_container.add_child(_listing) + continue + + for folder in _dirs: + var _listing = _create_button(folder, "Folder", _dir_deeper.bind(folder)) + _folder_container.add_child(_listing) + continue + + # Path + # Label + var _label_label = Label.new() + _label_label.text = "Path:" + _path_container.add_child(_label_label) + + # Root path + var _base_listing = _create_button("Base", "", _dir_relocate.bind(-1), Vector2(200, 35)) + _path_container.add_child(_base_listing) + + # Any lower path + for index in FileManager.spawnables_dir.size(): + var _path = FileManager.spawnables_dir[index] + var _label = Label.new() + var _listing = _create_button(_path, "", _dir_relocate.bind(index), Vector2(200, 35)) + + _label.text = "/" + + _path_container.add_child(_label) + _path_container.add_child(_listing) + continue + return + +func _dir_deeper(path: String) -> void: + FileManager.move_inv_deeper(path) + _build_view() + return + +func _dir_relocate(index: int) -> void: + FileManager.move_inv_relocate(index + 1) + _build_view() + return + +func _load_file(file_name: String) -> void: + var _path = FileManager._current_path() + "/" + file_name + _app_spawnable_file_handling_m.load_spawnable(_path) + return + +func _create_button(btn_name: String, icon: String = "", double_click = null, min_size: Vector2 = Vector2(350, 50)) -> Node: + var _listing = _template_button.instantiate() + _listing.set_meta("label", btn_name) + _listing.selected_icon = icon + _listing.custom_minimum_size = min_size + _listing.toggle = true + + _listing.get_node("Button").pressed.connect(_button_selected.bind(_listing)) + + if double_click != null: + # TODO: Check if double_click param is a function + _listing.double_clicked.connect(double_click) + + _action_buttons.append(_listing) + return _listing + +func _button_selected(selected: Node) -> void: + var _button_name = selected.get_meta("label") + + for button in _action_buttons: + button.get_node("Button").button_pressed = false + + selected.get_node("Button").button_pressed = true + + _selected_folder = selected + return + +func _clear_view() -> void: + _action_buttons = [] + _selected_folder = null + + for child in _folder_container.get_children(): + child.queue_free() + + for child in _file_container.get_children(): + child.queue_free() + + for child in _path_container.get_children(): + child.queue_free() + + await get_tree().process_frame + + return + +func _open_file_dialog() -> void: + _folder_creation_dialog.show() + return + +func _create_folder() -> void: + var _folder_name = _folder_creation_dialog.get_node("LineEdit").text + GlobalLogger.log("Creating folder '%s'" % _folder_name) + FileManager.create_folder(_folder_name) + _folder_creation_dialog.get_node("LineEdit").text = "" + _build_view() + return + +func _open_delete_dialog() -> void: + if _selected_folder == null: + GlobalLogger.log("Tried to open the delete dialog without anything selected.", Enum.LogLevel.WARNING) + return + + var _folder_name = _selected_folder.get_meta("label") + var _text = "Are you sure you want to delete\n\"%s\"" % _folder_name + + _deletion_dialog.dialog_text = _text + + _deletion_dialog.show() + return + +func _delete_selected() -> void: + var _folder_name = _selected_folder.get_meta("label") + GlobalLogger.log("Deleting Item '%s'" % _folder_name) + FileManager.delete_folder(_folder_name) + _build_view() + return diff --git a/src/userinterface/dash/scripts/pages/spawnables.gd.uid b/src/userinterface/dash/scripts/pages/spawnables.gd.uid new file mode 100644 index 00000000..046e01d2 --- /dev/null +++ b/src/userinterface/dash/scripts/pages/spawnables.gd.uid @@ -0,0 +1 @@ +uid://2vk6cxto4xw diff --git a/src/userinterface/dash/shaders/blur.gdshader b/src/userinterface/dash/shaders/blur.gdshader new file mode 100644 index 00000000..c9bad4e4 --- /dev/null +++ b/src/userinterface/dash/shaders/blur.gdshader @@ -0,0 +1,25 @@ +shader_type canvas_item; +render_mode blend_mix; + +uniform vec3 color : source_color = vec3(1.0); +uniform float blur_amount : hint_range(0.1, 8.0) = 4.0; +uniform float roughness : hint_range(0.0, 1.0, 0.01) = 0.2; +uniform float roughness_affect : hint_range(0.0, 1.0, 0.01) = 0.0; +uniform sampler2D SCREEN_TEXTURE : hint_screen_texture, filter_linear_mipmap; + +float overlay(float base, float blend) { + float limit = step(0.5, base); + return mix(2.0 * base * blend, 1.0 - 2.0 * (1.0 - base) * (1.0 - blend), limit); +} + +void fragment() { + vec2 screen_uv = SCREEN_UV; + float blur = mix(blur_amount, overlay(blur_amount, 1.0 - roughness), roughness_affect); + + vec3 glass = textureLod(SCREEN_TEXTURE, screen_uv, blur).rgb; + + float coat_amount = pow(1.0, 1.0); + vec3 final_color = color * mix(vec3(1.0), glass, coat_amount); + + COLOR = vec4(final_color, 1.0); +} diff --git a/src/userinterface/dash/shaders/blur.gdshader.uid b/src/userinterface/dash/shaders/blur.gdshader.uid new file mode 100644 index 00000000..3e24681f --- /dev/null +++ b/src/userinterface/dash/shaders/blur.gdshader.uid @@ -0,0 +1 @@ +uid://bwr4b0mhgi4w6 diff --git a/src/userinterface/session_query.gd b/src/userinterface/session_query.gd new file mode 100644 index 00000000..ff7a673d --- /dev/null +++ b/src/userinterface/session_query.gd @@ -0,0 +1,96 @@ +# --- License +# File: /client/src/userinterface/session_query.gd +# Project: OpenMinerva +# Created Date: 31 March 2026 +# Copyright (c) 2026 OpenMinerva +# License: MIT License +# Authors: Armored Dragon +# --- License +extends Node + +func authenticate(url: String) -> Dictionary: + var _return_dict: Dictionary = { "ok": false, "error": "" } + + # TODO: Do we need a new authentication key? + if Accounts.get_session_server_token(url) == "": + var url_deconstructed = UrlParser.deconstruct(url) + if url_deconstructed.ok == false: + var ERROR_MESSAGE = "Failed to deconstruct the url '%s'" % url + GlobalLogger.log(ERROR_MESSAGE, Enum.LogLevel.WARNING) + _return_dict.error = ERROR_MESSAGE + return _return_dict + url_deconstructed = url_deconstructed.data + + var _account = Accounts.get_account(Accounts.active_account) + var body: Dictionary = { + "id_token": _account.auth.id_token, + "challenge": "challenge value", + } + var authentication_response = await HTTP.req(HTTPClient.Method.METHOD_POST, url_deconstructed.host, "/api/v1/getAuthenticationKey", url_deconstructed.port, ["Accept: application/json", "Content-Type: application/json"], JSON.stringify(body)) + + _authentication_request_received(url_deconstructed.host, authentication_response) + + # Get id_token of currently logged in user + # Sign challenge using private key + # Send request {id_token, challenge} + + # ... Server does its thing ... + + # Response contains api key, or error + + return _return_dict + +func get_sessions() -> Array: + var _return_arr = [] + var _session_servers = SettingsManager.get_session_servers() + + for server in _session_servers: + var search = "" + var tags = "" + + var url_deconstructed = UrlParser.deconstruct(server.url) + if url_deconstructed.ok == false: + GlobalLogger.log("Failed to parse the session server URL.", Enum.LogLevel.INFO) + continue + url_deconstructed = url_deconstructed.data + var _api_key = Accounts.get_session_server_token(url_deconstructed.host) + var form_parts := [ + "search=%s" % search, + "tags=%s" % tags, + ] + var form_string: String = "&".join(form_parts) + + var sessions_response = await HTTP.req(HTTPClient.Method.METHOD_GET, url_deconstructed.host, "/api/v1/getSessions?%s" % form_string, url_deconstructed.port, ["Accept: application/json", "Content-Type: application/x-www-form-urlencoded", "x-api-key: %s" % _api_key]) + + var sessions_in_server = _session_request_received(url_deconstructed.host, sessions_response) + # TODO: Validate request health + _return_arr.append_array(sessions_in_server.data) + + return _return_arr + +func _session_request_received(_host: String, response: Dictionary) -> Dictionary: + var _return_arr = { "ok": false, "error": "", "data": null } + + # TODO: If response.ok + # TODO: Validate is valid JSON + # TODO: Validate key exists + var response_parsed = JSON.parse_string(response.body) + + _return_arr.data = response_parsed.data + _return_arr.ok = true + + return _return_arr + +func _authentication_request_received(_host: String, response: Dictionary) -> Dictionary: + var _return_arr = { "ok": false, "error": "", "data": null } + + # TODO: If response.ok + # TODO: Validate is valid JSON + # TODO: Validate key exists + var _api_key = JSON.parse_string(response.body).key + + Accounts.set_session_server_token(_host, _api_key) + + # If authentication succeeded, record data + # Else report error. + return _return_arr diff --git a/src/userinterface/session_query.gd.uid b/src/userinterface/session_query.gd.uid new file mode 100644 index 00000000..6002c346 --- /dev/null +++ b/src/userinterface/session_query.gd.uid @@ -0,0 +1 @@ +uid://dbrabs53sf0x5