diff --git a/LICENSE b/LICENSE index cbdd355..8f854fe 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,13 @@ -MIT License +We use two licenses for this project: -Copyright (c) 2023 GDQuest Demos +- The source code (script files, scene files, shaders, and generally all Godot-generated resources) is available under the MIT license. +- Art assets (image textures and 3D models) are [CC-By 4.0](https://creativecommons.org/licenses/by/4.0/). In short, if you reuse art from the project, you can add this to your credits: `Additional assets CC-By 4.0 GDQuest (https://www.gdquest.com/)`. + +You can find the details for each license below. + +## MIT License + +Copyright (c) 2024 GDQuest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -19,3 +26,19 @@ 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. + +## CC-By 4.0 License + +You are free to: + +- Share — copy and redistribute the material in any medium or format for any purpose, even commercially. +- Adapt — remix, transform, and build upon the material for any purpose, even commercially. + +Under the following terms: + +1. Attribution — You must give appropriate credit , provide a link to the license, and indicate if changes were made . You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. +2. No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits. + +The licensor cannot revoke these freedoms as long as you follow the license terms. + +Read the full Creative Commons Attribution 4.0 International Public License: https://creativecommons.org/licenses/by/4.0/legalcode \ No newline at end of file diff --git a/README.md b/README.md index 22a9069..fa4c153 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,12 @@ # Godot Tours: 101 - The Godot Editor +*Updated to Godot 4.3* + A free and open-source tour using the [Godot Tours](https://github.com/GDQuest/godot-tours/) add-on. If you're new to gamedev and you want to download the tour and run it, head over to the [GDQuest website](http://gdquest.com/tutorial/godot/learning-paths/godot-tours-101/) for detailed instructions. -**Minimum required Godot version: Godot 4.2 standard** (*not* the .NET edition) +**Minimum required Godot version: Godot 4.3 standard** (*not* the .NET edition) ![Screenshot of one of the first steps of the tour, showing the running game and a bubble inviting you to run the game.](readme/tour-101-screenshot-01.webp) @@ -43,4 +45,3 @@ Given our limited resources and the work this project represents, it is provided Except for bug fixes, we will generally not accept contributions to this tour. If you'd like to create a different tour based on this one, please feel free to fork the project. Note that any code change or bug related to the `godot_tours` add-on itself should be submitted to the [Godot Tours repository](https://github.com/GDQuest/godot-tours/) instead. - diff --git a/addons/gdquest_sparkly_bag/README.md b/addons/gdquest_sparkly_bag/README.md new file mode 100644 index 0000000..83cf4f4 --- /dev/null +++ b/addons/gdquest_sparkly_bag/README.md @@ -0,0 +1,41 @@ +# GDQuest Sparkly Bag Utils + +Is a collection of utilities dealing with repeating patterns that we discovered in time. + +They're not necessarily related to each other, and some are generic while others are very specific. + +The collection includes: + +- A post import script for GLTF resources that cleans up any inconsistencies with naming conventions and adds support for `AnimatableBody3D` convention via the `-anim` suffix. +- A utility library called `SparklyBagUtils`. + +## ✗ WARNING + +> Compatible: Godot `>= v4.0` + +## ✓ Install + +### Manual + +1. Copy the contents of this folder into `res://addons/gdquest_sparkly_bag/`. +1. Profit. + +### gd-plug + +1. Install **gd-plug** using the Godot Asset Library. +1. Save the following code into the file `res://plug.gd` (create the file if necessary): + + ```gdscript + #!/usr/bin/env -S godot --headless --script + extends "res://addons/gd-plug/plug.gd" + + + func _plugging() -> void: + plug( + "git@github.com:GDQuest/godot-addons.git", + {include = ["addons/gdquest_sparkly_bag"]} + ) + ``` + +1. On Linux, make the `res://plug.gd` script executable with `chmod +x plug.gd`. +1. Using the command line, run `./plug.gd install` or `godot --headless --script plug.gd install`. diff --git a/addons/gdquest_sparkly_bag/autoloads/reset_net_injector.gd b/addons/gdquest_sparkly_bag/autoloads/reset_net_injector.gd new file mode 100644 index 0000000..2046e18 --- /dev/null +++ b/addons/gdquest_sparkly_bag/autoloads/reset_net_injector.gd @@ -0,0 +1,22 @@ +extends Node + +var reset_net_y_global_position := -10.0 + + +func _ready() -> void: + var scene := get_tree().current_scene + if scene is Node3D: + var reset_net := Area3D.new() + reset_net.area_entered.connect(_on_node_entered) + reset_net.body_entered.connect(_on_node_entered) + + var collision_shape := CollisionShape3D.new() + collision_shape.shape = WorldBoundaryShape3D.new() + reset_net.add_child(collision_shape) + scene.add_child(reset_net) + reset_net.global_position.y = reset_net_y_global_position + + +func _on_node_entered(node: Node3D) -> void: + if node.has_method("reset"): + node.reset() diff --git a/addons/gdquest_sparkly_bag/scene_post_import.gd b/addons/gdquest_sparkly_bag/scene_post_import.gd new file mode 100644 index 0000000..40696b2 --- /dev/null +++ b/addons/gdquest_sparkly_bag/scene_post_import.gd @@ -0,0 +1,75 @@ +@tool +extends EditorScenePostImport + +const Utils := preload("sparkly_bag_utils.gd") + +const SUFFIXES = ["-anim", "-col"] +const AABB_SIZE := "aabb_size" + + +func _post_import(scene: Node) -> Object: + for node in scene.find_children("*"): + if node.name.ends_with("-anim") and node is MeshInstance3D: + node.create_convex_collision() + var animatable_body := AnimatableBody3D.new() + animatable_body.name = "AnimatableBody3D" + animatable_body.sync_to_physics = false + for child in node.get_children(): + # BUG: where the collision shape doesn't get transformed if `sync_to_physics = true` + child.replace_by(animatable_body) + child.free() + node.name = node.name.replace("-anim", "") + + elif node.name.ends_with("-rigid"): + node.name = node.name.replace("-rigid", "") + + elif node is AnimationPlayer: + for animation_name in node.get_animation_list(): + var animation_library: AnimationLibrary = node.get_animation_library("") + var animation: Animation = node.get_animation(animation_name) + if animation_name.ends_with("-noimp"): + animation_library.remove_animation(animation_name) + continue + + for track_index in range(animation.get_track_count()): + var path := animation.track_get_path(track_index) + var clean_path := "" + for name_index in range(path.get_name_count()): + for suffix in SUFFIXES: + var path_name := path.get_name(name_index) + if path_name.ends_with(suffix): + clean_path = clean_path.path_join(path_name.replace(suffix, "")) + break + + if not clean_path.is_empty(): + animation.track_set_path(track_index, clean_path) + + if node is MeshInstance3D: + var aabb: AABB = node.mesh.get_aabb() + for index in range(node.mesh.get_surface_count()): + var material_file_name: StringName = ( + "%s.tres" % node.mesh.get("surface_%d/name" % index).to_snake_case() + ) + var found := Utils.fs_find(material_file_name) + if found.return_code != Utils.ReturnCode.OK: + return scene + + if found.is_empty(): + var message := ( + "[ScenePostImport:WARN] Missing material `%s` for `%s`" + % [material_file_name, node.name] + ) + print(message) + else: + for path: String in found.result: + var material := load(path) + if material is ShaderMaterial: + material.set_shader_parameter(AABB_SIZE, aabb.size) + node.mesh.surface_set_material(index, material) + var message := ( + "[ScenePostImport:INFO] Material found @ `%s` for `%s`" + % [path, node.name] + ) + print(message) + break + return scene diff --git a/addons/gdquest_sparkly_bag/sparkly_bag_coroutine.gd b/addons/gdquest_sparkly_bag/sparkly_bag_coroutine.gd new file mode 100644 index 0000000..3a4aa0d --- /dev/null +++ b/addons/gdquest_sparkly_bag/sparkly_bag_coroutine.gd @@ -0,0 +1,32 @@ +class Inner: + signal finished + + var _count := 0 + + func _init(count: int) -> void: + _count = count + + func check() -> void: + _count -= 1 + if _count == 0: + finished.emit() + + +static func parallel(coroutines: Array[Callable]) -> Array: + var results := [] + var inner := Inner.new(coroutines.size()) + for coroutine in coroutines.map( + func(coroutine: Callable) -> Callable: return func() -> void: + results.push_back(await coroutine.call()) + inner.check() + ): + coroutine.call() + await inner.finished + return results + + +static func sequence(coroutines: Array[Callable]) -> Array: + var result := [] + for coroutine in coroutines: + result.push_back(await coroutine.call()) + return result diff --git a/addons/gdquest_sparkly_bag/sparkly_bag_utils.gd b/addons/gdquest_sparkly_bag/sparkly_bag_utils.gd new file mode 100644 index 0000000..5758a0a --- /dev/null +++ b/addons/gdquest_sparkly_bag/sparkly_bag_utils.gd @@ -0,0 +1,141 @@ +const SEP := "/" + +enum ReturnCode { OK, FAIL, WARN, SKIP, EXE_NOT_FOUND = 127, CODE_NOT_FOUND } + + +class Result: + var return_code := ReturnCode.OK + var result: Variant = null + + func _init(result: Variant = null) -> void: + self.result = result + + +static func fs_find(pattern: String = "*", path: String = "res://", do_include_hidden := true, do_fail := true) -> Result: + const TAG := { ReturnCode.FAIL: "FAIL", ReturnCode.SKIP: "SKIP" } + + var result: Result = Result.new([]) + var is_file := not pattern.ends_with(SEP) + pattern = pattern.rstrip(SEP) + + var dir := DirAccess.open(path) + dir.include_hidden = do_include_hidden + + if DirAccess.get_open_error() != OK: + result.return_code = ReturnCode.FAIL if do_fail else ReturnCode.SKIP + printerr("%s: could not open [%s]" % [TAG[result.return_code], path]) + return result + + if dir.list_dir_begin() != OK: + result.return_code = ReturnCode.FAIL if do_fail else ReturnCode.SKIP + printerr("%s: could not list contents of [%s]" % [TAG[result.return_code], path]) + return result + + path = dir.get_next() + while path.is_valid_filename(): + var new_path: String = dir.get_current_dir().path_join(path) + if dir.current_is_dir(): + if not is_file and (path == pattern or new_path.match(pattern)): + result.result.push_back(new_path) + result.result += fs_find(pattern, new_path).result + elif path == pattern or new_path.match(pattern): + result.result.push_back(new_path) + path = dir.get_next() + return result + + +static func fs_remove_dir(base_path: String) -> void: + if not DirAccess.dir_exists_absolute(base_path): + return + + var found := fs_find("*", base_path) + for path: String in found.result: + DirAccess.remove_absolute(path) + + found = fs_find("*/", base_path) + found.result.reverse() + for path in found.result: + DirAccess.remove_absolute(path) + DirAccess.remove_absolute(base_path) + + +static func fs_copy_dir(from_path: String, to_path: String, ignore: Array[String] = []) -> ReturnCode: + var dir := DirAccess.open(from_path) + from_path = dir.get_current_dir() + var from_base_path := from_path.get_base_dir() + var found := fs_find("*", from_path) + if found.return_code != ReturnCode.OK: + return found.return_code + + for file_path: String in found.result: + if ignore.any(func(p: String) -> bool: return file_path.match(p)): + continue + var destination_file_path := file_path.replace(from_base_path, to_path) + var destination_dir_path := destination_file_path.get_base_dir() + DirAccess.make_dir_recursive_absolute(destination_dir_path) + DirAccess.copy_absolute(file_path, destination_file_path) + return found.return_code + + +static func os_execute(exe: String, args: Array, do_read_stderr := true) -> ReturnCode: + var output := [] + var return_code := OS.execute(exe, args, output, do_read_stderr) + for line in output: + print_rich(line) + + var is_fail := ( + not return_code in ReturnCode.values() + or output.any(func(s: String) -> bool: return "FAIL" in s) + ) + return ReturnCode.FAIL if is_fail else (return_code as ReturnCode) + + +static func os_parse_user_args(help_description := [], supported_args := []) -> Result: + var result := Result.new({args = {}}) + + const ARG_HELP := ["-h", "--help", "Show this help message."] + supported_args = [ARG_HELP] + supported_args + + var is_arg_predicate := func(s: String) -> bool: return s.begins_with("-") + var arg_to_help := func(a: Array) -> String: + var args := a.filter(is_arg_predicate) + var help_message := a.filter(func(s: String) -> bool: return not s.begins_with("-")) + return " %s" % "\n\t".join([" ".join(args), "".join(help_message)]) + var help_message := help_description + ["Arguments"] + supported_args.map(arg_to_help) + result.result.help_message = "\n".join(help_message) + + result.result.user_args = OS.get_cmdline_user_args() + if not ARG_HELP.filter(func(a: String) -> bool: return a in result.result.user_args).is_empty(): + print_rich(result.result.help_message) + return result + + var flat_supported_args := flatten(supported_args).filter(is_arg_predicate) + var unknown_args: Array[String] = [] + for arg: String in result.result.user_args: + var parts := arg.split("=") + var key := parts[0] + if key in flat_supported_args: + result.result.args[key] = parts[1] if parts.size() == 2 else null + else: + unknown_args.push_back(key) + + if not unknown_args.is_empty(): + var message := [ + "Unknown command-line arguments %s." % str(unknown_args), + "Supported arguments %s." % str(flat_supported_args), + ] + push_warning(" ".join(message)) + result.return_code = ReturnCode.WARN + return result + + +static func flatten_unique(array: Array) -> Array: + var result := {} + for key in flatten(array): + result[key] = null + return result.keys() + + +static func flatten(array: Array) -> Array: + return array.reduce(func(acc: Array, xs: Array) -> Array: return acc + xs, []) + diff --git a/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_bold.ttf b/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_bold.ttf new file mode 100644 index 0000000..384f8eb Binary files /dev/null and b/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_bold.ttf differ diff --git a/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_bold.ttf.import b/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_bold.ttf.import new file mode 100644 index 0000000..81703c6 --- /dev/null +++ b/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_bold.ttf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://dmo87fdm7i0rd" +path="res://.godot/imported/noto_sans_ja_bold.ttf-88e1b4266f12cb9da0eb807ce9d483d1.fontdata" + +[deps] + +source_file="res://addons/godot_tours/assets/fonts/fallback/noto_sans_ja_bold.ttf" +dest_files=["res://.godot/imported/noto_sans_ja_bold.ttf-88e1b4266f12cb9da0eb807ce9d483d1.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_regular.ttf b/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_regular.ttf new file mode 100644 index 0000000..1583096 Binary files /dev/null and b/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_regular.ttf differ diff --git a/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_regular.ttf.import b/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_regular.ttf.import new file mode 100644 index 0000000..2ec8669 --- /dev/null +++ b/addons/godot_tours/assets/fonts/fallback/noto_sans_ja_regular.ttf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://bc0w1omce2rm6" +path="res://.godot/imported/noto_sans_ja_regular.ttf-7d3eda32813c664da9f4bbbe9c3a6118.fontdata" + +[deps] + +source_file="res://addons/godot_tours/assets/fonts/fallback/noto_sans_ja_regular.ttf" +dest_files=["res://.godot/imported/noto_sans_ja_regular.ttf-7d3eda32813c664da9f4bbbe9c3a6118.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/addons/godot_tours/bubble/assets/fonts/hasklug_nerd_mono.otf b/addons/godot_tours/assets/fonts/hasklug_nerd_mono.otf similarity index 100% rename from addons/godot_tours/bubble/assets/fonts/hasklug_nerd_mono.otf rename to addons/godot_tours/assets/fonts/hasklug_nerd_mono.otf diff --git a/addons/godot_tours/bubble/assets/fonts/hasklug_nerd_mono.otf.import b/addons/godot_tours/assets/fonts/hasklug_nerd_mono.otf.import similarity index 60% rename from addons/godot_tours/bubble/assets/fonts/hasklug_nerd_mono.otf.import rename to addons/godot_tours/assets/fonts/hasklug_nerd_mono.otf.import index c82bd63..f60813f 100644 --- a/addons/godot_tours/bubble/assets/fonts/hasklug_nerd_mono.otf.import +++ b/addons/godot_tours/assets/fonts/hasklug_nerd_mono.otf.import @@ -3,18 +3,19 @@ importer="font_data_dynamic" type="FontFile" uid="uid://c3xincxynype7" -path="res://.godot/imported/hasklug_nerd_mono.otf-f67bcac9f850312932c1e6279df5692c.fontdata" +path="res://.godot/imported/hasklug_nerd_mono.otf-cbc777136d38df6e6055e244ef44e4bd.fontdata" [deps] -source_file="res://addons/godot_tours/bubble/assets/fonts/hasklug_nerd_mono.otf" -dest_files=["res://.godot/imported/hasklug_nerd_mono.otf-f67bcac9f850312932c1e6279df5692c.fontdata"] +source_file="res://addons/godot_tours/assets/fonts/hasklug_nerd_mono.otf" +dest_files=["res://.godot/imported/hasklug_nerd_mono.otf-cbc777136d38df6e6055e244ef44e4bd.fontdata"] [params] Rendering=null antialiasing=1 generate_mipmaps=false +disable_embedded_bitmaps=true multichannel_signed_distance_field=false msdf_pixel_range=8 msdf_size=48 diff --git a/addons/godot_tours/bubble/assets/fonts/mukta_bold.ttf b/addons/godot_tours/assets/fonts/mukta_bold.ttf similarity index 100% rename from addons/godot_tours/bubble/assets/fonts/mukta_bold.ttf rename to addons/godot_tours/assets/fonts/mukta_bold.ttf diff --git a/addons/godot_tours/bubble/assets/fonts/mukta_bold.ttf.import b/addons/godot_tours/assets/fonts/mukta_bold.ttf.import similarity index 62% rename from addons/godot_tours/bubble/assets/fonts/mukta_bold.ttf.import rename to addons/godot_tours/assets/fonts/mukta_bold.ttf.import index dceaa0f..063c343 100644 --- a/addons/godot_tours/bubble/assets/fonts/mukta_bold.ttf.import +++ b/addons/godot_tours/assets/fonts/mukta_bold.ttf.import @@ -3,18 +3,19 @@ importer="font_data_dynamic" type="FontFile" uid="uid://cxeo2n3ky21xb" -path="res://.godot/imported/mukta_bold.ttf-e8d363c2a7fb8b80d728bd7dee4e4d28.fontdata" +path="res://.godot/imported/mukta_bold.ttf-7a9485631c1973c68e8b9b5c64c74887.fontdata" [deps] -source_file="res://addons/godot_tours/bubble/assets/fonts/mukta_bold.ttf" -dest_files=["res://.godot/imported/mukta_bold.ttf-e8d363c2a7fb8b80d728bd7dee4e4d28.fontdata"] +source_file="res://addons/godot_tours/assets/fonts/mukta_bold.ttf" +dest_files=["res://.godot/imported/mukta_bold.ttf-7a9485631c1973c68e8b9b5c64c74887.fontdata"] [params] Rendering=null antialiasing=1 generate_mipmaps=false +disable_embedded_bitmaps=true multichannel_signed_distance_field=false msdf_pixel_range=8 msdf_size=48 diff --git a/addons/godot_tours/bubble/assets/fonts/poppins_bold.ttf b/addons/godot_tours/assets/fonts/poppins_bold.ttf similarity index 100% rename from addons/godot_tours/bubble/assets/fonts/poppins_bold.ttf rename to addons/godot_tours/assets/fonts/poppins_bold.ttf diff --git a/addons/godot_tours/bubble/assets/fonts/poppins_bold.ttf.import b/addons/godot_tours/assets/fonts/poppins_bold.ttf.import similarity index 61% rename from addons/godot_tours/bubble/assets/fonts/poppins_bold.ttf.import rename to addons/godot_tours/assets/fonts/poppins_bold.ttf.import index a02dd67..452fbb1 100644 --- a/addons/godot_tours/bubble/assets/fonts/poppins_bold.ttf.import +++ b/addons/godot_tours/assets/fonts/poppins_bold.ttf.import @@ -3,18 +3,19 @@ importer="font_data_dynamic" type="FontFile" uid="uid://b0egmv7mkouwp" -path="res://.godot/imported/poppins_bold.ttf-ba3c16fc506adac0633c8213a21ed168.fontdata" +path="res://.godot/imported/poppins_bold.ttf-3d8105333ad28e1b936bf88729abcb01.fontdata" [deps] -source_file="res://addons/godot_tours/bubble/assets/fonts/poppins_bold.ttf" -dest_files=["res://.godot/imported/poppins_bold.ttf-ba3c16fc506adac0633c8213a21ed168.fontdata"] +source_file="res://addons/godot_tours/assets/fonts/poppins_bold.ttf" +dest_files=["res://.godot/imported/poppins_bold.ttf-3d8105333ad28e1b936bf88729abcb01.fontdata"] [params] Rendering=null antialiasing=1 generate_mipmaps=false +disable_embedded_bitmaps=true multichannel_signed_distance_field=false msdf_pixel_range=8 msdf_size=48 diff --git a/addons/godot_tours/bubble/assets/fonts/poppins_italic.ttf b/addons/godot_tours/assets/fonts/poppins_italic.ttf similarity index 100% rename from addons/godot_tours/bubble/assets/fonts/poppins_italic.ttf rename to addons/godot_tours/assets/fonts/poppins_italic.ttf diff --git a/addons/godot_tours/bubble/assets/fonts/poppins_italic.ttf.import b/addons/godot_tours/assets/fonts/poppins_italic.ttf.import similarity index 60% rename from addons/godot_tours/bubble/assets/fonts/poppins_italic.ttf.import rename to addons/godot_tours/assets/fonts/poppins_italic.ttf.import index bc0cdac..9357dfb 100644 --- a/addons/godot_tours/bubble/assets/fonts/poppins_italic.ttf.import +++ b/addons/godot_tours/assets/fonts/poppins_italic.ttf.import @@ -3,18 +3,19 @@ importer="font_data_dynamic" type="FontFile" uid="uid://cowlnwvq0rikj" -path="res://.godot/imported/poppins_italic.ttf-61875b501353b9c5806e9f1db637f13f.fontdata" +path="res://.godot/imported/poppins_italic.ttf-acec85489668d86205880231e06ce363.fontdata" [deps] -source_file="res://addons/godot_tours/bubble/assets/fonts/poppins_italic.ttf" -dest_files=["res://.godot/imported/poppins_italic.ttf-61875b501353b9c5806e9f1db637f13f.fontdata"] +source_file="res://addons/godot_tours/assets/fonts/poppins_italic.ttf" +dest_files=["res://.godot/imported/poppins_italic.ttf-acec85489668d86205880231e06ce363.fontdata"] [params] Rendering=null antialiasing=1 generate_mipmaps=false +disable_embedded_bitmaps=true multichannel_signed_distance_field=false msdf_pixel_range=8 msdf_size=48 diff --git a/addons/godot_tours/bubble/assets/fonts/poppins_regular.ttf b/addons/godot_tours/assets/fonts/poppins_regular.ttf similarity index 100% rename from addons/godot_tours/bubble/assets/fonts/poppins_regular.ttf rename to addons/godot_tours/assets/fonts/poppins_regular.ttf diff --git a/addons/godot_tours/bubble/assets/fonts/poppins_regular.ttf.import b/addons/godot_tours/assets/fonts/poppins_regular.ttf.import similarity index 60% rename from addons/godot_tours/bubble/assets/fonts/poppins_regular.ttf.import rename to addons/godot_tours/assets/fonts/poppins_regular.ttf.import index c90262c..91a7993 100644 --- a/addons/godot_tours/bubble/assets/fonts/poppins_regular.ttf.import +++ b/addons/godot_tours/assets/fonts/poppins_regular.ttf.import @@ -3,18 +3,19 @@ importer="font_data_dynamic" type="FontFile" uid="uid://b0tcgxag5h452" -path="res://.godot/imported/poppins_regular.ttf-bd6ee033a91271300aa7b20669b56868.fontdata" +path="res://.godot/imported/poppins_regular.ttf-3d430da449ee1abc7f5114c7e501b931.fontdata" [deps] -source_file="res://addons/godot_tours/bubble/assets/fonts/poppins_regular.ttf" -dest_files=["res://.godot/imported/poppins_regular.ttf-bd6ee033a91271300aa7b20669b56868.fontdata"] +source_file="res://addons/godot_tours/assets/fonts/poppins_regular.ttf" +dest_files=["res://.godot/imported/poppins_regular.ttf-3d430da449ee1abc7f5114c7e501b931.fontdata"] [params] Rendering=null antialiasing=1 generate_mipmaps=false +disable_embedded_bitmaps=true multichannel_signed_distance_field=false msdf_pixel_range=8 msdf_size=48 diff --git a/addons/godot_tours/assets/guide_3d.gd b/addons/godot_tours/assets/guide_3d.gd new file mode 100644 index 0000000..24eba85 --- /dev/null +++ b/addons/godot_tours/assets/guide_3d.gd @@ -0,0 +1,45 @@ +@tool +extends Node3D + +## Changes the size of the guide box. +var size := Vector3.ONE: set = set_size +## Offsets the child box mesh relative to this node. +var box_offset := Vector3.ZERO: set = set_box_offset +## Changes the transparency of the guide box. +var alpha := 0.4: set = set_alpha + +@onready var mesh_instance_3d: MeshInstance3D = %MeshInstance3D + + +func _ready() -> void: + set_size(size) + set_box_offset(box_offset) + set_alpha(alpha) + + +## Returns the axis-aligned bounding box of the guide box. +func get_aabb() -> AABB: + if mesh_instance_3d == null: + return AABB() + return mesh_instance_3d.mesh.get_aabb() + + +func set_size(new_size: Vector3) -> void: + size = new_size + if mesh_instance_3d == null: + return + mesh_instance_3d.mesh.size = size + + +func set_box_offset(new_offset: Vector3) -> void: + box_offset = new_offset + if mesh_instance_3d == null: + return + mesh_instance_3d.position = box_offset + + +func set_alpha(new_alpha: float) -> void: + alpha = clamp(new_alpha, 0.0, 1.0) + if mesh_instance_3d == null: + return + mesh_instance_3d.mesh.material.albedo_color.a = alpha diff --git a/addons/godot_tours/assets/guide_3d.tscn b/addons/godot_tours/assets/guide_3d.tscn new file mode 100644 index 0000000..44bb25c --- /dev/null +++ b/addons/godot_tours/assets/guide_3d.tscn @@ -0,0 +1,30 @@ +[gd_scene load_steps=4 format=3 uid="uid://bxefaevg616la"] + +[ext_resource type="Script" path="res://addons/godot_tours/assets/guide_3d.gd" id="1_nq5ae"] + +[sub_resource type="StandardMaterial3D" id="StandardMaterial3D_y1av2"] +resource_local_to_scene = true +transparency = 1 +cull_mode = 2 +no_depth_test = true +shading_mode = 2 +diffuse_mode = 2 +specular_mode = 2 +disable_ambient_light = true +disable_fog = true +albedo_color = Color(0.101961, 0.305882, 0.87451, 0.545098) + +[sub_resource type="BoxMesh" id="BoxMesh_refqc"] +resource_local_to_scene = true +material = SubResource("StandardMaterial3D_y1av2") + +[node name="Guide3D" type="Node3D"] +top_level = true +script = ExtResource("1_nq5ae") +metadata/_edit_lock_ = true +metadata/_edit_group_ = true + +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +unique_name_in_owner = true +transform = Transform3D(0.999997, -0.00212301, 0.00132331, 0.00212455, 0.999997, -0.00115882, -0.00132084, 0.00116164, 0.999998, 0, 0, 0) +mesh = SubResource("BoxMesh_refqc") diff --git a/addons/godot_tours/bubble/assets/bubble_theme.tres b/addons/godot_tours/bubble/assets/bubble_theme.tres index 070e2cf..1b5637f 100644 --- a/addons/godot_tours/bubble/assets/bubble_theme.tres +++ b/addons/godot_tours/bubble/assets/bubble_theme.tres @@ -1,10 +1,10 @@ [gd_resource type="Theme" load_steps=15 format=3 uid="uid://cx2cxgbadh7fg"] -[ext_resource type="FontFile" uid="uid://cxeo2n3ky21xb" path="res://addons/godot_tours/bubble/assets/fonts/mukta_bold.ttf" id="2_dcrkv"] -[ext_resource type="FontFile" uid="uid://c3xincxynype7" path="res://addons/godot_tours/bubble/assets/fonts/hasklug_nerd_mono.otf" id="3_q3s3n"] -[ext_resource type="FontFile" uid="uid://b0egmv7mkouwp" path="res://addons/godot_tours/bubble/assets/fonts/poppins_bold.ttf" id="3_xuvjh"] -[ext_resource type="FontFile" uid="uid://cowlnwvq0rikj" path="res://addons/godot_tours/bubble/assets/fonts/poppins_italic.ttf" id="4_th3qn"] -[ext_resource type="FontFile" uid="uid://b0tcgxag5h452" path="res://addons/godot_tours/bubble/assets/fonts/poppins_regular.ttf" id="6_k0qw8"] +[ext_resource type="FontFile" uid="uid://cxeo2n3ky21xb" path="res://addons/godot_tours/assets/fonts/mukta_bold.ttf" id="2_dcrkv"] +[ext_resource type="FontFile" uid="uid://c3xincxynype7" path="res://addons/godot_tours/assets/fonts/hasklug_nerd_mono.otf" id="3_q3s3n"] +[ext_resource type="FontFile" uid="uid://b0egmv7mkouwp" path="res://addons/godot_tours/assets/fonts/poppins_bold.ttf" id="3_xuvjh"] +[ext_resource type="FontFile" uid="uid://cowlnwvq0rikj" path="res://addons/godot_tours/assets/fonts/poppins_italic.ttf" id="4_th3qn"] +[ext_resource type="FontFile" uid="uid://b0tcgxag5h452" path="res://addons/godot_tours/assets/fonts/poppins_regular.ttf" id="6_k0qw8"] [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_k5cck"] diff --git a/addons/godot_tours/bubble/assets/icons/2D.svg b/addons/godot_tours/bubble/assets/icons/2D.svg new file mode 100644 index 0000000..9908006 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/2D.svg @@ -0,0 +1 @@ + diff --git a/tours/godot-first-tour/assets/bubble-background.png.import b/addons/godot_tours/bubble/assets/icons/2D.svg.import similarity index 60% rename from tours/godot-first-tour/assets/bubble-background.png.import rename to addons/godot_tours/bubble/assets/icons/2D.svg.import index b41d855..987b0d9 100644 --- a/tours/godot-first-tour/assets/bubble-background.png.import +++ b/addons/godot_tours/bubble/assets/icons/2D.svg.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dav4p87w5t4d7" -path="res://.godot/imported/bubble-background.png-ddd5f0a5ecdddff73041e10a7567bb8e.ctex" +uid="uid://iytbla41f6qv" +path="res://.godot/imported/2D.svg-67daaa5c861d07de7531301b9e6523e1.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://tours/godot-first-tour/assets/bubble-background.png" -dest_files=["res://.godot/imported/bubble-background.png-ddd5f0a5ecdddff73041e10a7567bb8e.ctex"] +source_file="res://addons/godot_tours/bubble/assets/icons/2D.svg" +dest_files=["res://.godot/imported/2D.svg-67daaa5c861d07de7531301b9e6523e1.ctex"] [params] @@ -32,3 +32,6 @@ process/hdr_as_srgb=false process/hdr_clamp_exposure=false process/size_limit=0 detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/3D.svg b/addons/godot_tours/bubble/assets/icons/3D.svg new file mode 100644 index 0000000..b9b17b8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/3D.svg.import b/addons/godot_tours/bubble/assets/icons/3D.svg.import new file mode 100644 index 0000000..dca7234 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8jjwyq2d353c" +path="res://.godot/imported/3D.svg-06e4a97f665700912ecc894287d67d18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/3D.svg" +dest_files=["res://.godot/imported/3D.svg-06e4a97f665700912ecc894287d67d18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AABB.svg b/addons/godot_tours/bubble/assets/icons/AABB.svg new file mode 100644 index 0000000..94bf00d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AABB.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AABB.svg.import b/addons/godot_tours/bubble/assets/icons/AABB.svg.import new file mode 100644 index 0000000..0878093 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AABB.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5o21gleage7r" +path="res://.godot/imported/AABB.svg-c7309f9d826426dfb977c6581b138349.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AABB.svg" +dest_files=["res://.godot/imported/AABB.svg-c7309f9d826426dfb977c6581b138349.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AcceptDialog.svg b/addons/godot_tours/bubble/assets/icons/AcceptDialog.svg new file mode 100644 index 0000000..5d60a31 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AcceptDialog.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AcceptDialog.svg.import b/addons/godot_tours/bubble/assets/icons/AcceptDialog.svg.import new file mode 100644 index 0000000..4992f85 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AcceptDialog.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ojt75kckfp2e" +path="res://.godot/imported/AcceptDialog.svg-9b8e5ee6554a51be0726e701310dd7dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AcceptDialog.svg" +dest_files=["res://.godot/imported/AcceptDialog.svg-9b8e5ee6554a51be0726e701310dd7dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ActionCopy.svg b/addons/godot_tours/bubble/assets/icons/ActionCopy.svg new file mode 100644 index 0000000..fe47a73 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ActionCopy.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ActionCopy.svg.import b/addons/godot_tours/bubble/assets/icons/ActionCopy.svg.import new file mode 100644 index 0000000..05c311b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ActionCopy.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b187ivf0qqthi" +path="res://.godot/imported/ActionCopy.svg-b0ce2c63bf64fb6f653df6d32f54698a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ActionCopy.svg" +dest_files=["res://.godot/imported/ActionCopy.svg-b0ce2c63bf64fb6f653df6d32f54698a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ActionCut.svg b/addons/godot_tours/bubble/assets/icons/ActionCut.svg new file mode 100644 index 0000000..e1f2153 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ActionCut.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ActionCut.svg.import b/addons/godot_tours/bubble/assets/icons/ActionCut.svg.import new file mode 100644 index 0000000..2baf723 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ActionCut.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h6fh2qkwwy8b" +path="res://.godot/imported/ActionCut.svg-c860346cb5f4d471f198664bb7c98b86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ActionCut.svg" +dest_files=["res://.godot/imported/ActionCut.svg-c860346cb5f4d471f198664bb7c98b86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ActionPaste.svg b/addons/godot_tours/bubble/assets/icons/ActionPaste.svg new file mode 100644 index 0000000..bdfb849 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ActionPaste.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ActionPaste.svg.import b/addons/godot_tours/bubble/assets/icons/ActionPaste.svg.import new file mode 100644 index 0000000..bc6f114 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ActionPaste.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwjbrvh61mw6f" +path="res://.godot/imported/ActionPaste.svg-9f7fa1a07556da2f05341b7c916ef385.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ActionPaste.svg" +dest_files=["res://.godot/imported/ActionPaste.svg-9f7fa1a07556da2f05341b7c916ef385.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Add.svg b/addons/godot_tours/bubble/assets/icons/Add.svg new file mode 100644 index 0000000..afad08a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Add.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Add.svg.import b/addons/godot_tours/bubble/assets/icons/Add.svg.import new file mode 100644 index 0000000..0caf0b6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Add.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6cqe8e0h76yr" +path="res://.godot/imported/Add.svg-c2f30fd021e3ec49f3a9576f23c5d69b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Add.svg" +dest_files=["res://.godot/imported/Add.svg-c2f30fd021e3ec49f3a9576f23c5d69b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Anchor.svg b/addons/godot_tours/bubble/assets/icons/Anchor.svg new file mode 100644 index 0000000..e6dfdff --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Anchor.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Anchor.svg.import b/addons/godot_tours/bubble/assets/icons/Anchor.svg.import new file mode 100644 index 0000000..8f930b1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Anchor.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vcy258smkc1r" +path="res://.godot/imported/Anchor.svg-19d461e60468fa6189e55ff41be2168a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Anchor.svg" +dest_files=["res://.godot/imported/Anchor.svg-19d461e60468fa6189e55ff41be2168a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimatableBody2D.svg b/addons/godot_tours/bubble/assets/icons/AnimatableBody2D.svg new file mode 100644 index 0000000..0403edc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimatableBody2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimatableBody2D.svg.import b/addons/godot_tours/bubble/assets/icons/AnimatableBody2D.svg.import new file mode 100644 index 0000000..1445fd5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimatableBody2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjdua4sqdpdkh" +path="res://.godot/imported/AnimatableBody2D.svg-475dc298cddde5fe22e3680360c31c99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimatableBody2D.svg" +dest_files=["res://.godot/imported/AnimatableBody2D.svg-475dc298cddde5fe22e3680360c31c99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimatableBody3D.svg b/addons/godot_tours/bubble/assets/icons/AnimatableBody3D.svg new file mode 100644 index 0000000..1288a42 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimatableBody3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimatableBody3D.svg.import b/addons/godot_tours/bubble/assets/icons/AnimatableBody3D.svg.import new file mode 100644 index 0000000..36f9fe3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimatableBody3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clnvsn1kg1ml8" +path="res://.godot/imported/AnimatableBody3D.svg-728f52d9d0555e6e02b0b7462df8969c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimatableBody3D.svg" +dest_files=["res://.godot/imported/AnimatableBody3D.svg-728f52d9d0555e6e02b0b7462df8969c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimatedSprite2D.svg b/addons/godot_tours/bubble/assets/icons/AnimatedSprite2D.svg new file mode 100644 index 0000000..187bc46 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimatedSprite2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimatedSprite2D.svg.import b/addons/godot_tours/bubble/assets/icons/AnimatedSprite2D.svg.import new file mode 100644 index 0000000..6c7cbc4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimatedSprite2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyf6s2fhb4hma" +path="res://.godot/imported/AnimatedSprite2D.svg-c4f37eff4ae1c6a231fd7de5b5b439c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimatedSprite2D.svg" +dest_files=["res://.godot/imported/AnimatedSprite2D.svg-c4f37eff4ae1c6a231fd7de5b5b439c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimatedSprite3D.svg b/addons/godot_tours/bubble/assets/icons/AnimatedSprite3D.svg new file mode 100644 index 0000000..8c40743 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimatedSprite3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimatedSprite3D.svg.import b/addons/godot_tours/bubble/assets/icons/AnimatedSprite3D.svg.import new file mode 100644 index 0000000..dd4b0d3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimatedSprite3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nybnis8mbi6p" +path="res://.godot/imported/AnimatedSprite3D.svg-b719fbddb0a5bc2b36c1c57c9b8f8f17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimatedSprite3D.svg" +dest_files=["res://.godot/imported/AnimatedSprite3D.svg-b719fbddb0a5bc2b36c1c57c9b8f8f17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimatedTexture.svg b/addons/godot_tours/bubble/assets/icons/AnimatedTexture.svg new file mode 100644 index 0000000..eead92e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimatedTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimatedTexture.svg.import b/addons/godot_tours/bubble/assets/icons/AnimatedTexture.svg.import new file mode 100644 index 0000000..25c636b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimatedTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3qlyx73cgpxq" +path="res://.godot/imported/AnimatedTexture.svg-58f0f535c362c87bd075f485ce89b106.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimatedTexture.svg" +dest_files=["res://.godot/imported/AnimatedTexture.svg-58f0f535c362c87bd075f485ce89b106.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Animation.svg b/addons/godot_tours/bubble/assets/icons/Animation.svg new file mode 100644 index 0000000..55d4809 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Animation.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Animation.svg.import b/addons/godot_tours/bubble/assets/icons/Animation.svg.import new file mode 100644 index 0000000..837c798 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Animation.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4cacixbui8n5" +path="res://.godot/imported/Animation.svg-f2e84700c607a1a91c4d64044de59e31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Animation.svg" +dest_files=["res://.godot/imported/Animation.svg-f2e84700c607a1a91c4d64044de59e31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimationAutoFit.svg b/addons/godot_tours/bubble/assets/icons/AnimationAutoFit.svg new file mode 100644 index 0000000..fdde20d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationAutoFit.svg @@ -0,0 +1,2 @@ + + diff --git a/addons/godot_tours/bubble/assets/icons/AnimationAutoFit.svg.import b/addons/godot_tours/bubble/assets/icons/AnimationAutoFit.svg.import new file mode 100644 index 0000000..9f17ab8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationAutoFit.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d367cj1h2etyv" +path="res://.godot/imported/AnimationAutoFit.svg-74550d3190ae8bfca8ac7c1eb8cee6e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimationAutoFit.svg" +dest_files=["res://.godot/imported/AnimationAutoFit.svg-74550d3190ae8bfca8ac7c1eb8cee6e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimationAutoFitBezier.svg b/addons/godot_tours/bubble/assets/icons/AnimationAutoFitBezier.svg new file mode 100644 index 0000000..1a79255 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationAutoFitBezier.svg @@ -0,0 +1,2 @@ + + diff --git a/addons/godot_tours/bubble/assets/icons/AnimationAutoFitBezier.svg.import b/addons/godot_tours/bubble/assets/icons/AnimationAutoFitBezier.svg.import new file mode 100644 index 0000000..6cc2bc7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationAutoFitBezier.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7tgpqav8l6h6" +path="res://.godot/imported/AnimationAutoFitBezier.svg-823fc36766d21942c41e39af0ff3770a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimationAutoFitBezier.svg" +dest_files=["res://.godot/imported/AnimationAutoFitBezier.svg-823fc36766d21942c41e39af0ff3770a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimationFilter.svg b/addons/godot_tours/bubble/assets/icons/AnimationFilter.svg new file mode 100644 index 0000000..0924f5a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationFilter.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimationFilter.svg.import b/addons/godot_tours/bubble/assets/icons/AnimationFilter.svg.import new file mode 100644 index 0000000..73678ba --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationFilter.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvhgk2j4a208t" +path="res://.godot/imported/AnimationFilter.svg-f1cea55c86d6fb305d4af04aa556ac0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimationFilter.svg" +dest_files=["res://.godot/imported/AnimationFilter.svg-f1cea55c86d6fb305d4af04aa556ac0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimationLibrary.svg b/addons/godot_tours/bubble/assets/icons/AnimationLibrary.svg new file mode 100644 index 0000000..63ed97b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationLibrary.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimationLibrary.svg.import b/addons/godot_tours/bubble/assets/icons/AnimationLibrary.svg.import new file mode 100644 index 0000000..67ab036 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationLibrary.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cofm540ioefh" +path="res://.godot/imported/AnimationLibrary.svg-82d4a96bf7a031c93ce8d7d54dd4e275.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimationLibrary.svg" +dest_files=["res://.godot/imported/AnimationLibrary.svg-82d4a96bf7a031c93ce8d7d54dd4e275.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimationMixer.svg b/addons/godot_tours/bubble/assets/icons/AnimationMixer.svg new file mode 100644 index 0000000..61f5bf6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationMixer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimationMixer.svg.import b/addons/godot_tours/bubble/assets/icons/AnimationMixer.svg.import new file mode 100644 index 0000000..233921e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationMixer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8vcpijil5ulo" +path="res://.godot/imported/AnimationMixer.svg-ffe938d723f7171b5ddcff83dac3eee9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimationMixer.svg" +dest_files=["res://.godot/imported/AnimationMixer.svg-ffe938d723f7171b5ddcff83dac3eee9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimationPlayer.svg b/addons/godot_tours/bubble/assets/icons/AnimationPlayer.svg new file mode 100644 index 0000000..21f287f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationPlayer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimationPlayer.svg.import b/addons/godot_tours/bubble/assets/icons/AnimationPlayer.svg.import new file mode 100644 index 0000000..7eb2c41 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationPlayer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rkbnb0suknc5" +path="res://.godot/imported/AnimationPlayer.svg-4e2e009ce24638a4cdd50de24d18787d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimationPlayer.svg" +dest_files=["res://.godot/imported/AnimationPlayer.svg-4e2e009ce24638a4cdd50de24d18787d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimationTrackGroup.svg b/addons/godot_tours/bubble/assets/icons/AnimationTrackGroup.svg new file mode 100644 index 0000000..73bcb6f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationTrackGroup.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimationTrackGroup.svg.import b/addons/godot_tours/bubble/assets/icons/AnimationTrackGroup.svg.import new file mode 100644 index 0000000..1fce0f5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationTrackGroup.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uyi7blfsq2rl" +path="res://.godot/imported/AnimationTrackGroup.svg-3347c516ae845282923f6187f6f991b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimationTrackGroup.svg" +dest_files=["res://.godot/imported/AnimationTrackGroup.svg-3347c516ae845282923f6187f6f991b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimationTrackList.svg b/addons/godot_tours/bubble/assets/icons/AnimationTrackList.svg new file mode 100644 index 0000000..3ba4915 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationTrackList.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimationTrackList.svg.import b/addons/godot_tours/bubble/assets/icons/AnimationTrackList.svg.import new file mode 100644 index 0000000..4af2de4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationTrackList.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwtoqhpb7ekko" +path="res://.godot/imported/AnimationTrackList.svg-49fbdce2c53a07694367aa074be43054.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimationTrackList.svg" +dest_files=["res://.godot/imported/AnimationTrackList.svg-49fbdce2c53a07694367aa074be43054.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AnimationTree.svg b/addons/godot_tours/bubble/assets/icons/AnimationTree.svg new file mode 100644 index 0000000..65250cf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationTree.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AnimationTree.svg.import b/addons/godot_tours/bubble/assets/icons/AnimationTree.svg.import new file mode 100644 index 0000000..5ef1721 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AnimationTree.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dypvqb3r8d8uv" +path="res://.godot/imported/AnimationTree.svg-e75dbdf4c82515852284f4dc434d1aeb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AnimationTree.svg" +dest_files=["res://.godot/imported/AnimationTree.svg-e75dbdf4c82515852284f4dc434d1aeb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Area2D.svg b/addons/godot_tours/bubble/assets/icons/Area2D.svg new file mode 100644 index 0000000..42f77d4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Area2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Area2D.svg.import b/addons/godot_tours/bubble/assets/icons/Area2D.svg.import new file mode 100644 index 0000000..dbb2115 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Area2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgrhcy7aqyhch" +path="res://.godot/imported/Area2D.svg-44de326404abdd09055c35f520d26d75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Area2D.svg" +dest_files=["res://.godot/imported/Area2D.svg-44de326404abdd09055c35f520d26d75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Area3D.svg b/addons/godot_tours/bubble/assets/icons/Area3D.svg new file mode 100644 index 0000000..88da3e7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Area3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Area3D.svg.import b/addons/godot_tours/bubble/assets/icons/Area3D.svg.import new file mode 100644 index 0000000..6eb9bdb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Area3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0rks6vr7b6eo" +path="res://.godot/imported/Area3D.svg-98376b059365d1a3fa7341f9690022d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Area3D.svg" +dest_files=["res://.godot/imported/Area3D.svg-98376b059365d1a3fa7341f9690022d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Array.svg b/addons/godot_tours/bubble/assets/icons/Array.svg new file mode 100644 index 0000000..fbf0df8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Array.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Array.svg.import b/addons/godot_tours/bubble/assets/icons/Array.svg.import new file mode 100644 index 0000000..e000397 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Array.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2h86lb68nwa3" +path="res://.godot/imported/Array.svg-d4a2685d686788a4383aa530552afce2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Array.svg" +dest_files=["res://.godot/imported/Array.svg-d4a2685d686788a4383aa530552afce2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ArrayMesh.svg b/addons/godot_tours/bubble/assets/icons/ArrayMesh.svg new file mode 100644 index 0000000..9e39024 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrayMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ArrayMesh.svg.import b/addons/godot_tours/bubble/assets/icons/ArrayMesh.svg.import new file mode 100644 index 0000000..22f5206 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrayMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1s70otwser6t" +path="res://.godot/imported/ArrayMesh.svg-2d1a0eb145ec94f4be6cfda29c902894.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ArrayMesh.svg" +dest_files=["res://.godot/imported/ArrayMesh.svg-2d1a0eb145ec94f4be6cfda29c902894.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ArrayOccluder3D.svg b/addons/godot_tours/bubble/assets/icons/ArrayOccluder3D.svg new file mode 100644 index 0000000..3d18fa0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrayOccluder3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ArrayOccluder3D.svg.import b/addons/godot_tours/bubble/assets/icons/ArrayOccluder3D.svg.import new file mode 100644 index 0000000..a007cf0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrayOccluder3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfmuikec8gddf" +path="res://.godot/imported/ArrayOccluder3D.svg-e69cad71b1aee7a6e41e2aa0eec5165f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ArrayOccluder3D.svg" +dest_files=["res://.godot/imported/ArrayOccluder3D.svg-e69cad71b1aee7a6e41e2aa0eec5165f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ArrowDown.svg b/addons/godot_tours/bubble/assets/icons/ArrowDown.svg new file mode 100644 index 0000000..23b7af8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrowDown.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ArrowDown.svg.import b/addons/godot_tours/bubble/assets/icons/ArrowDown.svg.import new file mode 100644 index 0000000..2f4e134 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrowDown.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfcwfd7x8ctt0" +path="res://.godot/imported/ArrowDown.svg-58871aa1f222ab336170c4f47397f613.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ArrowDown.svg" +dest_files=["res://.godot/imported/ArrowDown.svg-58871aa1f222ab336170c4f47397f613.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ArrowLeft.svg b/addons/godot_tours/bubble/assets/icons/ArrowLeft.svg new file mode 100644 index 0000000..4141c3b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrowLeft.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ArrowLeft.svg.import b/addons/godot_tours/bubble/assets/icons/ArrowLeft.svg.import new file mode 100644 index 0000000..40893b2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrowLeft.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baskoefshjify" +path="res://.godot/imported/ArrowLeft.svg-345fb0c7bfc21522c89e17ee028c122e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ArrowLeft.svg" +dest_files=["res://.godot/imported/ArrowLeft.svg-345fb0c7bfc21522c89e17ee028c122e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ArrowRight.svg b/addons/godot_tours/bubble/assets/icons/ArrowRight.svg new file mode 100644 index 0000000..f433ef3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrowRight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ArrowRight.svg.import b/addons/godot_tours/bubble/assets/icons/ArrowRight.svg.import new file mode 100644 index 0000000..d77f7ac --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrowRight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp6brlh365u5m" +path="res://.godot/imported/ArrowRight.svg-a2db75240316dda52f0a9e2c38f144d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ArrowRight.svg" +dest_files=["res://.godot/imported/ArrowRight.svg-a2db75240316dda52f0a9e2c38f144d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ArrowUp.svg b/addons/godot_tours/bubble/assets/icons/ArrowUp.svg new file mode 100644 index 0000000..377d275 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrowUp.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ArrowUp.svg.import b/addons/godot_tours/bubble/assets/icons/ArrowUp.svg.import new file mode 100644 index 0000000..4489f64 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ArrowUp.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be4j1qjb8fp24" +path="res://.godot/imported/ArrowUp.svg-59cedbb589fc72b7b455f4d8e07572b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ArrowUp.svg" +dest_files=["res://.godot/imported/ArrowUp.svg-59cedbb589fc72b7b455f4d8e07572b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AspectRatioContainer.svg b/addons/godot_tours/bubble/assets/icons/AspectRatioContainer.svg new file mode 100644 index 0000000..b8fa880 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AspectRatioContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AspectRatioContainer.svg.import b/addons/godot_tours/bubble/assets/icons/AspectRatioContainer.svg.import new file mode 100644 index 0000000..c11c314 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AspectRatioContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtxkp1epoxi7t" +path="res://.godot/imported/AspectRatioContainer.svg-c8949c1b20042ce27f3d0d073759cdb2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AspectRatioContainer.svg" +dest_files=["res://.godot/imported/AspectRatioContainer.svg-c8949c1b20042ce27f3d0d073759cdb2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AssetLib.svg b/addons/godot_tours/bubble/assets/icons/AssetLib.svg new file mode 100644 index 0000000..6463c1a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AssetLib.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AssetLib.svg.import b/addons/godot_tours/bubble/assets/icons/AssetLib.svg.import new file mode 100644 index 0000000..6f19fc4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AssetLib.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iouss51elmy0" +path="res://.godot/imported/AssetLib.svg-7c00323724e002ccbba0f4a35b764b38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AssetLib.svg" +dest_files=["res://.godot/imported/AssetLib.svg-7c00323724e002ccbba0f4a35b764b38.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AtlasTexture.svg b/addons/godot_tours/bubble/assets/icons/AtlasTexture.svg new file mode 100644 index 0000000..4f41122 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AtlasTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AtlasTexture.svg.import b/addons/godot_tours/bubble/assets/icons/AtlasTexture.svg.import new file mode 100644 index 0000000..3bb2295 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AtlasTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk3nux5yqp3q1" +path="res://.godot/imported/AtlasTexture.svg-0749fbbe56668cc177a0eb7d7247aec2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AtlasTexture.svg" +dest_files=["res://.godot/imported/AtlasTexture.svg-0749fbbe56668cc177a0eb7d7247aec2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioBusBypass.svg b/addons/godot_tours/bubble/assets/icons/AudioBusBypass.svg new file mode 100644 index 0000000..538c13d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioBusBypass.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioBusBypass.svg.import b/addons/godot_tours/bubble/assets/icons/AudioBusBypass.svg.import new file mode 100644 index 0000000..28b7bec --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioBusBypass.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbvsgny6e0cci" +path="res://.godot/imported/AudioBusBypass.svg-2d2ae3ad6d756468f3642d81fd42790c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioBusBypass.svg" +dest_files=["res://.godot/imported/AudioBusBypass.svg-2d2ae3ad6d756468f3642d81fd42790c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioBusLayout.svg b/addons/godot_tours/bubble/assets/icons/AudioBusLayout.svg new file mode 100644 index 0000000..7670aa2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioBusLayout.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioBusLayout.svg.import b/addons/godot_tours/bubble/assets/icons/AudioBusLayout.svg.import new file mode 100644 index 0000000..41ead08 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioBusLayout.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceyo3togjbvib" +path="res://.godot/imported/AudioBusLayout.svg-6911ad8a33f61fa92010bd706d4151d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioBusLayout.svg" +dest_files=["res://.godot/imported/AudioBusLayout.svg-6911ad8a33f61fa92010bd706d4151d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioBusMute.svg b/addons/godot_tours/bubble/assets/icons/AudioBusMute.svg new file mode 100644 index 0000000..54f5213 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioBusMute.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioBusMute.svg.import b/addons/godot_tours/bubble/assets/icons/AudioBusMute.svg.import new file mode 100644 index 0000000..474a804 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioBusMute.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3vuu646kbj5u" +path="res://.godot/imported/AudioBusMute.svg-7315eb1c7e7ea4aa10c04801cf37280c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioBusMute.svg" +dest_files=["res://.godot/imported/AudioBusMute.svg-7315eb1c7e7ea4aa10c04801cf37280c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioBusSolo.svg b/addons/godot_tours/bubble/assets/icons/AudioBusSolo.svg new file mode 100644 index 0000000..b0b383c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioBusSolo.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioBusSolo.svg.import b/addons/godot_tours/bubble/assets/icons/AudioBusSolo.svg.import new file mode 100644 index 0000000..4e4d917 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioBusSolo.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brilc52xv7og4" +path="res://.godot/imported/AudioBusSolo.svg-0111746d8c55bd83268ec156b9e70b41.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioBusSolo.svg" +dest_files=["res://.godot/imported/AudioBusSolo.svg-0111746d8c55bd83268ec156b9e70b41.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioListener2D.svg b/addons/godot_tours/bubble/assets/icons/AudioListener2D.svg new file mode 100644 index 0000000..dae1718 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioListener2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioListener2D.svg.import b/addons/godot_tours/bubble/assets/icons/AudioListener2D.svg.import new file mode 100644 index 0000000..531494c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioListener2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4othkydjvb1p" +path="res://.godot/imported/AudioListener2D.svg-fca4f9abc66c670f04e2240241917f2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioListener2D.svg" +dest_files=["res://.godot/imported/AudioListener2D.svg-fca4f9abc66c670f04e2240241917f2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioListener3D.svg b/addons/godot_tours/bubble/assets/icons/AudioListener3D.svg new file mode 100644 index 0000000..35cf068 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioListener3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioListener3D.svg.import b/addons/godot_tours/bubble/assets/icons/AudioListener3D.svg.import new file mode 100644 index 0000000..27d16d7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioListener3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxssudd6uak28" +path="res://.godot/imported/AudioListener3D.svg-8384d1ae1f76503b52cb0ff06e2cd5d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioListener3D.svg" +dest_files=["res://.godot/imported/AudioListener3D.svg-8384d1ae1f76503b52cb0ff06e2cd5d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioStream.svg b/addons/godot_tours/bubble/assets/icons/AudioStream.svg new file mode 100644 index 0000000..c213da8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStream.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioStream.svg.import b/addons/godot_tours/bubble/assets/icons/AudioStream.svg.import new file mode 100644 index 0000000..02596c5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStream.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yqktjovg8cm6" +path="res://.godot/imported/AudioStream.svg-c3331a44f043fa3dd31200682635a1f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioStream.svg" +dest_files=["res://.godot/imported/AudioStream.svg-c3331a44f043fa3dd31200682635a1f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamGenerator.svg b/addons/godot_tours/bubble/assets/icons/AudioStreamGenerator.svg new file mode 100644 index 0000000..2e822de --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamGenerator.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamGenerator.svg.import b/addons/godot_tours/bubble/assets/icons/AudioStreamGenerator.svg.import new file mode 100644 index 0000000..bb41a84 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamGenerator.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpd8dretyedr5" +path="res://.godot/imported/AudioStreamGenerator.svg-c348767144a60650991d2e1b1fb4cc46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioStreamGenerator.svg" +dest_files=["res://.godot/imported/AudioStreamGenerator.svg-c348767144a60650991d2e1b1fb4cc46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamMP3.svg b/addons/godot_tours/bubble/assets/icons/AudioStreamMP3.svg new file mode 100644 index 0000000..bb06b90 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamMP3.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamMP3.svg.import b/addons/godot_tours/bubble/assets/icons/AudioStreamMP3.svg.import new file mode 100644 index 0000000..6e444a6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamMP3.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dukepux50uxlt" +path="res://.godot/imported/AudioStreamMP3.svg-cc38eca36b7c420a5c1bd6e35ba54ad7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioStreamMP3.svg" +dest_files=["res://.godot/imported/AudioStreamMP3.svg-cc38eca36b7c420a5c1bd6e35ba54ad7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamMicrophone.svg b/addons/godot_tours/bubble/assets/icons/AudioStreamMicrophone.svg new file mode 100644 index 0000000..ca13bcb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamMicrophone.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamMicrophone.svg.import b/addons/godot_tours/bubble/assets/icons/AudioStreamMicrophone.svg.import new file mode 100644 index 0000000..d449321 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamMicrophone.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gdc70lfa53ry" +path="res://.godot/imported/AudioStreamMicrophone.svg-72968b73cb092ff36585151c1576c03c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioStreamMicrophone.svg" +dest_files=["res://.godot/imported/AudioStreamMicrophone.svg-72968b73cb092ff36585151c1576c03c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamOggVorbis.svg b/addons/godot_tours/bubble/assets/icons/AudioStreamOggVorbis.svg new file mode 100644 index 0000000..bb06b90 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamOggVorbis.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamOggVorbis.svg.import b/addons/godot_tours/bubble/assets/icons/AudioStreamOggVorbis.svg.import new file mode 100644 index 0000000..466bec1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamOggVorbis.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk44b0dq1h4i6" +path="res://.godot/imported/AudioStreamOggVorbis.svg-3c495ae06c4d6c938cd454c0fc305649.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioStreamOggVorbis.svg" +dest_files=["res://.godot/imported/AudioStreamOggVorbis.svg-3c495ae06c4d6c938cd454c0fc305649.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer.svg b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer.svg new file mode 100644 index 0000000..317b25d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer.svg.import b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer.svg.import new file mode 100644 index 0000000..9798e36 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tkc4i005037q" +path="res://.godot/imported/AudioStreamPlayer.svg-943f2de407366e4b8c7e92903c1a4ff7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioStreamPlayer.svg" +dest_files=["res://.godot/imported/AudioStreamPlayer.svg-943f2de407366e4b8c7e92903c1a4ff7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer2D.svg b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer2D.svg new file mode 100644 index 0000000..87beccd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer2D.svg.import b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer2D.svg.import new file mode 100644 index 0000000..d357bd3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bboxi3eo0fsyj" +path="res://.godot/imported/AudioStreamPlayer2D.svg-065a38fe7e2bf880aeebbff6c77c6a4a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioStreamPlayer2D.svg" +dest_files=["res://.godot/imported/AudioStreamPlayer2D.svg-065a38fe7e2bf880aeebbff6c77c6a4a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer3D.svg b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer3D.svg new file mode 100644 index 0000000..440a5e5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer3D.svg.import b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer3D.svg.import new file mode 100644 index 0000000..3c58c62 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamPlayer3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sxxcc4lb65j8" +path="res://.godot/imported/AudioStreamPlayer3D.svg-671c26b4658eb23daefbef4e2405b517.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioStreamPlayer3D.svg" +dest_files=["res://.godot/imported/AudioStreamPlayer3D.svg-671c26b4658eb23daefbef4e2405b517.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamPolyphonic.svg b/addons/godot_tours/bubble/assets/icons/AudioStreamPolyphonic.svg new file mode 100644 index 0000000..0e20205 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamPolyphonic.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamPolyphonic.svg.import b/addons/godot_tours/bubble/assets/icons/AudioStreamPolyphonic.svg.import new file mode 100644 index 0000000..370f3a0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamPolyphonic.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl6angta5coo1" +path="res://.godot/imported/AudioStreamPolyphonic.svg-fc64458193659cf4995ce2d04cc56f6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioStreamPolyphonic.svg" +dest_files=["res://.godot/imported/AudioStreamPolyphonic.svg-fc64458193659cf4995ce2d04cc56f6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamRandomizer.svg b/addons/godot_tours/bubble/assets/icons/AudioStreamRandomizer.svg new file mode 100644 index 0000000..70f7441 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamRandomizer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamRandomizer.svg.import b/addons/godot_tours/bubble/assets/icons/AudioStreamRandomizer.svg.import new file mode 100644 index 0000000..10d7744 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamRandomizer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmpkjkrmtlgew" +path="res://.godot/imported/AudioStreamRandomizer.svg-d6d0bd044e26095cc46a2ac89cf9b4d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioStreamRandomizer.svg" +dest_files=["res://.godot/imported/AudioStreamRandomizer.svg-d6d0bd044e26095cc46a2ac89cf9b4d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamWAV.svg b/addons/godot_tours/bubble/assets/icons/AudioStreamWAV.svg new file mode 100644 index 0000000..bb06b90 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamWAV.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AudioStreamWAV.svg.import b/addons/godot_tours/bubble/assets/icons/AudioStreamWAV.svg.import new file mode 100644 index 0000000..ee0879b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AudioStreamWAV.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dars231upg2n5" +path="res://.godot/imported/AudioStreamWAV.svg-9ca51ec229a47178f58404a9149f1888.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AudioStreamWAV.svg" +dest_files=["res://.godot/imported/AudioStreamWAV.svg-9ca51ec229a47178f58404a9149f1888.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AutoEnd.svg b/addons/godot_tours/bubble/assets/icons/AutoEnd.svg new file mode 100644 index 0000000..1205da6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AutoEnd.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AutoEnd.svg.import b/addons/godot_tours/bubble/assets/icons/AutoEnd.svg.import new file mode 100644 index 0000000..fe96311 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AutoEnd.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drrgve8nyayhi" +path="res://.godot/imported/AutoEnd.svg-b2cf45b85b4217b48a8557e006f9955a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AutoEnd.svg" +dest_files=["res://.godot/imported/AutoEnd.svg-b2cf45b85b4217b48a8557e006f9955a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AutoKey.svg b/addons/godot_tours/bubble/assets/icons/AutoKey.svg new file mode 100644 index 0000000..5af089c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AutoKey.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AutoKey.svg.import b/addons/godot_tours/bubble/assets/icons/AutoKey.svg.import new file mode 100644 index 0000000..d00fda6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AutoKey.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4wjl4182wqlx" +path="res://.godot/imported/AutoKey.svg-0926037b4f1680a539e415dbdaaee78a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AutoKey.svg" +dest_files=["res://.godot/imported/AutoKey.svg-0926037b4f1680a539e415dbdaaee78a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AutoPlay.svg b/addons/godot_tours/bubble/assets/icons/AutoPlay.svg new file mode 100644 index 0000000..a12cf1f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AutoPlay.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AutoPlay.svg.import b/addons/godot_tours/bubble/assets/icons/AutoPlay.svg.import new file mode 100644 index 0000000..2eb2ef7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AutoPlay.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2skhunflw68f" +path="res://.godot/imported/AutoPlay.svg-a3861163e0988b395ae8fe9b044e839b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AutoPlay.svg" +dest_files=["res://.godot/imported/AutoPlay.svg-a3861163e0988b395ae8fe9b044e839b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/AutoTriangle.svg b/addons/godot_tours/bubble/assets/icons/AutoTriangle.svg new file mode 100644 index 0000000..2e70dfe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AutoTriangle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/AutoTriangle.svg.import b/addons/godot_tours/bubble/assets/icons/AutoTriangle.svg.import new file mode 100644 index 0000000..e794afe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/AutoTriangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkietp6ji32xi" +path="res://.godot/imported/AutoTriangle.svg-364f525f16657e22b5fb43a20e7626a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/AutoTriangle.svg" +dest_files=["res://.godot/imported/AutoTriangle.svg-364f525f16657e22b5fb43a20e7626a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Back.svg b/addons/godot_tours/bubble/assets/icons/Back.svg new file mode 100644 index 0000000..1f9d32d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Back.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Back.svg.import b/addons/godot_tours/bubble/assets/icons/Back.svg.import new file mode 100644 index 0000000..86457ec --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Back.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://irqpbvvoafyp" +path="res://.godot/imported/Back.svg-9e8522a68dc99fd5b2f74c150bba9f21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Back.svg" +dest_files=["res://.godot/imported/Back.svg-9e8522a68dc99fd5b2f74c150bba9f21.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BackBufferCopy.svg b/addons/godot_tours/bubble/assets/icons/BackBufferCopy.svg new file mode 100644 index 0000000..c85a35a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BackBufferCopy.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BackBufferCopy.svg.import b/addons/godot_tours/bubble/assets/icons/BackBufferCopy.svg.import new file mode 100644 index 0000000..6d5f889 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BackBufferCopy.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxjilau7smue3" +path="res://.godot/imported/BackBufferCopy.svg-fd3edf6ab47c1affbeb84731a783229b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BackBufferCopy.svg" +dest_files=["res://.godot/imported/BackBufferCopy.svg-fd3edf6ab47c1affbeb84731a783229b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Bake.svg b/addons/godot_tours/bubble/assets/icons/Bake.svg new file mode 100644 index 0000000..9c652c7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Bake.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Bake.svg.import b/addons/godot_tours/bubble/assets/icons/Bake.svg.import new file mode 100644 index 0000000..82a8e2c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Bake.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b87vr0mv1hplm" +path="res://.godot/imported/Bake.svg-0cf9f1d769f5fe154cb2edbd4a723e27.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Bake.svg" +dest_files=["res://.godot/imported/Bake.svg-0cf9f1d769f5fe154cb2edbd4a723e27.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BaseButton.svg b/addons/godot_tours/bubble/assets/icons/BaseButton.svg new file mode 100644 index 0000000..039becb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BaseButton.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BaseButton.svg.import b/addons/godot_tours/bubble/assets/icons/BaseButton.svg.import new file mode 100644 index 0000000..6f71103 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BaseButton.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7bw57ir73mq6" +path="res://.godot/imported/BaseButton.svg-d8997621b2502d5654cfb18c350a0318.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BaseButton.svg" +dest_files=["res://.godot/imported/BaseButton.svg-d8997621b2502d5654cfb18c350a0318.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Basis.svg b/addons/godot_tours/bubble/assets/icons/Basis.svg new file mode 100644 index 0000000..6754da4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Basis.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Basis.svg.import b/addons/godot_tours/bubble/assets/icons/Basis.svg.import new file mode 100644 index 0000000..472d70d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Basis.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biu13xl283cbh" +path="res://.godot/imported/Basis.svg-2759e68f126a3cf9454e37732be4ec87.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Basis.svg" +dest_files=["res://.godot/imported/Basis.svg-2759e68f126a3cf9454e37732be4ec87.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BezierHandlesBalanced.svg b/addons/godot_tours/bubble/assets/icons/BezierHandlesBalanced.svg new file mode 100644 index 0000000..439a382 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BezierHandlesBalanced.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BezierHandlesBalanced.svg.import b/addons/godot_tours/bubble/assets/icons/BezierHandlesBalanced.svg.import new file mode 100644 index 0000000..590d171 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BezierHandlesBalanced.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkpfmjtwhlxo1" +path="res://.godot/imported/BezierHandlesBalanced.svg-b0c3f7203a3d1f386a8d80676462f8fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BezierHandlesBalanced.svg" +dest_files=["res://.godot/imported/BezierHandlesBalanced.svg-b0c3f7203a3d1f386a8d80676462f8fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BezierHandlesFree.svg b/addons/godot_tours/bubble/assets/icons/BezierHandlesFree.svg new file mode 100644 index 0000000..69fdaf2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BezierHandlesFree.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BezierHandlesFree.svg.import b/addons/godot_tours/bubble/assets/icons/BezierHandlesFree.svg.import new file mode 100644 index 0000000..b8da841 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BezierHandlesFree.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diu7yoeye7qxp" +path="res://.godot/imported/BezierHandlesFree.svg-7ab0d58168338c471de13ffaa6b86f74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BezierHandlesFree.svg" +dest_files=["res://.godot/imported/BezierHandlesFree.svg-7ab0d58168338c471de13ffaa6b86f74.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BezierHandlesLinear.svg b/addons/godot_tours/bubble/assets/icons/BezierHandlesLinear.svg new file mode 100644 index 0000000..fa1ada5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BezierHandlesLinear.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BezierHandlesLinear.svg.import b/addons/godot_tours/bubble/assets/icons/BezierHandlesLinear.svg.import new file mode 100644 index 0000000..747cab3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BezierHandlesLinear.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coxydy2q1ca0v" +path="res://.godot/imported/BezierHandlesLinear.svg-c44de63fda08f2ba6b86b6d721dbb26b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BezierHandlesLinear.svg" +dest_files=["res://.godot/imported/BezierHandlesLinear.svg-c44de63fda08f2ba6b86b6d721dbb26b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BezierHandlesMirror.svg b/addons/godot_tours/bubble/assets/icons/BezierHandlesMirror.svg new file mode 100644 index 0000000..c64e08d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BezierHandlesMirror.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BezierHandlesMirror.svg.import b/addons/godot_tours/bubble/assets/icons/BezierHandlesMirror.svg.import new file mode 100644 index 0000000..5a9d0d0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BezierHandlesMirror.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br3e1ttem380p" +path="res://.godot/imported/BezierHandlesMirror.svg-906f5ed27160f87e2a95c9fcbcfb8ffa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BezierHandlesMirror.svg" +dest_files=["res://.godot/imported/BezierHandlesMirror.svg-906f5ed27160f87e2a95c9fcbcfb8ffa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BitMap.svg b/addons/godot_tours/bubble/assets/icons/BitMap.svg new file mode 100644 index 0000000..703c958 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BitMap.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BitMap.svg.import b/addons/godot_tours/bubble/assets/icons/BitMap.svg.import new file mode 100644 index 0000000..2d03fc7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BitMap.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg32caymwu7io" +path="res://.godot/imported/BitMap.svg-a7512d3a3b4d3fd78af6ddf33a2f52d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BitMap.svg" +dest_files=["res://.godot/imported/BitMap.svg-a7512d3a3b4d3fd78af6ddf33a2f52d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Blend.svg b/addons/godot_tours/bubble/assets/icons/Blend.svg new file mode 100644 index 0000000..4ccfb01 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Blend.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Blend.svg.import b/addons/godot_tours/bubble/assets/icons/Blend.svg.import new file mode 100644 index 0000000..0b8d9b7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Blend.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0rl7v41sh7ih" +path="res://.godot/imported/Blend.svg-c0efd6ab970f19c5317468e07ae71b77.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Blend.svg" +dest_files=["res://.godot/imported/Blend.svg-c0efd6ab970f19c5317468e07ae71b77.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Bone.svg b/addons/godot_tours/bubble/assets/icons/Bone.svg new file mode 100644 index 0000000..16c232c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Bone.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Bone.svg.import b/addons/godot_tours/bubble/assets/icons/Bone.svg.import new file mode 100644 index 0000000..1456503 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Bone.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://meu8gr5ya601" +path="res://.godot/imported/Bone.svg-124f34a035b4673ad30bbcb7d08c1d69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Bone.svg" +dest_files=["res://.godot/imported/Bone.svg-124f34a035b4673ad30bbcb7d08c1d69.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Bone2D.svg b/addons/godot_tours/bubble/assets/icons/Bone2D.svg new file mode 100644 index 0000000..efa1d9d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Bone2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Bone2D.svg.import b/addons/godot_tours/bubble/assets/icons/Bone2D.svg.import new file mode 100644 index 0000000..380de33 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Bone2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwlqubiqfd7kr" +path="res://.godot/imported/Bone2D.svg-3d096496194b516e5d5b66ffb985c086.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Bone2D.svg" +dest_files=["res://.godot/imported/Bone2D.svg-3d096496194b516e5d5b66ffb985c086.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoneAttachment3D.svg b/addons/godot_tours/bubble/assets/icons/BoneAttachment3D.svg new file mode 100644 index 0000000..ec515bc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneAttachment3D.svg @@ -0,0 +1,20 @@ + + + + + + + diff --git a/addons/godot_tours/bubble/assets/icons/BoneAttachment3D.svg.import b/addons/godot_tours/bubble/assets/icons/BoneAttachment3D.svg.import new file mode 100644 index 0000000..8a28626 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneAttachment3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjyitya8h16tn" +path="res://.godot/imported/BoneAttachment3D.svg-ffbbada4ed682ee9428c8574fa7883b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoneAttachment3D.svg" +dest_files=["res://.godot/imported/BoneAttachment3D.svg-ffbbada4ed682ee9428c8574fa7883b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapHumanBody.svg b/addons/godot_tours/bubble/assets/icons/BoneMapHumanBody.svg new file mode 100644 index 0000000..6532053 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapHumanBody.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapHumanBody.svg.import b/addons/godot_tours/bubble/assets/icons/BoneMapHumanBody.svg.import new file mode 100644 index 0000000..7361bff --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapHumanBody.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd4vfw86sbv6p" +path="res://.godot/imported/BoneMapHumanBody.svg-d637b590b8c64aafabdf13486b7a8702.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoneMapHumanBody.svg" +dest_files=["res://.godot/imported/BoneMapHumanBody.svg-d637b590b8c64aafabdf13486b7a8702.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapHumanFace.svg b/addons/godot_tours/bubble/assets/icons/BoneMapHumanFace.svg new file mode 100644 index 0000000..86e9821 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapHumanFace.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapHumanFace.svg.import b/addons/godot_tours/bubble/assets/icons/BoneMapHumanFace.svg.import new file mode 100644 index 0000000..254cc08 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapHumanFace.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://htpnp1shsv2h" +path="res://.godot/imported/BoneMapHumanFace.svg-0a644c513e3be78653fc19e5bd4afe69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoneMapHumanFace.svg" +dest_files=["res://.godot/imported/BoneMapHumanFace.svg-0a644c513e3be78653fc19e5bd4afe69.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapHumanLeftHand.svg b/addons/godot_tours/bubble/assets/icons/BoneMapHumanLeftHand.svg new file mode 100644 index 0000000..065021a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapHumanLeftHand.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapHumanLeftHand.svg.import b/addons/godot_tours/bubble/assets/icons/BoneMapHumanLeftHand.svg.import new file mode 100644 index 0000000..a8dc4e7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapHumanLeftHand.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dak2cpm2pa6dt" +path="res://.godot/imported/BoneMapHumanLeftHand.svg-0d89cdfbfb7eaea40d90854ca3f6f156.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoneMapHumanLeftHand.svg" +dest_files=["res://.godot/imported/BoneMapHumanLeftHand.svg-0d89cdfbfb7eaea40d90854ca3f6f156.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapHumanRightHand.svg b/addons/godot_tours/bubble/assets/icons/BoneMapHumanRightHand.svg new file mode 100644 index 0000000..f676a05 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapHumanRightHand.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapHumanRightHand.svg.import b/addons/godot_tours/bubble/assets/icons/BoneMapHumanRightHand.svg.import new file mode 100644 index 0000000..f0250fc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapHumanRightHand.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dntlgqkqne8ts" +path="res://.godot/imported/BoneMapHumanRightHand.svg-7c0c7407b8802ab6fd84a4d6884a7182.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoneMapHumanRightHand.svg" +dest_files=["res://.godot/imported/BoneMapHumanRightHand.svg-7c0c7407b8802ab6fd84a4d6884a7182.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapperHandle.svg b/addons/godot_tours/bubble/assets/icons/BoneMapperHandle.svg new file mode 100644 index 0000000..3d3b5fd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapperHandle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapperHandle.svg.import b/addons/godot_tours/bubble/assets/icons/BoneMapperHandle.svg.import new file mode 100644 index 0000000..ef98a57 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapperHandle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce1kvr2t7ibq" +path="res://.godot/imported/BoneMapperHandle.svg-7abb9e0543eb10308242c0ff934f3d05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoneMapperHandle.svg" +dest_files=["res://.godot/imported/BoneMapperHandle.svg-7abb9e0543eb10308242c0ff934f3d05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapperHandleCircle.svg b/addons/godot_tours/bubble/assets/icons/BoneMapperHandleCircle.svg new file mode 100644 index 0000000..c7d4cf2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapperHandleCircle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapperHandleCircle.svg.import b/addons/godot_tours/bubble/assets/icons/BoneMapperHandleCircle.svg.import new file mode 100644 index 0000000..b4df579 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapperHandleCircle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cog6byophfvoe" +path="res://.godot/imported/BoneMapperHandleCircle.svg-8cc3b42e364dbf88501b75412baa8cce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoneMapperHandleCircle.svg" +dest_files=["res://.godot/imported/BoneMapperHandleCircle.svg-8cc3b42e364dbf88501b75412baa8cce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapperHandleSelected.svg b/addons/godot_tours/bubble/assets/icons/BoneMapperHandleSelected.svg new file mode 100644 index 0000000..731623c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapperHandleSelected.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BoneMapperHandleSelected.svg.import b/addons/godot_tours/bubble/assets/icons/BoneMapperHandleSelected.svg.import new file mode 100644 index 0000000..3125cdf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoneMapperHandleSelected.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3ogup82jdoog" +path="res://.godot/imported/BoneMapperHandleSelected.svg-80aceaa4698fa7c6810fd816f794b2ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoneMapperHandleSelected.svg" +dest_files=["res://.godot/imported/BoneMapperHandleSelected.svg-80aceaa4698fa7c6810fd816f794b2ae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoxContainer.svg b/addons/godot_tours/bubble/assets/icons/BoxContainer.svg new file mode 100644 index 0000000..8bc2838 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoxContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BoxContainer.svg.import b/addons/godot_tours/bubble/assets/icons/BoxContainer.svg.import new file mode 100644 index 0000000..3de4599 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoxContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds1woo2mifpyi" +path="res://.godot/imported/BoxContainer.svg-d8242b267234c16366e57e7315d1119a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoxContainer.svg" +dest_files=["res://.godot/imported/BoxContainer.svg-d8242b267234c16366e57e7315d1119a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoxMesh.svg b/addons/godot_tours/bubble/assets/icons/BoxMesh.svg new file mode 100644 index 0000000..734f239 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoxMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BoxMesh.svg.import b/addons/godot_tours/bubble/assets/icons/BoxMesh.svg.import new file mode 100644 index 0000000..c1dfdcf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoxMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vrbfn8wgi5e4" +path="res://.godot/imported/BoxMesh.svg-f5b2425596e62561010687709b3bab92.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoxMesh.svg" +dest_files=["res://.godot/imported/BoxMesh.svg-f5b2425596e62561010687709b3bab92.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoxOccluder3D.svg b/addons/godot_tours/bubble/assets/icons/BoxOccluder3D.svg new file mode 100644 index 0000000..888e9fe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoxOccluder3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BoxOccluder3D.svg.import b/addons/godot_tours/bubble/assets/icons/BoxOccluder3D.svg.import new file mode 100644 index 0000000..167cae2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoxOccluder3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bilobk4y6bn5o" +path="res://.godot/imported/BoxOccluder3D.svg-ea7a73e7bc944e46a710e485f79d04b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoxOccluder3D.svg" +dest_files=["res://.godot/imported/BoxOccluder3D.svg-ea7a73e7bc944e46a710e485f79d04b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BoxShape3D.svg b/addons/godot_tours/bubble/assets/icons/BoxShape3D.svg new file mode 100644 index 0000000..ba86e08 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoxShape3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BoxShape3D.svg.import b/addons/godot_tours/bubble/assets/icons/BoxShape3D.svg.import new file mode 100644 index 0000000..08479b3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BoxShape3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brfttbhhjcfd" +path="res://.godot/imported/BoxShape3D.svg-c23e5d84c99dbfb3a9f33900818ec8dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BoxShape3D.svg" +dest_files=["res://.godot/imported/BoxShape3D.svg-c23e5d84c99dbfb3a9f33900818ec8dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Breakpoint.svg b/addons/godot_tours/bubble/assets/icons/Breakpoint.svg new file mode 100644 index 0000000..dae5fa7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Breakpoint.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Breakpoint.svg.import b/addons/godot_tours/bubble/assets/icons/Breakpoint.svg.import new file mode 100644 index 0000000..32948ac --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Breakpoint.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d36usunksh7jv" +path="res://.godot/imported/Breakpoint.svg-657fa17ca5c6be3678e159f5f05afbba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Breakpoint.svg" +dest_files=["res://.godot/imported/Breakpoint.svg-657fa17ca5c6be3678e159f5f05afbba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Bucket.svg b/addons/godot_tours/bubble/assets/icons/Bucket.svg new file mode 100644 index 0000000..b2c6946 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Bucket.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Bucket.svg.import b/addons/godot_tours/bubble/assets/icons/Bucket.svg.import new file mode 100644 index 0000000..faa549b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Bucket.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5os5ff6sb24o" +path="res://.godot/imported/Bucket.svg-b127df9ea681fa7ca0bfdb650747aed4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Bucket.svg" +dest_files=["res://.godot/imported/Bucket.svg-b127df9ea681fa7ca0bfdb650747aed4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BusVuActive.svg b/addons/godot_tours/bubble/assets/icons/BusVuActive.svg new file mode 100644 index 0000000..33906ee --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BusVuActive.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BusVuActive.svg.import b/addons/godot_tours/bubble/assets/icons/BusVuActive.svg.import new file mode 100644 index 0000000..87953d9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BusVuActive.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yrposwqklmx" +path="res://.godot/imported/BusVuActive.svg-c6475d794521568e48891af84405a2ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BusVuActive.svg" +dest_files=["res://.godot/imported/BusVuActive.svg-c6475d794521568e48891af84405a2ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/BusVuFrozen.svg b/addons/godot_tours/bubble/assets/icons/BusVuFrozen.svg new file mode 100644 index 0000000..8b7f479 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BusVuFrozen.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/BusVuFrozen.svg.import b/addons/godot_tours/bubble/assets/icons/BusVuFrozen.svg.import new file mode 100644 index 0000000..3c03ef1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/BusVuFrozen.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://knlw0m34bv5a" +path="res://.godot/imported/BusVuFrozen.svg-587248c62b6abd47e3189f5a787212a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/BusVuFrozen.svg" +dest_files=["res://.godot/imported/BusVuFrozen.svg-587248c62b6abd47e3189f5a787212a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Button.svg b/addons/godot_tours/bubble/assets/icons/Button.svg new file mode 100644 index 0000000..ae7444c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Button.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Button.svg.import b/addons/godot_tours/bubble/assets/icons/Button.svg.import new file mode 100644 index 0000000..1e7a40f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Button.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://88j3186yrrq5" +path="res://.godot/imported/Button.svg-4e02056eb688977c641c2622920335d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Button.svg" +dest_files=["res://.godot/imported/Button.svg-4e02056eb688977c641c2622920335d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ButtonGroup.svg b/addons/godot_tours/bubble/assets/icons/ButtonGroup.svg new file mode 100644 index 0000000..81eaa7a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ButtonGroup.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ButtonGroup.svg.import b/addons/godot_tours/bubble/assets/icons/ButtonGroup.svg.import new file mode 100644 index 0000000..0068b0a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ButtonGroup.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxg7eoogpn6sf" +path="res://.godot/imported/ButtonGroup.svg-423c7da4d66bc1c3ccefcf8d1600389d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ButtonGroup.svg" +dest_files=["res://.godot/imported/ButtonGroup.svg-423c7da4d66bc1c3ccefcf8d1600389d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CPUParticles2D.svg b/addons/godot_tours/bubble/assets/icons/CPUParticles2D.svg new file mode 100644 index 0000000..84754a3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CPUParticles2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CPUParticles2D.svg.import b/addons/godot_tours/bubble/assets/icons/CPUParticles2D.svg.import new file mode 100644 index 0000000..89a4c51 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CPUParticles2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd3fdyyklliro" +path="res://.godot/imported/CPUParticles2D.svg-39fa604b4f8175b8f73dc1ebffa169bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CPUParticles2D.svg" +dest_files=["res://.godot/imported/CPUParticles2D.svg-39fa604b4f8175b8f73dc1ebffa169bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CPUParticles3D.svg b/addons/godot_tours/bubble/assets/icons/CPUParticles3D.svg new file mode 100644 index 0000000..e1a628d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CPUParticles3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CPUParticles3D.svg.import b/addons/godot_tours/bubble/assets/icons/CPUParticles3D.svg.import new file mode 100644 index 0000000..64bc970 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CPUParticles3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwv3f2tj7snhs" +path="res://.godot/imported/CPUParticles3D.svg-6e0589696754d198f108e570b996dd9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CPUParticles3D.svg" +dest_files=["res://.godot/imported/CPUParticles3D.svg-6e0589696754d198f108e570b996dd9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CSGBox3D.svg b/addons/godot_tours/bubble/assets/icons/CSGBox3D.svg new file mode 100644 index 0000000..d425180 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGBox3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CSGBox3D.svg.import b/addons/godot_tours/bubble/assets/icons/CSGBox3D.svg.import new file mode 100644 index 0000000..21e7868 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGBox3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doeysaxx0sgaj" +path="res://.godot/imported/CSGBox3D.svg-fd92377bc7f4c33cc3536e69b5f18015.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CSGBox3D.svg" +dest_files=["res://.godot/imported/CSGBox3D.svg-fd92377bc7f4c33cc3536e69b5f18015.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CSGCapsule3D.svg b/addons/godot_tours/bubble/assets/icons/CSGCapsule3D.svg new file mode 100644 index 0000000..3c26579 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGCapsule3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CSGCapsule3D.svg.import b/addons/godot_tours/bubble/assets/icons/CSGCapsule3D.svg.import new file mode 100644 index 0000000..8a5c4e0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGCapsule3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coxgwi7vlmsuu" +path="res://.godot/imported/CSGCapsule3D.svg-e94d2f1a310538fb2e97a5d7f54cde0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CSGCapsule3D.svg" +dest_files=["res://.godot/imported/CSGCapsule3D.svg-e94d2f1a310538fb2e97a5d7f54cde0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CSGCombiner3D.svg b/addons/godot_tours/bubble/assets/icons/CSGCombiner3D.svg new file mode 100644 index 0000000..8598897 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGCombiner3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CSGCombiner3D.svg.import b/addons/godot_tours/bubble/assets/icons/CSGCombiner3D.svg.import new file mode 100644 index 0000000..6723bf6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGCombiner3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d37l8r5m8ei7j" +path="res://.godot/imported/CSGCombiner3D.svg-66ca0985dfaa41e354c6fc49d122bd94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CSGCombiner3D.svg" +dest_files=["res://.godot/imported/CSGCombiner3D.svg-66ca0985dfaa41e354c6fc49d122bd94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CSGCylinder3D.svg b/addons/godot_tours/bubble/assets/icons/CSGCylinder3D.svg new file mode 100644 index 0000000..19e48b4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGCylinder3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CSGCylinder3D.svg.import b/addons/godot_tours/bubble/assets/icons/CSGCylinder3D.svg.import new file mode 100644 index 0000000..c7d6667 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGCylinder3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w76h8014abf" +path="res://.godot/imported/CSGCylinder3D.svg-d6a7646c40a0bf481776addf67dcd370.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CSGCylinder3D.svg" +dest_files=["res://.godot/imported/CSGCylinder3D.svg-d6a7646c40a0bf481776addf67dcd370.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CSGMesh3D.svg b/addons/godot_tours/bubble/assets/icons/CSGMesh3D.svg new file mode 100644 index 0000000..a1c2282 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGMesh3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CSGMesh3D.svg.import b/addons/godot_tours/bubble/assets/icons/CSGMesh3D.svg.import new file mode 100644 index 0000000..813a662 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGMesh3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cirg147p2fly0" +path="res://.godot/imported/CSGMesh3D.svg-bb4fef2e8b78e08ed1d13a1beecf9ca9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CSGMesh3D.svg" +dest_files=["res://.godot/imported/CSGMesh3D.svg-bb4fef2e8b78e08ed1d13a1beecf9ca9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CSGPolygon3D.svg b/addons/godot_tours/bubble/assets/icons/CSGPolygon3D.svg new file mode 100644 index 0000000..0900472 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGPolygon3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CSGPolygon3D.svg.import b/addons/godot_tours/bubble/assets/icons/CSGPolygon3D.svg.import new file mode 100644 index 0000000..e9bd4b7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGPolygon3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvu1mm5mwb7cb" +path="res://.godot/imported/CSGPolygon3D.svg-77bf5cbbc9d5f358215e9624728d9bb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CSGPolygon3D.svg" +dest_files=["res://.godot/imported/CSGPolygon3D.svg-77bf5cbbc9d5f358215e9624728d9bb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CSGSphere3D.svg b/addons/godot_tours/bubble/assets/icons/CSGSphere3D.svg new file mode 100644 index 0000000..a677ffa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGSphere3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CSGSphere3D.svg.import b/addons/godot_tours/bubble/assets/icons/CSGSphere3D.svg.import new file mode 100644 index 0000000..fd5f8f8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGSphere3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnyqa3kroec8c" +path="res://.godot/imported/CSGSphere3D.svg-d3c10f52e74961ad861bc2411129a736.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CSGSphere3D.svg" +dest_files=["res://.godot/imported/CSGSphere3D.svg-d3c10f52e74961ad861bc2411129a736.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CSGTorus3D.svg b/addons/godot_tours/bubble/assets/icons/CSGTorus3D.svg new file mode 100644 index 0000000..60c56bd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGTorus3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CSGTorus3D.svg.import b/addons/godot_tours/bubble/assets/icons/CSGTorus3D.svg.import new file mode 100644 index 0000000..f5e42bb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CSGTorus3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqckvop3gcaot" +path="res://.godot/imported/CSGTorus3D.svg-65c889410be837c50b5e875af381f66c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CSGTorus3D.svg" +dest_files=["res://.godot/imported/CSGTorus3D.svg-65c889410be837c50b5e875af381f66c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Callable.svg b/addons/godot_tours/bubble/assets/icons/Callable.svg new file mode 100644 index 0000000..73e1909 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Callable.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Callable.svg.import b/addons/godot_tours/bubble/assets/icons/Callable.svg.import new file mode 100644 index 0000000..b4d7b8b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Callable.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1onhkunf5756" +path="res://.godot/imported/Callable.svg-62abf48e9797230eca4c878f8796f0c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Callable.svg" +dest_files=["res://.godot/imported/Callable.svg-62abf48e9797230eca4c878f8796f0c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Camera2D.svg b/addons/godot_tours/bubble/assets/icons/Camera2D.svg new file mode 100644 index 0000000..81e5cc2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Camera2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Camera2D.svg.import b/addons/godot_tours/bubble/assets/icons/Camera2D.svg.import new file mode 100644 index 0000000..92db375 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Camera2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkn2ofotca1oc" +path="res://.godot/imported/Camera2D.svg-f63f7f8446168811271bbd1be11d92f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Camera2D.svg" +dest_files=["res://.godot/imported/Camera2D.svg-f63f7f8446168811271bbd1be11d92f2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Camera3D.svg b/addons/godot_tours/bubble/assets/icons/Camera3D.svg new file mode 100644 index 0000000..bf61aa4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Camera3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Camera3D.svg.import b/addons/godot_tours/bubble/assets/icons/Camera3D.svg.import new file mode 100644 index 0000000..8b9b677 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Camera3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl4yd48hiillg" +path="res://.godot/imported/Camera3D.svg-49c41b41dda73703284ba6a8899c4e05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Camera3D.svg" +dest_files=["res://.godot/imported/Camera3D.svg-49c41b41dda73703284ba6a8899c4e05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CameraAttributes.svg b/addons/godot_tours/bubble/assets/icons/CameraAttributes.svg new file mode 100644 index 0000000..d67e3d5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CameraAttributes.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CameraAttributes.svg.import b/addons/godot_tours/bubble/assets/icons/CameraAttributes.svg.import new file mode 100644 index 0000000..468486c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CameraAttributes.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://15fy4fxlfdh7" +path="res://.godot/imported/CameraAttributes.svg-ba57dc3e94d91d6beb0c8d91350b37c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CameraAttributes.svg" +dest_files=["res://.godot/imported/CameraAttributes.svg-ba57dc3e94d91d6beb0c8d91350b37c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CameraAttributesPhysical.svg b/addons/godot_tours/bubble/assets/icons/CameraAttributesPhysical.svg new file mode 100644 index 0000000..6871177 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CameraAttributesPhysical.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CameraAttributesPhysical.svg.import b/addons/godot_tours/bubble/assets/icons/CameraAttributesPhysical.svg.import new file mode 100644 index 0000000..e7225b5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CameraAttributesPhysical.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgfn6gcrmoh3a" +path="res://.godot/imported/CameraAttributesPhysical.svg-14512a19d3512993489b2455bf018fd5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CameraAttributesPhysical.svg" +dest_files=["res://.godot/imported/CameraAttributesPhysical.svg-14512a19d3512993489b2455bf018fd5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CameraAttributesPractical.svg b/addons/godot_tours/bubble/assets/icons/CameraAttributesPractical.svg new file mode 100644 index 0000000..c33351a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CameraAttributesPractical.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CameraAttributesPractical.svg.import b/addons/godot_tours/bubble/assets/icons/CameraAttributesPractical.svg.import new file mode 100644 index 0000000..241242e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CameraAttributesPractical.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chhl6ynok14ro" +path="res://.godot/imported/CameraAttributesPractical.svg-8dfb01e4699baaf11cb27aaa36d23128.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CameraAttributesPractical.svg" +dest_files=["res://.godot/imported/CameraAttributesPractical.svg-8dfb01e4699baaf11cb27aaa36d23128.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CameraTexture.svg b/addons/godot_tours/bubble/assets/icons/CameraTexture.svg new file mode 100644 index 0000000..af9c32f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CameraTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CameraTexture.svg.import b/addons/godot_tours/bubble/assets/icons/CameraTexture.svg.import new file mode 100644 index 0000000..9f2ec02 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CameraTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df7gyyld57vk2" +path="res://.godot/imported/CameraTexture.svg-f48b11ae6bf6fb90a7d2530cbe4db09a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CameraTexture.svg" +dest_files=["res://.godot/imported/CameraTexture.svg-f48b11ae6bf6fb90a7d2530cbe4db09a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CanvasGroup.svg b/addons/godot_tours/bubble/assets/icons/CanvasGroup.svg new file mode 100644 index 0000000..ff31323 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasGroup.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CanvasGroup.svg.import b/addons/godot_tours/bubble/assets/icons/CanvasGroup.svg.import new file mode 100644 index 0000000..354edaf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasGroup.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfmmidvj3mp8a" +path="res://.godot/imported/CanvasGroup.svg-88c358f116d18a475ad3938aefbbe328.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CanvasGroup.svg" +dest_files=["res://.godot/imported/CanvasGroup.svg-88c358f116d18a475ad3938aefbbe328.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CanvasItem.svg b/addons/godot_tours/bubble/assets/icons/CanvasItem.svg new file mode 100644 index 0000000..ec36a3b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasItem.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CanvasItem.svg.import b/addons/godot_tours/bubble/assets/icons/CanvasItem.svg.import new file mode 100644 index 0000000..82bef83 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasItem.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf8xatqc33cue" +path="res://.godot/imported/CanvasItem.svg-87cbbe10041341762382a21648d29151.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CanvasItem.svg" +dest_files=["res://.godot/imported/CanvasItem.svg-87cbbe10041341762382a21648d29151.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CanvasItemMaterial.svg b/addons/godot_tours/bubble/assets/icons/CanvasItemMaterial.svg new file mode 100644 index 0000000..35f4bbb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasItemMaterial.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CanvasItemMaterial.svg.import b/addons/godot_tours/bubble/assets/icons/CanvasItemMaterial.svg.import new file mode 100644 index 0000000..ee53a53 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasItemMaterial.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br7am3m6k5q75" +path="res://.godot/imported/CanvasItemMaterial.svg-691cc61b86c325174d405239f602b145.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CanvasItemMaterial.svg" +dest_files=["res://.godot/imported/CanvasItemMaterial.svg-691cc61b86c325174d405239f602b145.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CanvasLayer.svg b/addons/godot_tours/bubble/assets/icons/CanvasLayer.svg new file mode 100644 index 0000000..e334df1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasLayer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CanvasLayer.svg.import b/addons/godot_tours/bubble/assets/icons/CanvasLayer.svg.import new file mode 100644 index 0000000..6c215da --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasLayer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkr1slu6oq4gw" +path="res://.godot/imported/CanvasLayer.svg-1d8494561598c3d1ecb87d0a95f889d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CanvasLayer.svg" +dest_files=["res://.godot/imported/CanvasLayer.svg-1d8494561598c3d1ecb87d0a95f889d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CanvasModulate.svg b/addons/godot_tours/bubble/assets/icons/CanvasModulate.svg new file mode 100644 index 0000000..1a6d693 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasModulate.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CanvasModulate.svg.import b/addons/godot_tours/bubble/assets/icons/CanvasModulate.svg.import new file mode 100644 index 0000000..13bf9d0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasModulate.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds0u0c0noieeg" +path="res://.godot/imported/CanvasModulate.svg-30999feff8977dfdbc320506a282ac57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CanvasModulate.svg" +dest_files=["res://.godot/imported/CanvasModulate.svg-30999feff8977dfdbc320506a282ac57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CanvasTexture.svg b/addons/godot_tours/bubble/assets/icons/CanvasTexture.svg new file mode 100644 index 0000000..8734da3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CanvasTexture.svg.import b/addons/godot_tours/bubble/assets/icons/CanvasTexture.svg.import new file mode 100644 index 0000000..f2c9804 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CanvasTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl76n61mofp3o" +path="res://.godot/imported/CanvasTexture.svg-e72c5fb95bb9cfe0ec0d13bda949f2a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CanvasTexture.svg" +dest_files=["res://.godot/imported/CanvasTexture.svg-e72c5fb95bb9cfe0ec0d13bda949f2a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CapsuleMesh.svg b/addons/godot_tours/bubble/assets/icons/CapsuleMesh.svg new file mode 100644 index 0000000..ad8eea2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CapsuleMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CapsuleMesh.svg.import b/addons/godot_tours/bubble/assets/icons/CapsuleMesh.svg.import new file mode 100644 index 0000000..5f91630 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CapsuleMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlxqw551hgi33" +path="res://.godot/imported/CapsuleMesh.svg-19e066b6529e7628390681b991438ccf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CapsuleMesh.svg" +dest_files=["res://.godot/imported/CapsuleMesh.svg-19e066b6529e7628390681b991438ccf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CapsuleShape2D.svg b/addons/godot_tours/bubble/assets/icons/CapsuleShape2D.svg new file mode 100644 index 0000000..dc1d5b0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CapsuleShape2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CapsuleShape2D.svg.import b/addons/godot_tours/bubble/assets/icons/CapsuleShape2D.svg.import new file mode 100644 index 0000000..2dbd8d7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CapsuleShape2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clssswclarc5c" +path="res://.godot/imported/CapsuleShape2D.svg-81edb4414cb637c6ce0348d960fe5f0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CapsuleShape2D.svg" +dest_files=["res://.godot/imported/CapsuleShape2D.svg-81edb4414cb637c6ce0348d960fe5f0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CapsuleShape3D.svg b/addons/godot_tours/bubble/assets/icons/CapsuleShape3D.svg new file mode 100644 index 0000000..c8f000e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CapsuleShape3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CapsuleShape3D.svg.import b/addons/godot_tours/bubble/assets/icons/CapsuleShape3D.svg.import new file mode 100644 index 0000000..a7fa363 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CapsuleShape3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cffkevonq84gh" +path="res://.godot/imported/CapsuleShape3D.svg-56f50a51b547e57af25b0e7c8b028cbd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CapsuleShape3D.svg" +dest_files=["res://.godot/imported/CapsuleShape3D.svg-56f50a51b547e57af25b0e7c8b028cbd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CenterContainer.svg b/addons/godot_tours/bubble/assets/icons/CenterContainer.svg new file mode 100644 index 0000000..990f63b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CenterContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CenterContainer.svg.import b/addons/godot_tours/bubble/assets/icons/CenterContainer.svg.import new file mode 100644 index 0000000..d807f0f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CenterContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3bd5pjn22r7y" +path="res://.godot/imported/CenterContainer.svg-16a0a9db602d2a828045834886d71d0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CenterContainer.svg" +dest_files=["res://.godot/imported/CenterContainer.svg-16a0a9db602d2a828045834886d71d0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CenterView.svg b/addons/godot_tours/bubble/assets/icons/CenterView.svg new file mode 100644 index 0000000..dc4052f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CenterView.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CenterView.svg.import b/addons/godot_tours/bubble/assets/icons/CenterView.svg.import new file mode 100644 index 0000000..602bc9a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CenterView.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://phhedltyt88r" +path="res://.godot/imported/CenterView.svg-0239e81264be4fd573c488f10b9cdf03.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CenterView.svg" +dest_files=["res://.godot/imported/CenterView.svg-0239e81264be4fd573c488f10b9cdf03.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CharacterBody2D.svg b/addons/godot_tours/bubble/assets/icons/CharacterBody2D.svg new file mode 100644 index 0000000..2027ef2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CharacterBody2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CharacterBody2D.svg.import b/addons/godot_tours/bubble/assets/icons/CharacterBody2D.svg.import new file mode 100644 index 0000000..6ae1b54 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CharacterBody2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u87j1phfigec" +path="res://.godot/imported/CharacterBody2D.svg-7ec8acd16fa2635bd0756dad4cef4bdb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CharacterBody2D.svg" +dest_files=["res://.godot/imported/CharacterBody2D.svg-7ec8acd16fa2635bd0756dad4cef4bdb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CharacterBody3D.svg b/addons/godot_tours/bubble/assets/icons/CharacterBody3D.svg new file mode 100644 index 0000000..332d334 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CharacterBody3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CharacterBody3D.svg.import b/addons/godot_tours/bubble/assets/icons/CharacterBody3D.svg.import new file mode 100644 index 0000000..1ead509 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CharacterBody3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct47tmvf6hd51" +path="res://.godot/imported/CharacterBody3D.svg-fd60e265ab8aaee7e0960ba9bfd9903d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CharacterBody3D.svg" +dest_files=["res://.godot/imported/CharacterBody3D.svg-fd60e265ab8aaee7e0960ba9bfd9903d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CheckBox.svg b/addons/godot_tours/bubble/assets/icons/CheckBox.svg new file mode 100644 index 0000000..cbe203c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CheckBox.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CheckBox.svg.import b/addons/godot_tours/bubble/assets/icons/CheckBox.svg.import new file mode 100644 index 0000000..78f5f0a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CheckBox.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuailu7p83ku0" +path="res://.godot/imported/CheckBox.svg-2e8e0c4ea481d98833990f6f84a6219e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CheckBox.svg" +dest_files=["res://.godot/imported/CheckBox.svg-2e8e0c4ea481d98833990f6f84a6219e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CheckButton.svg b/addons/godot_tours/bubble/assets/icons/CheckButton.svg new file mode 100644 index 0000000..91367e2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CheckButton.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CheckButton.svg.import b/addons/godot_tours/bubble/assets/icons/CheckButton.svg.import new file mode 100644 index 0000000..10a7d95 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CheckButton.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cum7ater656hm" +path="res://.godot/imported/CheckButton.svg-98534995ab94e83f82dc4871f5d1d63a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CheckButton.svg" +dest_files=["res://.godot/imported/CheckButton.svg-98534995ab94e83f82dc4871f5d1d63a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Checkerboard.svg b/addons/godot_tours/bubble/assets/icons/Checkerboard.svg new file mode 100644 index 0000000..5836c06 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Checkerboard.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Checkerboard.svg.import b/addons/godot_tours/bubble/assets/icons/Checkerboard.svg.import new file mode 100644 index 0000000..2d0f7ef --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Checkerboard.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nxvu8lib4mo8" +path="res://.godot/imported/Checkerboard.svg-1421c863cd1923837d79a1546633fbad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Checkerboard.svg" +dest_files=["res://.godot/imported/Checkerboard.svg-1421c863cd1923837d79a1546633fbad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CircleShape2D.svg b/addons/godot_tours/bubble/assets/icons/CircleShape2D.svg new file mode 100644 index 0000000..da55f1d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CircleShape2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CircleShape2D.svg.import b/addons/godot_tours/bubble/assets/icons/CircleShape2D.svg.import new file mode 100644 index 0000000..d4cab10 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CircleShape2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1bcmseg0s5uu" +path="res://.godot/imported/CircleShape2D.svg-dcd8d505903f95592df53cfbb0300050.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CircleShape2D.svg" +dest_files=["res://.godot/imported/CircleShape2D.svg-dcd8d505903f95592df53cfbb0300050.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ClassList.svg b/addons/godot_tours/bubble/assets/icons/ClassList.svg new file mode 100644 index 0000000..0316dfc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ClassList.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ClassList.svg.import b/addons/godot_tours/bubble/assets/icons/ClassList.svg.import new file mode 100644 index 0000000..46dc473 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ClassList.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rpijvvma1y4b" +path="res://.godot/imported/ClassList.svg-bab4aaa925ba5b2850861085bcc193c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ClassList.svg" +dest_files=["res://.godot/imported/ClassList.svg-bab4aaa925ba5b2850861085bcc193c9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Clear.svg b/addons/godot_tours/bubble/assets/icons/Clear.svg new file mode 100644 index 0000000..577cacb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Clear.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Clear.svg.import b/addons/godot_tours/bubble/assets/icons/Clear.svg.import new file mode 100644 index 0000000..7bd4feb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Clear.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmay25qrqd2d5" +path="res://.godot/imported/Clear.svg-fef9c3f32a9d0213fd4b296f48fc710c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Clear.svg" +dest_files=["res://.godot/imported/Clear.svg-fef9c3f32a9d0213fd4b296f48fc710c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Close.svg b/addons/godot_tours/bubble/assets/icons/Close.svg new file mode 100644 index 0000000..be1c1dc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Close.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Close.svg.import b/addons/godot_tours/bubble/assets/icons/Close.svg.import new file mode 100644 index 0000000..cca6824 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Close.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bex1kcabr8t3h" +path="res://.godot/imported/Close.svg-b634729e9faff6a5afce75d3d3358623.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Close.svg" +dest_files=["res://.godot/imported/Close.svg-b634729e9faff6a5afce75d3d3358623.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CodeEdit.svg b/addons/godot_tours/bubble/assets/icons/CodeEdit.svg new file mode 100644 index 0000000..e2c040c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeEdit.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CodeEdit.svg.import b/addons/godot_tours/bubble/assets/icons/CodeEdit.svg.import new file mode 100644 index 0000000..7577d4b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeEdit.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj8nrgc2ja8ah" +path="res://.godot/imported/CodeEdit.svg-e6708225d03bd2bd5de3f55b114559d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CodeEdit.svg" +dest_files=["res://.godot/imported/CodeEdit.svg-e6708225d03bd2bd5de3f55b114559d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CodeFoldDownArrow.svg b/addons/godot_tours/bubble/assets/icons/CodeFoldDownArrow.svg new file mode 100644 index 0000000..027fb5d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeFoldDownArrow.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CodeFoldDownArrow.svg.import b/addons/godot_tours/bubble/assets/icons/CodeFoldDownArrow.svg.import new file mode 100644 index 0000000..0fb4315 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeFoldDownArrow.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnybkqgumqa1k" +path="res://.godot/imported/CodeFoldDownArrow.svg-16370569b98ff0dc49a8213408a89331.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CodeFoldDownArrow.svg" +dest_files=["res://.godot/imported/CodeFoldDownArrow.svg-16370569b98ff0dc49a8213408a89331.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CodeFoldedRightArrow.svg b/addons/godot_tours/bubble/assets/icons/CodeFoldedRightArrow.svg new file mode 100644 index 0000000..2d48e96 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeFoldedRightArrow.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CodeFoldedRightArrow.svg.import b/addons/godot_tours/bubble/assets/icons/CodeFoldedRightArrow.svg.import new file mode 100644 index 0000000..1970d10 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeFoldedRightArrow.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkwlnisemd4ls" +path="res://.godot/imported/CodeFoldedRightArrow.svg-7502a577a7589535673d8991efe92289.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CodeFoldedRightArrow.svg" +dest_files=["res://.godot/imported/CodeFoldedRightArrow.svg-7502a577a7589535673d8991efe92289.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CodeHighlighter.svg b/addons/godot_tours/bubble/assets/icons/CodeHighlighter.svg new file mode 100644 index 0000000..8e0de9c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeHighlighter.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CodeHighlighter.svg.import b/addons/godot_tours/bubble/assets/icons/CodeHighlighter.svg.import new file mode 100644 index 0000000..eca9d1c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeHighlighter.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqedns2lr5tr5" +path="res://.godot/imported/CodeHighlighter.svg-c43844313e35a0e79f21a26187f66f2f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CodeHighlighter.svg" +dest_files=["res://.godot/imported/CodeHighlighter.svg-c43844313e35a0e79f21a26187f66f2f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CodeRegionFoldDownArrow.svg b/addons/godot_tours/bubble/assets/icons/CodeRegionFoldDownArrow.svg new file mode 100644 index 0000000..744ea71 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeRegionFoldDownArrow.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CodeRegionFoldDownArrow.svg.import b/addons/godot_tours/bubble/assets/icons/CodeRegionFoldDownArrow.svg.import new file mode 100644 index 0000000..2ab7378 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeRegionFoldDownArrow.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnwexlkv5yfx" +path="res://.godot/imported/CodeRegionFoldDownArrow.svg-15675b0ed6e9953b70262f5489c40967.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CodeRegionFoldDownArrow.svg" +dest_files=["res://.godot/imported/CodeRegionFoldDownArrow.svg-15675b0ed6e9953b70262f5489c40967.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CodeRegionFoldedRightArrow.svg b/addons/godot_tours/bubble/assets/icons/CodeRegionFoldedRightArrow.svg new file mode 100644 index 0000000..245371b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeRegionFoldedRightArrow.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CodeRegionFoldedRightArrow.svg.import b/addons/godot_tours/bubble/assets/icons/CodeRegionFoldedRightArrow.svg.import new file mode 100644 index 0000000..218a4cc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CodeRegionFoldedRightArrow.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1p041ri1bdjl" +path="res://.godot/imported/CodeRegionFoldedRightArrow.svg-06ed1979f5bc7ec5ae9169f256983789.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CodeRegionFoldedRightArrow.svg" +dest_files=["res://.godot/imported/CodeRegionFoldedRightArrow.svg-06ed1979f5bc7ec5ae9169f256983789.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Collapse.svg b/addons/godot_tours/bubble/assets/icons/Collapse.svg new file mode 100644 index 0000000..fb594a6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Collapse.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Collapse.svg.import b/addons/godot_tours/bubble/assets/icons/Collapse.svg.import new file mode 100644 index 0000000..3e3ac6a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Collapse.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqter5ejwora6" +path="res://.godot/imported/Collapse.svg-831b44b438aa98aeb16f11e95ac727f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Collapse.svg" +dest_files=["res://.godot/imported/Collapse.svg-831b44b438aa98aeb16f11e95ac727f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CollapseTree.svg b/addons/godot_tours/bubble/assets/icons/CollapseTree.svg new file mode 100644 index 0000000..bff3eca --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CollapseTree.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CollapseTree.svg.import b/addons/godot_tours/bubble/assets/icons/CollapseTree.svg.import new file mode 100644 index 0000000..cf06194 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CollapseTree.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3x021a4yjltl" +path="res://.godot/imported/CollapseTree.svg-1c8a08e02671250abaa54db8dc4f69fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CollapseTree.svg" +dest_files=["res://.godot/imported/CollapseTree.svg-1c8a08e02671250abaa54db8dc4f69fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CollisionPolygon2D.svg b/addons/godot_tours/bubble/assets/icons/CollisionPolygon2D.svg new file mode 100644 index 0000000..7927819 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CollisionPolygon2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CollisionPolygon2D.svg.import b/addons/godot_tours/bubble/assets/icons/CollisionPolygon2D.svg.import new file mode 100644 index 0000000..2a02c15 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CollisionPolygon2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by2pm18e2qel0" +path="res://.godot/imported/CollisionPolygon2D.svg-38e1b91cd374c1965b31aef5059dde22.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CollisionPolygon2D.svg" +dest_files=["res://.godot/imported/CollisionPolygon2D.svg-38e1b91cd374c1965b31aef5059dde22.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CollisionPolygon3D.svg b/addons/godot_tours/bubble/assets/icons/CollisionPolygon3D.svg new file mode 100644 index 0000000..469a7ed --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CollisionPolygon3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CollisionPolygon3D.svg.import b/addons/godot_tours/bubble/assets/icons/CollisionPolygon3D.svg.import new file mode 100644 index 0000000..64480ba --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CollisionPolygon3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvrooh5n6bsfd" +path="res://.godot/imported/CollisionPolygon3D.svg-f3518e9525b80c0bbe7f4fcb39ff466f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CollisionPolygon3D.svg" +dest_files=["res://.godot/imported/CollisionPolygon3D.svg-f3518e9525b80c0bbe7f4fcb39ff466f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CollisionShape2D.svg b/addons/godot_tours/bubble/assets/icons/CollisionShape2D.svg new file mode 100644 index 0000000..b40701e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CollisionShape2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CollisionShape2D.svg.import b/addons/godot_tours/bubble/assets/icons/CollisionShape2D.svg.import new file mode 100644 index 0000000..0df72fe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CollisionShape2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d06c7ixa5kwxw" +path="res://.godot/imported/CollisionShape2D.svg-57b967fbff074cdee2ed1c5ef91f9911.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CollisionShape2D.svg" +dest_files=["res://.godot/imported/CollisionShape2D.svg-57b967fbff074cdee2ed1c5ef91f9911.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CollisionShape3D.svg b/addons/godot_tours/bubble/assets/icons/CollisionShape3D.svg new file mode 100644 index 0000000..7299eac --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CollisionShape3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CollisionShape3D.svg.import b/addons/godot_tours/bubble/assets/icons/CollisionShape3D.svg.import new file mode 100644 index 0000000..566d2e3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CollisionShape3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crwadyscef0q2" +path="res://.godot/imported/CollisionShape3D.svg-04d0a748696528c06d75062f7689dfec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CollisionShape3D.svg" +dest_files=["res://.godot/imported/CollisionShape3D.svg-04d0a748696528c06d75062f7689dfec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Color.svg b/addons/godot_tours/bubble/assets/icons/Color.svg new file mode 100644 index 0000000..a037539 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Color.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Color.svg.import b/addons/godot_tours/bubble/assets/icons/Color.svg.import new file mode 100644 index 0000000..ad6410b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Color.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2woo5wd86lqg" +path="res://.godot/imported/Color.svg-d2406b716381708388beb860552dbb70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Color.svg" +dest_files=["res://.godot/imported/Color.svg-d2406b716381708388beb860552dbb70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ColorPick.svg b/addons/godot_tours/bubble/assets/icons/ColorPick.svg new file mode 100644 index 0000000..ff44937 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorPick.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ColorPick.svg.import b/addons/godot_tours/bubble/assets/icons/ColorPick.svg.import new file mode 100644 index 0000000..6614048 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorPick.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crfpr7q3ohgd4" +path="res://.godot/imported/ColorPick.svg-d3fed4462be0a78efdbe0004249fe2cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ColorPick.svg" +dest_files=["res://.godot/imported/ColorPick.svg-d3fed4462be0a78efdbe0004249fe2cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ColorPicker.svg b/addons/godot_tours/bubble/assets/icons/ColorPicker.svg new file mode 100644 index 0000000..8b77b87 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorPicker.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ColorPicker.svg.import b/addons/godot_tours/bubble/assets/icons/ColorPicker.svg.import new file mode 100644 index 0000000..0321570 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorPicker.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyiw6t43ke7v" +path="res://.godot/imported/ColorPicker.svg-d2170337091eaa7760f3014fcb54798a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ColorPicker.svg" +dest_files=["res://.godot/imported/ColorPicker.svg-d2170337091eaa7760f3014fcb54798a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ColorPickerBarArrow.svg b/addons/godot_tours/bubble/assets/icons/ColorPickerBarArrow.svg new file mode 100644 index 0000000..3474931 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorPickerBarArrow.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ColorPickerBarArrow.svg.import b/addons/godot_tours/bubble/assets/icons/ColorPickerBarArrow.svg.import new file mode 100644 index 0000000..af0f9b3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorPickerBarArrow.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hy6tnyothryw" +path="res://.godot/imported/ColorPickerBarArrow.svg-698647f7f85cf62b18b5e2d6fa320759.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ColorPickerBarArrow.svg" +dest_files=["res://.godot/imported/ColorPickerBarArrow.svg-698647f7f85cf62b18b5e2d6fa320759.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ColorPickerButton.svg b/addons/godot_tours/bubble/assets/icons/ColorPickerButton.svg new file mode 100644 index 0000000..57fe709 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorPickerButton.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ColorPickerButton.svg.import b/addons/godot_tours/bubble/assets/icons/ColorPickerButton.svg.import new file mode 100644 index 0000000..f5ba06b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorPickerButton.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boltumt865nlx" +path="res://.godot/imported/ColorPickerButton.svg-1871aaa69b63b5d98945ff6c1b2a07c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ColorPickerButton.svg" +dest_files=["res://.godot/imported/ColorPickerButton.svg-1871aaa69b63b5d98945ff6c1b2a07c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ColorRect.svg b/addons/godot_tours/bubble/assets/icons/ColorRect.svg new file mode 100644 index 0000000..d155e2b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorRect.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ColorRect.svg.import b/addons/godot_tours/bubble/assets/icons/ColorRect.svg.import new file mode 100644 index 0000000..1dc902b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorRect.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://detjrp67g80is" +path="res://.godot/imported/ColorRect.svg-e6f94fb39f7bdd11d8761c479569b886.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ColorRect.svg" +dest_files=["res://.godot/imported/ColorRect.svg-e6f94fb39f7bdd11d8761c479569b886.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ColorTrackVu.svg b/addons/godot_tours/bubble/assets/icons/ColorTrackVu.svg new file mode 100644 index 0000000..6273292 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorTrackVu.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ColorTrackVu.svg.import b/addons/godot_tours/bubble/assets/icons/ColorTrackVu.svg.import new file mode 100644 index 0000000..53a72b4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ColorTrackVu.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do8grgxktujqd" +path="res://.godot/imported/ColorTrackVu.svg-078fd6f3596d26e22c9af0ec435bb8e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ColorTrackVu.svg" +dest_files=["res://.godot/imported/ColorTrackVu.svg-078fd6f3596d26e22c9af0ec435bb8e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CombineLines.svg b/addons/godot_tours/bubble/assets/icons/CombineLines.svg new file mode 100644 index 0000000..124814a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CombineLines.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CombineLines.svg.import b/addons/godot_tours/bubble/assets/icons/CombineLines.svg.import new file mode 100644 index 0000000..8391d44 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CombineLines.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkxyp4olgfqip" +path="res://.godot/imported/CombineLines.svg-1211a4339e616677fd99ff7c06fe3435.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CombineLines.svg" +dest_files=["res://.godot/imported/CombineLines.svg-1211a4339e616677fd99ff7c06fe3435.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CompressedTexture2D.svg b/addons/godot_tours/bubble/assets/icons/CompressedTexture2D.svg new file mode 100644 index 0000000..aa65696 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CompressedTexture2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CompressedTexture2D.svg.import b/addons/godot_tours/bubble/assets/icons/CompressedTexture2D.svg.import new file mode 100644 index 0000000..4f7409f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CompressedTexture2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baone3jispogo" +path="res://.godot/imported/CompressedTexture2D.svg-7a8e4212333790c490a2a78be8e250e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CompressedTexture2D.svg" +dest_files=["res://.godot/imported/CompressedTexture2D.svg-7a8e4212333790c490a2a78be8e250e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CompressedTexture3D.svg b/addons/godot_tours/bubble/assets/icons/CompressedTexture3D.svg new file mode 100644 index 0000000..0f027ad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CompressedTexture3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CompressedTexture3D.svg.import b/addons/godot_tours/bubble/assets/icons/CompressedTexture3D.svg.import new file mode 100644 index 0000000..9c4eb1a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CompressedTexture3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5sjjwb88vqwo" +path="res://.godot/imported/CompressedTexture3D.svg-254e756e5edac17568cd59647a742834.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CompressedTexture3D.svg" +dest_files=["res://.godot/imported/CompressedTexture3D.svg-254e756e5edac17568cd59647a742834.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape2D.svg b/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape2D.svg new file mode 100644 index 0000000..cb5d98c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape2D.svg.import b/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape2D.svg.import new file mode 100644 index 0000000..679263a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsqea0stupip7" +path="res://.godot/imported/ConcavePolygonShape2D.svg-82dab908c2a08d0dc1486ad6bb6460dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ConcavePolygonShape2D.svg" +dest_files=["res://.godot/imported/ConcavePolygonShape2D.svg-82dab908c2a08d0dc1486ad6bb6460dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape3D.svg b/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape3D.svg new file mode 100644 index 0000000..d970a16 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape3D.svg.import b/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape3D.svg.import new file mode 100644 index 0000000..5a8680b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConcavePolygonShape3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk7p4pm351kjo" +path="res://.godot/imported/ConcavePolygonShape3D.svg-5982bb08f2a209824892cdd70ea8172a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ConcavePolygonShape3D.svg" +dest_files=["res://.godot/imported/ConcavePolygonShape3D.svg-5982bb08f2a209824892cdd70ea8172a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ConeTwistJoint3D.svg b/addons/godot_tours/bubble/assets/icons/ConeTwistJoint3D.svg new file mode 100644 index 0000000..d2a9c0b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConeTwistJoint3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ConeTwistJoint3D.svg.import b/addons/godot_tours/bubble/assets/icons/ConeTwistJoint3D.svg.import new file mode 100644 index 0000000..a001a3a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConeTwistJoint3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da128k18g4rjp" +path="res://.godot/imported/ConeTwistJoint3D.svg-0b12aa4379a2ed7c88a348ceea48ab33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ConeTwistJoint3D.svg" +dest_files=["res://.godot/imported/ConeTwistJoint3D.svg-0b12aa4379a2ed7c88a348ceea48ab33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ConfirmationDialog.svg b/addons/godot_tours/bubble/assets/icons/ConfirmationDialog.svg new file mode 100644 index 0000000..1ef0c3c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConfirmationDialog.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ConfirmationDialog.svg.import b/addons/godot_tours/bubble/assets/icons/ConfirmationDialog.svg.import new file mode 100644 index 0000000..c55df0c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConfirmationDialog.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mya23citdx3j" +path="res://.godot/imported/ConfirmationDialog.svg-3f25bbcde63589f51290171e58c8a367.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ConfirmationDialog.svg" +dest_files=["res://.godot/imported/ConfirmationDialog.svg-3f25bbcde63589f51290171e58c8a367.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Container.svg b/addons/godot_tours/bubble/assets/icons/Container.svg new file mode 100644 index 0000000..bfe78cb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Container.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Container.svg.import b/addons/godot_tours/bubble/assets/icons/Container.svg.import new file mode 100644 index 0000000..bb84df7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Container.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d47i2ig54iqb" +path="res://.godot/imported/Container.svg-c4e4ce5c9aea41bc5122012a84001f5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Container.svg" +dest_files=["res://.godot/imported/Container.svg-c4e4ce5c9aea41bc5122012a84001f5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ContainerLayout.svg b/addons/godot_tours/bubble/assets/icons/ContainerLayout.svg new file mode 100644 index 0000000..1eac175 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ContainerLayout.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ContainerLayout.svg.import b/addons/godot_tours/bubble/assets/icons/ContainerLayout.svg.import new file mode 100644 index 0000000..fad0973 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ContainerLayout.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq4ge7hmpmq14" +path="res://.godot/imported/ContainerLayout.svg-95cd9afbbbeddbe0acbb6318885fb6d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ContainerLayout.svg" +dest_files=["res://.godot/imported/ContainerLayout.svg-95cd9afbbbeddbe0acbb6318885fb6d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Control.svg b/addons/godot_tours/bubble/assets/icons/Control.svg new file mode 100644 index 0000000..b1e43f8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Control.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Control.svg.import b/addons/godot_tours/bubble/assets/icons/Control.svg.import new file mode 100644 index 0000000..ab25f8a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Control.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2qwip7t1vxwm" +path="res://.godot/imported/Control.svg-725c7df218587457d229f666af9c0e75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Control.svg" +dest_files=["res://.godot/imported/Control.svg-725c7df218587457d229f666af9c0e75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignBottomLeft.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomLeft.svg new file mode 100644 index 0000000..34904b5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomLeft.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignBottomLeft.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomLeft.svg.import new file mode 100644 index 0000000..e419357 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomLeft.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cepkhotelevls" +path="res://.godot/imported/ControlAlignBottomLeft.svg-e595f4594625b335d2784198c13f06d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignBottomLeft.svg" +dest_files=["res://.godot/imported/ControlAlignBottomLeft.svg-e595f4594625b335d2784198c13f06d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignBottomRight.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomRight.svg new file mode 100644 index 0000000..169ca28 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomRight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignBottomRight.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomRight.svg.import new file mode 100644 index 0000000..ee4cf1b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomRight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3q0dl5fq03mf" +path="res://.godot/imported/ControlAlignBottomRight.svg-edcbd0a1c64c4da80cd3d798ed22ae3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignBottomRight.svg" +dest_files=["res://.godot/imported/ControlAlignBottomRight.svg-edcbd0a1c64c4da80cd3d798ed22ae3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignBottomWide.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomWide.svg new file mode 100644 index 0000000..f510437 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomWide.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignBottomWide.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomWide.svg.import new file mode 100644 index 0000000..30fbf68 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignBottomWide.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4dcr46tppbcw" +path="res://.godot/imported/ControlAlignBottomWide.svg-50101a4bd46b8995cdc7c2e4c7338224.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignBottomWide.svg" +dest_files=["res://.godot/imported/ControlAlignBottomWide.svg-50101a4bd46b8995cdc7c2e4c7338224.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignCenter.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignCenter.svg new file mode 100644 index 0000000..44dda03 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignCenter.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignCenter.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignCenter.svg.import new file mode 100644 index 0000000..d579f68 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignCenter.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1tvmgbu6lybh" +path="res://.godot/imported/ControlAlignCenter.svg-4c4fc6c83aeca2eec8d9017b4f5173fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignCenter.svg" +dest_files=["res://.godot/imported/ControlAlignCenter.svg-4c4fc6c83aeca2eec8d9017b4f5173fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignCenterBottom.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterBottom.svg new file mode 100644 index 0000000..ca7f0c2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterBottom.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignCenterBottom.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterBottom.svg.import new file mode 100644 index 0000000..5688d3f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterBottom.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8ovll3wb5gby" +path="res://.godot/imported/ControlAlignCenterBottom.svg-bb204c52995348bbb11665bf1838042e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignCenterBottom.svg" +dest_files=["res://.godot/imported/ControlAlignCenterBottom.svg-bb204c52995348bbb11665bf1838042e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignCenterLeft.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterLeft.svg new file mode 100644 index 0000000..612c36b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterLeft.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignCenterLeft.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterLeft.svg.import new file mode 100644 index 0000000..7cc1d7e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterLeft.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgbgnenvgbhb7" +path="res://.godot/imported/ControlAlignCenterLeft.svg-e52c559df049a9fcfc80fea0265cb6ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignCenterLeft.svg" +dest_files=["res://.godot/imported/ControlAlignCenterLeft.svg-e52c559df049a9fcfc80fea0265cb6ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignCenterRight.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterRight.svg new file mode 100644 index 0000000..43f8618 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterRight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignCenterRight.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterRight.svg.import new file mode 100644 index 0000000..0bf0862 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterRight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2cr6lao2tsyw" +path="res://.godot/imported/ControlAlignCenterRight.svg-56e0b665da64cd8b5fd328fc57c0f681.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignCenterRight.svg" +dest_files=["res://.godot/imported/ControlAlignCenterRight.svg-56e0b665da64cd8b5fd328fc57c0f681.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignCenterTop.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterTop.svg new file mode 100644 index 0000000..dca9c84 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterTop.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignCenterTop.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterTop.svg.import new file mode 100644 index 0000000..3462427 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignCenterTop.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brw5v763qyer3" +path="res://.godot/imported/ControlAlignCenterTop.svg-30bb9ac1a834afc2e4caa8b41ed4cce8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignCenterTop.svg" +dest_files=["res://.godot/imported/ControlAlignCenterTop.svg-30bb9ac1a834afc2e4caa8b41ed4cce8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignFullRect.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignFullRect.svg new file mode 100644 index 0000000..6dfde73 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignFullRect.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignFullRect.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignFullRect.svg.import new file mode 100644 index 0000000..2e422bd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignFullRect.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgobvew0h4yyl" +path="res://.godot/imported/ControlAlignFullRect.svg-8842f6eab55ee250c729fc3b41cd2338.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignFullRect.svg" +dest_files=["res://.godot/imported/ControlAlignFullRect.svg-8842f6eab55ee250c729fc3b41cd2338.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignHCenterWide.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignHCenterWide.svg new file mode 100644 index 0000000..af3f9b4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignHCenterWide.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignHCenterWide.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignHCenterWide.svg.import new file mode 100644 index 0000000..2174ca3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignHCenterWide.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c51hxyc348g8t" +path="res://.godot/imported/ControlAlignHCenterWide.svg-76356e0400e512d4f68ec3a8dea7e88a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignHCenterWide.svg" +dest_files=["res://.godot/imported/ControlAlignHCenterWide.svg-76356e0400e512d4f68ec3a8dea7e88a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignLeftWide.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignLeftWide.svg new file mode 100644 index 0000000..82f4911 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignLeftWide.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignLeftWide.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignLeftWide.svg.import new file mode 100644 index 0000000..ee4ad72 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignLeftWide.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl7wuqlwm0la6" +path="res://.godot/imported/ControlAlignLeftWide.svg-3be2bc3584dc51ee0d8179bd7e677f38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignLeftWide.svg" +dest_files=["res://.godot/imported/ControlAlignLeftWide.svg-3be2bc3584dc51ee0d8179bd7e677f38.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignRightWide.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignRightWide.svg new file mode 100644 index 0000000..0ee0e09 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignRightWide.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignRightWide.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignRightWide.svg.import new file mode 100644 index 0000000..9e523f0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignRightWide.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs7q5ya7gk7s2" +path="res://.godot/imported/ControlAlignRightWide.svg-5036fddf70969ece7f9ca7e410468ae0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignRightWide.svg" +dest_files=["res://.godot/imported/ControlAlignRightWide.svg-5036fddf70969ece7f9ca7e410468ae0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignTopLeft.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignTopLeft.svg new file mode 100644 index 0000000..68a8173 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignTopLeft.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignTopLeft.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignTopLeft.svg.import new file mode 100644 index 0000000..00d95c3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignTopLeft.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://thotvxu5ol14" +path="res://.godot/imported/ControlAlignTopLeft.svg-ed5883d3a7f3ff4771fa06f08d35355b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignTopLeft.svg" +dest_files=["res://.godot/imported/ControlAlignTopLeft.svg-ed5883d3a7f3ff4771fa06f08d35355b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignTopRight.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignTopRight.svg new file mode 100644 index 0000000..c862d20 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignTopRight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignTopRight.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignTopRight.svg.import new file mode 100644 index 0000000..09f024a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignTopRight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kblc41v7bp1t" +path="res://.godot/imported/ControlAlignTopRight.svg-0147c59df68ecdc57fdc6f760b004ec4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignTopRight.svg" +dest_files=["res://.godot/imported/ControlAlignTopRight.svg-0147c59df68ecdc57fdc6f760b004ec4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignTopWide.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignTopWide.svg new file mode 100644 index 0000000..01d9690 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignTopWide.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignTopWide.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignTopWide.svg.import new file mode 100644 index 0000000..32a4ec6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignTopWide.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2uktdcm4lsoi" +path="res://.godot/imported/ControlAlignTopWide.svg-48fbcacac04e97d5f9678bd788c1385d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignTopWide.svg" +dest_files=["res://.godot/imported/ControlAlignTopWide.svg-48fbcacac04e97d5f9678bd788c1385d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignVCenterWide.svg b/addons/godot_tours/bubble/assets/icons/ControlAlignVCenterWide.svg new file mode 100644 index 0000000..538f3da --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignVCenterWide.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlAlignVCenterWide.svg.import b/addons/godot_tours/bubble/assets/icons/ControlAlignVCenterWide.svg.import new file mode 100644 index 0000000..640b5ac --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlAlignVCenterWide.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1w17hp7ay5ba" +path="res://.godot/imported/ControlAlignVCenterWide.svg-ace81251a8b966de47b091bf8fa50feb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlAlignVCenterWide.svg" +dest_files=["res://.godot/imported/ControlAlignVCenterWide.svg-ace81251a8b966de47b091bf8fa50feb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ControlLayout.svg b/addons/godot_tours/bubble/assets/icons/ControlLayout.svg new file mode 100644 index 0000000..c23e407 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlLayout.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ControlLayout.svg.import b/addons/godot_tours/bubble/assets/icons/ControlLayout.svg.import new file mode 100644 index 0000000..b029339 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ControlLayout.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl5xqr1vtvk30" +path="res://.godot/imported/ControlLayout.svg-0dc5c56314446c0db19bba4bd710626c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ControlLayout.svg" +dest_files=["res://.godot/imported/ControlLayout.svg-0dc5c56314446c0db19bba4bd710626c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape2D.svg b/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape2D.svg new file mode 100644 index 0000000..2324919 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape2D.svg.import b/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape2D.svg.import new file mode 100644 index 0000000..2c5a03a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw0mt4ts3fmuu" +path="res://.godot/imported/ConvexPolygonShape2D.svg-c858bf6a059e9f7504beb571a1c14132.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ConvexPolygonShape2D.svg" +dest_files=["res://.godot/imported/ConvexPolygonShape2D.svg-c858bf6a059e9f7504beb571a1c14132.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape3D.svg b/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape3D.svg new file mode 100644 index 0000000..09c5ee9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape3D.svg.import b/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape3D.svg.import new file mode 100644 index 0000000..3909b62 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ConvexPolygonShape3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://y67g1ixqa2a6" +path="res://.godot/imported/ConvexPolygonShape3D.svg-02f0f9d866e48b9365841332c93e68cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ConvexPolygonShape3D.svg" +dest_files=["res://.godot/imported/ConvexPolygonShape3D.svg-02f0f9d866e48b9365841332c93e68cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CopyNodePath.svg b/addons/godot_tours/bubble/assets/icons/CopyNodePath.svg new file mode 100644 index 0000000..457982b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CopyNodePath.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CopyNodePath.svg.import b/addons/godot_tours/bubble/assets/icons/CopyNodePath.svg.import new file mode 100644 index 0000000..6384edd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CopyNodePath.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpc8a0b64aksi" +path="res://.godot/imported/CopyNodePath.svg-e8bc17e35d4760be716e5e5c9dd1eb5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CopyNodePath.svg" +dest_files=["res://.godot/imported/CopyNodePath.svg-e8bc17e35d4760be716e5e5c9dd1eb5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CreateNewSceneFrom.svg b/addons/godot_tours/bubble/assets/icons/CreateNewSceneFrom.svg new file mode 100644 index 0000000..e5b0e3c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CreateNewSceneFrom.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CreateNewSceneFrom.svg.import b/addons/godot_tours/bubble/assets/icons/CreateNewSceneFrom.svg.import new file mode 100644 index 0000000..311f745 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CreateNewSceneFrom.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di3x00py521fg" +path="res://.godot/imported/CreateNewSceneFrom.svg-040b3765c01d127ee7ee9e2a7476b82a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CreateNewSceneFrom.svg" +dest_files=["res://.godot/imported/CreateNewSceneFrom.svg-040b3765c01d127ee7ee9e2a7476b82a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CryptoKey.svg b/addons/godot_tours/bubble/assets/icons/CryptoKey.svg new file mode 100644 index 0000000..e4faefa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CryptoKey.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CryptoKey.svg.import b/addons/godot_tours/bubble/assets/icons/CryptoKey.svg.import new file mode 100644 index 0000000..dfbffa1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CryptoKey.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0asmbdcw1ntg" +path="res://.godot/imported/CryptoKey.svg-c13f589a9b8f1d06f333ff49a162b6e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CryptoKey.svg" +dest_files=["res://.godot/imported/CryptoKey.svg-c13f589a9b8f1d06f333ff49a162b6e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Cubemap.svg b/addons/godot_tours/bubble/assets/icons/Cubemap.svg new file mode 100644 index 0000000..81965f7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Cubemap.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Cubemap.svg.import b/addons/godot_tours/bubble/assets/icons/Cubemap.svg.import new file mode 100644 index 0000000..aa99625 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Cubemap.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu27rtwuw4ey7" +path="res://.godot/imported/Cubemap.svg-030e405c805b06adac8b2443bb6cf713.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Cubemap.svg" +dest_files=["res://.godot/imported/Cubemap.svg-030e405c805b06adac8b2443bb6cf713.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CubemapArray.svg b/addons/godot_tours/bubble/assets/icons/CubemapArray.svg new file mode 100644 index 0000000..847fc7f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CubemapArray.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CubemapArray.svg.import b/addons/godot_tours/bubble/assets/icons/CubemapArray.svg.import new file mode 100644 index 0000000..989e32e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CubemapArray.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsnksajn8mlb3" +path="res://.godot/imported/CubemapArray.svg-2f2f73cbe5e205f2787842a2e09187c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CubemapArray.svg" +dest_files=["res://.godot/imported/CubemapArray.svg-2f2f73cbe5e205f2787842a2e09187c9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Curve.svg b/addons/godot_tours/bubble/assets/icons/Curve.svg new file mode 100644 index 0000000..4061583 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Curve.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Curve.svg.import b/addons/godot_tours/bubble/assets/icons/Curve.svg.import new file mode 100644 index 0000000..6b52459 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Curve.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ngyofujko85m" +path="res://.godot/imported/Curve.svg-d7babfd00dd1598f46e781ac78a76dd9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Curve.svg" +dest_files=["res://.godot/imported/Curve.svg-d7babfd00dd1598f46e781ac78a76dd9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Curve2D.svg b/addons/godot_tours/bubble/assets/icons/Curve2D.svg new file mode 100644 index 0000000..e4cf1dc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Curve2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Curve2D.svg.import b/addons/godot_tours/bubble/assets/icons/Curve2D.svg.import new file mode 100644 index 0000000..8bf8d4c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Curve2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://colq2yj5fchgs" +path="res://.godot/imported/Curve2D.svg-47879326128bf3780052210b803c1e68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Curve2D.svg" +dest_files=["res://.godot/imported/Curve2D.svg-47879326128bf3780052210b803c1e68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Curve3D.svg b/addons/godot_tours/bubble/assets/icons/Curve3D.svg new file mode 100644 index 0000000..a5cd204 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Curve3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Curve3D.svg.import b/addons/godot_tours/bubble/assets/icons/Curve3D.svg.import new file mode 100644 index 0000000..848f6ee --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Curve3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://61bdjehkv270" +path="res://.godot/imported/Curve3D.svg-965b38e11cffa686b5f559138d2e2321.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Curve3D.svg" +dest_files=["res://.godot/imported/Curve3D.svg-965b38e11cffa686b5f559138d2e2321.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveClose.svg b/addons/godot_tours/bubble/assets/icons/CurveClose.svg new file mode 100644 index 0000000..cf7f70d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveClose.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveClose.svg.import b/addons/godot_tours/bubble/assets/icons/CurveClose.svg.import new file mode 100644 index 0000000..77e364f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveClose.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dotmfbdleswkp" +path="res://.godot/imported/CurveClose.svg-708bf33942458b23cb8d630d25836f69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveClose.svg" +dest_files=["res://.godot/imported/CurveClose.svg-708bf33942458b23cb8d630d25836f69.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveConstant.svg b/addons/godot_tours/bubble/assets/icons/CurveConstant.svg new file mode 100644 index 0000000..a09831c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveConstant.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveConstant.svg.import b/addons/godot_tours/bubble/assets/icons/CurveConstant.svg.import new file mode 100644 index 0000000..d353c16 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveConstant.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do1kfp5f6eus4" +path="res://.godot/imported/CurveConstant.svg-1bef16112927657c287e997cc15e960b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveConstant.svg" +dest_files=["res://.godot/imported/CurveConstant.svg-1bef16112927657c287e997cc15e960b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveCreate.svg b/addons/godot_tours/bubble/assets/icons/CurveCreate.svg new file mode 100644 index 0000000..1b22b5b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveCreate.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveCreate.svg.import b/addons/godot_tours/bubble/assets/icons/CurveCreate.svg.import new file mode 100644 index 0000000..3c5abf0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveCreate.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnj1t5rb5a4wh" +path="res://.godot/imported/CurveCreate.svg-21fde412d5df02aae0bfe7d71d8eeea7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveCreate.svg" +dest_files=["res://.godot/imported/CurveCreate.svg-21fde412d5df02aae0bfe7d71d8eeea7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveCurve.svg b/addons/godot_tours/bubble/assets/icons/CurveCurve.svg new file mode 100644 index 0000000..75ce3b8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveCurve.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveCurve.svg.import b/addons/godot_tours/bubble/assets/icons/CurveCurve.svg.import new file mode 100644 index 0000000..2dcb302 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveCurve.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs7r2ajnlid6u" +path="res://.godot/imported/CurveCurve.svg-20631d033f0a6c30356e82214094e149.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveCurve.svg" +dest_files=["res://.godot/imported/CurveCurve.svg-20631d033f0a6c30356e82214094e149.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveDelete.svg b/addons/godot_tours/bubble/assets/icons/CurveDelete.svg new file mode 100644 index 0000000..e7dc917 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveDelete.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveDelete.svg.import b/addons/godot_tours/bubble/assets/icons/CurveDelete.svg.import new file mode 100644 index 0000000..0c56896 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveDelete.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://86timu45jfmm" +path="res://.godot/imported/CurveDelete.svg-0f7392a38b6099ce58bccc7901f70d6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveDelete.svg" +dest_files=["res://.godot/imported/CurveDelete.svg-0f7392a38b6099ce58bccc7901f70d6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveEdit.svg b/addons/godot_tours/bubble/assets/icons/CurveEdit.svg new file mode 100644 index 0000000..dee4e77 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveEdit.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveEdit.svg.import b/addons/godot_tours/bubble/assets/icons/CurveEdit.svg.import new file mode 100644 index 0000000..f9f5bfc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveEdit.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdkdiyrcgqiq1" +path="res://.godot/imported/CurveEdit.svg-b35e2f430fd640325f4e26905388453a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveEdit.svg" +dest_files=["res://.godot/imported/CurveEdit.svg-b35e2f430fd640325f4e26905388453a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveIn.svg b/addons/godot_tours/bubble/assets/icons/CurveIn.svg new file mode 100644 index 0000000..d1028a4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveIn.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveIn.svg.import b/addons/godot_tours/bubble/assets/icons/CurveIn.svg.import new file mode 100644 index 0000000..5a9ccfb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveIn.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8pp6mfalqiri" +path="res://.godot/imported/CurveIn.svg-5f106838414e21f2d3ac51434e0a8147.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveIn.svg" +dest_files=["res://.godot/imported/CurveIn.svg-5f106838414e21f2d3ac51434e0a8147.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveInOut.svg b/addons/godot_tours/bubble/assets/icons/CurveInOut.svg new file mode 100644 index 0000000..13a9cee --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveInOut.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveInOut.svg.import b/addons/godot_tours/bubble/assets/icons/CurveInOut.svg.import new file mode 100644 index 0000000..7d13375 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveInOut.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pjjnclleo15w" +path="res://.godot/imported/CurveInOut.svg-d25116eb1b3634b5b4d936b880b33a51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveInOut.svg" +dest_files=["res://.godot/imported/CurveInOut.svg-d25116eb1b3634b5b4d936b880b33a51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveLinear.svg b/addons/godot_tours/bubble/assets/icons/CurveLinear.svg new file mode 100644 index 0000000..c4fc83a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveLinear.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveLinear.svg.import b/addons/godot_tours/bubble/assets/icons/CurveLinear.svg.import new file mode 100644 index 0000000..c375c04 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveLinear.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2h3ltulcsqdi" +path="res://.godot/imported/CurveLinear.svg-74ab98354200cae4dc0737b06a85590f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveLinear.svg" +dest_files=["res://.godot/imported/CurveLinear.svg-74ab98354200cae4dc0737b06a85590f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveOut.svg b/addons/godot_tours/bubble/assets/icons/CurveOut.svg new file mode 100644 index 0000000..339c567 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveOut.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveOut.svg.import b/addons/godot_tours/bubble/assets/icons/CurveOut.svg.import new file mode 100644 index 0000000..5d48627 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveOut.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpt6luad4ncx2" +path="res://.godot/imported/CurveOut.svg-5df4576b0e8347c23dc47acd13031063.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveOut.svg" +dest_files=["res://.godot/imported/CurveOut.svg-5df4576b0e8347c23dc47acd13031063.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveOutIn.svg b/addons/godot_tours/bubble/assets/icons/CurveOutIn.svg new file mode 100644 index 0000000..9d90c01 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveOutIn.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveOutIn.svg.import b/addons/godot_tours/bubble/assets/icons/CurveOutIn.svg.import new file mode 100644 index 0000000..f02aeb5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveOutIn.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5l64w818wfnt" +path="res://.godot/imported/CurveOutIn.svg-3bd6a4b207841463a6cdef0bab2a069f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveOutIn.svg" +dest_files=["res://.godot/imported/CurveOutIn.svg-3bd6a4b207841463a6cdef0bab2a069f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveTexture.svg b/addons/godot_tours/bubble/assets/icons/CurveTexture.svg new file mode 100644 index 0000000..b9838eb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveTexture.svg.import b/addons/godot_tours/bubble/assets/icons/CurveTexture.svg.import new file mode 100644 index 0000000..cfbbe2b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7it6xu51xvhy" +path="res://.godot/imported/CurveTexture.svg-8ba3524cf8d4f6ff40d4c293c27b11bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveTexture.svg" +dest_files=["res://.godot/imported/CurveTexture.svg-8ba3524cf8d4f6ff40d4c293c27b11bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveTilt.svg b/addons/godot_tours/bubble/assets/icons/CurveTilt.svg new file mode 100644 index 0000000..4cf7c5b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveTilt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/CurveTilt.svg.import b/addons/godot_tours/bubble/assets/icons/CurveTilt.svg.import new file mode 100644 index 0000000..d99ff0e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveTilt.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0grmi4lmbadq" +path="res://.godot/imported/CurveTilt.svg-cda1d87dd184f725b090ba7925734dfd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveTilt.svg" +dest_files=["res://.godot/imported/CurveTilt.svg-cda1d87dd184f725b090ba7925734dfd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CurveXYZTexture.svg b/addons/godot_tours/bubble/assets/icons/CurveXYZTexture.svg new file mode 100644 index 0000000..e376dd4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveXYZTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CurveXYZTexture.svg.import b/addons/godot_tours/bubble/assets/icons/CurveXYZTexture.svg.import new file mode 100644 index 0000000..31da3ee --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CurveXYZTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5cx8pk6ss355" +path="res://.godot/imported/CurveXYZTexture.svg-d9ced16d56122708a89f193113d32326.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CurveXYZTexture.svg" +dest_files=["res://.godot/imported/CurveXYZTexture.svg-d9ced16d56122708a89f193113d32326.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CylinderMesh.svg b/addons/godot_tours/bubble/assets/icons/CylinderMesh.svg new file mode 100644 index 0000000..9d0045a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CylinderMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CylinderMesh.svg.import b/addons/godot_tours/bubble/assets/icons/CylinderMesh.svg.import new file mode 100644 index 0000000..face432 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CylinderMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcjhu0if54p5r" +path="res://.godot/imported/CylinderMesh.svg-9cd7c79f32db695458f81d4263728167.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CylinderMesh.svg" +dest_files=["res://.godot/imported/CylinderMesh.svg-9cd7c79f32db695458f81d4263728167.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/CylinderShape3D.svg b/addons/godot_tours/bubble/assets/icons/CylinderShape3D.svg new file mode 100644 index 0000000..a70a760 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CylinderShape3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/CylinderShape3D.svg.import b/addons/godot_tours/bubble/assets/icons/CylinderShape3D.svg.import new file mode 100644 index 0000000..de3e0f3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/CylinderShape3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmtk6ac5mcadp" +path="res://.godot/imported/CylinderShape3D.svg-93c9ccb9e3333cceb47e1b133de403e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/CylinderShape3D.svg" +dest_files=["res://.godot/imported/CylinderShape3D.svg-93c9ccb9e3333cceb47e1b133de403e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/DampedSpringJoint2D.svg b/addons/godot_tours/bubble/assets/icons/DampedSpringJoint2D.svg new file mode 100644 index 0000000..88a3b41 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DampedSpringJoint2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/DampedSpringJoint2D.svg.import b/addons/godot_tours/bubble/assets/icons/DampedSpringJoint2D.svg.import new file mode 100644 index 0000000..24412c1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DampedSpringJoint2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf4i53o1gwnco" +path="res://.godot/imported/DampedSpringJoint2D.svg-efbd09ff1c453e52b154f29bc768a77f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/DampedSpringJoint2D.svg" +dest_files=["res://.godot/imported/DampedSpringJoint2D.svg-efbd09ff1c453e52b154f29bc768a77f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Debug.svg b/addons/godot_tours/bubble/assets/icons/Debug.svg new file mode 100644 index 0000000..e3293c1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Debug.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Debug.svg.import b/addons/godot_tours/bubble/assets/icons/Debug.svg.import new file mode 100644 index 0000000..7a115a4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Debug.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dei7ddwgb6ye3" +path="res://.godot/imported/Debug.svg-2dad874bc40c7b0346db5aa116c497a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Debug.svg" +dest_files=["res://.godot/imported/Debug.svg-2dad874bc40c7b0346db5aa116c497a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/DebugContinue.svg b/addons/godot_tours/bubble/assets/icons/DebugContinue.svg new file mode 100644 index 0000000..84f1880 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DebugContinue.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/DebugContinue.svg.import b/addons/godot_tours/bubble/assets/icons/DebugContinue.svg.import new file mode 100644 index 0000000..5600cbc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DebugContinue.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vhbvdgq54ott" +path="res://.godot/imported/DebugContinue.svg-b64a20d8a64114098ffc245544372c00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/DebugContinue.svg" +dest_files=["res://.godot/imported/DebugContinue.svg-b64a20d8a64114098ffc245544372c00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/DebugNext.svg b/addons/godot_tours/bubble/assets/icons/DebugNext.svg new file mode 100644 index 0000000..50532d6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DebugNext.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/DebugNext.svg.import b/addons/godot_tours/bubble/assets/icons/DebugNext.svg.import new file mode 100644 index 0000000..ac4f1d0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DebugNext.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc7s35ys1ivkj" +path="res://.godot/imported/DebugNext.svg-db0ab75b874e36501c233cf940716f14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/DebugNext.svg" +dest_files=["res://.godot/imported/DebugNext.svg-db0ab75b874e36501c233cf940716f14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOff.svg b/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOff.svg new file mode 100644 index 0000000..7419b26 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOff.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOff.svg.import b/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOff.svg.import new file mode 100644 index 0000000..a824a9a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOff.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rh8botvlvy5g" +path="res://.godot/imported/DebugSkipBreakpointsOff.svg-504bb4253687f6005bdef81386e9adb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOff.svg" +dest_files=["res://.godot/imported/DebugSkipBreakpointsOff.svg-504bb4253687f6005bdef81386e9adb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOn.svg b/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOn.svg new file mode 100644 index 0000000..4bed88c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOn.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOn.svg.import b/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOn.svg.import new file mode 100644 index 0000000..a8bc512 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOn.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2xhpby5egg4o" +path="res://.godot/imported/DebugSkipBreakpointsOn.svg-0f7a97c050839c0e59e41405931490ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/DebugSkipBreakpointsOn.svg" +dest_files=["res://.godot/imported/DebugSkipBreakpointsOn.svg-0f7a97c050839c0e59e41405931490ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/DebugStep.svg b/addons/godot_tours/bubble/assets/icons/DebugStep.svg new file mode 100644 index 0000000..f8d57ef --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DebugStep.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/DebugStep.svg.import b/addons/godot_tours/bubble/assets/icons/DebugStep.svg.import new file mode 100644 index 0000000..f82a475 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DebugStep.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://52hcp858tprd" +path="res://.godot/imported/DebugStep.svg-c4a816500009dc7e222a581faf4bb461.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/DebugStep.svg" +dest_files=["res://.godot/imported/DebugStep.svg-c4a816500009dc7e222a581faf4bb461.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Decal.svg b/addons/godot_tours/bubble/assets/icons/Decal.svg new file mode 100644 index 0000000..17999b5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Decal.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Decal.svg.import b/addons/godot_tours/bubble/assets/icons/Decal.svg.import new file mode 100644 index 0000000..d0c3cc4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Decal.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baxb1pafn8dn5" +path="res://.godot/imported/Decal.svg-17eab353ea5f0709cd490603837e049e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Decal.svg" +dest_files=["res://.godot/imported/Decal.svg-17eab353ea5f0709cd490603837e049e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/DefaultProjectIcon.svg b/addons/godot_tours/bubble/assets/icons/DefaultProjectIcon.svg new file mode 100644 index 0000000..3fe4f4a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DefaultProjectIcon.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/DefaultProjectIcon.svg.import b/addons/godot_tours/bubble/assets/icons/DefaultProjectIcon.svg.import new file mode 100644 index 0000000..0d1d961 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DefaultProjectIcon.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7freie866umc" +path="res://.godot/imported/DefaultProjectIcon.svg-d8cfd1fc4b3f442af25a9eadda61075e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/DefaultProjectIcon.svg" +dest_files=["res://.godot/imported/DefaultProjectIcon.svg-d8cfd1fc4b3f442af25a9eadda61075e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Dictionary.svg b/addons/godot_tours/bubble/assets/icons/Dictionary.svg new file mode 100644 index 0000000..98c9384 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Dictionary.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Dictionary.svg.import b/addons/godot_tours/bubble/assets/icons/Dictionary.svg.import new file mode 100644 index 0000000..728107d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Dictionary.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do58p15chaomv" +path="res://.godot/imported/Dictionary.svg-b7d7c689a73925ae95a62cc16464fa6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Dictionary.svg" +dest_files=["res://.godot/imported/Dictionary.svg-b7d7c689a73925ae95a62cc16464fa6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/DirAccess.svg b/addons/godot_tours/bubble/assets/icons/DirAccess.svg new file mode 100644 index 0000000..f3be0f0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DirAccess.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/DirAccess.svg.import b/addons/godot_tours/bubble/assets/icons/DirAccess.svg.import new file mode 100644 index 0000000..f4aabb5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DirAccess.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp4syfup7cdxg" +path="res://.godot/imported/DirAccess.svg-95c9e216af9213b0de8e68247e2fbaef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/DirAccess.svg" +dest_files=["res://.godot/imported/DirAccess.svg-95c9e216af9213b0de8e68247e2fbaef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/DirectionalLight2D.svg b/addons/godot_tours/bubble/assets/icons/DirectionalLight2D.svg new file mode 100644 index 0000000..b4204eb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DirectionalLight2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/DirectionalLight2D.svg.import b/addons/godot_tours/bubble/assets/icons/DirectionalLight2D.svg.import new file mode 100644 index 0000000..c2db4f5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DirectionalLight2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1wx8ropttukb" +path="res://.godot/imported/DirectionalLight2D.svg-b23f44981f5d0fecbf2dd31fbbbe6730.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/DirectionalLight2D.svg" +dest_files=["res://.godot/imported/DirectionalLight2D.svg-b23f44981f5d0fecbf2dd31fbbbe6730.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/DirectionalLight3D.svg b/addons/godot_tours/bubble/assets/icons/DirectionalLight3D.svg new file mode 100644 index 0000000..61fb101 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DirectionalLight3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/DirectionalLight3D.svg.import b/addons/godot_tours/bubble/assets/icons/DirectionalLight3D.svg.import new file mode 100644 index 0000000..fbd20a0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DirectionalLight3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxflo0pxuchc6" +path="res://.godot/imported/DirectionalLight3D.svg-a44a1efc8a2a1a71befd804c1660172a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/DirectionalLight3D.svg" +dest_files=["res://.godot/imported/DirectionalLight3D.svg-a44a1efc8a2a1a71befd804c1660172a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/DistractionFree.svg b/addons/godot_tours/bubble/assets/icons/DistractionFree.svg new file mode 100644 index 0000000..d477893 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DistractionFree.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/DistractionFree.svg.import b/addons/godot_tours/bubble/assets/icons/DistractionFree.svg.import new file mode 100644 index 0000000..a3e474e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/DistractionFree.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bldxrx3q16k6m" +path="res://.godot/imported/DistractionFree.svg-71c0a03d91cbcc4576e42a37db933074.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/DistractionFree.svg" +dest_files=["res://.godot/imported/DistractionFree.svg-71c0a03d91cbcc4576e42a37db933074.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Duplicate.svg b/addons/godot_tours/bubble/assets/icons/Duplicate.svg new file mode 100644 index 0000000..a7381f9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Duplicate.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Duplicate.svg.import b/addons/godot_tours/bubble/assets/icons/Duplicate.svg.import new file mode 100644 index 0000000..0f5b419 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Duplicate.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4vag7123878b" +path="res://.godot/imported/Duplicate.svg-74ee8663dd552700d4d3e7f3188739d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Duplicate.svg" +dest_files=["res://.godot/imported/Duplicate.svg-74ee8663dd552700d4d3e7f3188739d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Edit.svg b/addons/godot_tours/bubble/assets/icons/Edit.svg new file mode 100644 index 0000000..6fc7ae0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Edit.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Edit.svg.import b/addons/godot_tours/bubble/assets/icons/Edit.svg.import new file mode 100644 index 0000000..367fc1d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Edit.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm1nwstchkb5s" +path="res://.godot/imported/Edit.svg-69101ddc1996e6e87f7d730bcd91baf4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Edit.svg" +dest_files=["res://.godot/imported/Edit.svg-69101ddc1996e6e87f7d730bcd91baf4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditAddRemove.svg b/addons/godot_tours/bubble/assets/icons/EditAddRemove.svg new file mode 100644 index 0000000..b07ba10 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditAddRemove.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditAddRemove.svg.import b/addons/godot_tours/bubble/assets/icons/EditAddRemove.svg.import new file mode 100644 index 0000000..b1773cd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditAddRemove.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr1ucq71pq4nb" +path="res://.godot/imported/EditAddRemove.svg-f2bf8387f60147c37ee069f36a78732c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditAddRemove.svg" +dest_files=["res://.godot/imported/EditAddRemove.svg-f2bf8387f60147c37ee069f36a78732c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditBezier.svg b/addons/godot_tours/bubble/assets/icons/EditBezier.svg new file mode 100644 index 0000000..e082b17 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditBezier.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditBezier.svg.import b/addons/godot_tours/bubble/assets/icons/EditBezier.svg.import new file mode 100644 index 0000000..b52d415 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditBezier.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://benstm57t46an" +path="res://.godot/imported/EditBezier.svg-d33eeb682b90d985af59f1e34d362d0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditBezier.svg" +dest_files=["res://.godot/imported/EditBezier.svg-d33eeb682b90d985af59f1e34d362d0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditInternal.svg b/addons/godot_tours/bubble/assets/icons/EditInternal.svg new file mode 100644 index 0000000..14e8518 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditInternal.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditInternal.svg.import b/addons/godot_tours/bubble/assets/icons/EditInternal.svg.import new file mode 100644 index 0000000..be76296 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditInternal.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2fcf1be04cd2" +path="res://.godot/imported/EditInternal.svg-baeb9ed8c4d82a9feb159435e6de9b04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditInternal.svg" +dest_files=["res://.godot/imported/EditInternal.svg-baeb9ed8c4d82a9feb159435e6de9b04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditKey.svg b/addons/godot_tours/bubble/assets/icons/EditKey.svg new file mode 100644 index 0000000..a30ce8f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditKey.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditKey.svg.import b/addons/godot_tours/bubble/assets/icons/EditKey.svg.import new file mode 100644 index 0000000..47e4529 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditKey.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwjx4dajr2t6p" +path="res://.godot/imported/EditKey.svg-0390b51cf57d59e5ee4bf86995f01e3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditKey.svg" +dest_files=["res://.godot/imported/EditKey.svg-0390b51cf57d59e5ee4bf86995f01e3e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditPivot.svg b/addons/godot_tours/bubble/assets/icons/EditPivot.svg new file mode 100644 index 0000000..140fbd6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditPivot.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditPivot.svg.import b/addons/godot_tours/bubble/assets/icons/EditPivot.svg.import new file mode 100644 index 0000000..480b560 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditPivot.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp5steii84mkp" +path="res://.godot/imported/EditPivot.svg-8bf15cced123567d1e5f1d6516470a82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditPivot.svg" +dest_files=["res://.godot/imported/EditPivot.svg-8bf15cced123567d1e5f1d6516470a82.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Editor3DHandle.svg b/addons/godot_tours/bubble/assets/icons/Editor3DHandle.svg new file mode 100644 index 0000000..7eb2fde --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Editor3DHandle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Editor3DHandle.svg.import b/addons/godot_tours/bubble/assets/icons/Editor3DHandle.svg.import new file mode 100644 index 0000000..d052140 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Editor3DHandle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dabibl7q5wgfc" +path="res://.godot/imported/Editor3DHandle.svg-0f3b31d1bfe387af10c080e21ff420db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Editor3DHandle.svg" +dest_files=["res://.godot/imported/Editor3DHandle.svg-0f3b31d1bfe387af10c080e21ff420db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorBoneHandle.svg b/addons/godot_tours/bubble/assets/icons/EditorBoneHandle.svg new file mode 100644 index 0000000..f85567b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorBoneHandle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorBoneHandle.svg.import b/addons/godot_tours/bubble/assets/icons/EditorBoneHandle.svg.import new file mode 100644 index 0000000..497d483 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorBoneHandle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy10fiw7y6rj4" +path="res://.godot/imported/EditorBoneHandle.svg-94a9a1ae4f847ecfe6efc14ef16448e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorBoneHandle.svg" +dest_files=["res://.godot/imported/EditorBoneHandle.svg-94a9a1ae4f847ecfe6efc14ef16448e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorControlAnchor.svg b/addons/godot_tours/bubble/assets/icons/EditorControlAnchor.svg new file mode 100644 index 0000000..4658372 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorControlAnchor.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorControlAnchor.svg.import b/addons/godot_tours/bubble/assets/icons/EditorControlAnchor.svg.import new file mode 100644 index 0000000..462005a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorControlAnchor.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://snox8k0rx7go" +path="res://.godot/imported/EditorControlAnchor.svg-8b7c01b8081658697aad89cd8ff46e47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorControlAnchor.svg" +dest_files=["res://.godot/imported/EditorControlAnchor.svg-8b7c01b8081658697aad89cd8ff46e47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorCurveHandle.svg b/addons/godot_tours/bubble/assets/icons/EditorCurveHandle.svg new file mode 100644 index 0000000..e57d6b5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorCurveHandle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorCurveHandle.svg.import b/addons/godot_tours/bubble/assets/icons/EditorCurveHandle.svg.import new file mode 100644 index 0000000..8bce4e8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorCurveHandle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://citfcquihbkfe" +path="res://.godot/imported/EditorCurveHandle.svg-2e61f9d5205c22f00eba4b0c93a106d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorCurveHandle.svg" +dest_files=["res://.godot/imported/EditorCurveHandle.svg-2e61f9d5205c22f00eba4b0c93a106d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorFileDialog.svg b/addons/godot_tours/bubble/assets/icons/EditorFileDialog.svg new file mode 100644 index 0000000..6b16dbb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorFileDialog.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorFileDialog.svg.import b/addons/godot_tours/bubble/assets/icons/EditorFileDialog.svg.import new file mode 100644 index 0000000..bf81e40 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorFileDialog.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crxhoqubm1jgc" +path="res://.godot/imported/EditorFileDialog.svg-a8bd63e503a0d45fd9d0e188e809cde5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorFileDialog.svg" +dest_files=["res://.godot/imported/EditorFileDialog.svg-a8bd63e503a0d45fd9d0e188e809cde5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorHandle.svg b/addons/godot_tours/bubble/assets/icons/EditorHandle.svg new file mode 100644 index 0000000..1bd3218 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorHandle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorHandle.svg.import b/addons/godot_tours/bubble/assets/icons/EditorHandle.svg.import new file mode 100644 index 0000000..cc5448e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorHandle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3e534x6xi1t7" +path="res://.godot/imported/EditorHandle.svg-0c1cc1fc960801e3df164e84562c206b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorHandle.svg" +dest_files=["res://.godot/imported/EditorHandle.svg-0c1cc1fc960801e3df164e84562c206b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorHandleAdd.svg b/addons/godot_tours/bubble/assets/icons/EditorHandleAdd.svg new file mode 100644 index 0000000..a267170 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorHandleAdd.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorHandleAdd.svg.import b/addons/godot_tours/bubble/assets/icons/EditorHandleAdd.svg.import new file mode 100644 index 0000000..d774dc3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorHandleAdd.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgo8he2pog407" +path="res://.godot/imported/EditorHandleAdd.svg-428a29aa4d2945db2af5d566b4d00d31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorHandleAdd.svg" +dest_files=["res://.godot/imported/EditorHandleAdd.svg-428a29aa4d2945db2af5d566b4d00d31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorHandleDisabled.svg b/addons/godot_tours/bubble/assets/icons/EditorHandleDisabled.svg new file mode 100644 index 0000000..1d60e36 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorHandleDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorHandleDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/EditorHandleDisabled.svg.import new file mode 100644 index 0000000..a12c774 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorHandleDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cybbdg2y238sa" +path="res://.godot/imported/EditorHandleDisabled.svg-cdedc1ca619598a5e84e00ddd9ef15aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorHandleDisabled.svg" +dest_files=["res://.godot/imported/EditorHandleDisabled.svg-cdedc1ca619598a5e84e00ddd9ef15aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorPathSharpHandle.svg b/addons/godot_tours/bubble/assets/icons/EditorPathSharpHandle.svg new file mode 100644 index 0000000..7fb35ee --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPathSharpHandle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorPathSharpHandle.svg.import b/addons/godot_tours/bubble/assets/icons/EditorPathSharpHandle.svg.import new file mode 100644 index 0000000..72176c6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPathSharpHandle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5d05m25vep4g" +path="res://.godot/imported/EditorPathSharpHandle.svg-b420fea2207783a193323e95bd593dd2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorPathSharpHandle.svg" +dest_files=["res://.godot/imported/EditorPathSharpHandle.svg-b420fea2207783a193323e95bd593dd2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorPathSmoothHandle.svg b/addons/godot_tours/bubble/assets/icons/EditorPathSmoothHandle.svg new file mode 100644 index 0000000..d4bd434 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPathSmoothHandle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorPathSmoothHandle.svg.import b/addons/godot_tours/bubble/assets/icons/EditorPathSmoothHandle.svg.import new file mode 100644 index 0000000..da21be1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPathSmoothHandle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blofs8ystryf2" +path="res://.godot/imported/EditorPathSmoothHandle.svg-11410411195521eacea5333ceeb1d969.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorPathSmoothHandle.svg" +dest_files=["res://.godot/imported/EditorPathSmoothHandle.svg-11410411195521eacea5333ceeb1d969.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorPivot.svg b/addons/godot_tours/bubble/assets/icons/EditorPivot.svg new file mode 100644 index 0000000..802d7c2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPivot.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorPivot.svg.import b/addons/godot_tours/bubble/assets/icons/EditorPivot.svg.import new file mode 100644 index 0000000..81ab09c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPivot.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctnikbm5je37y" +path="res://.godot/imported/EditorPivot.svg-161ced07b0d3ed43c8cf35eeb3a7d105.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorPivot.svg" +dest_files=["res://.godot/imported/EditorPivot.svg-161ced07b0d3ed43c8cf35eeb3a7d105.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorPlugin.svg b/addons/godot_tours/bubble/assets/icons/EditorPlugin.svg new file mode 100644 index 0000000..928ca7c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPlugin.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorPlugin.svg.import b/addons/godot_tours/bubble/assets/icons/EditorPlugin.svg.import new file mode 100644 index 0000000..ebbf7f0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPlugin.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce736kad3nwbx" +path="res://.godot/imported/EditorPlugin.svg-7875c553fbc81100b48ea812fac1b124.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorPlugin.svg" +dest_files=["res://.godot/imported/EditorPlugin.svg-7875c553fbc81100b48ea812fac1b124.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorPosition.svg b/addons/godot_tours/bubble/assets/icons/EditorPosition.svg new file mode 100644 index 0000000..c736497 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPosition.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorPosition.svg.import b/addons/godot_tours/bubble/assets/icons/EditorPosition.svg.import new file mode 100644 index 0000000..3c41c59 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPosition.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://caxk236x15x40" +path="res://.godot/imported/EditorPosition.svg-80066d2eed59e15457832ccf65456a6c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorPosition.svg" +dest_files=["res://.godot/imported/EditorPosition.svg-80066d2eed59e15457832ccf65456a6c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorPositionPrevious.svg b/addons/godot_tours/bubble/assets/icons/EditorPositionPrevious.svg new file mode 100644 index 0000000..5cc8248 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPositionPrevious.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorPositionPrevious.svg.import b/addons/godot_tours/bubble/assets/icons/EditorPositionPrevious.svg.import new file mode 100644 index 0000000..eee324d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPositionPrevious.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://donpke3whgkq4" +path="res://.godot/imported/EditorPositionPrevious.svg-88a1e8d34ca4170e73d4982dafa03266.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorPositionPrevious.svg" +dest_files=["res://.godot/imported/EditorPositionPrevious.svg-88a1e8d34ca4170e73d4982dafa03266.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/EditorPositionUnselected.svg b/addons/godot_tours/bubble/assets/icons/EditorPositionUnselected.svg new file mode 100644 index 0000000..6c76f0b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPositionUnselected.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/EditorPositionUnselected.svg.import b/addons/godot_tours/bubble/assets/icons/EditorPositionUnselected.svg.import new file mode 100644 index 0000000..fa663d9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/EditorPositionUnselected.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwi46311xn2t2" +path="res://.godot/imported/EditorPositionUnselected.svg-04bc9d331742c50cf0a44581e1706429.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/EditorPositionUnselected.svg" +dest_files=["res://.godot/imported/EditorPositionUnselected.svg-04bc9d331742c50cf0a44581e1706429.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Enum.svg b/addons/godot_tours/bubble/assets/icons/Enum.svg new file mode 100644 index 0000000..03b9b4a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Enum.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Enum.svg.import b/addons/godot_tours/bubble/assets/icons/Enum.svg.import new file mode 100644 index 0000000..a2939c7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Enum.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1eser2132tii" +path="res://.godot/imported/Enum.svg-01b99a39677abd85725f7dacbebdf3a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Enum.svg" +dest_files=["res://.godot/imported/Enum.svg-01b99a39677abd85725f7dacbebdf3a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Environment.svg b/addons/godot_tours/bubble/assets/icons/Environment.svg new file mode 100644 index 0000000..b356459 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Environment.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Environment.svg.import b/addons/godot_tours/bubble/assets/icons/Environment.svg.import new file mode 100644 index 0000000..31e93b2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Environment.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbq157lfvqexo" +path="res://.godot/imported/Environment.svg-cd3a0800a895dee74386bf0b850de9e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Environment.svg" +dest_files=["res://.godot/imported/Environment.svg-cd3a0800a895dee74386bf0b850de9e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Eraser.svg b/addons/godot_tours/bubble/assets/icons/Eraser.svg new file mode 100644 index 0000000..94b5696 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Eraser.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Eraser.svg.import b/addons/godot_tours/bubble/assets/icons/Eraser.svg.import new file mode 100644 index 0000000..29484f5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Eraser.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ivtc4wyie7e8" +path="res://.godot/imported/Eraser.svg-a858b92a5a3f1a8e9de4f8f667508784.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Eraser.svg" +dest_files=["res://.godot/imported/Eraser.svg-a858b92a5a3f1a8e9de4f8f667508784.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Error.svg b/addons/godot_tours/bubble/assets/icons/Error.svg new file mode 100644 index 0000000..198df53 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Error.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Error.svg.import b/addons/godot_tours/bubble/assets/icons/Error.svg.import new file mode 100644 index 0000000..67b1277 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Error.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k84kwjx3bm1i" +path="res://.godot/imported/Error.svg-a4b3edb0ddb139e0a43fa8b408868a94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Error.svg" +dest_files=["res://.godot/imported/Error.svg-a4b3edb0ddb139e0a43fa8b408868a94.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ErrorWarning.svg b/addons/godot_tours/bubble/assets/icons/ErrorWarning.svg new file mode 100644 index 0000000..6ca6f4c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ErrorWarning.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ErrorWarning.svg.import b/addons/godot_tours/bubble/assets/icons/ErrorWarning.svg.import new file mode 100644 index 0000000..7d2ec6c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ErrorWarning.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hlm70wuf2mp3" +path="res://.godot/imported/ErrorWarning.svg-293f680182215ff7d69989f4229ce9d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ErrorWarning.svg" +dest_files=["res://.godot/imported/ErrorWarning.svg-293f680182215ff7d69989f4229ce9d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ExpandBottomDock.svg b/addons/godot_tours/bubble/assets/icons/ExpandBottomDock.svg new file mode 100644 index 0000000..61120ec --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ExpandBottomDock.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ExpandBottomDock.svg.import b/addons/godot_tours/bubble/assets/icons/ExpandBottomDock.svg.import new file mode 100644 index 0000000..2f8a5a8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ExpandBottomDock.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2s88vepwmp1k" +path="res://.godot/imported/ExpandBottomDock.svg-f72dfaa28d3736a8a2d167ddb707bae1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ExpandBottomDock.svg" +dest_files=["res://.godot/imported/ExpandBottomDock.svg-f72dfaa28d3736a8a2d167ddb707bae1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ExpandTree.svg b/addons/godot_tours/bubble/assets/icons/ExpandTree.svg new file mode 100644 index 0000000..1b0a951 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ExpandTree.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ExpandTree.svg.import b/addons/godot_tours/bubble/assets/icons/ExpandTree.svg.import new file mode 100644 index 0000000..6087dbc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ExpandTree.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtejlxhorw7fm" +path="res://.godot/imported/ExpandTree.svg-53227728c30a9c84cc922da5a8931d61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ExpandTree.svg" +dest_files=["res://.godot/imported/ExpandTree.svg-53227728c30a9c84cc922da5a8931d61.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ExternalLink.svg b/addons/godot_tours/bubble/assets/icons/ExternalLink.svg new file mode 100644 index 0000000..a504290 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ExternalLink.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ExternalLink.svg.import b/addons/godot_tours/bubble/assets/icons/ExternalLink.svg.import new file mode 100644 index 0000000..608efc8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ExternalLink.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ovhpjf6jai0v" +path="res://.godot/imported/ExternalLink.svg-fe9c8c42114455f0be1be6885f9adba6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ExternalLink.svg" +dest_files=["res://.godot/imported/ExternalLink.svg-fe9c8c42114455f0be1be6885f9adba6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FadeCross.svg b/addons/godot_tours/bubble/assets/icons/FadeCross.svg new file mode 100644 index 0000000..2d4f058 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FadeCross.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/FadeCross.svg.import b/addons/godot_tours/bubble/assets/icons/FadeCross.svg.import new file mode 100644 index 0000000..b46233a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FadeCross.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq5nbgqvtc2g3" +path="res://.godot/imported/FadeCross.svg-bf0347e400b7bae623676f9037a7d4cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FadeCross.svg" +dest_files=["res://.godot/imported/FadeCross.svg-bf0347e400b7bae623676f9037a7d4cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FadeDisabled.svg b/addons/godot_tours/bubble/assets/icons/FadeDisabled.svg new file mode 100644 index 0000000..2333335 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FadeDisabled.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/FadeDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/FadeDisabled.svg.import new file mode 100644 index 0000000..80b6b3c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FadeDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgfo7dcnsff31" +path="res://.godot/imported/FadeDisabled.svg-428a6f598814b57c78c00a0a86140f29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FadeDisabled.svg" +dest_files=["res://.godot/imported/FadeDisabled.svg-428a6f598814b57c78c00a0a86140f29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FadeIn.svg b/addons/godot_tours/bubble/assets/icons/FadeIn.svg new file mode 100644 index 0000000..3144e07 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FadeIn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/FadeIn.svg.import b/addons/godot_tours/bubble/assets/icons/FadeIn.svg.import new file mode 100644 index 0000000..8cef621 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FadeIn.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cowusc8ln7w3o" +path="res://.godot/imported/FadeIn.svg-031daad8539795265a3260ff73c44188.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FadeIn.svg" +dest_files=["res://.godot/imported/FadeIn.svg-031daad8539795265a3260ff73c44188.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FadeOut.svg b/addons/godot_tours/bubble/assets/icons/FadeOut.svg new file mode 100644 index 0000000..4ce90b5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FadeOut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/FadeOut.svg.import b/addons/godot_tours/bubble/assets/icons/FadeOut.svg.import new file mode 100644 index 0000000..ca9df35 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FadeOut.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1bn26aq5oi5h" +path="res://.godot/imported/FadeOut.svg-b5928b80591e747c5d9331ce03b96ef3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FadeOut.svg" +dest_files=["res://.godot/imported/FadeOut.svg-b5928b80591e747c5d9331ce03b96ef3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Favorites.svg b/addons/godot_tours/bubble/assets/icons/Favorites.svg new file mode 100644 index 0000000..a57c3da --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Favorites.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Favorites.svg.import b/addons/godot_tours/bubble/assets/icons/Favorites.svg.import new file mode 100644 index 0000000..0798c4c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Favorites.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu2qalmpqu13e" +path="res://.godot/imported/Favorites.svg-ea135bc0f5e6719fbab8b2cf2011c0ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Favorites.svg" +dest_files=["res://.godot/imported/Favorites.svg-ea135bc0f5e6719fbab8b2cf2011c0ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/File.svg b/addons/godot_tours/bubble/assets/icons/File.svg new file mode 100644 index 0000000..86c6e09 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/File.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/File.svg.import b/addons/godot_tours/bubble/assets/icons/File.svg.import new file mode 100644 index 0000000..bfdfbf0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/File.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h0mmq2ivavmo" +path="res://.godot/imported/File.svg-bfda774cd0a58a7240370ea1ae28f30e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/File.svg" +dest_files=["res://.godot/imported/File.svg-bfda774cd0a58a7240370ea1ae28f30e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileAccess.svg b/addons/godot_tours/bubble/assets/icons/FileAccess.svg new file mode 100644 index 0000000..f46a90d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileAccess.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileAccess.svg.import b/addons/godot_tours/bubble/assets/icons/FileAccess.svg.import new file mode 100644 index 0000000..16ed7ae --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileAccess.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u7cu6sqls8hq" +path="res://.godot/imported/FileAccess.svg-894edc7bed5f4b9cecfe4a571af0f690.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileAccess.svg" +dest_files=["res://.godot/imported/FileAccess.svg-894edc7bed5f4b9cecfe4a571af0f690.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileBigThumb.svg b/addons/godot_tours/bubble/assets/icons/FileBigThumb.svg new file mode 100644 index 0000000..d6e2b36 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileBigThumb.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileBigThumb.svg.import b/addons/godot_tours/bubble/assets/icons/FileBigThumb.svg.import new file mode 100644 index 0000000..285d04d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileBigThumb.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ufpxvrc5sd6u" +path="res://.godot/imported/FileBigThumb.svg-2ad3fb63902af0a22505b732216cc06b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileBigThumb.svg" +dest_files=["res://.godot/imported/FileBigThumb.svg-2ad3fb63902af0a22505b732216cc06b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileBroken.svg b/addons/godot_tours/bubble/assets/icons/FileBroken.svg new file mode 100644 index 0000000..4c8b7cd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileBroken.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileBroken.svg.import b/addons/godot_tours/bubble/assets/icons/FileBroken.svg.import new file mode 100644 index 0000000..72c9d6f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileBroken.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsvkg8ego0dvc" +path="res://.godot/imported/FileBroken.svg-fcae2d107b22f67392b1354073f886bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileBroken.svg" +dest_files=["res://.godot/imported/FileBroken.svg-fcae2d107b22f67392b1354073f886bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileBrokenBigThumb.svg b/addons/godot_tours/bubble/assets/icons/FileBrokenBigThumb.svg new file mode 100644 index 0000000..c7edaa6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileBrokenBigThumb.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileBrokenBigThumb.svg.import b/addons/godot_tours/bubble/assets/icons/FileBrokenBigThumb.svg.import new file mode 100644 index 0000000..b2181a1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileBrokenBigThumb.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwxpnslpov68n" +path="res://.godot/imported/FileBrokenBigThumb.svg-41f183eb548f87eec87835b01e607000.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileBrokenBigThumb.svg" +dest_files=["res://.godot/imported/FileBrokenBigThumb.svg-41f183eb548f87eec87835b01e607000.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileBrowse.svg b/addons/godot_tours/bubble/assets/icons/FileBrowse.svg new file mode 100644 index 0000000..2bf3ca4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileBrowse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/FileBrowse.svg.import b/addons/godot_tours/bubble/assets/icons/FileBrowse.svg.import new file mode 100644 index 0000000..b8d3f91 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileBrowse.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uw8augugjyt0" +path="res://.godot/imported/FileBrowse.svg-76439ce8c92a5803be2582deb865609d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileBrowse.svg" +dest_files=["res://.godot/imported/FileBrowse.svg-76439ce8c92a5803be2582deb865609d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileDead.svg b/addons/godot_tours/bubble/assets/icons/FileDead.svg new file mode 100644 index 0000000..af88bd8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileDead.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileDead.svg.import b/addons/godot_tours/bubble/assets/icons/FileDead.svg.import new file mode 100644 index 0000000..e71255a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileDead.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfon5tih6djx5" +path="res://.godot/imported/FileDead.svg-032231949bff6d496d61cba0746582ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileDead.svg" +dest_files=["res://.godot/imported/FileDead.svg-032231949bff6d496d61cba0746582ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileDeadBigThumb.svg b/addons/godot_tours/bubble/assets/icons/FileDeadBigThumb.svg new file mode 100644 index 0000000..71e3e4a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileDeadBigThumb.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileDeadBigThumb.svg.import b/addons/godot_tours/bubble/assets/icons/FileDeadBigThumb.svg.import new file mode 100644 index 0000000..0be9529 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileDeadBigThumb.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2iepiauepu5j" +path="res://.godot/imported/FileDeadBigThumb.svg-8ce5b098b71cedfe3657101dff86061d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileDeadBigThumb.svg" +dest_files=["res://.godot/imported/FileDeadBigThumb.svg-8ce5b098b71cedfe3657101dff86061d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileDeadMediumThumb.svg b/addons/godot_tours/bubble/assets/icons/FileDeadMediumThumb.svg new file mode 100644 index 0000000..8f5099c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileDeadMediumThumb.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileDeadMediumThumb.svg.import b/addons/godot_tours/bubble/assets/icons/FileDeadMediumThumb.svg.import new file mode 100644 index 0000000..179e6c0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileDeadMediumThumb.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2tieprn6acgt" +path="res://.godot/imported/FileDeadMediumThumb.svg-c282439e27b7900e36739b6158317ae2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileDeadMediumThumb.svg" +dest_files=["res://.godot/imported/FileDeadMediumThumb.svg-c282439e27b7900e36739b6158317ae2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileDialog.svg b/addons/godot_tours/bubble/assets/icons/FileDialog.svg new file mode 100644 index 0000000..6b16dbb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileDialog.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileDialog.svg.import b/addons/godot_tours/bubble/assets/icons/FileDialog.svg.import new file mode 100644 index 0000000..52ce2be --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileDialog.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk6uofk6kbefg" +path="res://.godot/imported/FileDialog.svg-80b933ef607a88901389a88040cc3288.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileDialog.svg" +dest_files=["res://.godot/imported/FileDialog.svg-80b933ef607a88901389a88040cc3288.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileList.svg b/addons/godot_tours/bubble/assets/icons/FileList.svg new file mode 100644 index 0000000..3ba4915 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileList.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileList.svg.import b/addons/godot_tours/bubble/assets/icons/FileList.svg.import new file mode 100644 index 0000000..0ca6ae0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileList.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biofo7qo2gevu" +path="res://.godot/imported/FileList.svg-fe1d689ed3202ada1ff35f7038f04f8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileList.svg" +dest_files=["res://.godot/imported/FileList.svg-fe1d689ed3202ada1ff35f7038f04f8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileMediumThumb.svg b/addons/godot_tours/bubble/assets/icons/FileMediumThumb.svg new file mode 100644 index 0000000..9b59f7c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileMediumThumb.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileMediumThumb.svg.import b/addons/godot_tours/bubble/assets/icons/FileMediumThumb.svg.import new file mode 100644 index 0000000..4cbe0ad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileMediumThumb.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc41orpkqh4xe" +path="res://.godot/imported/FileMediumThumb.svg-9fa8d586e3b9bfb7ec4c1e582b66a230.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileMediumThumb.svg" +dest_files=["res://.godot/imported/FileMediumThumb.svg-9fa8d586e3b9bfb7ec4c1e582b66a230.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileThumbnail.svg b/addons/godot_tours/bubble/assets/icons/FileThumbnail.svg new file mode 100644 index 0000000..5cf0ddc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileThumbnail.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileThumbnail.svg.import b/addons/godot_tours/bubble/assets/icons/FileThumbnail.svg.import new file mode 100644 index 0000000..4720bed --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileThumbnail.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cptjiwwxbeolk" +path="res://.godot/imported/FileThumbnail.svg-35982b0a436d46d1d58f3ce769ee7d79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileThumbnail.svg" +dest_files=["res://.godot/imported/FileThumbnail.svg-35982b0a436d46d1d58f3ce769ee7d79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FileTree.svg b/addons/godot_tours/bubble/assets/icons/FileTree.svg new file mode 100644 index 0000000..995715c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileTree.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FileTree.svg.import b/addons/godot_tours/bubble/assets/icons/FileTree.svg.import new file mode 100644 index 0000000..1e374bb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FileTree.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm2kwrrbfdad8" +path="res://.godot/imported/FileTree.svg-cf700f00321387dacb79f03e71f3bc6c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FileTree.svg" +dest_files=["res://.godot/imported/FileTree.svg-cf700f00321387dacb79f03e71f3bc6c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Filesystem.svg b/addons/godot_tours/bubble/assets/icons/Filesystem.svg new file mode 100644 index 0000000..a5e1c2f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Filesystem.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Filesystem.svg.import b/addons/godot_tours/bubble/assets/icons/Filesystem.svg.import new file mode 100644 index 0000000..2b78c2a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Filesystem.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvqcy8dct6lni" +path="res://.godot/imported/Filesystem.svg-ee8f4b65375519c527eb3135b7d956f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Filesystem.svg" +dest_files=["res://.godot/imported/Filesystem.svg-ee8f4b65375519c527eb3135b7d956f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FlowContainer.svg b/addons/godot_tours/bubble/assets/icons/FlowContainer.svg new file mode 100644 index 0000000..f8e48db --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FlowContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FlowContainer.svg.import b/addons/godot_tours/bubble/assets/icons/FlowContainer.svg.import new file mode 100644 index 0000000..6215dfc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FlowContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2q66uobhcgom" +path="res://.godot/imported/FlowContainer.svg-316e8c7cf6e53e506d537ebd86b0ed9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FlowContainer.svg" +dest_files=["res://.godot/imported/FlowContainer.svg-316e8c7cf6e53e506d537ebd86b0ed9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FogMaterial.svg b/addons/godot_tours/bubble/assets/icons/FogMaterial.svg new file mode 100644 index 0000000..5fb9951 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FogMaterial.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FogMaterial.svg.import b/addons/godot_tours/bubble/assets/icons/FogMaterial.svg.import new file mode 100644 index 0000000..83d0d29 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FogMaterial.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chikxp4tqpatk" +path="res://.godot/imported/FogMaterial.svg-c297cd4acdcf2e5e3b64d4b4a57d61cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FogMaterial.svg" +dest_files=["res://.godot/imported/FogMaterial.svg-c297cd4acdcf2e5e3b64d4b4a57d61cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FogVolume.svg b/addons/godot_tours/bubble/assets/icons/FogVolume.svg new file mode 100644 index 0000000..4a796d6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FogVolume.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FogVolume.svg.import b/addons/godot_tours/bubble/assets/icons/FogVolume.svg.import new file mode 100644 index 0000000..404bdee --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FogVolume.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o7bpp50pvqnu" +path="res://.godot/imported/FogVolume.svg-5dcd990358de0022020102f9d66a6e96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FogVolume.svg" +dest_files=["res://.godot/imported/FogVolume.svg-5dcd990358de0022020102f9d66a6e96.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Folder.svg b/addons/godot_tours/bubble/assets/icons/Folder.svg new file mode 100644 index 0000000..dab1cfb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Folder.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Folder.svg.import b/addons/godot_tours/bubble/assets/icons/Folder.svg.import new file mode 100644 index 0000000..362f6a1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Folder.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tvemral3c2lm" +path="res://.godot/imported/Folder.svg-26f4e75509a6a3b943c5cf91d8843299.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Folder.svg" +dest_files=["res://.godot/imported/Folder.svg-26f4e75509a6a3b943c5cf91d8843299.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FolderBigThumb.svg b/addons/godot_tours/bubble/assets/icons/FolderBigThumb.svg new file mode 100644 index 0000000..403c491 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FolderBigThumb.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FolderBigThumb.svg.import b/addons/godot_tours/bubble/assets/icons/FolderBigThumb.svg.import new file mode 100644 index 0000000..e39e452 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FolderBigThumb.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://44rtnstt3l0p" +path="res://.godot/imported/FolderBigThumb.svg-029db181c6796251323640f3ee9347d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FolderBigThumb.svg" +dest_files=["res://.godot/imported/FolderBigThumb.svg-029db181c6796251323640f3ee9347d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FolderBrowse.svg b/addons/godot_tours/bubble/assets/icons/FolderBrowse.svg new file mode 100644 index 0000000..834d7f1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FolderBrowse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/FolderBrowse.svg.import b/addons/godot_tours/bubble/assets/icons/FolderBrowse.svg.import new file mode 100644 index 0000000..f7a3c22 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FolderBrowse.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fcjbrtil0fvr" +path="res://.godot/imported/FolderBrowse.svg-e2f402580d25f3528cbc80901cb64b58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FolderBrowse.svg" +dest_files=["res://.godot/imported/FolderBrowse.svg-e2f402580d25f3528cbc80901cb64b58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FolderCreate.svg b/addons/godot_tours/bubble/assets/icons/FolderCreate.svg new file mode 100644 index 0000000..80a3f90 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FolderCreate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/FolderCreate.svg.import b/addons/godot_tours/bubble/assets/icons/FolderCreate.svg.import new file mode 100644 index 0000000..896239b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FolderCreate.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crlistld16dmf" +path="res://.godot/imported/FolderCreate.svg-85dcab7f784f9cb1b18fcb800194c79f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FolderCreate.svg" +dest_files=["res://.godot/imported/FolderCreate.svg-85dcab7f784f9cb1b18fcb800194c79f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FolderMediumThumb.svg b/addons/godot_tours/bubble/assets/icons/FolderMediumThumb.svg new file mode 100644 index 0000000..7647d6d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FolderMediumThumb.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FolderMediumThumb.svg.import b/addons/godot_tours/bubble/assets/icons/FolderMediumThumb.svg.import new file mode 100644 index 0000000..8cc9d0f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FolderMediumThumb.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bly16w5nngx7k" +path="res://.godot/imported/FolderMediumThumb.svg-c341a539b78a2d0db18ae1b5f2a486dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FolderMediumThumb.svg" +dest_files=["res://.godot/imported/FolderMediumThumb.svg-c341a539b78a2d0db18ae1b5f2a486dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Font.svg b/addons/godot_tours/bubble/assets/icons/Font.svg new file mode 100644 index 0000000..f66f658 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Font.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Font.svg.import b/addons/godot_tours/bubble/assets/icons/Font.svg.import new file mode 100644 index 0000000..00109b8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Font.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qiwxfrasleeg" +path="res://.godot/imported/Font.svg-e1dfdef210ad251cbf0075c488c326ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Font.svg" +dest_files=["res://.godot/imported/Font.svg-e1dfdef210ad251cbf0075c488c326ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FontFile.svg b/addons/godot_tours/bubble/assets/icons/FontFile.svg new file mode 100644 index 0000000..b9a81cd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FontFile.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FontFile.svg.import b/addons/godot_tours/bubble/assets/icons/FontFile.svg.import new file mode 100644 index 0000000..75cb3a7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FontFile.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u0pc0n7xytoy" +path="res://.godot/imported/FontFile.svg-ea63c6ed08e4e60651c968dd4a1dbc56.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FontFile.svg" +dest_files=["res://.godot/imported/FontFile.svg-ea63c6ed08e4e60651c968dd4a1dbc56.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FontItem.svg b/addons/godot_tours/bubble/assets/icons/FontItem.svg new file mode 100644 index 0000000..afdb912 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FontItem.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FontItem.svg.import b/addons/godot_tours/bubble/assets/icons/FontItem.svg.import new file mode 100644 index 0000000..7809412 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FontItem.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hceewm7h6b3n" +path="res://.godot/imported/FontItem.svg-e524df4dbf112b5025e25d77bc66a312.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FontItem.svg" +dest_files=["res://.godot/imported/FontItem.svg-e524df4dbf112b5025e25d77bc66a312.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FontSize.svg b/addons/godot_tours/bubble/assets/icons/FontSize.svg new file mode 100644 index 0000000..f8f2424 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FontSize.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FontSize.svg.import b/addons/godot_tours/bubble/assets/icons/FontSize.svg.import new file mode 100644 index 0000000..a61c359 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FontSize.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwnx552v23r8e" +path="res://.godot/imported/FontSize.svg-5343a8fe19e9aa3487784f3bca27b517.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FontSize.svg" +dest_files=["res://.godot/imported/FontSize.svg-5343a8fe19e9aa3487784f3bca27b517.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/FontVariation.svg b/addons/godot_tours/bubble/assets/icons/FontVariation.svg new file mode 100644 index 0000000..1915bb3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FontVariation.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/FontVariation.svg.import b/addons/godot_tours/bubble/assets/icons/FontVariation.svg.import new file mode 100644 index 0000000..4772be9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/FontVariation.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nlglnep0bigk" +path="res://.godot/imported/FontVariation.svg-a1f07e13099a0d348afcbae378111756.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/FontVariation.svg" +dest_files=["res://.godot/imported/FontVariation.svg-a1f07e13099a0d348afcbae378111756.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Forward.svg b/addons/godot_tours/bubble/assets/icons/Forward.svg new file mode 100644 index 0000000..278e26f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Forward.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Forward.svg.import b/addons/godot_tours/bubble/assets/icons/Forward.svg.import new file mode 100644 index 0000000..65a6425 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Forward.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pil0t4pnbi33" +path="res://.godot/imported/Forward.svg-3e3984dc13b708cadfd643ceb060f27d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Forward.svg" +dest_files=["res://.godot/imported/Forward.svg-3e3984dc13b708cadfd643ceb060f27d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticles2D.svg b/addons/godot_tours/bubble/assets/icons/GPUParticles2D.svg new file mode 100644 index 0000000..6678128 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticles2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticles2D.svg.import b/addons/godot_tours/bubble/assets/icons/GPUParticles2D.svg.import new file mode 100644 index 0000000..0f773b1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticles2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsrhkhviosfki" +path="res://.godot/imported/GPUParticles2D.svg-b276cec0576ce28df547dec63db7e72c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GPUParticles2D.svg" +dest_files=["res://.godot/imported/GPUParticles2D.svg-b276cec0576ce28df547dec63db7e72c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticles3D.svg b/addons/godot_tours/bubble/assets/icons/GPUParticles3D.svg new file mode 100644 index 0000000..0b0860e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticles3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticles3D.svg.import b/addons/godot_tours/bubble/assets/icons/GPUParticles3D.svg.import new file mode 100644 index 0000000..0fb6aa4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticles3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm4pw57dh75a" +path="res://.godot/imported/GPUParticles3D.svg-eb0c9ed91c9ecd3819c045c00d4b765e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GPUParticles3D.svg" +dest_files=["res://.godot/imported/GPUParticles3D.svg-eb0c9ed91c9ecd3819c045c00d4b765e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorBox3D.svg b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorBox3D.svg new file mode 100644 index 0000000..a1f307c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorBox3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorBox3D.svg.import b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorBox3D.svg.import new file mode 100644 index 0000000..e38a2fc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorBox3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brw0q8t82fb8f" +path="res://.godot/imported/GPUParticlesAttractorBox3D.svg-cf9826fe3b8234ce1de352b621179cd4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorBox3D.svg" +dest_files=["res://.godot/imported/GPUParticlesAttractorBox3D.svg-cf9826fe3b8234ce1de352b621179cd4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorSphere3D.svg b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorSphere3D.svg new file mode 100644 index 0000000..e3371f4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorSphere3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorSphere3D.svg.import b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorSphere3D.svg.import new file mode 100644 index 0000000..c0575d6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorSphere3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btvqwba0im3hf" +path="res://.godot/imported/GPUParticlesAttractorSphere3D.svg-dd732cda46b9df6c76f67066123ee708.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorSphere3D.svg" +dest_files=["res://.godot/imported/GPUParticlesAttractorSphere3D.svg-dd732cda46b9df6c76f67066123ee708.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorVectorField3D.svg b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorVectorField3D.svg new file mode 100644 index 0000000..610a39c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorVectorField3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorVectorField3D.svg.import b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorVectorField3D.svg.import new file mode 100644 index 0000000..e84dcf2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorVectorField3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d35w26u8exhjt" +path="res://.godot/imported/GPUParticlesAttractorVectorField3D.svg-31e976efa2c648f2173febe0cff38ab8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GPUParticlesAttractorVectorField3D.svg" +dest_files=["res://.godot/imported/GPUParticlesAttractorVectorField3D.svg-31e976efa2c648f2173febe0cff38ab8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionBox3D.svg b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionBox3D.svg new file mode 100644 index 0000000..e79be6e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionBox3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionBox3D.svg.import b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionBox3D.svg.import new file mode 100644 index 0000000..2f82d53 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionBox3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://84r4uc784ijk" +path="res://.godot/imported/GPUParticlesCollisionBox3D.svg-e835e5e383d0071b838fc229108fe687.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionBox3D.svg" +dest_files=["res://.godot/imported/GPUParticlesCollisionBox3D.svg-e835e5e383d0071b838fc229108fe687.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionHeightField3D.svg b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionHeightField3D.svg new file mode 100644 index 0000000..8bdc98a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionHeightField3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionHeightField3D.svg.import b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionHeightField3D.svg.import new file mode 100644 index 0000000..034577e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionHeightField3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://36odmwddnlyo" +path="res://.godot/imported/GPUParticlesCollisionHeightField3D.svg-98322496feb9c350617b2927e79ddb8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionHeightField3D.svg" +dest_files=["res://.godot/imported/GPUParticlesCollisionHeightField3D.svg-98322496feb9c350617b2927e79ddb8d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSDF3D.svg b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSDF3D.svg new file mode 100644 index 0000000..c1eba98 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSDF3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSDF3D.svg.import b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSDF3D.svg.import new file mode 100644 index 0000000..29ea52a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSDF3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2boxurwqpqb0" +path="res://.godot/imported/GPUParticlesCollisionSDF3D.svg-c7b7cc4035895c1d40bce54aa21f78c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSDF3D.svg" +dest_files=["res://.godot/imported/GPUParticlesCollisionSDF3D.svg-c7b7cc4035895c1d40bce54aa21f78c9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSphere3D.svg b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSphere3D.svg new file mode 100644 index 0000000..4eeec80 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSphere3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSphere3D.svg.import b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSphere3D.svg.import new file mode 100644 index 0000000..f57ad04 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSphere3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5ucjl6q7w2m2" +path="res://.godot/imported/GPUParticlesCollisionSphere3D.svg-ad4f9f403ac85eb917e4f7d2e491f388.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GPUParticlesCollisionSphere3D.svg" +dest_files=["res://.godot/imported/GPUParticlesCollisionSphere3D.svg-ad4f9f403ac85eb917e4f7d2e491f388.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Generic6DOFJoint3D.svg b/addons/godot_tours/bubble/assets/icons/Generic6DOFJoint3D.svg new file mode 100644 index 0000000..061189d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Generic6DOFJoint3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Generic6DOFJoint3D.svg.import b/addons/godot_tours/bubble/assets/icons/Generic6DOFJoint3D.svg.import new file mode 100644 index 0000000..dbbc726 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Generic6DOFJoint3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkvdq2t3i772n" +path="res://.godot/imported/Generic6DOFJoint3D.svg-542c09e051f0034631ae6a5083e42708.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Generic6DOFJoint3D.svg" +dest_files=["res://.godot/imported/Generic6DOFJoint3D.svg-542c09e051f0034631ae6a5083e42708.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GeometryInstance3D.svg b/addons/godot_tours/bubble/assets/icons/GeometryInstance3D.svg new file mode 100644 index 0000000..a211490 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GeometryInstance3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GeometryInstance3D.svg.import b/addons/godot_tours/bubble/assets/icons/GeometryInstance3D.svg.import new file mode 100644 index 0000000..41761e1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GeometryInstance3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgiq5v70qb3s6" +path="res://.godot/imported/GeometryInstance3D.svg-63d9484196e6fa7bf6b5abc67c5bf4d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GeometryInstance3D.svg" +dest_files=["res://.godot/imported/GeometryInstance3D.svg-63d9484196e6fa7bf6b5abc67c5bf4d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Gizmo3DSamplePlayer.svg b/addons/godot_tours/bubble/assets/icons/Gizmo3DSamplePlayer.svg new file mode 100644 index 0000000..f6fe444 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Gizmo3DSamplePlayer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Gizmo3DSamplePlayer.svg.import b/addons/godot_tours/bubble/assets/icons/Gizmo3DSamplePlayer.svg.import new file mode 100644 index 0000000..51158a5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Gizmo3DSamplePlayer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7kqlmisuvm0r" +path="res://.godot/imported/Gizmo3DSamplePlayer.svg-eed51531094520247565fee0cba51136.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Gizmo3DSamplePlayer.svg" +dest_files=["res://.godot/imported/Gizmo3DSamplePlayer.svg-eed51531094520247565fee0cba51136.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoAudioListener3D.svg b/addons/godot_tours/bubble/assets/icons/GizmoAudioListener3D.svg new file mode 100644 index 0000000..2f310cb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoAudioListener3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoAudioListener3D.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoAudioListener3D.svg.import new file mode 100644 index 0000000..8e12c94 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoAudioListener3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o7n2qtqw7rdj" +path="res://.godot/imported/GizmoAudioListener3D.svg-9daccd868c607a263c34f25599053025.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoAudioListener3D.svg" +dest_files=["res://.godot/imported/GizmoAudioListener3D.svg-9daccd868c607a263c34f25599053025.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoCPUParticles3D.svg b/addons/godot_tours/bubble/assets/icons/GizmoCPUParticles3D.svg new file mode 100644 index 0000000..3dc8702 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoCPUParticles3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoCPUParticles3D.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoCPUParticles3D.svg.import new file mode 100644 index 0000000..2018db1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoCPUParticles3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7fbfrc7yimch" +path="res://.godot/imported/GizmoCPUParticles3D.svg-77fbf60a835482532ed3603f874b2ece.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoCPUParticles3D.svg" +dest_files=["res://.godot/imported/GizmoCPUParticles3D.svg-77fbf60a835482532ed3603f874b2ece.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoCamera3D.svg b/addons/godot_tours/bubble/assets/icons/GizmoCamera3D.svg new file mode 100644 index 0000000..6a686cb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoCamera3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoCamera3D.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoCamera3D.svg.import new file mode 100644 index 0000000..ee5a1e3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoCamera3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di57ggvjpifrv" +path="res://.godot/imported/GizmoCamera3D.svg-f7d497411f77a46f5350fcec05ab7a4f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoCamera3D.svg" +dest_files=["res://.godot/imported/GizmoCamera3D.svg-f7d497411f77a46f5350fcec05ab7a4f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoDecal.svg b/addons/godot_tours/bubble/assets/icons/GizmoDecal.svg new file mode 100644 index 0000000..bd3b3f6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoDecal.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoDecal.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoDecal.svg.import new file mode 100644 index 0000000..38fb3d6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoDecal.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vhlkxydpyxrx" +path="res://.godot/imported/GizmoDecal.svg-cd225a04c6eaa9b6db246c623eae6e4d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoDecal.svg" +dest_files=["res://.godot/imported/GizmoDecal.svg-cd225a04c6eaa9b6db246c623eae6e4d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoDirectionalLight.svg b/addons/godot_tours/bubble/assets/icons/GizmoDirectionalLight.svg new file mode 100644 index 0000000..aa2a98c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoDirectionalLight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoDirectionalLight.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoDirectionalLight.svg.import new file mode 100644 index 0000000..c44baef --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoDirectionalLight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bac2g2ba7bowa" +path="res://.godot/imported/GizmoDirectionalLight.svg-4cc318b9dffecd184c902a46318502c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoDirectionalLight.svg" +dest_files=["res://.godot/imported/GizmoDirectionalLight.svg-4cc318b9dffecd184c902a46318502c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoFogVolume.svg b/addons/godot_tours/bubble/assets/icons/GizmoFogVolume.svg new file mode 100644 index 0000000..17dbdb7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoFogVolume.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoFogVolume.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoFogVolume.svg.import new file mode 100644 index 0000000..3d5a75d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoFogVolume.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7qwexu77vn87" +path="res://.godot/imported/GizmoFogVolume.svg-5065411f87685edd2ea72ca523a5af17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoFogVolume.svg" +dest_files=["res://.godot/imported/GizmoFogVolume.svg-5065411f87685edd2ea72ca523a5af17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoGPUParticles3D.svg b/addons/godot_tours/bubble/assets/icons/GizmoGPUParticles3D.svg new file mode 100644 index 0000000..3e96123 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoGPUParticles3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoGPUParticles3D.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoGPUParticles3D.svg.import new file mode 100644 index 0000000..fc8c94f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoGPUParticles3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqgkfx6bxlfst" +path="res://.godot/imported/GizmoGPUParticles3D.svg-7367b13358f0bf82a548b7e67ace36a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoGPUParticles3D.svg" +dest_files=["res://.godot/imported/GizmoGPUParticles3D.svg-7367b13358f0bf82a548b7e67ace36a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoLight.svg b/addons/godot_tours/bubble/assets/icons/GizmoLight.svg new file mode 100644 index 0000000..8009af8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoLight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoLight.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoLight.svg.import new file mode 100644 index 0000000..de03d6d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoLight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbvhvq4dc0kpk" +path="res://.godot/imported/GizmoLight.svg-e63f9bfe25c5b4db78efc06bd4817f08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoLight.svg" +dest_files=["res://.godot/imported/GizmoLight.svg-e63f9bfe25c5b4db78efc06bd4817f08.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoLightmapGI.svg b/addons/godot_tours/bubble/assets/icons/GizmoLightmapGI.svg new file mode 100644 index 0000000..8859201 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoLightmapGI.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoLightmapGI.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoLightmapGI.svg.import new file mode 100644 index 0000000..657c7be --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoLightmapGI.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv2dfkiv7cedo" +path="res://.godot/imported/GizmoLightmapGI.svg-c5c160bc43cc98e4a05ee41883a16409.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoLightmapGI.svg" +dest_files=["res://.godot/imported/GizmoLightmapGI.svg-c5c160bc43cc98e4a05ee41883a16409.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoLightmapProbe.svg b/addons/godot_tours/bubble/assets/icons/GizmoLightmapProbe.svg new file mode 100644 index 0000000..8890649 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoLightmapProbe.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoLightmapProbe.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoLightmapProbe.svg.import new file mode 100644 index 0000000..0884567 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoLightmapProbe.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i5xwson5pt7h" +path="res://.godot/imported/GizmoLightmapProbe.svg-245fe37bcf7a1fbfdcd123b4def49197.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoLightmapProbe.svg" +dest_files=["res://.godot/imported/GizmoLightmapProbe.svg-245fe37bcf7a1fbfdcd123b4def49197.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoReflectionProbe.svg b/addons/godot_tours/bubble/assets/icons/GizmoReflectionProbe.svg new file mode 100644 index 0000000..ee81382 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoReflectionProbe.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoReflectionProbe.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoReflectionProbe.svg.import new file mode 100644 index 0000000..ad71037 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoReflectionProbe.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://847gfokm5sbf" +path="res://.godot/imported/GizmoReflectionProbe.svg-6065b71a6453b74a1488e6880d98b573.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoReflectionProbe.svg" +dest_files=["res://.godot/imported/GizmoReflectionProbe.svg-6065b71a6453b74a1488e6880d98b573.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoSpotLight.svg b/addons/godot_tours/bubble/assets/icons/GizmoSpotLight.svg new file mode 100644 index 0000000..3c986ae --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoSpotLight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoSpotLight.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoSpotLight.svg.import new file mode 100644 index 0000000..75e659e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoSpotLight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5e6emwgiu108" +path="res://.godot/imported/GizmoSpotLight.svg-804dea049fd839254e86b44e6a29ef8c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoSpotLight.svg" +dest_files=["res://.godot/imported/GizmoSpotLight.svg-804dea049fd839254e86b44e6a29ef8c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GizmoVoxelGI.svg b/addons/godot_tours/bubble/assets/icons/GizmoVoxelGI.svg new file mode 100644 index 0000000..498f477 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoVoxelGI.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GizmoVoxelGI.svg.import b/addons/godot_tours/bubble/assets/icons/GizmoVoxelGI.svg.import new file mode 100644 index 0000000..390dc34 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GizmoVoxelGI.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpencig07aalw" +path="res://.godot/imported/GizmoVoxelGI.svg-7b5eea431a29e6e6a642eacb5e9d605c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GizmoVoxelGI.svg" +dest_files=["res://.godot/imported/GizmoVoxelGI.svg-7b5eea431a29e6e6a642eacb5e9d605c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Godot.svg b/addons/godot_tours/bubble/assets/icons/Godot.svg new file mode 100644 index 0000000..588b7e6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Godot.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Godot.svg.import b/addons/godot_tours/bubble/assets/icons/Godot.svg.import new file mode 100644 index 0000000..a3d7c15 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Godot.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ebuxchnnwhde" +path="res://.godot/imported/Godot.svg-813770c4a9119f22964dfe9a5fbf1f41.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Godot.svg" +dest_files=["res://.godot/imported/Godot.svg-813770c4a9119f22964dfe9a5fbf1f41.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GodotFile.svg b/addons/godot_tours/bubble/assets/icons/GodotFile.svg new file mode 100644 index 0000000..13a364e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GodotFile.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GodotFile.svg.import b/addons/godot_tours/bubble/assets/icons/GodotFile.svg.import new file mode 100644 index 0000000..1b8a3af --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GodotFile.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw2dkqior44e1" +path="res://.godot/imported/GodotFile.svg-dba03962fe88e872ae69b56f7573ccda.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GodotFile.svg" +dest_files=["res://.godot/imported/GodotFile.svg-dba03962fe88e872ae69b56f7573ccda.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GodotMonochrome.svg b/addons/godot_tours/bubble/assets/icons/GodotMonochrome.svg new file mode 100644 index 0000000..a8e2d38 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GodotMonochrome.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GodotMonochrome.svg.import b/addons/godot_tours/bubble/assets/icons/GodotMonochrome.svg.import new file mode 100644 index 0000000..3222089 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GodotMonochrome.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhyyqu5kbtv" +path="res://.godot/imported/GodotMonochrome.svg-e15fce55d5531652ce8489dafee57e11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GodotMonochrome.svg" +dest_files=["res://.godot/imported/GodotMonochrome.svg-e15fce55d5531652ce8489dafee57e11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Gradient.svg b/addons/godot_tours/bubble/assets/icons/Gradient.svg new file mode 100644 index 0000000..0dff9da --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Gradient.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Gradient.svg.import b/addons/godot_tours/bubble/assets/icons/Gradient.svg.import new file mode 100644 index 0000000..3805e44 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Gradient.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v0oqal0kt8ah" +path="res://.godot/imported/Gradient.svg-a8b026e48eeb1c3520a0f8a22cc37f99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Gradient.svg" +dest_files=["res://.godot/imported/Gradient.svg-a8b026e48eeb1c3520a0f8a22cc37f99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GradientTexture1D.svg b/addons/godot_tours/bubble/assets/icons/GradientTexture1D.svg new file mode 100644 index 0000000..13da8ab --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GradientTexture1D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GradientTexture1D.svg.import b/addons/godot_tours/bubble/assets/icons/GradientTexture1D.svg.import new file mode 100644 index 0000000..2b02ce1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GradientTexture1D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://devwglmcmkjsc" +path="res://.godot/imported/GradientTexture1D.svg-3f9bc00cca52b8227bcd1326053740e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GradientTexture1D.svg" +dest_files=["res://.godot/imported/GradientTexture1D.svg-3f9bc00cca52b8227bcd1326053740e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GradientTexture2D.svg b/addons/godot_tours/bubble/assets/icons/GradientTexture2D.svg new file mode 100644 index 0000000..8a03f34 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GradientTexture2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GradientTexture2D.svg.import b/addons/godot_tours/bubble/assets/icons/GradientTexture2D.svg.import new file mode 100644 index 0000000..86670f6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GradientTexture2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdgl0ry11je4w" +path="res://.godot/imported/GradientTexture2D.svg-4a60de896f193e55d76b3259f1ac4a55.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GradientTexture2D.svg" +dest_files=["res://.godot/imported/GradientTexture2D.svg-4a60de896f193e55d76b3259f1ac4a55.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GraphEdit.svg b/addons/godot_tours/bubble/assets/icons/GraphEdit.svg new file mode 100644 index 0000000..24685e0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GraphEdit.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GraphEdit.svg.import b/addons/godot_tours/bubble/assets/icons/GraphEdit.svg.import new file mode 100644 index 0000000..4124e08 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GraphEdit.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfdl5m36iup31" +path="res://.godot/imported/GraphEdit.svg-8cc1698567b9655520fa7f3e84685539.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GraphEdit.svg" +dest_files=["res://.godot/imported/GraphEdit.svg-8cc1698567b9655520fa7f3e84685539.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GraphElement.svg b/addons/godot_tours/bubble/assets/icons/GraphElement.svg new file mode 100644 index 0000000..f579f59 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GraphElement.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GraphElement.svg.import b/addons/godot_tours/bubble/assets/icons/GraphElement.svg.import new file mode 100644 index 0000000..92f192a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GraphElement.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpw1xwkyrsqfp" +path="res://.godot/imported/GraphElement.svg-47656c4a9c44839a161c7b8ded6da8f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GraphElement.svg" +dest_files=["res://.godot/imported/GraphElement.svg-47656c4a9c44839a161c7b8ded6da8f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GraphFrame.svg b/addons/godot_tours/bubble/assets/icons/GraphFrame.svg new file mode 100644 index 0000000..cd25c84 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GraphFrame.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GraphFrame.svg.import b/addons/godot_tours/bubble/assets/icons/GraphFrame.svg.import new file mode 100644 index 0000000..950dc04 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GraphFrame.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nnvpermobidm" +path="res://.godot/imported/GraphFrame.svg-205e7554cc2bbb9d0e2f60f2aa98937a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GraphFrame.svg" +dest_files=["res://.godot/imported/GraphFrame.svg-205e7554cc2bbb9d0e2f60f2aa98937a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GraphNode.svg b/addons/godot_tours/bubble/assets/icons/GraphNode.svg new file mode 100644 index 0000000..83f666e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GraphNode.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GraphNode.svg.import b/addons/godot_tours/bubble/assets/icons/GraphNode.svg.import new file mode 100644 index 0000000..b07e391 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GraphNode.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbgjn26j3mee0" +path="res://.godot/imported/GraphNode.svg-0611560e519939e96fea242babe5b006.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GraphNode.svg" +dest_files=["res://.godot/imported/GraphNode.svg-0611560e519939e96fea242babe5b006.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Grid.svg b/addons/godot_tours/bubble/assets/icons/Grid.svg new file mode 100644 index 0000000..7781793 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Grid.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Grid.svg.import b/addons/godot_tours/bubble/assets/icons/Grid.svg.import new file mode 100644 index 0000000..fc09299 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Grid.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcjj7ddvv84ea" +path="res://.godot/imported/Grid.svg-53904ee54ddb654a0bb3b010cb31d2c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Grid.svg" +dest_files=["res://.godot/imported/Grid.svg-53904ee54ddb654a0bb3b010cb31d2c9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GridContainer.svg b/addons/godot_tours/bubble/assets/icons/GridContainer.svg new file mode 100644 index 0000000..25b2740 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GridContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GridContainer.svg.import b/addons/godot_tours/bubble/assets/icons/GridContainer.svg.import new file mode 100644 index 0000000..89ba069 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GridContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7fkcv2vfanji" +path="res://.godot/imported/GridContainer.svg-59691a6ec74565e31f0cb44fb1c8a6c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GridContainer.svg" +dest_files=["res://.godot/imported/GridContainer.svg-59691a6ec74565e31f0cb44fb1c8a6c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GridLayout.svg b/addons/godot_tours/bubble/assets/icons/GridLayout.svg new file mode 100644 index 0000000..754c3c9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GridLayout.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GridLayout.svg.import b/addons/godot_tours/bubble/assets/icons/GridLayout.svg.import new file mode 100644 index 0000000..606c9ce --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GridLayout.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blfuanelmxedw" +path="res://.godot/imported/GridLayout.svg-c8753c8699046027fb467970c598a97a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GridLayout.svg" +dest_files=["res://.godot/imported/GridLayout.svg-c8753c8699046027fb467970c598a97a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GridMap.svg b/addons/godot_tours/bubble/assets/icons/GridMap.svg new file mode 100644 index 0000000..38e48a2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GridMap.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GridMap.svg.import b/addons/godot_tours/bubble/assets/icons/GridMap.svg.import new file mode 100644 index 0000000..2983868 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GridMap.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cip63fw70u30e" +path="res://.godot/imported/GridMap.svg-2b669a74759cfa9fba4439d0863599fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GridMap.svg" +dest_files=["res://.godot/imported/GridMap.svg-2b669a74759cfa9fba4439d0863599fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GridMinimap.svg b/addons/godot_tours/bubble/assets/icons/GridMinimap.svg new file mode 100644 index 0000000..854fec6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GridMinimap.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GridMinimap.svg.import b/addons/godot_tours/bubble/assets/icons/GridMinimap.svg.import new file mode 100644 index 0000000..fe2844c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GridMinimap.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1fsffulhtqln" +path="res://.godot/imported/GridMinimap.svg-73632977b36a855a1b1e3b830971d479.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GridMinimap.svg" +dest_files=["res://.godot/imported/GridMinimap.svg-73632977b36a855a1b1e3b830971d479.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GridToggle.svg b/addons/godot_tours/bubble/assets/icons/GridToggle.svg new file mode 100644 index 0000000..e3c38ba --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GridToggle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GridToggle.svg.import b/addons/godot_tours/bubble/assets/icons/GridToggle.svg.import new file mode 100644 index 0000000..3330b3c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GridToggle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4jtch8c4vn4n" +path="res://.godot/imported/GridToggle.svg-84db172664dccfbc730a2d49db8de581.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GridToggle.svg" +dest_files=["res://.godot/imported/GridToggle.svg-84db172664dccfbc730a2d49db8de581.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GrooveJoint2D.svg b/addons/godot_tours/bubble/assets/icons/GrooveJoint2D.svg new file mode 100644 index 0000000..95c183a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GrooveJoint2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GrooveJoint2D.svg.import b/addons/godot_tours/bubble/assets/icons/GrooveJoint2D.svg.import new file mode 100644 index 0000000..c024b5d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GrooveJoint2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba4trjkiwa4ft" +path="res://.godot/imported/GrooveJoint2D.svg-b525b82bcbce7794e424dfc3d21976f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GrooveJoint2D.svg" +dest_files=["res://.godot/imported/GrooveJoint2D.svg-b525b82bcbce7794e424dfc3d21976f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Group.svg b/addons/godot_tours/bubble/assets/icons/Group.svg new file mode 100644 index 0000000..133695e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Group.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Group.svg.import b/addons/godot_tours/bubble/assets/icons/Group.svg.import new file mode 100644 index 0000000..c3ffd7b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Group.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj6i8gtex7uc1" +path="res://.godot/imported/Group.svg-1094db285b0facf88cfb89448a95f496.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Group.svg" +dest_files=["res://.godot/imported/Group.svg-1094db285b0facf88cfb89448a95f496.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GroupViewport.svg b/addons/godot_tours/bubble/assets/icons/GroupViewport.svg new file mode 100644 index 0000000..e2af5f1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GroupViewport.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GroupViewport.svg.import b/addons/godot_tours/bubble/assets/icons/GroupViewport.svg.import new file mode 100644 index 0000000..af54c13 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GroupViewport.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://couyso3fcrcib" +path="res://.godot/imported/GroupViewport.svg-57c8098a7c90939c9b7d3f9a79bcc071.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GroupViewport.svg" +dest_files=["res://.godot/imported/GroupViewport.svg-57c8098a7c90939c9b7d3f9a79bcc071.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Groups.svg b/addons/godot_tours/bubble/assets/icons/Groups.svg new file mode 100644 index 0000000..eac5b7b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Groups.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Groups.svg.import b/addons/godot_tours/bubble/assets/icons/Groups.svg.import new file mode 100644 index 0000000..69a10ad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Groups.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyve6cemn3sdu" +path="res://.godot/imported/Groups.svg-81a2d987474a90714ec2913b09e41304.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Groups.svg" +dest_files=["res://.godot/imported/Groups.svg-81a2d987474a90714ec2913b09e41304.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiChecked.svg b/addons/godot_tours/bubble/assets/icons/GuiChecked.svg new file mode 100644 index 0000000..91a3d68 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiChecked.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiChecked.svg.import b/addons/godot_tours/bubble/assets/icons/GuiChecked.svg.import new file mode 100644 index 0000000..ff44b4b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiChecked.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dublwxvdtxomn" +path="res://.godot/imported/GuiChecked.svg-85f9c0b9c74f008dfa87cb91f613f8f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiChecked.svg" +dest_files=["res://.godot/imported/GuiChecked.svg-85f9c0b9c74f008dfa87cb91f613f8f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiCheckedDisabled.svg b/addons/godot_tours/bubble/assets/icons/GuiCheckedDisabled.svg new file mode 100644 index 0000000..0bea714 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiCheckedDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiCheckedDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/GuiCheckedDisabled.svg.import new file mode 100644 index 0000000..bc5f2a0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiCheckedDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt7xxbe1w6b0q" +path="res://.godot/imported/GuiCheckedDisabled.svg-b5502917d2c0ed3854213fe3cbb13111.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiCheckedDisabled.svg" +dest_files=["res://.godot/imported/GuiCheckedDisabled.svg-b5502917d2c0ed3854213fe3cbb13111.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiClose.svg b/addons/godot_tours/bubble/assets/icons/GuiClose.svg new file mode 100644 index 0000000..81822a3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiClose.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiClose.svg.import b/addons/godot_tours/bubble/assets/icons/GuiClose.svg.import new file mode 100644 index 0000000..2225cfe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiClose.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cemp0c6ibsa4w" +path="res://.godot/imported/GuiClose.svg-121368bb842ea9f92a840f7e7ed76af7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiClose.svg" +dest_files=["res://.godot/imported/GuiClose.svg-121368bb842ea9f92a840f7e7ed76af7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiDropdown.svg b/addons/godot_tours/bubble/assets/icons/GuiDropdown.svg new file mode 100644 index 0000000..92caa8c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiDropdown.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiDropdown.svg.import b/addons/godot_tours/bubble/assets/icons/GuiDropdown.svg.import new file mode 100644 index 0000000..141509c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiDropdown.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgpqep3ngvkis" +path="res://.godot/imported/GuiDropdown.svg-280d796f3cae42c5fe9a4b64cad3c66b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiDropdown.svg" +dest_files=["res://.godot/imported/GuiDropdown.svg-280d796f3cae42c5fe9a4b64cad3c66b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiEllipsis.svg b/addons/godot_tours/bubble/assets/icons/GuiEllipsis.svg new file mode 100644 index 0000000..25c3a4d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiEllipsis.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiEllipsis.svg.import b/addons/godot_tours/bubble/assets/icons/GuiEllipsis.svg.import new file mode 100644 index 0000000..330a14f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiEllipsis.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpsn4cer3hoix" +path="res://.godot/imported/GuiEllipsis.svg-7aa5754b3f79dad01c7550ccff459258.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiEllipsis.svg" +dest_files=["res://.godot/imported/GuiEllipsis.svg-7aa5754b3f79dad01c7550ccff459258.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiGraphNodePort.svg b/addons/godot_tours/bubble/assets/icons/GuiGraphNodePort.svg new file mode 100644 index 0000000..04645d9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiGraphNodePort.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiGraphNodePort.svg.import b/addons/godot_tours/bubble/assets/icons/GuiGraphNodePort.svg.import new file mode 100644 index 0000000..e8c8e98 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiGraphNodePort.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bf0j8jpjfofiy" +path="res://.godot/imported/GuiGraphNodePort.svg-d2b0d608b0d85802d114d2d6785e9546.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiGraphNodePort.svg" +dest_files=["res://.godot/imported/GuiGraphNodePort.svg-d2b0d608b0d85802d114d2d6785e9546.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiHsplitter.svg b/addons/godot_tours/bubble/assets/icons/GuiHsplitter.svg new file mode 100644 index 0000000..cf42f05 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiHsplitter.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiHsplitter.svg.import b/addons/godot_tours/bubble/assets/icons/GuiHsplitter.svg.import new file mode 100644 index 0000000..8a47354 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiHsplitter.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs62qnuik0j2i" +path="res://.godot/imported/GuiHsplitter.svg-696c4682b6ba90ef81c851fae96c23a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiHsplitter.svg" +dest_files=["res://.godot/imported/GuiHsplitter.svg-696c4682b6ba90ef81c851fae96c23a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiIndeterminate.svg b/addons/godot_tours/bubble/assets/icons/GuiIndeterminate.svg new file mode 100644 index 0000000..ce4b204 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiIndeterminate.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiIndeterminate.svg.import b/addons/godot_tours/bubble/assets/icons/GuiIndeterminate.svg.import new file mode 100644 index 0000000..aca7635 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiIndeterminate.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8lmo0qs8hqj0" +path="res://.godot/imported/GuiIndeterminate.svg-672a4c1e9d46b7d063d113ff27f92937.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiIndeterminate.svg" +dest_files=["res://.godot/imported/GuiIndeterminate.svg-672a4c1e9d46b7d063d113ff27f92937.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiIndeterminateDisabled.svg b/addons/godot_tours/bubble/assets/icons/GuiIndeterminateDisabled.svg new file mode 100644 index 0000000..edaf69f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiIndeterminateDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiIndeterminateDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/GuiIndeterminateDisabled.svg.import new file mode 100644 index 0000000..5352be5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiIndeterminateDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mbvhpc2hjxck" +path="res://.godot/imported/GuiIndeterminateDisabled.svg-ec84dd817d3253929b50b5ce724bb281.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiIndeterminateDisabled.svg" +dest_files=["res://.godot/imported/GuiIndeterminateDisabled.svg-ec84dd817d3253929b50b5ce724bb281.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiMiniCheckerboard.svg b/addons/godot_tours/bubble/assets/icons/GuiMiniCheckerboard.svg new file mode 100644 index 0000000..40e6aa1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiMiniCheckerboard.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiMiniCheckerboard.svg.import b/addons/godot_tours/bubble/assets/icons/GuiMiniCheckerboard.svg.import new file mode 100644 index 0000000..d2a6a10 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiMiniCheckerboard.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfimw555h8ndb" +path="res://.godot/imported/GuiMiniCheckerboard.svg-78c1aaa69b1b49f8775d654ee0a272f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiMiniCheckerboard.svg" +dest_files=["res://.godot/imported/GuiMiniCheckerboard.svg-78c1aaa69b1b49f8775d654ee0a272f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiOptionArrow.svg b/addons/godot_tours/bubble/assets/icons/GuiOptionArrow.svg new file mode 100644 index 0000000..25fbe56 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiOptionArrow.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiOptionArrow.svg.import b/addons/godot_tours/bubble/assets/icons/GuiOptionArrow.svg.import new file mode 100644 index 0000000..e347cfd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiOptionArrow.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2a4gdw48khbh" +path="res://.godot/imported/GuiOptionArrow.svg-41b52eb0b12cb88d46cdf4def18d4919.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiOptionArrow.svg" +dest_files=["res://.godot/imported/GuiOptionArrow.svg-41b52eb0b12cb88d46cdf4def18d4919.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiProgressBar.svg b/addons/godot_tours/bubble/assets/icons/GuiProgressBar.svg new file mode 100644 index 0000000..8d65bf5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiProgressBar.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiProgressBar.svg.import b/addons/godot_tours/bubble/assets/icons/GuiProgressBar.svg.import new file mode 100644 index 0000000..d7cfab4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiProgressBar.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnkhjt12lfy56" +path="res://.godot/imported/GuiProgressBar.svg-9905ab60150a88ad73147a2813e7cc61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiProgressBar.svg" +dest_files=["res://.godot/imported/GuiProgressBar.svg-9905ab60150a88ad73147a2813e7cc61.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiProgressFill.svg b/addons/godot_tours/bubble/assets/icons/GuiProgressFill.svg new file mode 100644 index 0000000..d623a58 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiProgressFill.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiProgressFill.svg.import b/addons/godot_tours/bubble/assets/icons/GuiProgressFill.svg.import new file mode 100644 index 0000000..fac0c00 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiProgressFill.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cda02vmcer8je" +path="res://.godot/imported/GuiProgressFill.svg-b3d4e2aa9d0fd2b19590a28c9ac5919d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiProgressFill.svg" +dest_files=["res://.godot/imported/GuiProgressFill.svg-b3d4e2aa9d0fd2b19590a28c9ac5919d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiRadioChecked.svg b/addons/godot_tours/bubble/assets/icons/GuiRadioChecked.svg new file mode 100644 index 0000000..6f9160b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiRadioChecked.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiRadioChecked.svg.import b/addons/godot_tours/bubble/assets/icons/GuiRadioChecked.svg.import new file mode 100644 index 0000000..216ecad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiRadioChecked.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7j4e2ogasx2i" +path="res://.godot/imported/GuiRadioChecked.svg-f1f0f54ebe447ac037d03dc9afcf2eaa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiRadioChecked.svg" +dest_files=["res://.godot/imported/GuiRadioChecked.svg-f1f0f54ebe447ac037d03dc9afcf2eaa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiRadioCheckedDisabled.svg b/addons/godot_tours/bubble/assets/icons/GuiRadioCheckedDisabled.svg new file mode 100644 index 0000000..30c0e01 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiRadioCheckedDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiRadioCheckedDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/GuiRadioCheckedDisabled.svg.import new file mode 100644 index 0000000..e737c92 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiRadioCheckedDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://owbntyceqqge" +path="res://.godot/imported/GuiRadioCheckedDisabled.svg-1fcd99c3ee53e8fa0df6fe333378e9fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiRadioCheckedDisabled.svg" +dest_files=["res://.godot/imported/GuiRadioCheckedDisabled.svg-1fcd99c3ee53e8fa0df6fe333378e9fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiRadioUnchecked.svg b/addons/godot_tours/bubble/assets/icons/GuiRadioUnchecked.svg new file mode 100644 index 0000000..d60f0a3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiRadioUnchecked.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiRadioUnchecked.svg.import b/addons/godot_tours/bubble/assets/icons/GuiRadioUnchecked.svg.import new file mode 100644 index 0000000..6878f12 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiRadioUnchecked.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dghjfqoyc883t" +path="res://.godot/imported/GuiRadioUnchecked.svg-2dec95fdf26e3d1f724886f064fd1dc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiRadioUnchecked.svg" +dest_files=["res://.godot/imported/GuiRadioUnchecked.svg-2dec95fdf26e3d1f724886f064fd1dc5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiRadioUncheckedDisabled.svg b/addons/godot_tours/bubble/assets/icons/GuiRadioUncheckedDisabled.svg new file mode 100644 index 0000000..9c5a6a7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiRadioUncheckedDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiRadioUncheckedDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/GuiRadioUncheckedDisabled.svg.import new file mode 100644 index 0000000..5c2d947 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiRadioUncheckedDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2chvdub3wsep" +path="res://.godot/imported/GuiRadioUncheckedDisabled.svg-8f2b446fcc76706fa5b83d487db4364c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiRadioUncheckedDisabled.svg" +dest_files=["res://.godot/imported/GuiRadioUncheckedDisabled.svg-8f2b446fcc76706fa5b83d487db4364c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiResizer.svg b/addons/godot_tours/bubble/assets/icons/GuiResizer.svg new file mode 100644 index 0000000..e6e3f1c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiResizer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiResizer.svg.import b/addons/godot_tours/bubble/assets/icons/GuiResizer.svg.import new file mode 100644 index 0000000..c40645e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiResizer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmph2dqqwu8x6" +path="res://.godot/imported/GuiResizer.svg-778d6620ab904dca1f5cae467dc648a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiResizer.svg" +dest_files=["res://.godot/imported/GuiResizer.svg-778d6620ab904dca1f5cae467dc648a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiResizerTopLeft.svg b/addons/godot_tours/bubble/assets/icons/GuiResizerTopLeft.svg new file mode 100644 index 0000000..fe4dbf5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiResizerTopLeft.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiResizerTopLeft.svg.import b/addons/godot_tours/bubble/assets/icons/GuiResizerTopLeft.svg.import new file mode 100644 index 0000000..1da9475 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiResizerTopLeft.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://didao624bweim" +path="res://.godot/imported/GuiResizerTopLeft.svg-4daa60a56033b2838b1a2f2928fae36c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiResizerTopLeft.svg" +dest_files=["res://.godot/imported/GuiResizerTopLeft.svg-4daa60a56033b2838b1a2f2928fae36c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeft.svg b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeft.svg new file mode 100644 index 0000000..86ff31f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeft.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeft.svg.import b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeft.svg.import new file mode 100644 index 0000000..3ba62d6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeft.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h8d7befjro8v" +path="res://.godot/imported/GuiScrollArrowLeft.svg-95ddb43a7618b47d28c9ad728facc8c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeft.svg" +dest_files=["res://.godot/imported/GuiScrollArrowLeft.svg-95ddb43a7618b47d28c9ad728facc8c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeftHl.svg b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeftHl.svg new file mode 100644 index 0000000..bd0ee85 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeftHl.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeftHl.svg.import b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeftHl.svg.import new file mode 100644 index 0000000..a9fc753 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeftHl.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2dmlrpwcbnl" +path="res://.godot/imported/GuiScrollArrowLeftHl.svg-f14b9a0cd0394d30d395ea7f96d64ce4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiScrollArrowLeftHl.svg" +dest_files=["res://.godot/imported/GuiScrollArrowLeftHl.svg-f14b9a0cd0394d30d395ea7f96d64ce4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRight.svg b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRight.svg new file mode 100644 index 0000000..8c779f7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRight.svg.import b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRight.svg.import new file mode 100644 index 0000000..6485201 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l5lspe7jrf4f" +path="res://.godot/imported/GuiScrollArrowRight.svg-7f503a1714946a2fc2be69755d2448b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiScrollArrowRight.svg" +dest_files=["res://.godot/imported/GuiScrollArrowRight.svg-7f503a1714946a2fc2be69755d2448b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRightHl.svg b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRightHl.svg new file mode 100644 index 0000000..1776d08 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRightHl.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRightHl.svg.import b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRightHl.svg.import new file mode 100644 index 0000000..b3bb1ef --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollArrowRightHl.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://swrb52qprd7n" +path="res://.godot/imported/GuiScrollArrowRightHl.svg-546c2d8e562432ab4f07ced9f0b4c4d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiScrollArrowRightHl.svg" +dest_files=["res://.godot/imported/GuiScrollArrowRightHl.svg-546c2d8e562432ab4f07ced9f0b4c4d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollBg.svg b/addons/godot_tours/bubble/assets/icons/GuiScrollBg.svg new file mode 100644 index 0000000..e2550c4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollBg.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollBg.svg.import b/addons/godot_tours/bubble/assets/icons/GuiScrollBg.svg.import new file mode 100644 index 0000000..cac2014 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollBg.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxj7ga1x0jirp" +path="res://.godot/imported/GuiScrollBg.svg-822e63a6a5b7942604a5c5b23b0cd91b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiScrollBg.svg" +dest_files=["res://.godot/imported/GuiScrollBg.svg-822e63a6a5b7942604a5c5b23b0cd91b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollGrabber.svg b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabber.svg new file mode 100644 index 0000000..54888dc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabber.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollGrabber.svg.import b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabber.svg.import new file mode 100644 index 0000000..6fe0c2f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabber.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3no81taayhfp" +path="res://.godot/imported/GuiScrollGrabber.svg-92ed496bb4d65e5eadd62549d2f36d13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiScrollGrabber.svg" +dest_files=["res://.godot/imported/GuiScrollGrabber.svg-92ed496bb4d65e5eadd62549d2f36d13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberHl.svg b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberHl.svg new file mode 100644 index 0000000..8ec0790 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberHl.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberHl.svg.import b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberHl.svg.import new file mode 100644 index 0000000..1e3ba76 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberHl.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2dt4y5ifua86" +path="res://.godot/imported/GuiScrollGrabberHl.svg-863a7490a3bddd5ddc70d0c7c7c5ee8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiScrollGrabberHl.svg" +dest_files=["res://.godot/imported/GuiScrollGrabberHl.svg-863a7490a3bddd5ddc70d0c7c7c5ee8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberPressed.svg b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberPressed.svg new file mode 100644 index 0000000..21f953f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberPressed.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberPressed.svg.import b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberPressed.svg.import new file mode 100644 index 0000000..b49f10c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiScrollGrabberPressed.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqw38eotf1ust" +path="res://.godot/imported/GuiScrollGrabberPressed.svg-ec0d30671200aa7b251a9359b8fa4f29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiScrollGrabberPressed.svg" +dest_files=["res://.godot/imported/GuiScrollGrabberPressed.svg-ec0d30671200aa7b251a9359b8fa4f29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiSliderGrabber.svg b/addons/godot_tours/bubble/assets/icons/GuiSliderGrabber.svg new file mode 100644 index 0000000..8922ffa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiSliderGrabber.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiSliderGrabber.svg.import b/addons/godot_tours/bubble/assets/icons/GuiSliderGrabber.svg.import new file mode 100644 index 0000000..8df8c2c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiSliderGrabber.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1gs7xy72jsx3" +path="res://.godot/imported/GuiSliderGrabber.svg-24a24ded1e608d83293b2292e2b9df2e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiSliderGrabber.svg" +dest_files=["res://.godot/imported/GuiSliderGrabber.svg-24a24ded1e608d83293b2292e2b9df2e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiSliderGrabberHl.svg b/addons/godot_tours/bubble/assets/icons/GuiSliderGrabberHl.svg new file mode 100644 index 0000000..171b6ae --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiSliderGrabberHl.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiSliderGrabberHl.svg.import b/addons/godot_tours/bubble/assets/icons/GuiSliderGrabberHl.svg.import new file mode 100644 index 0000000..daa2a1d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiSliderGrabberHl.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ynxoc6r5q5lp" +path="res://.godot/imported/GuiSliderGrabberHl.svg-ccfa90fdde69b1c958c5ed8354ea946f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiSliderGrabberHl.svg" +dest_files=["res://.godot/imported/GuiSliderGrabberHl.svg-ccfa90fdde69b1c958c5ed8354ea946f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiSpace.svg b/addons/godot_tours/bubble/assets/icons/GuiSpace.svg new file mode 100644 index 0000000..4f3a56f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiSpace.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiSpace.svg.import b/addons/godot_tours/bubble/assets/icons/GuiSpace.svg.import new file mode 100644 index 0000000..2052539 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiSpace.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wmttjk2f8veh" +path="res://.godot/imported/GuiSpace.svg-8c9c9ee233c08ba945faa498ca294a31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiSpace.svg" +dest_files=["res://.godot/imported/GuiSpace.svg-8c9c9ee233c08ba945faa498ca294a31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdown.svg b/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdown.svg new file mode 100644 index 0000000..c057f8e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdown.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdown.svg.import b/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdown.svg.import new file mode 100644 index 0000000..50cc5f9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdown.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c402vfl45fjf2" +path="res://.godot/imported/GuiSpinboxUpdown.svg-b899ec06f88c0892694d90bbebe4b513.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdown.svg" +dest_files=["res://.godot/imported/GuiSpinboxUpdown.svg-b899ec06f88c0892694d90bbebe4b513.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdownDisabled.svg b/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdownDisabled.svg new file mode 100644 index 0000000..c6328e1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdownDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdownDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdownDisabled.svg.import new file mode 100644 index 0000000..d7f9b07 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdownDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://khhtyij7ju7k" +path="res://.godot/imported/GuiSpinboxUpdownDisabled.svg-d9b34184a7e62640f32b219ff9da811f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiSpinboxUpdownDisabled.svg" +dest_files=["res://.godot/imported/GuiSpinboxUpdownDisabled.svg-d9b34184a7e62640f32b219ff9da811f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiTab.svg b/addons/godot_tours/bubble/assets/icons/GuiTab.svg new file mode 100644 index 0000000..e6be35a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTab.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiTab.svg.import b/addons/godot_tours/bubble/assets/icons/GuiTab.svg.import new file mode 100644 index 0000000..88d90b8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTab.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy3hkrp1d6g3m" +path="res://.godot/imported/GuiTab.svg-c73a5b1293e130f4e23e6dabeaef2b32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiTab.svg" +dest_files=["res://.godot/imported/GuiTab.svg-c73a5b1293e130f4e23e6dabeaef2b32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiTabDropMark.svg b/addons/godot_tours/bubble/assets/icons/GuiTabDropMark.svg new file mode 100644 index 0000000..c85b165 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTabDropMark.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiTabDropMark.svg.import b/addons/godot_tours/bubble/assets/icons/GuiTabDropMark.svg.import new file mode 100644 index 0000000..4c20f0c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTabDropMark.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ldj1py88qgwa" +path="res://.godot/imported/GuiTabDropMark.svg-639bb9f4a9f90687174f6caaa9dd2513.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiTabDropMark.svg" +dest_files=["res://.godot/imported/GuiTabDropMark.svg-639bb9f4a9f90687174f6caaa9dd2513.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiTabMenu.svg b/addons/godot_tours/bubble/assets/icons/GuiTabMenu.svg new file mode 100644 index 0000000..86138c6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTabMenu.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiTabMenu.svg.import b/addons/godot_tours/bubble/assets/icons/GuiTabMenu.svg.import new file mode 100644 index 0000000..b821652 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTabMenu.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cayq7shy0tyfq" +path="res://.godot/imported/GuiTabMenu.svg-f0a30130ea770e76d680a6c856986f4d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiTabMenu.svg" +dest_files=["res://.godot/imported/GuiTabMenu.svg-f0a30130ea770e76d680a6c856986f4d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiTabMenuHl.svg b/addons/godot_tours/bubble/assets/icons/GuiTabMenuHl.svg new file mode 100644 index 0000000..c6d28df --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTabMenuHl.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiTabMenuHl.svg.import b/addons/godot_tours/bubble/assets/icons/GuiTabMenuHl.svg.import new file mode 100644 index 0000000..f99f2b3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTabMenuHl.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm7y3rc57d41t" +path="res://.godot/imported/GuiTabMenuHl.svg-0a5320462a77415f0cc83ab5fc375b2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiTabMenuHl.svg" +dest_files=["res://.godot/imported/GuiTabMenuHl.svg-0a5320462a77415f0cc83ab5fc375b2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOff.svg b/addons/godot_tours/bubble/assets/icons/GuiToggleOff.svg new file mode 100644 index 0000000..86e2eed --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOff.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOff.svg.import b/addons/godot_tours/bubble/assets/icons/GuiToggleOff.svg.import new file mode 100644 index 0000000..ec980f0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOff.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qlceeojpm13r" +path="res://.godot/imported/GuiToggleOff.svg-9ee18d0835f738e7ffdd1407597aca8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiToggleOff.svg" +dest_files=["res://.godot/imported/GuiToggleOff.svg-9ee18d0835f738e7ffdd1407597aca8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabled.svg b/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabled.svg new file mode 100644 index 0000000..f2c9680 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabled.svg.import new file mode 100644 index 0000000..1a91ce1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dic18n6arlnnw" +path="res://.godot/imported/GuiToggleOffDisabled.svg-dd7a65f6077444c5664c1fd83e7808d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabled.svg" +dest_files=["res://.godot/imported/GuiToggleOffDisabled.svg-dd7a65f6077444c5664c1fd83e7808d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabledMirrored.svg b/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabledMirrored.svg new file mode 100644 index 0000000..700825c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabledMirrored.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabledMirrored.svg.import b/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabledMirrored.svg.import new file mode 100644 index 0000000..69e587e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabledMirrored.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cphrgsro040h0" +path="res://.godot/imported/GuiToggleOffDisabledMirrored.svg-67dc586d4fd04b529d7fd3e25f8ac997.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiToggleOffDisabledMirrored.svg" +dest_files=["res://.godot/imported/GuiToggleOffDisabledMirrored.svg-67dc586d4fd04b529d7fd3e25f8ac997.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOffMirrored.svg b/addons/godot_tours/bubble/assets/icons/GuiToggleOffMirrored.svg new file mode 100644 index 0000000..bbf9b0d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOffMirrored.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOffMirrored.svg.import b/addons/godot_tours/bubble/assets/icons/GuiToggleOffMirrored.svg.import new file mode 100644 index 0000000..4839d41 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOffMirrored.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dft6vojut7hwa" +path="res://.godot/imported/GuiToggleOffMirrored.svg-1b4b3efde5bc29a959a427264dcd6100.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiToggleOffMirrored.svg" +dest_files=["res://.godot/imported/GuiToggleOffMirrored.svg-1b4b3efde5bc29a959a427264dcd6100.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOn.svg b/addons/godot_tours/bubble/assets/icons/GuiToggleOn.svg new file mode 100644 index 0000000..983838e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOn.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOn.svg.import b/addons/godot_tours/bubble/assets/icons/GuiToggleOn.svg.import new file mode 100644 index 0000000..14dd346 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOn.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d06kbb8qsjiru" +path="res://.godot/imported/GuiToggleOn.svg-b1db3c362a976e9ac9e39386762b0ff5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiToggleOn.svg" +dest_files=["res://.godot/imported/GuiToggleOn.svg-b1db3c362a976e9ac9e39386762b0ff5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabled.svg b/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabled.svg new file mode 100644 index 0000000..93ecf1a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabled.svg.import new file mode 100644 index 0000000..5dfeb7e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2u70dgrbx853" +path="res://.godot/imported/GuiToggleOnDisabled.svg-a969e08a426f60e4cb0b2e05643b4f6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabled.svg" +dest_files=["res://.godot/imported/GuiToggleOnDisabled.svg-a969e08a426f60e4cb0b2e05643b4f6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabledMirrored.svg b/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabledMirrored.svg new file mode 100644 index 0000000..bbf9b0d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabledMirrored.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabledMirrored.svg.import b/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabledMirrored.svg.import new file mode 100644 index 0000000..d7b9d06 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabledMirrored.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6p4qv585hcvp" +path="res://.godot/imported/GuiToggleOnDisabledMirrored.svg-62cf6305dd294cdf7963a7e0756723b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiToggleOnDisabledMirrored.svg" +dest_files=["res://.godot/imported/GuiToggleOnDisabledMirrored.svg-62cf6305dd294cdf7963a7e0756723b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOnMirrored.svg b/addons/godot_tours/bubble/assets/icons/GuiToggleOnMirrored.svg new file mode 100644 index 0000000..8aea5b9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOnMirrored.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiToggleOnMirrored.svg.import b/addons/godot_tours/bubble/assets/icons/GuiToggleOnMirrored.svg.import new file mode 100644 index 0000000..a2c5406 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiToggleOnMirrored.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xmvfglxyt4o0" +path="res://.godot/imported/GuiToggleOnMirrored.svg-03848ec63f7bd63e85ff578996d3f929.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiToggleOnMirrored.svg" +dest_files=["res://.godot/imported/GuiToggleOnMirrored.svg-03848ec63f7bd63e85ff578996d3f929.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiTreeArrowDown.svg b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowDown.svg new file mode 100644 index 0000000..3b19a09 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowDown.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiTreeArrowDown.svg.import b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowDown.svg.import new file mode 100644 index 0000000..0d18a36 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowDown.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdye1pv3my7gn" +path="res://.godot/imported/GuiTreeArrowDown.svg-a5790eb2e9e9244810213275c8687f0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiTreeArrowDown.svg" +dest_files=["res://.godot/imported/GuiTreeArrowDown.svg-a5790eb2e9e9244810213275c8687f0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiTreeArrowLeft.svg b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowLeft.svg new file mode 100644 index 0000000..92f7f74 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowLeft.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiTreeArrowLeft.svg.import b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowLeft.svg.import new file mode 100644 index 0000000..603fe58 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowLeft.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk04dvc7lel0h" +path="res://.godot/imported/GuiTreeArrowLeft.svg-6d585e80d51865aa17bc981053590acc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiTreeArrowLeft.svg" +dest_files=["res://.godot/imported/GuiTreeArrowLeft.svg-6d585e80d51865aa17bc981053590acc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiTreeArrowRight.svg b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowRight.svg new file mode 100644 index 0000000..4e48fff --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowRight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiTreeArrowRight.svg.import b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowRight.svg.import new file mode 100644 index 0000000..0780ed3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTreeArrowRight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ce160bq5ykn2e" +path="res://.godot/imported/GuiTreeArrowRight.svg-4855e08260a6bf4dfeff0aaf2fc1d8bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiTreeArrowRight.svg" +dest_files=["res://.godot/imported/GuiTreeArrowRight.svg-4855e08260a6bf4dfeff0aaf2fc1d8bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiTreeUpdown.svg b/addons/godot_tours/bubble/assets/icons/GuiTreeUpdown.svg new file mode 100644 index 0000000..b71f95b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTreeUpdown.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiTreeUpdown.svg.import b/addons/godot_tours/bubble/assets/icons/GuiTreeUpdown.svg.import new file mode 100644 index 0000000..8fcc06a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiTreeUpdown.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br3i5wlvvrytl" +path="res://.godot/imported/GuiTreeUpdown.svg-534834ff4089a12584ba9088b913760a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiTreeUpdown.svg" +dest_files=["res://.godot/imported/GuiTreeUpdown.svg-534834ff4089a12584ba9088b913760a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiUnchecked.svg b/addons/godot_tours/bubble/assets/icons/GuiUnchecked.svg new file mode 100644 index 0000000..4ce9a16 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiUnchecked.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiUnchecked.svg.import b/addons/godot_tours/bubble/assets/icons/GuiUnchecked.svg.import new file mode 100644 index 0000000..7d6a285 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiUnchecked.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uuwjwdx5i5q1" +path="res://.godot/imported/GuiUnchecked.svg-a6c3bdf32c4bbf57d36ddc623b4486db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiUnchecked.svg" +dest_files=["res://.godot/imported/GuiUnchecked.svg-a6c3bdf32c4bbf57d36ddc623b4486db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiUncheckedDisabled.svg b/addons/godot_tours/bubble/assets/icons/GuiUncheckedDisabled.svg new file mode 100644 index 0000000..ae6d476 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiUncheckedDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiUncheckedDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/GuiUncheckedDisabled.svg.import new file mode 100644 index 0000000..b5b8c31 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiUncheckedDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqqhlhd0up60w" +path="res://.godot/imported/GuiUncheckedDisabled.svg-da57908ff2ba5d571830557d8ebdc14a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiUncheckedDisabled.svg" +dest_files=["res://.godot/imported/GuiUncheckedDisabled.svg-da57908ff2ba5d571830557d8ebdc14a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiViewportHdiagsplitter.svg b/addons/godot_tours/bubble/assets/icons/GuiViewportHdiagsplitter.svg new file mode 100644 index 0000000..2bba6d7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiViewportHdiagsplitter.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiViewportHdiagsplitter.svg.import b/addons/godot_tours/bubble/assets/icons/GuiViewportHdiagsplitter.svg.import new file mode 100644 index 0000000..abd3e4e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiViewportHdiagsplitter.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2d6sc2vglm7l" +path="res://.godot/imported/GuiViewportHdiagsplitter.svg-323195822bf2b51de127fd9c6933cc9c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiViewportHdiagsplitter.svg" +dest_files=["res://.godot/imported/GuiViewportHdiagsplitter.svg-323195822bf2b51de127fd9c6933cc9c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiViewportVdiagsplitter.svg b/addons/godot_tours/bubble/assets/icons/GuiViewportVdiagsplitter.svg new file mode 100644 index 0000000..6cc8ef1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiViewportVdiagsplitter.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiViewportVdiagsplitter.svg.import b/addons/godot_tours/bubble/assets/icons/GuiViewportVdiagsplitter.svg.import new file mode 100644 index 0000000..35037c3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiViewportVdiagsplitter.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0udfauhwkuf0" +path="res://.godot/imported/GuiViewportVdiagsplitter.svg-50f360790d6bea7e6c0fb60de3af6d5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiViewportVdiagsplitter.svg" +dest_files=["res://.godot/imported/GuiViewportVdiagsplitter.svg-50f360790d6bea7e6c0fb60de3af6d5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiViewportVhsplitter.svg b/addons/godot_tours/bubble/assets/icons/GuiViewportVhsplitter.svg new file mode 100644 index 0000000..f915f70 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiViewportVhsplitter.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiViewportVhsplitter.svg.import b/addons/godot_tours/bubble/assets/icons/GuiViewportVhsplitter.svg.import new file mode 100644 index 0000000..9f8efc1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiViewportVhsplitter.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl2vas5m6obw7" +path="res://.godot/imported/GuiViewportVhsplitter.svg-f23f4db8f768dc027176a1db55b39cf3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiViewportVhsplitter.svg" +dest_files=["res://.godot/imported/GuiViewportVhsplitter.svg-f23f4db8f768dc027176a1db55b39cf3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiVisibilityHidden.svg b/addons/godot_tours/bubble/assets/icons/GuiVisibilityHidden.svg new file mode 100644 index 0000000..3a5c959 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiVisibilityHidden.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiVisibilityHidden.svg.import b/addons/godot_tours/bubble/assets/icons/GuiVisibilityHidden.svg.import new file mode 100644 index 0000000..6168dbd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiVisibilityHidden.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l5pyllgxo4b2" +path="res://.godot/imported/GuiVisibilityHidden.svg-893d0c723906a5f704e80e174f58bdeb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiVisibilityHidden.svg" +dest_files=["res://.godot/imported/GuiVisibilityHidden.svg-893d0c723906a5f704e80e174f58bdeb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiVisibilityVisible.svg b/addons/godot_tours/bubble/assets/icons/GuiVisibilityVisible.svg new file mode 100644 index 0000000..18c2cbb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiVisibilityVisible.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiVisibilityVisible.svg.import b/addons/godot_tours/bubble/assets/icons/GuiVisibilityVisible.svg.import new file mode 100644 index 0000000..6202afe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiVisibilityVisible.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo1wxp1tc2nbb" +path="res://.godot/imported/GuiVisibilityVisible.svg-b98666039b9405cd69c10f9ade2f0b85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiVisibilityVisible.svg" +dest_files=["res://.godot/imported/GuiVisibilityVisible.svg-b98666039b9405cd69c10f9ade2f0b85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiVisibilityXray.svg b/addons/godot_tours/bubble/assets/icons/GuiVisibilityXray.svg new file mode 100644 index 0000000..52d7dd9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiVisibilityXray.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiVisibilityXray.svg.import b/addons/godot_tours/bubble/assets/icons/GuiVisibilityXray.svg.import new file mode 100644 index 0000000..e587345 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiVisibilityXray.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dis7hg27fita3" +path="res://.godot/imported/GuiVisibilityXray.svg-941960c305376de689d33b4eea0ad3d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiVisibilityXray.svg" +dest_files=["res://.godot/imported/GuiVisibilityXray.svg-941960c305376de689d33b4eea0ad3d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/GuiVsplitter.svg b/addons/godot_tours/bubble/assets/icons/GuiVsplitter.svg new file mode 100644 index 0000000..b7850e7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiVsplitter.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/GuiVsplitter.svg.import b/addons/godot_tours/bubble/assets/icons/GuiVsplitter.svg.import new file mode 100644 index 0000000..52380e2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/GuiVsplitter.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://facn2kgsq5b2" +path="res://.godot/imported/GuiVsplitter.svg-e496efb69ea94f5d04a59eae0dddd5f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/GuiVsplitter.svg" +dest_files=["res://.godot/imported/GuiVsplitter.svg-e496efb69ea94f5d04a59eae0dddd5f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/HBoxContainer.svg b/addons/godot_tours/bubble/assets/icons/HBoxContainer.svg new file mode 100644 index 0000000..30e06d8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HBoxContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/HBoxContainer.svg.import b/addons/godot_tours/bubble/assets/icons/HBoxContainer.svg.import new file mode 100644 index 0000000..f533daa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HBoxContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di78ifdsywmmx" +path="res://.godot/imported/HBoxContainer.svg-bca89b80670c5d8789185c527125ff9d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/HBoxContainer.svg" +dest_files=["res://.godot/imported/HBoxContainer.svg-bca89b80670c5d8789185c527125ff9d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/HFlowContainer.svg b/addons/godot_tours/bubble/assets/icons/HFlowContainer.svg new file mode 100644 index 0000000..2b58cdf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HFlowContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/HFlowContainer.svg.import b/addons/godot_tours/bubble/assets/icons/HFlowContainer.svg.import new file mode 100644 index 0000000..0e7612a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HFlowContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpf4vftkflxnk" +path="res://.godot/imported/HFlowContainer.svg-20edd2786921b67b335e4d8f67aa0cd1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/HFlowContainer.svg" +dest_files=["res://.godot/imported/HFlowContainer.svg-20edd2786921b67b335e4d8f67aa0cd1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/HScrollBar.svg b/addons/godot_tours/bubble/assets/icons/HScrollBar.svg new file mode 100644 index 0000000..429b0fd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HScrollBar.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/HScrollBar.svg.import b/addons/godot_tours/bubble/assets/icons/HScrollBar.svg.import new file mode 100644 index 0000000..61b7824 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HScrollBar.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ioaatx4hkbqp" +path="res://.godot/imported/HScrollBar.svg-f8bd3228b9ab461a118734f4054be5b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/HScrollBar.svg" +dest_files=["res://.godot/imported/HScrollBar.svg-f8bd3228b9ab461a118734f4054be5b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/HSeparator.svg b/addons/godot_tours/bubble/assets/icons/HSeparator.svg new file mode 100644 index 0000000..2111c19 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HSeparator.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/HSeparator.svg.import b/addons/godot_tours/bubble/assets/icons/HSeparator.svg.import new file mode 100644 index 0000000..2d74f4c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HSeparator.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjbi2pf72hjnh" +path="res://.godot/imported/HSeparator.svg-4049007a5df55fc9c750a3fc85d38798.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/HSeparator.svg" +dest_files=["res://.godot/imported/HSeparator.svg-4049007a5df55fc9c750a3fc85d38798.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/HSlider.svg b/addons/godot_tours/bubble/assets/icons/HSlider.svg new file mode 100644 index 0000000..a583dfe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HSlider.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/HSlider.svg.import b/addons/godot_tours/bubble/assets/icons/HSlider.svg.import new file mode 100644 index 0000000..32358bb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HSlider.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csrdtxvop1xxa" +path="res://.godot/imported/HSlider.svg-57c0f088700b822c02bfc6da62356371.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/HSlider.svg" +dest_files=["res://.godot/imported/HSlider.svg-57c0f088700b822c02bfc6da62356371.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/HSplitContainer.svg b/addons/godot_tours/bubble/assets/icons/HSplitContainer.svg new file mode 100644 index 0000000..f6bd3fe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HSplitContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/HSplitContainer.svg.import b/addons/godot_tours/bubble/assets/icons/HSplitContainer.svg.import new file mode 100644 index 0000000..074e893 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HSplitContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://guanyasfr0xp" +path="res://.godot/imported/HSplitContainer.svg-a44709cfa3ea82f6db2479432d05e1dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/HSplitContainer.svg" +dest_files=["res://.godot/imported/HSplitContainer.svg-a44709cfa3ea82f6db2479432d05e1dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/HTTPRequest.svg b/addons/godot_tours/bubble/assets/icons/HTTPRequest.svg new file mode 100644 index 0000000..34912dc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HTTPRequest.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/HTTPRequest.svg.import b/addons/godot_tours/bubble/assets/icons/HTTPRequest.svg.import new file mode 100644 index 0000000..d67cc9b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HTTPRequest.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6ekxfwi0ljjj" +path="res://.godot/imported/HTTPRequest.svg-fda0767c64a9fbe066e193644a749e7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/HTTPRequest.svg" +dest_files=["res://.godot/imported/HTTPRequest.svg-fda0767c64a9fbe066e193644a749e7a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Heart.svg b/addons/godot_tours/bubble/assets/icons/Heart.svg new file mode 100644 index 0000000..117e311 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Heart.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Heart.svg.import b/addons/godot_tours/bubble/assets/icons/Heart.svg.import new file mode 100644 index 0000000..91cfcaa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Heart.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7t06q2ry0lgi" +path="res://.godot/imported/Heart.svg-1a76caa2ff173357000b02c863cc1ee5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Heart.svg" +dest_files=["res://.godot/imported/Heart.svg-1a76caa2ff173357000b02c863cc1ee5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/HeightMapShape3D.svg b/addons/godot_tours/bubble/assets/icons/HeightMapShape3D.svg new file mode 100644 index 0000000..330cee9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HeightMapShape3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/HeightMapShape3D.svg.import b/addons/godot_tours/bubble/assets/icons/HeightMapShape3D.svg.import new file mode 100644 index 0000000..76ded05 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HeightMapShape3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpnhm2428ngsa" +path="res://.godot/imported/HeightMapShape3D.svg-edd2ab728ec9252fce465f8dbc791ad8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/HeightMapShape3D.svg" +dest_files=["res://.godot/imported/HeightMapShape3D.svg-edd2ab728ec9252fce465f8dbc791ad8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Help.svg b/addons/godot_tours/bubble/assets/icons/Help.svg new file mode 100644 index 0000000..ecb9d3e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Help.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Help.svg.import b/addons/godot_tours/bubble/assets/icons/Help.svg.import new file mode 100644 index 0000000..640b5d5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Help.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx3b3glgp8lqe" +path="res://.godot/imported/Help.svg-917c9beac91b3135d1bfaee1a0ef5ffb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Help.svg" +dest_files=["res://.godot/imported/Help.svg-917c9beac91b3135d1bfaee1a0ef5ffb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/HelpSearch.svg b/addons/godot_tours/bubble/assets/icons/HelpSearch.svg new file mode 100644 index 0000000..f0935ac --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HelpSearch.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/HelpSearch.svg.import b/addons/godot_tours/bubble/assets/icons/HelpSearch.svg.import new file mode 100644 index 0000000..57260ad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HelpSearch.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpv11sijw7fvn" +path="res://.godot/imported/HelpSearch.svg-253ae2ec23adfb9d0e5a443afb045cd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/HelpSearch.svg" +dest_files=["res://.godot/imported/HelpSearch.svg-253ae2ec23adfb9d0e5a443afb045cd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/HingeJoint3D.svg b/addons/godot_tours/bubble/assets/icons/HingeJoint3D.svg new file mode 100644 index 0000000..9302e56 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HingeJoint3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/HingeJoint3D.svg.import b/addons/godot_tours/bubble/assets/icons/HingeJoint3D.svg.import new file mode 100644 index 0000000..2f5e5e1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/HingeJoint3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkvjiykawbhns" +path="res://.godot/imported/HingeJoint3D.svg-a62c5f2dd4db819586c2b7c0ac931abc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/HingeJoint3D.svg" +dest_files=["res://.godot/imported/HingeJoint3D.svg-a62c5f2dd4db819586c2b7c0ac931abc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/History.svg b/addons/godot_tours/bubble/assets/icons/History.svg new file mode 100644 index 0000000..0d2ec49 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/History.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/History.svg.import b/addons/godot_tours/bubble/assets/icons/History.svg.import new file mode 100644 index 0000000..bf179c6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/History.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn3jgotqjt560" +path="res://.godot/imported/History.svg-ba87dc7d75c132f7d5bd4fd0c235123b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/History.svg" +dest_files=["res://.godot/imported/History.svg-ba87dc7d75c132f7d5bd4fd0c235123b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Hsize.svg b/addons/godot_tours/bubble/assets/icons/Hsize.svg new file mode 100644 index 0000000..cf805fc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Hsize.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Hsize.svg.import b/addons/godot_tours/bubble/assets/icons/Hsize.svg.import new file mode 100644 index 0000000..be4e048 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Hsize.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv81bsalvtyv3" +path="res://.godot/imported/Hsize.svg-14821d95083855f7930e4003e18032b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Hsize.svg" +dest_files=["res://.godot/imported/Hsize.svg-14821d95083855f7930e4003e18032b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/IOSDeviceWired.svg b/addons/godot_tours/bubble/assets/icons/IOSDeviceWired.svg new file mode 100644 index 0000000..a138458 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/IOSDeviceWired.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/IOSDeviceWired.svg.import b/addons/godot_tours/bubble/assets/icons/IOSDeviceWired.svg.import new file mode 100644 index 0000000..f22a20b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/IOSDeviceWired.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnlnxcxev2uvf" +path="res://.godot/imported/IOSDeviceWired.svg-58b45638e0e3da8c42224ccabf5b2cc8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/IOSDeviceWired.svg" +dest_files=["res://.godot/imported/IOSDeviceWired.svg-58b45638e0e3da8c42224ccabf5b2cc8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/IOSDeviceWireless.svg b/addons/godot_tours/bubble/assets/icons/IOSDeviceWireless.svg new file mode 100644 index 0000000..a07fa85 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/IOSDeviceWireless.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/IOSDeviceWireless.svg.import b/addons/godot_tours/bubble/assets/icons/IOSDeviceWireless.svg.import new file mode 100644 index 0000000..012d40e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/IOSDeviceWireless.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://phyrxg3cwexv" +path="res://.godot/imported/IOSDeviceWireless.svg-857eea8e215d54946565c7f0488bb963.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/IOSDeviceWireless.svg" +dest_files=["res://.godot/imported/IOSDeviceWireless.svg-857eea8e215d54946565c7f0488bb963.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/IOSSimulator.svg b/addons/godot_tours/bubble/assets/icons/IOSSimulator.svg new file mode 100644 index 0000000..cb5e877 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/IOSSimulator.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/IOSSimulator.svg.import b/addons/godot_tours/bubble/assets/icons/IOSSimulator.svg.import new file mode 100644 index 0000000..ea1de34 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/IOSSimulator.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwyqt1u1hlald" +path="res://.godot/imported/IOSSimulator.svg-7475f9feec2f21ee1a3190efb5c24e1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/IOSSimulator.svg" +dest_files=["res://.godot/imported/IOSSimulator.svg-7475f9feec2f21ee1a3190efb5c24e1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Image.svg b/addons/godot_tours/bubble/assets/icons/Image.svg new file mode 100644 index 0000000..a990974 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Image.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Image.svg.import b/addons/godot_tours/bubble/assets/icons/Image.svg.import new file mode 100644 index 0000000..c4b8919 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Image.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu3w036itstde" +path="res://.godot/imported/Image.svg-3918bb886fdd25796f0002260a2c1f03.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Image.svg" +dest_files=["res://.godot/imported/Image.svg-3918bb886fdd25796f0002260a2c1f03.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ImageTexture.svg b/addons/godot_tours/bubble/assets/icons/ImageTexture.svg new file mode 100644 index 0000000..17fc57d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImageTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ImageTexture.svg.import b/addons/godot_tours/bubble/assets/icons/ImageTexture.svg.import new file mode 100644 index 0000000..08cc271 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImageTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btt2janeg3dkb" +path="res://.godot/imported/ImageTexture.svg-fd54cfe0f4e49d3736f1cfbf5567bc7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ImageTexture.svg" +dest_files=["res://.godot/imported/ImageTexture.svg-fd54cfe0f4e49d3736f1cfbf5567bc7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ImageTexture3D.svg b/addons/godot_tours/bubble/assets/icons/ImageTexture3D.svg new file mode 100644 index 0000000..7cb4d46 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImageTexture3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ImageTexture3D.svg.import b/addons/godot_tours/bubble/assets/icons/ImageTexture3D.svg.import new file mode 100644 index 0000000..b183492 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImageTexture3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqe7c0x0jhcdf" +path="res://.godot/imported/ImageTexture3D.svg-18fd44d9aae443ac4912a7e0d824414f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ImageTexture3D.svg" +dest_files=["res://.godot/imported/ImageTexture3D.svg-18fd44d9aae443ac4912a7e0d824414f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ImmediateMesh.svg b/addons/godot_tours/bubble/assets/icons/ImmediateMesh.svg new file mode 100644 index 0000000..ceedc00 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImmediateMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ImmediateMesh.svg.import b/addons/godot_tours/bubble/assets/icons/ImmediateMesh.svg.import new file mode 100644 index 0000000..cdfd201 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImmediateMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gyie48dvg2m4" +path="res://.godot/imported/ImmediateMesh.svg-8e0a31c7ecf1021d27953a401121e9bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ImmediateMesh.svg" +dest_files=["res://.godot/imported/ImmediateMesh.svg-8e0a31c7ecf1021d27953a401121e9bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ImportCheck.svg b/addons/godot_tours/bubble/assets/icons/ImportCheck.svg new file mode 100644 index 0000000..83668e3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImportCheck.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ImportCheck.svg.import b/addons/godot_tours/bubble/assets/icons/ImportCheck.svg.import new file mode 100644 index 0000000..086697d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImportCheck.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dietoi2ot4nd3" +path="res://.godot/imported/ImportCheck.svg-7dece5c8c8db24795ff28de9d61baf7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ImportCheck.svg" +dest_files=["res://.godot/imported/ImportCheck.svg-7dece5c8c8db24795ff28de9d61baf7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ImportFail.svg b/addons/godot_tours/bubble/assets/icons/ImportFail.svg new file mode 100644 index 0000000..7343408 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImportFail.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ImportFail.svg.import b/addons/godot_tours/bubble/assets/icons/ImportFail.svg.import new file mode 100644 index 0000000..30bba59 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImportFail.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpgv3hhai4dgh" +path="res://.godot/imported/ImportFail.svg-84d1bdf115074c5b7dbbadb4cd2e294f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ImportFail.svg" +dest_files=["res://.godot/imported/ImportFail.svg-84d1bdf115074c5b7dbbadb4cd2e294f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ImporterMeshInstance3D.svg b/addons/godot_tours/bubble/assets/icons/ImporterMeshInstance3D.svg new file mode 100644 index 0000000..e112b48 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImporterMeshInstance3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ImporterMeshInstance3D.svg.import b/addons/godot_tours/bubble/assets/icons/ImporterMeshInstance3D.svg.import new file mode 100644 index 0000000..8cd29ba --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ImporterMeshInstance3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dywsllfhlo4rw" +path="res://.godot/imported/ImporterMeshInstance3D.svg-78f9bd3f4718a77d28294402d4fb2e3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ImporterMeshInstance3D.svg" +dest_files=["res://.godot/imported/ImporterMeshInstance3D.svg-78f9bd3f4718a77d28294402d4fb2e3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Info.svg b/addons/godot_tours/bubble/assets/icons/Info.svg new file mode 100644 index 0000000..1a16f74 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Info.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Info.svg.import b/addons/godot_tours/bubble/assets/icons/Info.svg.import new file mode 100644 index 0000000..df7d428 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Info.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqyp8xfautgje" +path="res://.godot/imported/Info.svg-637f746a9089877ac3593d178f7352dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Info.svg" +dest_files=["res://.godot/imported/Info.svg-637f746a9089877ac3593d178f7352dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventAction.svg b/addons/godot_tours/bubble/assets/icons/InputEventAction.svg new file mode 100644 index 0000000..55ffe84 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventAction.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventAction.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventAction.svg.import new file mode 100644 index 0000000..7806290 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventAction.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7fa2yalf8i1o" +path="res://.godot/imported/InputEventAction.svg-1651c1e62e336954a5cc31034bba509c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventAction.svg" +dest_files=["res://.godot/imported/InputEventAction.svg-1651c1e62e336954a5cc31034bba509c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventJoypadButton.svg b/addons/godot_tours/bubble/assets/icons/InputEventJoypadButton.svg new file mode 100644 index 0000000..72b0238 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventJoypadButton.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventJoypadButton.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventJoypadButton.svg.import new file mode 100644 index 0000000..434bbfc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventJoypadButton.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0vatn2h8erxi" +path="res://.godot/imported/InputEventJoypadButton.svg-8f66effb3c09578747804d2426d913c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventJoypadButton.svg" +dest_files=["res://.godot/imported/InputEventJoypadButton.svg-8f66effb3c09578747804d2426d913c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventJoypadMotion.svg b/addons/godot_tours/bubble/assets/icons/InputEventJoypadMotion.svg new file mode 100644 index 0000000..d1e4544 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventJoypadMotion.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventJoypadMotion.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventJoypadMotion.svg.import new file mode 100644 index 0000000..4dbe145 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventJoypadMotion.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbslg7ptqquw7" +path="res://.godot/imported/InputEventJoypadMotion.svg-e180540da9102c7b2149d1970c5332e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventJoypadMotion.svg" +dest_files=["res://.godot/imported/InputEventJoypadMotion.svg-e180540da9102c7b2149d1970c5332e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventKey.svg b/addons/godot_tours/bubble/assets/icons/InputEventKey.svg new file mode 100644 index 0000000..4c5b0c0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventKey.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventKey.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventKey.svg.import new file mode 100644 index 0000000..601da64 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventKey.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df6c4xu38vhot" +path="res://.godot/imported/InputEventKey.svg-ff9724c3e7994854092d0acd8b453223.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventKey.svg" +dest_files=["res://.godot/imported/InputEventKey.svg-ff9724c3e7994854092d0acd8b453223.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventMIDI.svg b/addons/godot_tours/bubble/assets/icons/InputEventMIDI.svg new file mode 100644 index 0000000..4d95525 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventMIDI.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventMIDI.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventMIDI.svg.import new file mode 100644 index 0000000..1748609 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventMIDI.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p847ks4kcoyi" +path="res://.godot/imported/InputEventMIDI.svg-ce9756b12e4611d5e619290a29a41075.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventMIDI.svg" +dest_files=["res://.godot/imported/InputEventMIDI.svg-ce9756b12e4611d5e619290a29a41075.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventMagnifyGesture.svg b/addons/godot_tours/bubble/assets/icons/InputEventMagnifyGesture.svg new file mode 100644 index 0000000..dbf434c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventMagnifyGesture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventMagnifyGesture.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventMagnifyGesture.svg.import new file mode 100644 index 0000000..eb465d2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventMagnifyGesture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1xt2vxsvdkib" +path="res://.godot/imported/InputEventMagnifyGesture.svg-41827cf59d617e4d632e0b6968d1c62e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventMagnifyGesture.svg" +dest_files=["res://.godot/imported/InputEventMagnifyGesture.svg-41827cf59d617e4d632e0b6968d1c62e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventMouseButton.svg b/addons/godot_tours/bubble/assets/icons/InputEventMouseButton.svg new file mode 100644 index 0000000..26ff741 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventMouseButton.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventMouseButton.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventMouseButton.svg.import new file mode 100644 index 0000000..6284d41 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventMouseButton.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq4vxggvndl5y" +path="res://.godot/imported/InputEventMouseButton.svg-c0dc59647c87f1800b2b4abb95afec54.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventMouseButton.svg" +dest_files=["res://.godot/imported/InputEventMouseButton.svg-c0dc59647c87f1800b2b4abb95afec54.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventMouseMotion.svg b/addons/godot_tours/bubble/assets/icons/InputEventMouseMotion.svg new file mode 100644 index 0000000..9a8a17f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventMouseMotion.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventMouseMotion.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventMouseMotion.svg.import new file mode 100644 index 0000000..a34f936 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventMouseMotion.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://celittcer3lxf" +path="res://.godot/imported/InputEventMouseMotion.svg-b300340347493a77110eb793eec4b2d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventMouseMotion.svg" +dest_files=["res://.godot/imported/InputEventMouseMotion.svg-b300340347493a77110eb793eec4b2d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventPanGesture.svg b/addons/godot_tours/bubble/assets/icons/InputEventPanGesture.svg new file mode 100644 index 0000000..b093b3e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventPanGesture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventPanGesture.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventPanGesture.svg.import new file mode 100644 index 0000000..ed69dcc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventPanGesture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcjj5fah5kqeb" +path="res://.godot/imported/InputEventPanGesture.svg-75cf0ab12130bea1b0ccbb01e51975d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventPanGesture.svg" +dest_files=["res://.godot/imported/InputEventPanGesture.svg-75cf0ab12130bea1b0ccbb01e51975d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventScreenDrag.svg b/addons/godot_tours/bubble/assets/icons/InputEventScreenDrag.svg new file mode 100644 index 0000000..949eb3b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventScreenDrag.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventScreenDrag.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventScreenDrag.svg.import new file mode 100644 index 0000000..eea295d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventScreenDrag.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbjii5f64csdd" +path="res://.godot/imported/InputEventScreenDrag.svg-2b9f35ad897644db358adb63ce11a0cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventScreenDrag.svg" +dest_files=["res://.godot/imported/InputEventScreenDrag.svg-2b9f35ad897644db358adb63ce11a0cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventScreenTouch.svg b/addons/godot_tours/bubble/assets/icons/InputEventScreenTouch.svg new file mode 100644 index 0000000..9226818 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventScreenTouch.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventScreenTouch.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventScreenTouch.svg.import new file mode 100644 index 0000000..7631a94 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventScreenTouch.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtu80veemca4c" +path="res://.godot/imported/InputEventScreenTouch.svg-4f3436a55d25d091fcc43b7c336a97e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventScreenTouch.svg" +dest_files=["res://.godot/imported/InputEventScreenTouch.svg-4f3436a55d25d091fcc43b7c336a97e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InputEventShortcut.svg b/addons/godot_tours/bubble/assets/icons/InputEventShortcut.svg new file mode 100644 index 0000000..363e4b1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventShortcut.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InputEventShortcut.svg.import b/addons/godot_tours/bubble/assets/icons/InputEventShortcut.svg.import new file mode 100644 index 0000000..75af52a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InputEventShortcut.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b75fe5c8c77xw" +path="res://.godot/imported/InputEventShortcut.svg-560a59d274944264d5fb90657fa153dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InputEventShortcut.svg" +dest_files=["res://.godot/imported/InputEventShortcut.svg-560a59d274944264d5fb90657fa153dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InsertAfter.svg b/addons/godot_tours/bubble/assets/icons/InsertAfter.svg new file mode 100644 index 0000000..055d974 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InsertAfter.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InsertAfter.svg.import b/addons/godot_tours/bubble/assets/icons/InsertAfter.svg.import new file mode 100644 index 0000000..cf69231 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InsertAfter.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxjfqpma2osqo" +path="res://.godot/imported/InsertAfter.svg-90e6890d83d83f51690ced956a1bde60.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InsertAfter.svg" +dest_files=["res://.godot/imported/InsertAfter.svg-90e6890d83d83f51690ced956a1bde60.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InsertBefore.svg b/addons/godot_tours/bubble/assets/icons/InsertBefore.svg new file mode 100644 index 0000000..4feab40 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InsertBefore.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InsertBefore.svg.import b/addons/godot_tours/bubble/assets/icons/InsertBefore.svg.import new file mode 100644 index 0000000..8fc6a83 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InsertBefore.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2cev6bxu6c22" +path="res://.godot/imported/InsertBefore.svg-a130a5341f667976875d756c199033e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InsertBefore.svg" +dest_files=["res://.godot/imported/InsertBefore.svg-a130a5341f667976875d756c199033e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Instance.svg b/addons/godot_tours/bubble/assets/icons/Instance.svg new file mode 100644 index 0000000..c0ddfcb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Instance.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Instance.svg.import b/addons/godot_tours/bubble/assets/icons/Instance.svg.import new file mode 100644 index 0000000..78682a8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Instance.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dax1052gxvrrx" +path="res://.godot/imported/Instance.svg-ab9be1f5cfdb389c7c3d3af938d63b27.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Instance.svg" +dest_files=["res://.godot/imported/Instance.svg-ab9be1f5cfdb389c7c3d3af938d63b27.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InstanceOptions.svg b/addons/godot_tours/bubble/assets/icons/InstanceOptions.svg new file mode 100644 index 0000000..6ea0536 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InstanceOptions.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InstanceOptions.svg.import b/addons/godot_tours/bubble/assets/icons/InstanceOptions.svg.import new file mode 100644 index 0000000..2bf2624 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InstanceOptions.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bebev2iq7owld" +path="res://.godot/imported/InstanceOptions.svg-ac3f8c19805b7fa872c450e124716489.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InstanceOptions.svg" +dest_files=["res://.godot/imported/InstanceOptions.svg-ac3f8c19805b7fa872c450e124716489.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InterpCubic.svg b/addons/godot_tours/bubble/assets/icons/InterpCubic.svg new file mode 100644 index 0000000..f2e43bd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpCubic.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InterpCubic.svg.import b/addons/godot_tours/bubble/assets/icons/InterpCubic.svg.import new file mode 100644 index 0000000..44c5e3a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpCubic.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pkfx7uxkm4eo" +path="res://.godot/imported/InterpCubic.svg-8cd899003a1c59db8cb76acc6f3d4be7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InterpCubic.svg" +dest_files=["res://.godot/imported/InterpCubic.svg-8cd899003a1c59db8cb76acc6f3d4be7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InterpCubicAngle.svg b/addons/godot_tours/bubble/assets/icons/InterpCubicAngle.svg new file mode 100644 index 0000000..428230f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpCubicAngle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InterpCubicAngle.svg.import b/addons/godot_tours/bubble/assets/icons/InterpCubicAngle.svg.import new file mode 100644 index 0000000..5dc3a49 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpCubicAngle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://osurnnt6damy" +path="res://.godot/imported/InterpCubicAngle.svg-b63f0a331324bc5e83d9873869b7d8bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InterpCubicAngle.svg" +dest_files=["res://.godot/imported/InterpCubicAngle.svg-b63f0a331324bc5e83d9873869b7d8bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InterpLinear.svg b/addons/godot_tours/bubble/assets/icons/InterpLinear.svg new file mode 100644 index 0000000..8974f54 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpLinear.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InterpLinear.svg.import b/addons/godot_tours/bubble/assets/icons/InterpLinear.svg.import new file mode 100644 index 0000000..159d32e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpLinear.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7uaab5l6oupx" +path="res://.godot/imported/InterpLinear.svg-3c9c6b8fff7fb9371da419ad703c3aa5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InterpLinear.svg" +dest_files=["res://.godot/imported/InterpLinear.svg-3c9c6b8fff7fb9371da419ad703c3aa5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InterpLinearAngle.svg b/addons/godot_tours/bubble/assets/icons/InterpLinearAngle.svg new file mode 100644 index 0000000..09609ef --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpLinearAngle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InterpLinearAngle.svg.import b/addons/godot_tours/bubble/assets/icons/InterpLinearAngle.svg.import new file mode 100644 index 0000000..3cf1d27 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpLinearAngle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7e3pgwdchtaa" +path="res://.godot/imported/InterpLinearAngle.svg-8e36f2e22ca0795349c1c103b738b597.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InterpLinearAngle.svg" +dest_files=["res://.godot/imported/InterpLinearAngle.svg-8e36f2e22ca0795349c1c103b738b597.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InterpRaw.svg b/addons/godot_tours/bubble/assets/icons/InterpRaw.svg new file mode 100644 index 0000000..1ec57d0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpRaw.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InterpRaw.svg.import b/addons/godot_tours/bubble/assets/icons/InterpRaw.svg.import new file mode 100644 index 0000000..7f9d5b7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpRaw.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmqx840ubhk73" +path="res://.godot/imported/InterpRaw.svg-6eff4473ecabf49721a6bf550208fb12.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InterpRaw.svg" +dest_files=["res://.godot/imported/InterpRaw.svg-6eff4473ecabf49721a6bf550208fb12.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InterpWrapClamp.svg b/addons/godot_tours/bubble/assets/icons/InterpWrapClamp.svg new file mode 100644 index 0000000..9fab4fc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpWrapClamp.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InterpWrapClamp.svg.import b/addons/godot_tours/bubble/assets/icons/InterpWrapClamp.svg.import new file mode 100644 index 0000000..ca15a84 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpWrapClamp.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bffkk6euh7wti" +path="res://.godot/imported/InterpWrapClamp.svg-ea964b179d0c9f91055200b55485b201.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InterpWrapClamp.svg" +dest_files=["res://.godot/imported/InterpWrapClamp.svg-ea964b179d0c9f91055200b55485b201.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/InterpWrapLoop.svg b/addons/godot_tours/bubble/assets/icons/InterpWrapLoop.svg new file mode 100644 index 0000000..672a3cd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpWrapLoop.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/InterpWrapLoop.svg.import b/addons/godot_tours/bubble/assets/icons/InterpWrapLoop.svg.import new file mode 100644 index 0000000..19435e3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/InterpWrapLoop.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw85uejdt3mij" +path="res://.godot/imported/InterpWrapLoop.svg-ba42a1bd821b62d06dbe3108dd46299d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/InterpWrapLoop.svg" +dest_files=["res://.godot/imported/InterpWrapLoop.svg-ba42a1bd821b62d06dbe3108dd46299d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ItemList.svg b/addons/godot_tours/bubble/assets/icons/ItemList.svg new file mode 100644 index 0000000..ddad01f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ItemList.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ItemList.svg.import b/addons/godot_tours/bubble/assets/icons/ItemList.svg.import new file mode 100644 index 0000000..8551a33 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ItemList.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://353xpta451nb" +path="res://.godot/imported/ItemList.svg-e6485e18ef40ce6b64369d8d35886363.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ItemList.svg" +dest_files=["res://.godot/imported/ItemList.svg-e6485e18ef40ce6b64369d8d35886363.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/JoyAxis.svg b/addons/godot_tours/bubble/assets/icons/JoyAxis.svg new file mode 100644 index 0000000..c36aacb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/JoyAxis.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/JoyAxis.svg.import b/addons/godot_tours/bubble/assets/icons/JoyAxis.svg.import new file mode 100644 index 0000000..8aee3ef --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/JoyAxis.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7n5dgd53mpq7" +path="res://.godot/imported/JoyAxis.svg-c55dc151b6fa6b8ff7f9cdf243306c7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/JoyAxis.svg" +dest_files=["res://.godot/imported/JoyAxis.svg-c55dc151b6fa6b8ff7f9cdf243306c7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/JoyButton.svg b/addons/godot_tours/bubble/assets/icons/JoyButton.svg new file mode 100644 index 0000000..d7eafad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/JoyButton.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/JoyButton.svg.import b/addons/godot_tours/bubble/assets/icons/JoyButton.svg.import new file mode 100644 index 0000000..ddba8f0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/JoyButton.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6yknatf1i2mp" +path="res://.godot/imported/JoyButton.svg-eb0aed1e663b98ed3ce9f69b9bed0ccc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/JoyButton.svg" +dest_files=["res://.godot/imported/JoyButton.svg-eb0aed1e663b98ed3ce9f69b9bed0ccc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Joypad.svg b/addons/godot_tours/bubble/assets/icons/Joypad.svg new file mode 100644 index 0000000..1ac1060 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Joypad.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Joypad.svg.import b/addons/godot_tours/bubble/assets/icons/Joypad.svg.import new file mode 100644 index 0000000..789155c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Joypad.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdm3lpippxr0" +path="res://.godot/imported/Joypad.svg-d67c9e15960a721c8ea987f549f73599.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Joypad.svg" +dest_files=["res://.godot/imported/Joypad.svg-d67c9e15960a721c8ea987f549f73599.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Key.svg b/addons/godot_tours/bubble/assets/icons/Key.svg new file mode 100644 index 0000000..fdf51fd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Key.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Key.svg.import b/addons/godot_tours/bubble/assets/icons/Key.svg.import new file mode 100644 index 0000000..6f57303 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Key.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbjavbutfpndo" +path="res://.godot/imported/Key.svg-b198494c506344df10609747d70c34c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Key.svg" +dest_files=["res://.godot/imported/Key.svg-b198494c506344df10609747d70c34c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyAnimation.svg b/addons/godot_tours/bubble/assets/icons/KeyAnimation.svg new file mode 100644 index 0000000..ac59a52 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyAnimation.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyAnimation.svg.import b/addons/godot_tours/bubble/assets/icons/KeyAnimation.svg.import new file mode 100644 index 0000000..de209c5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyAnimation.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://meqlf3a5rdfl" +path="res://.godot/imported/KeyAnimation.svg-acece71566bc0d9dd92fbd9acd024053.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyAnimation.svg" +dest_files=["res://.godot/imported/KeyAnimation.svg-acece71566bc0d9dd92fbd9acd024053.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyAudio.svg b/addons/godot_tours/bubble/assets/icons/KeyAudio.svg new file mode 100644 index 0000000..cf69940 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyAudio.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyAudio.svg.import b/addons/godot_tours/bubble/assets/icons/KeyAudio.svg.import new file mode 100644 index 0000000..2665b9b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyAudio.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crbp0umfm67l" +path="res://.godot/imported/KeyAudio.svg-620c577c2c623d8e785ff2fbeeb45705.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyAudio.svg" +dest_files=["res://.godot/imported/KeyAudio.svg-620c577c2c623d8e785ff2fbeeb45705.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyBezier.svg b/addons/godot_tours/bubble/assets/icons/KeyBezier.svg new file mode 100644 index 0000000..caa39de --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyBezier.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyBezier.svg.import b/addons/godot_tours/bubble/assets/icons/KeyBezier.svg.import new file mode 100644 index 0000000..18e1892 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyBezier.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8agkmicnhbuo" +path="res://.godot/imported/KeyBezier.svg-ccce30654ed72275300e709939323b00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyBezier.svg" +dest_files=["res://.godot/imported/KeyBezier.svg-ccce30654ed72275300e709939323b00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyBezierHandle.svg b/addons/godot_tours/bubble/assets/icons/KeyBezierHandle.svg new file mode 100644 index 0000000..e2c95d7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyBezierHandle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyBezierHandle.svg.import b/addons/godot_tours/bubble/assets/icons/KeyBezierHandle.svg.import new file mode 100644 index 0000000..0f8a740 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyBezierHandle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceh1f7n8xp858" +path="res://.godot/imported/KeyBezierHandle.svg-e7eb9129f0c831817f659e6fd32b48f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyBezierHandle.svg" +dest_files=["res://.godot/imported/KeyBezierHandle.svg-e7eb9129f0c831817f659e6fd32b48f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyBezierPoint.svg b/addons/godot_tours/bubble/assets/icons/KeyBezierPoint.svg new file mode 100644 index 0000000..fa926c2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyBezierPoint.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyBezierPoint.svg.import b/addons/godot_tours/bubble/assets/icons/KeyBezierPoint.svg.import new file mode 100644 index 0000000..34d9906 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyBezierPoint.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsepvdedfm4eg" +path="res://.godot/imported/KeyBezierPoint.svg-3b9ff280a25546660c2bdb7d6470a729.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyBezierPoint.svg" +dest_files=["res://.godot/imported/KeyBezierPoint.svg-3b9ff280a25546660c2bdb7d6470a729.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyBezierSelected.svg b/addons/godot_tours/bubble/assets/icons/KeyBezierSelected.svg new file mode 100644 index 0000000..e26888d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyBezierSelected.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyBezierSelected.svg.import b/addons/godot_tours/bubble/assets/icons/KeyBezierSelected.svg.import new file mode 100644 index 0000000..2bdca1d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyBezierSelected.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b00c7g4brb1va" +path="res://.godot/imported/KeyBezierSelected.svg-20254d939aae9d84b662a0b5193e4eb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyBezierSelected.svg" +dest_files=["res://.godot/imported/KeyBezierSelected.svg-20254d939aae9d84b662a0b5193e4eb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyBlendShape.svg b/addons/godot_tours/bubble/assets/icons/KeyBlendShape.svg new file mode 100644 index 0000000..e8d39e4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyBlendShape.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyBlendShape.svg.import b/addons/godot_tours/bubble/assets/icons/KeyBlendShape.svg.import new file mode 100644 index 0000000..5c27749 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyBlendShape.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnxufaf6qj2m4" +path="res://.godot/imported/KeyBlendShape.svg-140cdfe2463e04e5c594c30263e647d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyBlendShape.svg" +dest_files=["res://.godot/imported/KeyBlendShape.svg-140cdfe2463e04e5c594c30263e647d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyCall.svg b/addons/godot_tours/bubble/assets/icons/KeyCall.svg new file mode 100644 index 0000000..8101b01 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyCall.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyCall.svg.import b/addons/godot_tours/bubble/assets/icons/KeyCall.svg.import new file mode 100644 index 0000000..a34a511 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyCall.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3wtnw5yxckib" +path="res://.godot/imported/KeyCall.svg-13321edfacc7546027ab5e3e56b1bbf6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyCall.svg" +dest_files=["res://.godot/imported/KeyCall.svg-13321edfacc7546027ab5e3e56b1bbf6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyEasedSelected.svg b/addons/godot_tours/bubble/assets/icons/KeyEasedSelected.svg new file mode 100644 index 0000000..55ce51f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyEasedSelected.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyEasedSelected.svg.import b/addons/godot_tours/bubble/assets/icons/KeyEasedSelected.svg.import new file mode 100644 index 0000000..3f6b8ba --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyEasedSelected.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de0rffx744ak7" +path="res://.godot/imported/KeyEasedSelected.svg-ac88c45f2d38d1578a3eb2e0704a2f89.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyEasedSelected.svg" +dest_files=["res://.godot/imported/KeyEasedSelected.svg-ac88c45f2d38d1578a3eb2e0704a2f89.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyInvalid.svg b/addons/godot_tours/bubble/assets/icons/KeyInvalid.svg new file mode 100644 index 0000000..135e7de --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyInvalid.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyInvalid.svg.import b/addons/godot_tours/bubble/assets/icons/KeyInvalid.svg.import new file mode 100644 index 0000000..71e7de3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyInvalid.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8lh3kjai2oiu" +path="res://.godot/imported/KeyInvalid.svg-f23200c3a2d4e988ecb1c4d1b89430a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyInvalid.svg" +dest_files=["res://.godot/imported/KeyInvalid.svg-f23200c3a2d4e988ecb1c4d1b89430a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyNext.svg b/addons/godot_tours/bubble/assets/icons/KeyNext.svg new file mode 100644 index 0000000..47387c8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyNext.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyNext.svg.import b/addons/godot_tours/bubble/assets/icons/KeyNext.svg.import new file mode 100644 index 0000000..e094f93 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyNext.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxmrm1jf8xrnh" +path="res://.godot/imported/KeyNext.svg-db6a9dcac80eceff7a0ac0cd4d0d1339.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyNext.svg" +dest_files=["res://.godot/imported/KeyNext.svg-db6a9dcac80eceff7a0ac0cd4d0d1339.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyPosition.svg b/addons/godot_tours/bubble/assets/icons/KeyPosition.svg new file mode 100644 index 0000000..c96df83 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyPosition.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyPosition.svg.import b/addons/godot_tours/bubble/assets/icons/KeyPosition.svg.import new file mode 100644 index 0000000..88ce98b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyPosition.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de38gkjf322sn" +path="res://.godot/imported/KeyPosition.svg-ad316c8c19c664c8614b0e0fdf15f4dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyPosition.svg" +dest_files=["res://.godot/imported/KeyPosition.svg-ad316c8c19c664c8614b0e0fdf15f4dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyRotation.svg b/addons/godot_tours/bubble/assets/icons/KeyRotation.svg new file mode 100644 index 0000000..88fc22b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyRotation.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyRotation.svg.import b/addons/godot_tours/bubble/assets/icons/KeyRotation.svg.import new file mode 100644 index 0000000..bf3bdfa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyRotation.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crv5wxx0gjcpu" +path="res://.godot/imported/KeyRotation.svg-ef7b7da3587f7c330b8ad2d82ebb9aac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyRotation.svg" +dest_files=["res://.godot/imported/KeyRotation.svg-ef7b7da3587f7c330b8ad2d82ebb9aac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyScale.svg b/addons/godot_tours/bubble/assets/icons/KeyScale.svg new file mode 100644 index 0000000..bd36c83 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyScale.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyScale.svg.import b/addons/godot_tours/bubble/assets/icons/KeyScale.svg.import new file mode 100644 index 0000000..5effc03 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyScale.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brmkbft7ntq2n" +path="res://.godot/imported/KeyScale.svg-a0e4e1f984c70aa63f39775d79d42d31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyScale.svg" +dest_files=["res://.godot/imported/KeyScale.svg-a0e4e1f984c70aa63f39775d79d42d31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeySelected.svg b/addons/godot_tours/bubble/assets/icons/KeySelected.svg new file mode 100644 index 0000000..9315dc6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeySelected.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeySelected.svg.import b/addons/godot_tours/bubble/assets/icons/KeySelected.svg.import new file mode 100644 index 0000000..3f7288c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeySelected.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddodq2iawk2w4" +path="res://.godot/imported/KeySelected.svg-c91c04ee489bd92c206b3bc78d9f3e6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeySelected.svg" +dest_files=["res://.godot/imported/KeySelected.svg-c91c04ee489bd92c206b3bc78d9f3e6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyTrackBlendShape.svg b/addons/godot_tours/bubble/assets/icons/KeyTrackBlendShape.svg new file mode 100644 index 0000000..bdc7318 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyTrackBlendShape.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyTrackBlendShape.svg.import b/addons/godot_tours/bubble/assets/icons/KeyTrackBlendShape.svg.import new file mode 100644 index 0000000..6b5e2f8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyTrackBlendShape.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpvgxyxvkrd8b" +path="res://.godot/imported/KeyTrackBlendShape.svg-541690036ca497e185df4206a8801c91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyTrackBlendShape.svg" +dest_files=["res://.godot/imported/KeyTrackBlendShape.svg-541690036ca497e185df4206a8801c91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyTrackPosition.svg b/addons/godot_tours/bubble/assets/icons/KeyTrackPosition.svg new file mode 100644 index 0000000..019c0d9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyTrackPosition.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyTrackPosition.svg.import b/addons/godot_tours/bubble/assets/icons/KeyTrackPosition.svg.import new file mode 100644 index 0000000..f35018c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyTrackPosition.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqd0r4nb21ko6" +path="res://.godot/imported/KeyTrackPosition.svg-b825050eed1e1e300858d7c1117e502c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyTrackPosition.svg" +dest_files=["res://.godot/imported/KeyTrackPosition.svg-b825050eed1e1e300858d7c1117e502c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyTrackRotation.svg b/addons/godot_tours/bubble/assets/icons/KeyTrackRotation.svg new file mode 100644 index 0000000..1e086e0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyTrackRotation.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyTrackRotation.svg.import b/addons/godot_tours/bubble/assets/icons/KeyTrackRotation.svg.import new file mode 100644 index 0000000..2bd0890 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyTrackRotation.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0776t7x2c6cs" +path="res://.godot/imported/KeyTrackRotation.svg-061a23228456a0ca86eb47817be21899.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyTrackRotation.svg" +dest_files=["res://.godot/imported/KeyTrackRotation.svg-061a23228456a0ca86eb47817be21899.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyTrackScale.svg b/addons/godot_tours/bubble/assets/icons/KeyTrackScale.svg new file mode 100644 index 0000000..bc8be26 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyTrackScale.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyTrackScale.svg.import b/addons/godot_tours/bubble/assets/icons/KeyTrackScale.svg.import new file mode 100644 index 0000000..dcc386d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyTrackScale.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvtbhv8pxnq2q" +path="res://.godot/imported/KeyTrackScale.svg-d26c18a8544866d82d0c957ca9578f47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyTrackScale.svg" +dest_files=["res://.godot/imported/KeyTrackScale.svg-d26c18a8544866d82d0c957ca9578f47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyValue.svg b/addons/godot_tours/bubble/assets/icons/KeyValue.svg new file mode 100644 index 0000000..23bfe93 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyValue.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyValue.svg.import b/addons/godot_tours/bubble/assets/icons/KeyValue.svg.import new file mode 100644 index 0000000..4c81324 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyValue.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4s6pmucxgkff" +path="res://.godot/imported/KeyValue.svg-04e75a0b00d3c451d6e0fad3bc97aebf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyValue.svg" +dest_files=["res://.godot/imported/KeyValue.svg-04e75a0b00d3c451d6e0fad3bc97aebf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyValueEased.svg b/addons/godot_tours/bubble/assets/icons/KeyValueEased.svg new file mode 100644 index 0000000..725d7ff --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyValueEased.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyValueEased.svg.import b/addons/godot_tours/bubble/assets/icons/KeyValueEased.svg.import new file mode 100644 index 0000000..9fdf822 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyValueEased.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4jvocw58oru8" +path="res://.godot/imported/KeyValueEased.svg-237274ad4427d9379b6eaa10aca47097.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyValueEased.svg" +dest_files=["res://.godot/imported/KeyValueEased.svg-237274ad4427d9379b6eaa10aca47097.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyXPosition.svg b/addons/godot_tours/bubble/assets/icons/KeyXPosition.svg new file mode 100644 index 0000000..0d186d3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyXPosition.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyXPosition.svg.import b/addons/godot_tours/bubble/assets/icons/KeyXPosition.svg.import new file mode 100644 index 0000000..4e90285 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyXPosition.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://onna7gcrecs3" +path="res://.godot/imported/KeyXPosition.svg-e5e390caee32ae89de695ade6095fb67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyXPosition.svg" +dest_files=["res://.godot/imported/KeyXPosition.svg-e5e390caee32ae89de695ade6095fb67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyXRotation.svg b/addons/godot_tours/bubble/assets/icons/KeyXRotation.svg new file mode 100644 index 0000000..97c6109 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyXRotation.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyXRotation.svg.import b/addons/godot_tours/bubble/assets/icons/KeyXRotation.svg.import new file mode 100644 index 0000000..36c0d91 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyXRotation.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ds8drkmtynapf" +path="res://.godot/imported/KeyXRotation.svg-c220f5ec4015c94f5bb27111d1db491c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyXRotation.svg" +dest_files=["res://.godot/imported/KeyXRotation.svg-c220f5ec4015c94f5bb27111d1db491c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyXScale.svg b/addons/godot_tours/bubble/assets/icons/KeyXScale.svg new file mode 100644 index 0000000..a0e3b45 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyXScale.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyXScale.svg.import b/addons/godot_tours/bubble/assets/icons/KeyXScale.svg.import new file mode 100644 index 0000000..327b4e6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyXScale.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2ghibruhqmtr" +path="res://.godot/imported/KeyXScale.svg-51b4d860a482e4d1f476177ce5144a51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyXScale.svg" +dest_files=["res://.godot/imported/KeyXScale.svg-51b4d860a482e4d1f476177ce5144a51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Keyboard.svg b/addons/godot_tours/bubble/assets/icons/Keyboard.svg new file mode 100644 index 0000000..4a0e6f6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Keyboard.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Keyboard.svg.import b/addons/godot_tours/bubble/assets/icons/Keyboard.svg.import new file mode 100644 index 0000000..6a31c00 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Keyboard.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deq3nn70p22iq" +path="res://.godot/imported/Keyboard.svg-66fd82e5107a9345e56c4a110e8c0234.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Keyboard.svg" +dest_files=["res://.godot/imported/Keyboard.svg-66fd82e5107a9345e56c4a110e8c0234.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyboardError.svg b/addons/godot_tours/bubble/assets/icons/KeyboardError.svg new file mode 100644 index 0000000..bc2ed11 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyboardError.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyboardError.svg.import b/addons/godot_tours/bubble/assets/icons/KeyboardError.svg.import new file mode 100644 index 0000000..291966b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyboardError.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwmoym8tdcxc6" +path="res://.godot/imported/KeyboardError.svg-af791e3fe4b0765c616abc0f846f7e79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyboardError.svg" +dest_files=["res://.godot/imported/KeyboardError.svg-af791e3fe4b0765c616abc0f846f7e79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyboardLabel.svg b/addons/godot_tours/bubble/assets/icons/KeyboardLabel.svg new file mode 100644 index 0000000..33c9244 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyboardLabel.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyboardLabel.svg.import b/addons/godot_tours/bubble/assets/icons/KeyboardLabel.svg.import new file mode 100644 index 0000000..aa93992 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyboardLabel.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c47ynjywhp126" +path="res://.godot/imported/KeyboardLabel.svg-06f0d002dcf76df4405e9f1e63c580d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyboardLabel.svg" +dest_files=["res://.godot/imported/KeyboardLabel.svg-06f0d002dcf76df4405e9f1e63c580d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/KeyboardPhysical.svg b/addons/godot_tours/bubble/assets/icons/KeyboardPhysical.svg new file mode 100644 index 0000000..1a8bcf9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyboardPhysical.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/KeyboardPhysical.svg.import b/addons/godot_tours/bubble/assets/icons/KeyboardPhysical.svg.import new file mode 100644 index 0000000..e179b67 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/KeyboardPhysical.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgnvh5ch2ej08" +path="res://.godot/imported/KeyboardPhysical.svg-03b49271418e6a22cb51dc611cb5948b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/KeyboardPhysical.svg" +dest_files=["res://.godot/imported/KeyboardPhysical.svg-03b49271418e6a22cb51dc611cb5948b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Label.svg b/addons/godot_tours/bubble/assets/icons/Label.svg new file mode 100644 index 0000000..6712927 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Label.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Label.svg.import b/addons/godot_tours/bubble/assets/icons/Label.svg.import new file mode 100644 index 0000000..ef60f9c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Label.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhy2gxfst77hw" +path="res://.godot/imported/Label.svg-e42fc72f5540db4690ce361e99926830.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Label.svg" +dest_files=["res://.godot/imported/Label.svg-e42fc72f5540db4690ce361e99926830.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Label3D.svg b/addons/godot_tours/bubble/assets/icons/Label3D.svg new file mode 100644 index 0000000..7f2a46a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Label3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Label3D.svg.import b/addons/godot_tours/bubble/assets/icons/Label3D.svg.import new file mode 100644 index 0000000..4a05406 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Label3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c38epvs04e4j8" +path="res://.godot/imported/Label3D.svg-dc85881278e496405ef33f88785f49ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Label3D.svg" +dest_files=["res://.godot/imported/Label3D.svg-dc85881278e496405ef33f88785f49ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/LabelSettings.svg b/addons/godot_tours/bubble/assets/icons/LabelSettings.svg new file mode 100644 index 0000000..478e655 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LabelSettings.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/LabelSettings.svg.import b/addons/godot_tours/bubble/assets/icons/LabelSettings.svg.import new file mode 100644 index 0000000..a5be7af --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LabelSettings.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvcl66bwqhnsc" +path="res://.godot/imported/LabelSettings.svg-dbaf2dcd5d25e10a4771a1a3a69bf395.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/LabelSettings.svg" +dest_files=["res://.godot/imported/LabelSettings.svg-dbaf2dcd5d25e10a4771a1a3a69bf395.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/LightOccluder2D.svg b/addons/godot_tours/bubble/assets/icons/LightOccluder2D.svg new file mode 100644 index 0000000..1e1c189 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LightOccluder2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/LightOccluder2D.svg.import b/addons/godot_tours/bubble/assets/icons/LightOccluder2D.svg.import new file mode 100644 index 0000000..3a1bb83 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LightOccluder2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wk5uhakndq6x" +path="res://.godot/imported/LightOccluder2D.svg-5425f6b1ec36cd99df0a3933b1eea1f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/LightOccluder2D.svg" +dest_files=["res://.godot/imported/LightOccluder2D.svg-5425f6b1ec36cd99df0a3933b1eea1f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/LightmapGI.svg b/addons/godot_tours/bubble/assets/icons/LightmapGI.svg new file mode 100644 index 0000000..78f0a64 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LightmapGI.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/LightmapGI.svg.import b/addons/godot_tours/bubble/assets/icons/LightmapGI.svg.import new file mode 100644 index 0000000..b4811fe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LightmapGI.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://68dy060m3m4g" +path="res://.godot/imported/LightmapGI.svg-e09477c01fcbc2a5bfee42695297b9df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/LightmapGI.svg" +dest_files=["res://.godot/imported/LightmapGI.svg-e09477c01fcbc2a5bfee42695297b9df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/LightmapGIData.svg b/addons/godot_tours/bubble/assets/icons/LightmapGIData.svg new file mode 100644 index 0000000..f5dcfb6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LightmapGIData.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/LightmapGIData.svg.import b/addons/godot_tours/bubble/assets/icons/LightmapGIData.svg.import new file mode 100644 index 0000000..1b6fd72 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LightmapGIData.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch8kj8ok1chuy" +path="res://.godot/imported/LightmapGIData.svg-fdccdc8deee99f57b87fd60b9382fd44.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/LightmapGIData.svg" +dest_files=["res://.godot/imported/LightmapGIData.svg-fdccdc8deee99f57b87fd60b9382fd44.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/LightmapProbe.svg b/addons/godot_tours/bubble/assets/icons/LightmapProbe.svg new file mode 100644 index 0000000..a6f9879 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LightmapProbe.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/LightmapProbe.svg.import b/addons/godot_tours/bubble/assets/icons/LightmapProbe.svg.import new file mode 100644 index 0000000..28982cb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LightmapProbe.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pf01onccd6ej" +path="res://.godot/imported/LightmapProbe.svg-1ee34ca8b9ba44c74c197a745b1e5773.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/LightmapProbe.svg" +dest_files=["res://.godot/imported/LightmapProbe.svg-1ee34ca8b9ba44c74c197a745b1e5773.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Line.svg b/addons/godot_tours/bubble/assets/icons/Line.svg new file mode 100644 index 0000000..0b440b8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Line.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Line.svg.import b/addons/godot_tours/bubble/assets/icons/Line.svg.import new file mode 100644 index 0000000..a080b03 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Line.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv1t0ye85oi4m" +path="res://.godot/imported/Line.svg-4ad07e91e3145d121e99d6570e08933b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Line.svg" +dest_files=["res://.godot/imported/Line.svg-4ad07e91e3145d121e99d6570e08933b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Line2D.svg b/addons/godot_tours/bubble/assets/icons/Line2D.svg new file mode 100644 index 0000000..f38f8ae --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Line2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Line2D.svg.import b/addons/godot_tours/bubble/assets/icons/Line2D.svg.import new file mode 100644 index 0000000..9809c89 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Line2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvn8o0v4g6efs" +path="res://.godot/imported/Line2D.svg-19edb81443328298638cccb4d7e1f0fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Line2D.svg" +dest_files=["res://.godot/imported/Line2D.svg-19edb81443328298638cccb4d7e1f0fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/LineEdit.svg b/addons/godot_tours/bubble/assets/icons/LineEdit.svg new file mode 100644 index 0000000..36847bf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LineEdit.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/LineEdit.svg.import b/addons/godot_tours/bubble/assets/icons/LineEdit.svg.import new file mode 100644 index 0000000..71437d3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LineEdit.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be7nhxhgdt6j7" +path="res://.godot/imported/LineEdit.svg-0b74ace25054c92e084d4d64807fbe44.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/LineEdit.svg" +dest_files=["res://.godot/imported/LineEdit.svg-0b74ace25054c92e084d4d64807fbe44.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/LinkButton.svg b/addons/godot_tours/bubble/assets/icons/LinkButton.svg new file mode 100644 index 0000000..7f85602 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LinkButton.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/LinkButton.svg.import b/addons/godot_tours/bubble/assets/icons/LinkButton.svg.import new file mode 100644 index 0000000..f7956d7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LinkButton.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tvqnmyjuui6p" +path="res://.godot/imported/LinkButton.svg-35dad61de08ec4393cdbc66c53533dae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/LinkButton.svg" +dest_files=["res://.godot/imported/LinkButton.svg-35dad61de08ec4393cdbc66c53533dae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ListSelect.svg b/addons/godot_tours/bubble/assets/icons/ListSelect.svg new file mode 100644 index 0000000..f1dac74 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ListSelect.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ListSelect.svg.import b/addons/godot_tours/bubble/assets/icons/ListSelect.svg.import new file mode 100644 index 0000000..ce7e505 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ListSelect.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4fpxruql8quf" +path="res://.godot/imported/ListSelect.svg-4f9f38c0dd35a6192f8b7fe29359bdc9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ListSelect.svg" +dest_files=["res://.godot/imported/ListSelect.svg-4f9f38c0dd35a6192f8b7fe29359bdc9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Load.svg b/addons/godot_tours/bubble/assets/icons/Load.svg new file mode 100644 index 0000000..a4a6b30 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Load.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Load.svg.import b/addons/godot_tours/bubble/assets/icons/Load.svg.import new file mode 100644 index 0000000..34a30f6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Load.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djkvr5batahyd" +path="res://.godot/imported/Load.svg-9f6018caa658aa0cd83dbb7982bf8570.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Load.svg" +dest_files=["res://.godot/imported/Load.svg-9f6018caa658aa0cd83dbb7982bf8570.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Lock.svg b/addons/godot_tours/bubble/assets/icons/Lock.svg new file mode 100644 index 0000000..df66e52 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Lock.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Lock.svg.import b/addons/godot_tours/bubble/assets/icons/Lock.svg.import new file mode 100644 index 0000000..5bd8af8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Lock.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw84dsyt3ueg8" +path="res://.godot/imported/Lock.svg-c5aadec635a80ddf59305aeb16feb9e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Lock.svg" +dest_files=["res://.godot/imported/Lock.svg-c5aadec635a80ddf59305aeb16feb9e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/LockViewport.svg b/addons/godot_tours/bubble/assets/icons/LockViewport.svg new file mode 100644 index 0000000..c29d141 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LockViewport.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/LockViewport.svg.import b/addons/godot_tours/bubble/assets/icons/LockViewport.svg.import new file mode 100644 index 0000000..f70f6f9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/LockViewport.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ik0sf3ionm4l" +path="res://.godot/imported/LockViewport.svg-614c4d73a929751a96062127843d042c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/LockViewport.svg" +dest_files=["res://.godot/imported/LockViewport.svg-614c4d73a929751a96062127843d042c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Logo.svg b/addons/godot_tours/bubble/assets/icons/Logo.svg new file mode 100644 index 0000000..6472625 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Logo.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Logo.svg.import b/addons/godot_tours/bubble/assets/icons/Logo.svg.import new file mode 100644 index 0000000..ba2e3d1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Logo.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr5laoi0h44xl" +path="res://.godot/imported/Logo.svg-7e35a8d127ad9f642bf0deaaff827cfb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Logo.svg" +dest_files=["res://.godot/imported/Logo.svg-7e35a8d127ad9f642bf0deaaff827cfb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Loop.svg b/addons/godot_tours/bubble/assets/icons/Loop.svg new file mode 100644 index 0000000..cef6956 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Loop.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Loop.svg.import b/addons/godot_tours/bubble/assets/icons/Loop.svg.import new file mode 100644 index 0000000..3b39b38 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Loop.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvnyduugijf25" +path="res://.godot/imported/Loop.svg-b2eff1d2fbf66db2d9fc25c652dfe74f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Loop.svg" +dest_files=["res://.godot/imported/Loop.svg-b2eff1d2fbf66db2d9fc25c652dfe74f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MainMovieWrite.svg b/addons/godot_tours/bubble/assets/icons/MainMovieWrite.svg new file mode 100644 index 0000000..55d4809 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MainMovieWrite.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MainMovieWrite.svg.import b/addons/godot_tours/bubble/assets/icons/MainMovieWrite.svg.import new file mode 100644 index 0000000..62fc90d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MainMovieWrite.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bubq43qsswjo8" +path="res://.godot/imported/MainMovieWrite.svg-bdefeb2c5b34b41e1bf5580fddfb052f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MainMovieWrite.svg" +dest_files=["res://.godot/imported/MainMovieWrite.svg-bdefeb2c5b34b41e1bf5580fddfb052f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MainPlay.svg b/addons/godot_tours/bubble/assets/icons/MainPlay.svg new file mode 100644 index 0000000..340d44f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MainPlay.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MainPlay.svg.import b/addons/godot_tours/bubble/assets/icons/MainPlay.svg.import new file mode 100644 index 0000000..b660499 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MainPlay.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv44ghjqryn88" +path="res://.godot/imported/MainPlay.svg-baad436c3d78ba21841659936a31f51e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MainPlay.svg" +dest_files=["res://.godot/imported/MainPlay.svg-baad436c3d78ba21841659936a31f51e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MakeFloating.svg b/addons/godot_tours/bubble/assets/icons/MakeFloating.svg new file mode 100644 index 0000000..916b156 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MakeFloating.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MakeFloating.svg.import b/addons/godot_tours/bubble/assets/icons/MakeFloating.svg.import new file mode 100644 index 0000000..6cfe20c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MakeFloating.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o6lqdao1r67k" +path="res://.godot/imported/MakeFloating.svg-db31dcd85c61bb521623f30d795514c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MakeFloating.svg" +dest_files=["res://.godot/imported/MakeFloating.svg-db31dcd85c61bb521623f30d795514c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MarginContainer.svg b/addons/godot_tours/bubble/assets/icons/MarginContainer.svg new file mode 100644 index 0000000..aa93721 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MarginContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MarginContainer.svg.import b/addons/godot_tours/bubble/assets/icons/MarginContainer.svg.import new file mode 100644 index 0000000..2aeba07 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MarginContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci774nk4jen6r" +path="res://.godot/imported/MarginContainer.svg-1eb494d6f53586f151b0bdbc1c9fe580.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MarginContainer.svg" +dest_files=["res://.godot/imported/MarginContainer.svg-1eb494d6f53586f151b0bdbc1c9fe580.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Marker2D.svg b/addons/godot_tours/bubble/assets/icons/Marker2D.svg new file mode 100644 index 0000000..aa7836c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Marker2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Marker2D.svg.import b/addons/godot_tours/bubble/assets/icons/Marker2D.svg.import new file mode 100644 index 0000000..11a9050 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Marker2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwugl6fdi6gpk" +path="res://.godot/imported/Marker2D.svg-22475ec4da3adb1c5a1f8596da131bd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Marker2D.svg" +dest_files=["res://.godot/imported/Marker2D.svg-22475ec4da3adb1c5a1f8596da131bd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Marker3D.svg b/addons/godot_tours/bubble/assets/icons/Marker3D.svg new file mode 100644 index 0000000..bbc531c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Marker3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Marker3D.svg.import b/addons/godot_tours/bubble/assets/icons/Marker3D.svg.import new file mode 100644 index 0000000..30cfc4f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Marker3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duhvnt31cvo" +path="res://.godot/imported/Marker3D.svg-1486b0765573c405cb522236ae8c711c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Marker3D.svg" +dest_files=["res://.godot/imported/Marker3D.svg-1486b0765573c405cb522236ae8c711c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MatchCase.svg b/addons/godot_tours/bubble/assets/icons/MatchCase.svg new file mode 100644 index 0000000..62e8bc9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MatchCase.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MatchCase.svg.import b/addons/godot_tours/bubble/assets/icons/MatchCase.svg.import new file mode 100644 index 0000000..03067bd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MatchCase.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctmjlj6b0mbwm" +path="res://.godot/imported/MatchCase.svg-f013b317b4c4a659013d241c2ba53fb1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MatchCase.svg" +dest_files=["res://.godot/imported/MatchCase.svg-f013b317b4c4a659013d241c2ba53fb1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MaterialPreviewCube.svg b/addons/godot_tours/bubble/assets/icons/MaterialPreviewCube.svg new file mode 100644 index 0000000..68d4595 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MaterialPreviewCube.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MaterialPreviewCube.svg.import b/addons/godot_tours/bubble/assets/icons/MaterialPreviewCube.svg.import new file mode 100644 index 0000000..fb71609 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MaterialPreviewCube.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7tqipncc5mbk" +path="res://.godot/imported/MaterialPreviewCube.svg-54a951e10dfb1f2ac28c5e30ed785a33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MaterialPreviewCube.svg" +dest_files=["res://.godot/imported/MaterialPreviewCube.svg-54a951e10dfb1f2ac28c5e30ed785a33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight1.svg b/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight1.svg new file mode 100644 index 0000000..ef21a4e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight1.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight1.svg.import b/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight1.svg.import new file mode 100644 index 0000000..28b341f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight1.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xrj3k5p8aml1" +path="res://.godot/imported/MaterialPreviewLight1.svg-64a6db11767fa3a529100aff378eabbd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MaterialPreviewLight1.svg" +dest_files=["res://.godot/imported/MaterialPreviewLight1.svg-64a6db11767fa3a529100aff378eabbd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight2.svg b/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight2.svg new file mode 100644 index 0000000..7714864 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight2.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight2.svg.import b/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight2.svg.import new file mode 100644 index 0000000..75ec0f9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MaterialPreviewLight2.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djvn482k4krom" +path="res://.godot/imported/MaterialPreviewLight2.svg-73e95b12b58d42a971a2637635eab281.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MaterialPreviewLight2.svg" +dest_files=["res://.godot/imported/MaterialPreviewLight2.svg-73e95b12b58d42a971a2637635eab281.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MaterialPreviewSphere.svg b/addons/godot_tours/bubble/assets/icons/MaterialPreviewSphere.svg new file mode 100644 index 0000000..e3c58fe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MaterialPreviewSphere.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MaterialPreviewSphere.svg.import b/addons/godot_tours/bubble/assets/icons/MaterialPreviewSphere.svg.import new file mode 100644 index 0000000..de9e8b5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MaterialPreviewSphere.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqc14uqp8pwca" +path="res://.godot/imported/MaterialPreviewSphere.svg-195f4fbb11bc81a33345274eeefe32b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MaterialPreviewSphere.svg" +dest_files=["res://.godot/imported/MaterialPreviewSphere.svg-195f4fbb11bc81a33345274eeefe32b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MemberAnnotation.svg b/addons/godot_tours/bubble/assets/icons/MemberAnnotation.svg new file mode 100644 index 0000000..5578ef9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberAnnotation.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MemberAnnotation.svg.import b/addons/godot_tours/bubble/assets/icons/MemberAnnotation.svg.import new file mode 100644 index 0000000..18d42bf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberAnnotation.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hiuxwcd6k2f8" +path="res://.godot/imported/MemberAnnotation.svg-4ef3f4b32b49a58d0314365a92bd7130.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MemberAnnotation.svg" +dest_files=["res://.godot/imported/MemberAnnotation.svg-4ef3f4b32b49a58d0314365a92bd7130.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MemberConstant.svg b/addons/godot_tours/bubble/assets/icons/MemberConstant.svg new file mode 100644 index 0000000..ec5dc67 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberConstant.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MemberConstant.svg.import b/addons/godot_tours/bubble/assets/icons/MemberConstant.svg.import new file mode 100644 index 0000000..918bf6e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberConstant.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbtvlgfg3gc0y" +path="res://.godot/imported/MemberConstant.svg-f17c24033f45a187727aeb103746e066.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MemberConstant.svg" +dest_files=["res://.godot/imported/MemberConstant.svg-f17c24033f45a187727aeb103746e066.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MemberMethod.svg b/addons/godot_tours/bubble/assets/icons/MemberMethod.svg new file mode 100644 index 0000000..01cc265 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberMethod.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MemberMethod.svg.import b/addons/godot_tours/bubble/assets/icons/MemberMethod.svg.import new file mode 100644 index 0000000..32ce0f8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberMethod.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvdseexs0kqbk" +path="res://.godot/imported/MemberMethod.svg-87859df33e097de046370cc24f3610ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MemberMethod.svg" +dest_files=["res://.godot/imported/MemberMethod.svg-87859df33e097de046370cc24f3610ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MemberProperty.svg b/addons/godot_tours/bubble/assets/icons/MemberProperty.svg new file mode 100644 index 0000000..ebd9cc3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberProperty.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MemberProperty.svg.import b/addons/godot_tours/bubble/assets/icons/MemberProperty.svg.import new file mode 100644 index 0000000..8e947a0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberProperty.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxr0hohecbkt2" +path="res://.godot/imported/MemberProperty.svg-ed35ffbcb66cd0416d7016e58c899d99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MemberProperty.svg" +dest_files=["res://.godot/imported/MemberProperty.svg-ed35ffbcb66cd0416d7016e58c899d99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MemberSignal.svg b/addons/godot_tours/bubble/assets/icons/MemberSignal.svg new file mode 100644 index 0000000..21bbdad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberSignal.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MemberSignal.svg.import b/addons/godot_tours/bubble/assets/icons/MemberSignal.svg.import new file mode 100644 index 0000000..d863c26 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberSignal.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s6s18xs1vlbd" +path="res://.godot/imported/MemberSignal.svg-f5bfd73616e9080627d5d2e9fe9ea0d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MemberSignal.svg" +dest_files=["res://.godot/imported/MemberSignal.svg-f5bfd73616e9080627d5d2e9fe9ea0d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MemberTheme.svg b/addons/godot_tours/bubble/assets/icons/MemberTheme.svg new file mode 100644 index 0000000..70b6518 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberTheme.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MemberTheme.svg.import b/addons/godot_tours/bubble/assets/icons/MemberTheme.svg.import new file mode 100644 index 0000000..546a497 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MemberTheme.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c685r3ew8ekx" +path="res://.godot/imported/MemberTheme.svg-06b25b3273f18e12f1c2449c88fd4e15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MemberTheme.svg" +dest_files=["res://.godot/imported/MemberTheme.svg-06b25b3273f18e12f1c2449c88fd4e15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MenuBar.svg b/addons/godot_tours/bubble/assets/icons/MenuBar.svg new file mode 100644 index 0000000..0a53f07 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MenuBar.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MenuBar.svg.import b/addons/godot_tours/bubble/assets/icons/MenuBar.svg.import new file mode 100644 index 0000000..8bc0850 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MenuBar.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlsboginu2p3" +path="res://.godot/imported/MenuBar.svg-c79857a2389f0756447df90def9b04e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MenuBar.svg" +dest_files=["res://.godot/imported/MenuBar.svg-c79857a2389f0756447df90def9b04e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MenuButton.svg b/addons/godot_tours/bubble/assets/icons/MenuButton.svg new file mode 100644 index 0000000..cb1d9e8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MenuButton.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MenuButton.svg.import b/addons/godot_tours/bubble/assets/icons/MenuButton.svg.import new file mode 100644 index 0000000..9530a6b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MenuButton.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl6w14h36na61" +path="res://.godot/imported/MenuButton.svg-bb45bce17709454ffc14d1d80effb6b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MenuButton.svg" +dest_files=["res://.godot/imported/MenuButton.svg-bb45bce17709454ffc14d1d80effb6b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Mesh.svg b/addons/godot_tours/bubble/assets/icons/Mesh.svg new file mode 100644 index 0000000..9aeb840 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Mesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Mesh.svg.import b/addons/godot_tours/bubble/assets/icons/Mesh.svg.import new file mode 100644 index 0000000..faf9562 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Mesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs3d5vi5fual6" +path="res://.godot/imported/Mesh.svg-6624a6e07a88572842517eb849a4e7e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Mesh.svg" +dest_files=["res://.godot/imported/Mesh.svg-6624a6e07a88572842517eb849a4e7e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MeshInstance2D.svg b/addons/godot_tours/bubble/assets/icons/MeshInstance2D.svg new file mode 100644 index 0000000..a0d94e2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MeshInstance2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MeshInstance2D.svg.import b/addons/godot_tours/bubble/assets/icons/MeshInstance2D.svg.import new file mode 100644 index 0000000..f10046d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MeshInstance2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsarl6d32h1v" +path="res://.godot/imported/MeshInstance2D.svg-7ef5d9378783066e3f8cc185fd3c9b43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MeshInstance2D.svg" +dest_files=["res://.godot/imported/MeshInstance2D.svg-7ef5d9378783066e3f8cc185fd3c9b43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MeshInstance3D.svg b/addons/godot_tours/bubble/assets/icons/MeshInstance3D.svg new file mode 100644 index 0000000..7edb7fc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MeshInstance3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MeshInstance3D.svg.import b/addons/godot_tours/bubble/assets/icons/MeshInstance3D.svg.import new file mode 100644 index 0000000..776f73e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MeshInstance3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnfaet0ukv5ha" +path="res://.godot/imported/MeshInstance3D.svg-c8d2970dd2134d66ca053c2bfa99e839.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MeshInstance3D.svg" +dest_files=["res://.godot/imported/MeshInstance3D.svg-c8d2970dd2134d66ca053c2bfa99e839.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MeshItem.svg b/addons/godot_tours/bubble/assets/icons/MeshItem.svg new file mode 100644 index 0000000..d475aec --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MeshItem.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MeshItem.svg.import b/addons/godot_tours/bubble/assets/icons/MeshItem.svg.import new file mode 100644 index 0000000..c97a408 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MeshItem.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dec46qne7vwck" +path="res://.godot/imported/MeshItem.svg-9138f70f2aeaf9c9d3f93d1e059079af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MeshItem.svg" +dest_files=["res://.godot/imported/MeshItem.svg-9138f70f2aeaf9c9d3f93d1e059079af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MeshLibrary.svg b/addons/godot_tours/bubble/assets/icons/MeshLibrary.svg new file mode 100644 index 0000000..62a2b3e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MeshLibrary.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MeshLibrary.svg.import b/addons/godot_tours/bubble/assets/icons/MeshLibrary.svg.import new file mode 100644 index 0000000..3fb80cc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MeshLibrary.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byjaj7ij6560x" +path="res://.godot/imported/MeshLibrary.svg-5c78fa8b7583d165bab6462020070ee7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MeshLibrary.svg" +dest_files=["res://.godot/imported/MeshLibrary.svg-5c78fa8b7583d165bab6462020070ee7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MeshTexture.svg b/addons/godot_tours/bubble/assets/icons/MeshTexture.svg new file mode 100644 index 0000000..4068d13 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MeshTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MeshTexture.svg.import b/addons/godot_tours/bubble/assets/icons/MeshTexture.svg.import new file mode 100644 index 0000000..8196e06 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MeshTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccyjskyqr2h3i" +path="res://.godot/imported/MeshTexture.svg-bbbac535e244c05f248bf12d3e8b8d4a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MeshTexture.svg" +dest_files=["res://.godot/imported/MeshTexture.svg-bbbac535e244c05f248bf12d3e8b8d4a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MethodOverride.svg b/addons/godot_tours/bubble/assets/icons/MethodOverride.svg new file mode 100644 index 0000000..39e069d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MethodOverride.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MethodOverride.svg.import b/addons/godot_tours/bubble/assets/icons/MethodOverride.svg.import new file mode 100644 index 0000000..ed14cce --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MethodOverride.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5b1131abrjpj" +path="res://.godot/imported/MethodOverride.svg-2340711c22ec4b7fd447d170f47a1636.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MethodOverride.svg" +dest_files=["res://.godot/imported/MethodOverride.svg-2340711c22ec4b7fd447d170f47a1636.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MethodOverrideAndSlot.svg b/addons/godot_tours/bubble/assets/icons/MethodOverrideAndSlot.svg new file mode 100644 index 0000000..eb9729b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MethodOverrideAndSlot.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MethodOverrideAndSlot.svg.import b/addons/godot_tours/bubble/assets/icons/MethodOverrideAndSlot.svg.import new file mode 100644 index 0000000..0d5bbb7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MethodOverrideAndSlot.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crty1la5pxpeg" +path="res://.godot/imported/MethodOverrideAndSlot.svg-2cb881045f0484e613758121a9a86d7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MethodOverrideAndSlot.svg" +dest_files=["res://.godot/imported/MethodOverrideAndSlot.svg-2cb881045f0484e613758121a9a86d7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MiniObject.svg b/addons/godot_tours/bubble/assets/icons/MiniObject.svg new file mode 100644 index 0000000..3bba3bc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MiniObject.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MiniObject.svg.import b/addons/godot_tours/bubble/assets/icons/MiniObject.svg.import new file mode 100644 index 0000000..3039fb6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MiniObject.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1r8xotwdveq2" +path="res://.godot/imported/MiniObject.svg-4652be681773b9ed5f35e80648a95410.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MiniObject.svg" +dest_files=["res://.godot/imported/MiniObject.svg-4652be681773b9ed5f35e80648a95410.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MirrorX.svg b/addons/godot_tours/bubble/assets/icons/MirrorX.svg new file mode 100644 index 0000000..11572ac --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MirrorX.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MirrorX.svg.import b/addons/godot_tours/bubble/assets/icons/MirrorX.svg.import new file mode 100644 index 0000000..fb54b77 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MirrorX.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsvgs655fyvp5" +path="res://.godot/imported/MirrorX.svg-0c4d8d43e8bedbc09d381b37b8d7feae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MirrorX.svg" +dest_files=["res://.godot/imported/MirrorX.svg-0c4d8d43e8bedbc09d381b37b8d7feae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MirrorY.svg b/addons/godot_tours/bubble/assets/icons/MirrorY.svg new file mode 100644 index 0000000..2ca5cbb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MirrorY.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MirrorY.svg.import b/addons/godot_tours/bubble/assets/icons/MirrorY.svg.import new file mode 100644 index 0000000..19c1478 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MirrorY.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://densyps51wv31" +path="res://.godot/imported/MirrorY.svg-c10cdca7682cbf9431e77279efb1ca53.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MirrorY.svg" +dest_files=["res://.godot/imported/MirrorY.svg-c10cdca7682cbf9431e77279efb1ca53.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MissingNode.svg b/addons/godot_tours/bubble/assets/icons/MissingNode.svg new file mode 100644 index 0000000..7343408 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MissingNode.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MissingNode.svg.import b/addons/godot_tours/bubble/assets/icons/MissingNode.svg.import new file mode 100644 index 0000000..eac1f5a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MissingNode.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs1t0gnpj0rh5" +path="res://.godot/imported/MissingNode.svg-1b69c1df196fbeb111f99378f2fe2341.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MissingNode.svg" +dest_files=["res://.godot/imported/MissingNode.svg-1b69c1df196fbeb111f99378f2fe2341.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MissingResource.svg b/addons/godot_tours/bubble/assets/icons/MissingResource.svg new file mode 100644 index 0000000..7343408 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MissingResource.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MissingResource.svg.import b/addons/godot_tours/bubble/assets/icons/MissingResource.svg.import new file mode 100644 index 0000000..d0df1f1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MissingResource.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5uok3raoj5mk" +path="res://.godot/imported/MissingResource.svg-d61e12b155acf1ebde7abda5e5a21395.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MissingResource.svg" +dest_files=["res://.godot/imported/MissingResource.svg-d61e12b155acf1ebde7abda5e5a21395.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Mouse.svg b/addons/godot_tours/bubble/assets/icons/Mouse.svg new file mode 100644 index 0000000..cc144ea --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Mouse.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Mouse.svg.import b/addons/godot_tours/bubble/assets/icons/Mouse.svg.import new file mode 100644 index 0000000..38d4373 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Mouse.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwnis82u07ysc" +path="res://.godot/imported/Mouse.svg-776cfe771edd467fd4ee9fbaaafc87bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Mouse.svg" +dest_files=["res://.godot/imported/Mouse.svg-776cfe771edd467fd4ee9fbaaafc87bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MoveDown.svg b/addons/godot_tours/bubble/assets/icons/MoveDown.svg new file mode 100644 index 0000000..0a91867 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MoveDown.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MoveDown.svg.import b/addons/godot_tours/bubble/assets/icons/MoveDown.svg.import new file mode 100644 index 0000000..852af2b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MoveDown.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckyxjtll8beec" +path="res://.godot/imported/MoveDown.svg-c17892d17a230c33ff18e826bda45be0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MoveDown.svg" +dest_files=["res://.godot/imported/MoveDown.svg-c17892d17a230c33ff18e826bda45be0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MoveLeft.svg b/addons/godot_tours/bubble/assets/icons/MoveLeft.svg new file mode 100644 index 0000000..e1d30bc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MoveLeft.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MoveLeft.svg.import b/addons/godot_tours/bubble/assets/icons/MoveLeft.svg.import new file mode 100644 index 0000000..21770d3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MoveLeft.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chkt3cwt6srp" +path="res://.godot/imported/MoveLeft.svg-6ca2afa470585bae867a8bff72ab4432.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MoveLeft.svg" +dest_files=["res://.godot/imported/MoveLeft.svg-6ca2afa470585bae867a8bff72ab4432.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MovePoint.svg b/addons/godot_tours/bubble/assets/icons/MovePoint.svg new file mode 100644 index 0000000..2da6a22 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MovePoint.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MovePoint.svg.import b/addons/godot_tours/bubble/assets/icons/MovePoint.svg.import new file mode 100644 index 0000000..1afc3d9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MovePoint.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1h7hmyogcolh" +path="res://.godot/imported/MovePoint.svg-9736b11ce8d7903b92a660be57e1fdda.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MovePoint.svg" +dest_files=["res://.godot/imported/MovePoint.svg-9736b11ce8d7903b92a660be57e1fdda.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MoveRight.svg b/addons/godot_tours/bubble/assets/icons/MoveRight.svg new file mode 100644 index 0000000..8ecc793 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MoveRight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MoveRight.svg.import b/addons/godot_tours/bubble/assets/icons/MoveRight.svg.import new file mode 100644 index 0000000..abbaada --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MoveRight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp5iagv5kmjt" +path="res://.godot/imported/MoveRight.svg-5fdb45cff9557108b86c99abc2e5c3d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MoveRight.svg" +dest_files=["res://.godot/imported/MoveRight.svg-5fdb45cff9557108b86c99abc2e5c3d0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MoveUp.svg b/addons/godot_tours/bubble/assets/icons/MoveUp.svg new file mode 100644 index 0000000..d6ebf05 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MoveUp.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MoveUp.svg.import b/addons/godot_tours/bubble/assets/icons/MoveUp.svg.import new file mode 100644 index 0000000..d19a328 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MoveUp.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cclqfjtwg2tel" +path="res://.godot/imported/MoveUp.svg-b99828d128411fd7c267423ace634bcb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MoveUp.svg" +dest_files=["res://.godot/imported/MoveUp.svg-b99828d128411fd7c267423ace634bcb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MultiMesh.svg b/addons/godot_tours/bubble/assets/icons/MultiMesh.svg new file mode 100644 index 0000000..23c26c7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MultiMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MultiMesh.svg.import b/addons/godot_tours/bubble/assets/icons/MultiMesh.svg.import new file mode 100644 index 0000000..d43ddc8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MultiMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfikhe2kjoy8x" +path="res://.godot/imported/MultiMesh.svg-b3ad5d844e2d90655e2463f8e653b402.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MultiMesh.svg" +dest_files=["res://.godot/imported/MultiMesh.svg-b3ad5d844e2d90655e2463f8e653b402.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MultiMeshInstance2D.svg b/addons/godot_tours/bubble/assets/icons/MultiMeshInstance2D.svg new file mode 100644 index 0000000..9cd07c2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MultiMeshInstance2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MultiMeshInstance2D.svg.import b/addons/godot_tours/bubble/assets/icons/MultiMeshInstance2D.svg.import new file mode 100644 index 0000000..8f4fba4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MultiMeshInstance2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coom3de7mlm6n" +path="res://.godot/imported/MultiMeshInstance2D.svg-3955b1c438d81d8684f2179d8a00e8d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MultiMeshInstance2D.svg" +dest_files=["res://.godot/imported/MultiMeshInstance2D.svg-3955b1c438d81d8684f2179d8a00e8d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MultiMeshInstance3D.svg b/addons/godot_tours/bubble/assets/icons/MultiMeshInstance3D.svg new file mode 100644 index 0000000..85f515d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MultiMeshInstance3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MultiMeshInstance3D.svg.import b/addons/godot_tours/bubble/assets/icons/MultiMeshInstance3D.svg.import new file mode 100644 index 0000000..2cbf9f8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MultiMeshInstance3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dscaqxuy482kp" +path="res://.godot/imported/MultiMeshInstance3D.svg-063608d5813a05a8326f5866782e84d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MultiMeshInstance3D.svg" +dest_files=["res://.godot/imported/MultiMeshInstance3D.svg-063608d5813a05a8326f5866782e84d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MultiplayerSpawner.svg b/addons/godot_tours/bubble/assets/icons/MultiplayerSpawner.svg new file mode 100644 index 0000000..05bff54 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MultiplayerSpawner.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MultiplayerSpawner.svg.import b/addons/godot_tours/bubble/assets/icons/MultiplayerSpawner.svg.import new file mode 100644 index 0000000..0b00e46 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MultiplayerSpawner.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co8mwtebdgdxn" +path="res://.godot/imported/MultiplayerSpawner.svg-9c4230986efcc278d379cd881a89dba5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MultiplayerSpawner.svg" +dest_files=["res://.godot/imported/MultiplayerSpawner.svg-9c4230986efcc278d379cd881a89dba5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/MultiplayerSynchronizer.svg b/addons/godot_tours/bubble/assets/icons/MultiplayerSynchronizer.svg new file mode 100644 index 0000000..072f625 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MultiplayerSynchronizer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/MultiplayerSynchronizer.svg.import b/addons/godot_tours/bubble/assets/icons/MultiplayerSynchronizer.svg.import new file mode 100644 index 0000000..0632026 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/MultiplayerSynchronizer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b73awkab1sord" +path="res://.godot/imported/MultiplayerSynchronizer.svg-896ed82e1cf2024cea30fe5232fdd3d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/MultiplayerSynchronizer.svg" +dest_files=["res://.godot/imported/MultiplayerSynchronizer.svg-896ed82e1cf2024cea30fe5232fdd3d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NavigationAgent2D.svg b/addons/godot_tours/bubble/assets/icons/NavigationAgent2D.svg new file mode 100644 index 0000000..ad11096 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationAgent2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NavigationAgent2D.svg.import b/addons/godot_tours/bubble/assets/icons/NavigationAgent2D.svg.import new file mode 100644 index 0000000..cb3ce6f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationAgent2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cplngqqvvhbck" +path="res://.godot/imported/NavigationAgent2D.svg-981297488c67c25e3caea3b20c1a66a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NavigationAgent2D.svg" +dest_files=["res://.godot/imported/NavigationAgent2D.svg-981297488c67c25e3caea3b20c1a66a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NavigationAgent3D.svg b/addons/godot_tours/bubble/assets/icons/NavigationAgent3D.svg new file mode 100644 index 0000000..6f88761 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationAgent3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NavigationAgent3D.svg.import b/addons/godot_tours/bubble/assets/icons/NavigationAgent3D.svg.import new file mode 100644 index 0000000..61b8e3a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationAgent3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn0f4vkurb1mw" +path="res://.godot/imported/NavigationAgent3D.svg-bb4b66fde42e31b2a48e53bbc2d7d2b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NavigationAgent3D.svg" +dest_files=["res://.godot/imported/NavigationAgent3D.svg-bb4b66fde42e31b2a48e53bbc2d7d2b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NavigationLink2D.svg b/addons/godot_tours/bubble/assets/icons/NavigationLink2D.svg new file mode 100644 index 0000000..9b7b985 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationLink2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NavigationLink2D.svg.import b/addons/godot_tours/bubble/assets/icons/NavigationLink2D.svg.import new file mode 100644 index 0000000..5eba07f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationLink2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ogy8a80xv8ua" +path="res://.godot/imported/NavigationLink2D.svg-e8630d193992a332d6c40aea273bf19f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NavigationLink2D.svg" +dest_files=["res://.godot/imported/NavigationLink2D.svg-e8630d193992a332d6c40aea273bf19f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NavigationLink3D.svg b/addons/godot_tours/bubble/assets/icons/NavigationLink3D.svg new file mode 100644 index 0000000..9115b8f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationLink3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NavigationLink3D.svg.import b/addons/godot_tours/bubble/assets/icons/NavigationLink3D.svg.import new file mode 100644 index 0000000..664113c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationLink3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byn8oipup708m" +path="res://.godot/imported/NavigationLink3D.svg-11290644c78030937a82087357a033ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NavigationLink3D.svg" +dest_files=["res://.godot/imported/NavigationLink3D.svg-11290644c78030937a82087357a033ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NavigationMesh.svg b/addons/godot_tours/bubble/assets/icons/NavigationMesh.svg new file mode 100644 index 0000000..c5f1659 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NavigationMesh.svg.import b/addons/godot_tours/bubble/assets/icons/NavigationMesh.svg.import new file mode 100644 index 0000000..d56c5db --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://msqkl16mx36v" +path="res://.godot/imported/NavigationMesh.svg-9af26f892702a74e13c0fed6b2b28ecf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NavigationMesh.svg" +dest_files=["res://.godot/imported/NavigationMesh.svg-9af26f892702a74e13c0fed6b2b28ecf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NavigationObstacle2D.svg b/addons/godot_tours/bubble/assets/icons/NavigationObstacle2D.svg new file mode 100644 index 0000000..e47a1f2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationObstacle2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NavigationObstacle2D.svg.import b/addons/godot_tours/bubble/assets/icons/NavigationObstacle2D.svg.import new file mode 100644 index 0000000..df5452f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationObstacle2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1ntdr5kq4yms" +path="res://.godot/imported/NavigationObstacle2D.svg-2fae668ac414800e86e007dd1a1edc35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NavigationObstacle2D.svg" +dest_files=["res://.godot/imported/NavigationObstacle2D.svg-2fae668ac414800e86e007dd1a1edc35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NavigationObstacle3D.svg b/addons/godot_tours/bubble/assets/icons/NavigationObstacle3D.svg new file mode 100644 index 0000000..52080bf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationObstacle3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NavigationObstacle3D.svg.import b/addons/godot_tours/bubble/assets/icons/NavigationObstacle3D.svg.import new file mode 100644 index 0000000..58bdfc3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationObstacle3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl2ry5oij7wj8" +path="res://.godot/imported/NavigationObstacle3D.svg-6dcfcdb0ea08927c00eeaaf2b7da45d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NavigationObstacle3D.svg" +dest_files=["res://.godot/imported/NavigationObstacle3D.svg-6dcfcdb0ea08927c00eeaaf2b7da45d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NavigationPolygon.svg b/addons/godot_tours/bubble/assets/icons/NavigationPolygon.svg new file mode 100644 index 0000000..c120b4b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationPolygon.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NavigationPolygon.svg.import b/addons/godot_tours/bubble/assets/icons/NavigationPolygon.svg.import new file mode 100644 index 0000000..c5aec1b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationPolygon.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r18rw32y1sbq" +path="res://.godot/imported/NavigationPolygon.svg-d64a2ce6d812d27c3a83af057723777c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NavigationPolygon.svg" +dest_files=["res://.godot/imported/NavigationPolygon.svg-d64a2ce6d812d27c3a83af057723777c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NavigationRegion2D.svg b/addons/godot_tours/bubble/assets/icons/NavigationRegion2D.svg new file mode 100644 index 0000000..bbd9f12 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationRegion2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NavigationRegion2D.svg.import b/addons/godot_tours/bubble/assets/icons/NavigationRegion2D.svg.import new file mode 100644 index 0000000..6cc777b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationRegion2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbofk76670t60" +path="res://.godot/imported/NavigationRegion2D.svg-6e2882e477f0ba18b7f08bf20603c43c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NavigationRegion2D.svg" +dest_files=["res://.godot/imported/NavigationRegion2D.svg-6e2882e477f0ba18b7f08bf20603c43c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NavigationRegion3D.svg b/addons/godot_tours/bubble/assets/icons/NavigationRegion3D.svg new file mode 100644 index 0000000..34b2e98 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationRegion3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NavigationRegion3D.svg.import b/addons/godot_tours/bubble/assets/icons/NavigationRegion3D.svg.import new file mode 100644 index 0000000..65b6b5d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NavigationRegion3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chsmrngxemghv" +path="res://.godot/imported/NavigationRegion3D.svg-652fd2671e317ecbe9f6b23daceee722.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NavigationRegion3D.svg" +dest_files=["res://.godot/imported/NavigationRegion3D.svg-652fd2671e317ecbe9f6b23daceee722.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/New.svg b/addons/godot_tours/bubble/assets/icons/New.svg new file mode 100644 index 0000000..99d74ab --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/New.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/New.svg.import b/addons/godot_tours/bubble/assets/icons/New.svg.import new file mode 100644 index 0000000..503922d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/New.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4scvt8xcg24q" +path="res://.godot/imported/New.svg-078ce51a31c0f4dc8fb8424e69b7df0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/New.svg" +dest_files=["res://.godot/imported/New.svg-078ce51a31c0f4dc8fb8424e69b7df0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NewKey.svg b/addons/godot_tours/bubble/assets/icons/NewKey.svg new file mode 100644 index 0000000..cc7e7aa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NewKey.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NewKey.svg.import b/addons/godot_tours/bubble/assets/icons/NewKey.svg.import new file mode 100644 index 0000000..b1f4c17 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NewKey.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3pb33run7k0m" +path="res://.godot/imported/NewKey.svg-ee7e3c82a15697111b10e23b01b41e15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NewKey.svg" +dest_files=["res://.godot/imported/NewKey.svg-ee7e3c82a15697111b10e23b01b41e15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NewRoot.svg b/addons/godot_tours/bubble/assets/icons/NewRoot.svg new file mode 100644 index 0000000..66c5b61 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NewRoot.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NewRoot.svg.import b/addons/godot_tours/bubble/assets/icons/NewRoot.svg.import new file mode 100644 index 0000000..56262f4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NewRoot.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpj0ob2vupu87" +path="res://.godot/imported/NewRoot.svg-12f453a06afd7ee4a957251b4ea2c2ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NewRoot.svg" +dest_files=["res://.godot/imported/NewRoot.svg-12f453a06afd7ee4a957251b4ea2c2ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Nil.svg b/addons/godot_tours/bubble/assets/icons/Nil.svg new file mode 100644 index 0000000..32a6ebc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Nil.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Nil.svg.import b/addons/godot_tours/bubble/assets/icons/Nil.svg.import new file mode 100644 index 0000000..2699e11 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Nil.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4g5k1crjm78r" +path="res://.godot/imported/Nil.svg-1b0f500ba07ad3d7240fde396137220f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Nil.svg" +dest_files=["res://.godot/imported/Nil.svg-1b0f500ba07ad3d7240fde396137220f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NinePatchRect.svg b/addons/godot_tours/bubble/assets/icons/NinePatchRect.svg new file mode 100644 index 0000000..18b9f3b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NinePatchRect.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NinePatchRect.svg.import b/addons/godot_tours/bubble/assets/icons/NinePatchRect.svg.import new file mode 100644 index 0000000..6f0ce7b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NinePatchRect.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx5x83pcwuand" +path="res://.godot/imported/NinePatchRect.svg-215acb2afee8f2cc05944f038736ddbf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NinePatchRect.svg" +dest_files=["res://.godot/imported/NinePatchRect.svg-215acb2afee8f2cc05944f038736ddbf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Node.svg b/addons/godot_tours/bubble/assets/icons/Node.svg new file mode 100644 index 0000000..faa87ee --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Node.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Node.svg.import b/addons/godot_tours/bubble/assets/icons/Node.svg.import new file mode 100644 index 0000000..0e37284 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Node.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dym1fqh2w4230" +path="res://.godot/imported/Node.svg-eba816e734dc32c015f4da1b5a30422e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Node.svg" +dest_files=["res://.godot/imported/Node.svg-eba816e734dc32c015f4da1b5a30422e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Node2D.svg b/addons/godot_tours/bubble/assets/icons/Node2D.svg new file mode 100644 index 0000000..09dbb82 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Node2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Node2D.svg.import b/addons/godot_tours/bubble/assets/icons/Node2D.svg.import new file mode 100644 index 0000000..7e0cd6d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Node2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8elg80msxeyk" +path="res://.godot/imported/Node2D.svg-81af64505a966273739cebddac2816ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Node2D.svg" +dest_files=["res://.godot/imported/Node2D.svg-81af64505a966273739cebddac2816ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Node3D.svg b/addons/godot_tours/bubble/assets/icons/Node3D.svg new file mode 100644 index 0000000..10de207 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Node3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Node3D.svg.import b/addons/godot_tours/bubble/assets/icons/Node3D.svg.import new file mode 100644 index 0000000..704e437 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Node3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgij1ybclplmr" +path="res://.godot/imported/Node3D.svg-9f585f073ddbe342dc171584a9091267.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Node3D.svg" +dest_files=["res://.godot/imported/Node3D.svg-9f585f073ddbe342dc171584a9091267.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NodeDisabled.svg b/addons/godot_tours/bubble/assets/icons/NodeDisabled.svg new file mode 100644 index 0000000..68a7407 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NodeDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/NodeDisabled.svg.import new file mode 100644 index 0000000..21fc46c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nyqgwynbi86h" +path="res://.godot/imported/NodeDisabled.svg-d0193cd902e8e43154d0c276952ce913.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NodeDisabled.svg" +dest_files=["res://.godot/imported/NodeDisabled.svg-d0193cd902e8e43154d0c276952ce913.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NodeInfo.svg b/addons/godot_tours/bubble/assets/icons/NodeInfo.svg new file mode 100644 index 0000000..732bccf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeInfo.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NodeInfo.svg.import b/addons/godot_tours/bubble/assets/icons/NodeInfo.svg.import new file mode 100644 index 0000000..265c28d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeInfo.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bthnrccnbdrnk" +path="res://.godot/imported/NodeInfo.svg-f8728c23c085f970ade252515fd01657.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NodeInfo.svg" +dest_files=["res://.godot/imported/NodeInfo.svg-f8728c23c085f970ade252515fd01657.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NodePath.svg b/addons/godot_tours/bubble/assets/icons/NodePath.svg new file mode 100644 index 0000000..2d31533 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodePath.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NodePath.svg.import b/addons/godot_tours/bubble/assets/icons/NodePath.svg.import new file mode 100644 index 0000000..0aeb292 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodePath.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b78wntj7rke6m" +path="res://.godot/imported/NodePath.svg-7933a8a27048ed6a1ab1c4c93ba245d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NodePath.svg" +dest_files=["res://.godot/imported/NodePath.svg-7933a8a27048ed6a1ab1c4c93ba245d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NodeWarning.svg b/addons/godot_tours/bubble/assets/icons/NodeWarning.svg new file mode 100644 index 0000000..1f7b900 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeWarning.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NodeWarning.svg.import b/addons/godot_tours/bubble/assets/icons/NodeWarning.svg.import new file mode 100644 index 0000000..97bc3e4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeWarning.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ifstrx4wkcer" +path="res://.godot/imported/NodeWarning.svg-e5b1fed74e7116310cb2129e7b5feb62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NodeWarning.svg" +dest_files=["res://.godot/imported/NodeWarning.svg-e5b1fed74e7116310cb2129e7b5feb62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NodeWarnings2.svg b/addons/godot_tours/bubble/assets/icons/NodeWarnings2.svg new file mode 100644 index 0000000..ea2b3b0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeWarnings2.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NodeWarnings2.svg.import b/addons/godot_tours/bubble/assets/icons/NodeWarnings2.svg.import new file mode 100644 index 0000000..01bbd73 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeWarnings2.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qn8pugurkwsl" +path="res://.godot/imported/NodeWarnings2.svg-d7c82d0a4a325a9fd7e85c73b555cf18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NodeWarnings2.svg" +dest_files=["res://.godot/imported/NodeWarnings2.svg-d7c82d0a4a325a9fd7e85c73b555cf18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NodeWarnings3.svg b/addons/godot_tours/bubble/assets/icons/NodeWarnings3.svg new file mode 100644 index 0000000..b6804d5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeWarnings3.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NodeWarnings3.svg.import b/addons/godot_tours/bubble/assets/icons/NodeWarnings3.svg.import new file mode 100644 index 0000000..9a35117 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeWarnings3.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oywj76c8tb85" +path="res://.godot/imported/NodeWarnings3.svg-1b6060216d2b7dc6b83b4b24f7f87bae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NodeWarnings3.svg" +dest_files=["res://.godot/imported/NodeWarnings3.svg-1b6060216d2b7dc6b83b4b24f7f87bae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NodeWarnings4Plus.svg b/addons/godot_tours/bubble/assets/icons/NodeWarnings4Plus.svg new file mode 100644 index 0000000..4a7afe5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeWarnings4Plus.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NodeWarnings4Plus.svg.import b/addons/godot_tours/bubble/assets/icons/NodeWarnings4Plus.svg.import new file mode 100644 index 0000000..0c8662b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NodeWarnings4Plus.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm215jxg717qh" +path="res://.godot/imported/NodeWarnings4Plus.svg-7cd8594f5cd3f5eaa464c605f9c4bbba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NodeWarnings4Plus.svg" +dest_files=["res://.godot/imported/NodeWarnings4Plus.svg-7cd8594f5cd3f5eaa464c605f9c4bbba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NoiseTexture2D.svg b/addons/godot_tours/bubble/assets/icons/NoiseTexture2D.svg new file mode 100644 index 0000000..0c22cfd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NoiseTexture2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NoiseTexture2D.svg.import b/addons/godot_tours/bubble/assets/icons/NoiseTexture2D.svg.import new file mode 100644 index 0000000..29b1a74 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NoiseTexture2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqg1clu1362eg" +path="res://.godot/imported/NoiseTexture2D.svg-20f251a5ceb1a0620bb69976b7f67215.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NoiseTexture2D.svg" +dest_files=["res://.godot/imported/NoiseTexture2D.svg-20f251a5ceb1a0620bb69976b7f67215.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NoiseTexture3D.svg b/addons/godot_tours/bubble/assets/icons/NoiseTexture3D.svg new file mode 100644 index 0000000..92da633 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NoiseTexture3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NoiseTexture3D.svg.import b/addons/godot_tours/bubble/assets/icons/NoiseTexture3D.svg.import new file mode 100644 index 0000000..5fce142 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NoiseTexture3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d35lgwe4rvtmi" +path="res://.godot/imported/NoiseTexture3D.svg-ae6fb39ac8c24bf18fa5e9553aae8d68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NoiseTexture3D.svg" +dest_files=["res://.godot/imported/NoiseTexture3D.svg-ae6fb39ac8c24bf18fa5e9553aae8d68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NonFavorite.svg b/addons/godot_tours/bubble/assets/icons/NonFavorite.svg new file mode 100644 index 0000000..dc52338 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NonFavorite.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NonFavorite.svg.import b/addons/godot_tours/bubble/assets/icons/NonFavorite.svg.import new file mode 100644 index 0000000..8f30207 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NonFavorite.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcqbuuthe65i3" +path="res://.godot/imported/NonFavorite.svg-3d2d7137e464042d3e8170c7f5465ffb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NonFavorite.svg" +dest_files=["res://.godot/imported/NonFavorite.svg-3d2d7137e464042d3e8170c7f5465ffb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Notification.svg b/addons/godot_tours/bubble/assets/icons/Notification.svg new file mode 100644 index 0000000..5849a60 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Notification.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Notification.svg.import b/addons/godot_tours/bubble/assets/icons/Notification.svg.import new file mode 100644 index 0000000..1e81440 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Notification.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duxl5trd2an67" +path="res://.godot/imported/Notification.svg-a164a278de86ea97cb7a8d64c3e8d014.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Notification.svg" +dest_files=["res://.godot/imported/Notification.svg-a164a278de86ea97cb7a8d64c3e8d014.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/NotificationDisabled.svg b/addons/godot_tours/bubble/assets/icons/NotificationDisabled.svg new file mode 100644 index 0000000..f81be94 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NotificationDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/NotificationDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/NotificationDisabled.svg.import new file mode 100644 index 0000000..cc9a6ee --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/NotificationDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdqx82di387ee" +path="res://.godot/imported/NotificationDisabled.svg-c5bccc37b0d829bdca56809b2ccb88b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/NotificationDisabled.svg" +dest_files=["res://.godot/imported/NotificationDisabled.svg-c5bccc37b0d829bdca56809b2ccb88b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ORMMaterial3D.svg b/addons/godot_tours/bubble/assets/icons/ORMMaterial3D.svg new file mode 100644 index 0000000..a70c44f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ORMMaterial3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ORMMaterial3D.svg.import b/addons/godot_tours/bubble/assets/icons/ORMMaterial3D.svg.import new file mode 100644 index 0000000..ce10bed --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ORMMaterial3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc6ofsto4sode" +path="res://.godot/imported/ORMMaterial3D.svg-0d30403df0a66348ad17691e78af9a97.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ORMMaterial3D.svg" +dest_files=["res://.godot/imported/ORMMaterial3D.svg-0d30403df0a66348ad17691e78af9a97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Object.svg b/addons/godot_tours/bubble/assets/icons/Object.svg new file mode 100644 index 0000000..2578fbe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Object.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Object.svg.import b/addons/godot_tours/bubble/assets/icons/Object.svg.import new file mode 100644 index 0000000..d3f1868 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Object.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djdfsyk0is3vy" +path="res://.godot/imported/Object.svg-169587558b9c85d83e98969e50ac48e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Object.svg" +dest_files=["res://.godot/imported/Object.svg-169587558b9c85d83e98969e50ac48e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ObjectDisabled.svg b/addons/godot_tours/bubble/assets/icons/ObjectDisabled.svg new file mode 100644 index 0000000..7388a97 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ObjectDisabled.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ObjectDisabled.svg.import b/addons/godot_tours/bubble/assets/icons/ObjectDisabled.svg.import new file mode 100644 index 0000000..a464b31 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ObjectDisabled.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy0c8v4rru4t" +path="res://.godot/imported/ObjectDisabled.svg-2339ceb4b575ecce5cf67d6ccf92f997.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ObjectDisabled.svg" +dest_files=["res://.godot/imported/ObjectDisabled.svg-2339ceb4b575ecce5cf67d6ccf92f997.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Occluder3D.svg b/addons/godot_tours/bubble/assets/icons/Occluder3D.svg new file mode 100644 index 0000000..5cdcb89 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Occluder3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Occluder3D.svg.import b/addons/godot_tours/bubble/assets/icons/Occluder3D.svg.import new file mode 100644 index 0000000..d2e190e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Occluder3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd4iipb78vo0h" +path="res://.godot/imported/Occluder3D.svg-a1a5ccc62f83d35c78035b24a668e9ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Occluder3D.svg" +dest_files=["res://.godot/imported/Occluder3D.svg-a1a5ccc62f83d35c78035b24a668e9ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/OccluderInstance3D.svg b/addons/godot_tours/bubble/assets/icons/OccluderInstance3D.svg new file mode 100644 index 0000000..d3064e7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OccluderInstance3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/OccluderInstance3D.svg.import b/addons/godot_tours/bubble/assets/icons/OccluderInstance3D.svg.import new file mode 100644 index 0000000..1714a7a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OccluderInstance3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1ir33wqlgmkb" +path="res://.godot/imported/OccluderInstance3D.svg-45c317eb45f4e58736cc3b532912ccb2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/OccluderInstance3D.svg" +dest_files=["res://.godot/imported/OccluderInstance3D.svg-45c317eb45f4e58736cc3b532912ccb2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/OccluderPolygon2D.svg b/addons/godot_tours/bubble/assets/icons/OccluderPolygon2D.svg new file mode 100644 index 0000000..e30590b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OccluderPolygon2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/OccluderPolygon2D.svg.import b/addons/godot_tours/bubble/assets/icons/OccluderPolygon2D.svg.import new file mode 100644 index 0000000..8882b9d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OccluderPolygon2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdnne8enfnkrx" +path="res://.godot/imported/OccluderPolygon2D.svg-0c2d894e82663d532cceaa12d296a7a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/OccluderPolygon2D.svg" +dest_files=["res://.godot/imported/OccluderPolygon2D.svg-0c2d894e82663d532cceaa12d296a7a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/OmniLight3D.svg b/addons/godot_tours/bubble/assets/icons/OmniLight3D.svg new file mode 100644 index 0000000..b9f4d96 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OmniLight3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/OmniLight3D.svg.import b/addons/godot_tours/bubble/assets/icons/OmniLight3D.svg.import new file mode 100644 index 0000000..f2e0c82 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OmniLight3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q7vja3cpt2ud" +path="res://.godot/imported/OmniLight3D.svg-78ca4767bc44475743f223b92f97e517.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/OmniLight3D.svg" +dest_files=["res://.godot/imported/OmniLight3D.svg-78ca4767bc44475743f223b92f97e517.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/OneWayTile.svg b/addons/godot_tours/bubble/assets/icons/OneWayTile.svg new file mode 100644 index 0000000..a095ce9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OneWayTile.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/OneWayTile.svg.import b/addons/godot_tours/bubble/assets/icons/OneWayTile.svg.import new file mode 100644 index 0000000..8a7e96e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OneWayTile.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oy4feq8aeskp" +path="res://.godot/imported/OneWayTile.svg-c4e969aed01daa24755483e99e718765.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/OneWayTile.svg" +dest_files=["res://.godot/imported/OneWayTile.svg-c4e969aed01daa24755483e99e718765.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Onion.svg b/addons/godot_tours/bubble/assets/icons/Onion.svg new file mode 100644 index 0000000..bbe66af --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Onion.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Onion.svg.import b/addons/godot_tours/bubble/assets/icons/Onion.svg.import new file mode 100644 index 0000000..2e1661b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Onion.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjjlofvtmwaal" +path="res://.godot/imported/Onion.svg-0f0f0b170205da0db9375c177247a12e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Onion.svg" +dest_files=["res://.godot/imported/Onion.svg-0f0f0b170205da0db9375c177247a12e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/OptionButton.svg b/addons/godot_tours/bubble/assets/icons/OptionButton.svg new file mode 100644 index 0000000..42abe88 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OptionButton.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/OptionButton.svg.import b/addons/godot_tours/bubble/assets/icons/OptionButton.svg.import new file mode 100644 index 0000000..b2fd4fb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OptionButton.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpll6htsd4op0" +path="res://.godot/imported/OptionButton.svg-378f609a7b1f21b044ffac3b6c2468a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/OptionButton.svg" +dest_files=["res://.godot/imported/OptionButton.svg-378f609a7b1f21b044ffac3b6c2468a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/OverbrightIndicator.svg b/addons/godot_tours/bubble/assets/icons/OverbrightIndicator.svg new file mode 100644 index 0000000..35ad59f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OverbrightIndicator.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/OverbrightIndicator.svg.import b/addons/godot_tours/bubble/assets/icons/OverbrightIndicator.svg.import new file mode 100644 index 0000000..6d9c922 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/OverbrightIndicator.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd1so40m1ku3q" +path="res://.godot/imported/OverbrightIndicator.svg-fa1683dff1ace0f1094cb9d1f4c80834.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/OverbrightIndicator.svg" +dest_files=["res://.godot/imported/OverbrightIndicator.svg-fa1683dff1ace0f1094cb9d1f4c80834.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Override.svg b/addons/godot_tours/bubble/assets/icons/Override.svg new file mode 100644 index 0000000..cfa9313 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Override.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Override.svg.import b/addons/godot_tours/bubble/assets/icons/Override.svg.import new file mode 100644 index 0000000..529e448 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Override.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvs4idwqa4qp3" +path="res://.godot/imported/Override.svg-6562fd7ae1fd211e77dd97ff640b35dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Override.svg" +dest_files=["res://.godot/imported/Override.svg-6562fd7ae1fd211e77dd97ff640b35dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PackedByteArray.svg b/addons/godot_tours/bubble/assets/icons/PackedByteArray.svg new file mode 100644 index 0000000..d7fa7fc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedByteArray.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PackedByteArray.svg.import b/addons/godot_tours/bubble/assets/icons/PackedByteArray.svg.import new file mode 100644 index 0000000..9bdeab8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedByteArray.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbfi1ybkqltla" +path="res://.godot/imported/PackedByteArray.svg-2fa323ee71b27a9474617134f07b8829.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PackedByteArray.svg" +dest_files=["res://.godot/imported/PackedByteArray.svg-2fa323ee71b27a9474617134f07b8829.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PackedColorArray.svg b/addons/godot_tours/bubble/assets/icons/PackedColorArray.svg new file mode 100644 index 0000000..9f9616e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedColorArray.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PackedColorArray.svg.import b/addons/godot_tours/bubble/assets/icons/PackedColorArray.svg.import new file mode 100644 index 0000000..33082ad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedColorArray.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtprt62lg3llh" +path="res://.godot/imported/PackedColorArray.svg-892648ecc827fd6a81a4655711e17899.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PackedColorArray.svg" +dest_files=["res://.godot/imported/PackedColorArray.svg-892648ecc827fd6a81a4655711e17899.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PackedDataContainer.svg b/addons/godot_tours/bubble/assets/icons/PackedDataContainer.svg new file mode 100644 index 0000000..12d3cfc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedDataContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PackedDataContainer.svg.import b/addons/godot_tours/bubble/assets/icons/PackedDataContainer.svg.import new file mode 100644 index 0000000..b10b6aa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedDataContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh1h8p4i6vc2a" +path="res://.godot/imported/PackedDataContainer.svg-1a282bc05b69348f09edb871d4d78851.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PackedDataContainer.svg" +dest_files=["res://.godot/imported/PackedDataContainer.svg-1a282bc05b69348f09edb871d4d78851.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PackedFloat32Array.svg b/addons/godot_tours/bubble/assets/icons/PackedFloat32Array.svg new file mode 100644 index 0000000..da6433f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedFloat32Array.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PackedFloat32Array.svg.import b/addons/godot_tours/bubble/assets/icons/PackedFloat32Array.svg.import new file mode 100644 index 0000000..ec60c4b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedFloat32Array.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0dstu0k6qj8t" +path="res://.godot/imported/PackedFloat32Array.svg-aa2758b7bf0b7178b1b4d83a620a1e71.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PackedFloat32Array.svg" +dest_files=["res://.godot/imported/PackedFloat32Array.svg-aa2758b7bf0b7178b1b4d83a620a1e71.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PackedFloat64Array.svg b/addons/godot_tours/bubble/assets/icons/PackedFloat64Array.svg new file mode 100644 index 0000000..da6433f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedFloat64Array.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PackedFloat64Array.svg.import b/addons/godot_tours/bubble/assets/icons/PackedFloat64Array.svg.import new file mode 100644 index 0000000..6e7c9b6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedFloat64Array.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://citq7mlhfdkxr" +path="res://.godot/imported/PackedFloat64Array.svg-261d8317245823b01785480970d5e15d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PackedFloat64Array.svg" +dest_files=["res://.godot/imported/PackedFloat64Array.svg-261d8317245823b01785480970d5e15d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PackedInt32Array.svg b/addons/godot_tours/bubble/assets/icons/PackedInt32Array.svg new file mode 100644 index 0000000..018fc23 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedInt32Array.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PackedInt32Array.svg.import b/addons/godot_tours/bubble/assets/icons/PackedInt32Array.svg.import new file mode 100644 index 0000000..654b22d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedInt32Array.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct1fc0g5hvy4k" +path="res://.godot/imported/PackedInt32Array.svg-ba04320f59d4f32cf7ea5cb6ca959bb8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PackedInt32Array.svg" +dest_files=["res://.godot/imported/PackedInt32Array.svg-ba04320f59d4f32cf7ea5cb6ca959bb8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PackedInt64Array.svg b/addons/godot_tours/bubble/assets/icons/PackedInt64Array.svg new file mode 100644 index 0000000..018fc23 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedInt64Array.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PackedInt64Array.svg.import b/addons/godot_tours/bubble/assets/icons/PackedInt64Array.svg.import new file mode 100644 index 0000000..8410342 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedInt64Array.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d6rgg3bjnnic" +path="res://.godot/imported/PackedInt64Array.svg-c4392e9f5e314c057f59ce1f7802eeeb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PackedInt64Array.svg" +dest_files=["res://.godot/imported/PackedInt64Array.svg-c4392e9f5e314c057f59ce1f7802eeeb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PackedScene.svg b/addons/godot_tours/bubble/assets/icons/PackedScene.svg new file mode 100644 index 0000000..935c159 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedScene.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PackedScene.svg.import b/addons/godot_tours/bubble/assets/icons/PackedScene.svg.import new file mode 100644 index 0000000..40b0ae1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedScene.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8kqnx4ubibxc" +path="res://.godot/imported/PackedScene.svg-9211e8d5ac08ff3d254516fdabb6c752.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PackedScene.svg" +dest_files=["res://.godot/imported/PackedScene.svg-9211e8d5ac08ff3d254516fdabb6c752.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PackedStringArray.svg b/addons/godot_tours/bubble/assets/icons/PackedStringArray.svg new file mode 100644 index 0000000..7d4b685 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedStringArray.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PackedStringArray.svg.import b/addons/godot_tours/bubble/assets/icons/PackedStringArray.svg.import new file mode 100644 index 0000000..ebab2ff --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedStringArray.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dst63sncqxwcc" +path="res://.godot/imported/PackedStringArray.svg-1112794342d5b7d93aa4debcd292c8c6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PackedStringArray.svg" +dest_files=["res://.godot/imported/PackedStringArray.svg-1112794342d5b7d93aa4debcd292c8c6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PackedVector2Array.svg b/addons/godot_tours/bubble/assets/icons/PackedVector2Array.svg new file mode 100644 index 0000000..bf502f4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedVector2Array.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PackedVector2Array.svg.import b/addons/godot_tours/bubble/assets/icons/PackedVector2Array.svg.import new file mode 100644 index 0000000..8baedad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedVector2Array.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3le1jvae7yra" +path="res://.godot/imported/PackedVector2Array.svg-21826a3c7739959c4bcdc5c835d72fa1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PackedVector2Array.svg" +dest_files=["res://.godot/imported/PackedVector2Array.svg-21826a3c7739959c4bcdc5c835d72fa1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PackedVector3Array.svg b/addons/godot_tours/bubble/assets/icons/PackedVector3Array.svg new file mode 100644 index 0000000..9f4df41 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedVector3Array.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PackedVector3Array.svg.import b/addons/godot_tours/bubble/assets/icons/PackedVector3Array.svg.import new file mode 100644 index 0000000..15187b6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PackedVector3Array.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d06r34levkqpl" +path="res://.godot/imported/PackedVector3Array.svg-922036693dd1c2f299c13c542115c6f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PackedVector3Array.svg" +dest_files=["res://.godot/imported/PackedVector3Array.svg-922036693dd1c2f299c13c542115c6f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PageFirst.svg b/addons/godot_tours/bubble/assets/icons/PageFirst.svg new file mode 100644 index 0000000..5908848 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PageFirst.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PageFirst.svg.import b/addons/godot_tours/bubble/assets/icons/PageFirst.svg.import new file mode 100644 index 0000000..b0adf1c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PageFirst.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbu2p55s4c5jx" +path="res://.godot/imported/PageFirst.svg-bf6f7080d664fc07a5afdcde154c54ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PageFirst.svg" +dest_files=["res://.godot/imported/PageFirst.svg-bf6f7080d664fc07a5afdcde154c54ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PageLast.svg b/addons/godot_tours/bubble/assets/icons/PageLast.svg new file mode 100644 index 0000000..fc154cf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PageLast.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PageLast.svg.import b/addons/godot_tours/bubble/assets/icons/PageLast.svg.import new file mode 100644 index 0000000..b3a54a4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PageLast.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3oc656j72eu" +path="res://.godot/imported/PageLast.svg-5431a32650fb6ccea73406842ba620fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PageLast.svg" +dest_files=["res://.godot/imported/PageLast.svg-5431a32650fb6ccea73406842ba620fa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PageNext.svg b/addons/godot_tours/bubble/assets/icons/PageNext.svg new file mode 100644 index 0000000..b76b808 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PageNext.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PageNext.svg.import b/addons/godot_tours/bubble/assets/icons/PageNext.svg.import new file mode 100644 index 0000000..81fbd9d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PageNext.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byuxeu0gwfaxl" +path="res://.godot/imported/PageNext.svg-3355dc624a35f99986d9de81a6fa5028.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PageNext.svg" +dest_files=["res://.godot/imported/PageNext.svg-3355dc624a35f99986d9de81a6fa5028.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PagePrevious.svg b/addons/godot_tours/bubble/assets/icons/PagePrevious.svg new file mode 100644 index 0000000..d83a4a9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PagePrevious.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PagePrevious.svg.import b/addons/godot_tours/bubble/assets/icons/PagePrevious.svg.import new file mode 100644 index 0000000..694d46c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PagePrevious.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh6ea7b0jf275" +path="res://.godot/imported/PagePrevious.svg-ab4637482202ff2c68888d733ef15b19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PagePrevious.svg" +dest_files=["res://.godot/imported/PagePrevious.svg-ab4637482202ff2c68888d733ef15b19.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Paint.svg b/addons/godot_tours/bubble/assets/icons/Paint.svg new file mode 100644 index 0000000..eb0c621 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Paint.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Paint.svg.import b/addons/godot_tours/bubble/assets/icons/Paint.svg.import new file mode 100644 index 0000000..4e56353 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Paint.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx0kr1x70mcvo" +path="res://.godot/imported/Paint.svg-c0a87b7f406752717374eed32b339892.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Paint.svg" +dest_files=["res://.godot/imported/Paint.svg-c0a87b7f406752717374eed32b339892.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Panel.svg b/addons/godot_tours/bubble/assets/icons/Panel.svg new file mode 100644 index 0000000..d39c1a8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panel.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Panel.svg.import b/addons/godot_tours/bubble/assets/icons/Panel.svg.import new file mode 100644 index 0000000..496d1f2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panel.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn3wkctppyt8t" +path="res://.godot/imported/Panel.svg-06990db13bfdea508af894e35bbcc183.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Panel.svg" +dest_files=["res://.godot/imported/Panel.svg-06990db13bfdea508af894e35bbcc183.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PanelContainer.svg b/addons/godot_tours/bubble/assets/icons/PanelContainer.svg new file mode 100644 index 0000000..7786778 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PanelContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PanelContainer.svg.import b/addons/godot_tours/bubble/assets/icons/PanelContainer.svg.import new file mode 100644 index 0000000..f9dc549 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PanelContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biseehh21oy2m" +path="res://.godot/imported/PanelContainer.svg-76a5a8c813ebebff9d4760965915a38f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PanelContainer.svg" +dest_files=["res://.godot/imported/PanelContainer.svg-76a5a8c813ebebff9d4760965915a38f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Panels1.svg b/addons/godot_tours/bubble/assets/icons/Panels1.svg new file mode 100644 index 0000000..a6fc65a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels1.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Panels1.svg.import b/addons/godot_tours/bubble/assets/icons/Panels1.svg.import new file mode 100644 index 0000000..c41422a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels1.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccbnmwnaeionf" +path="res://.godot/imported/Panels1.svg-91646e9e6120883f5918ba7d1ee0b228.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Panels1.svg" +dest_files=["res://.godot/imported/Panels1.svg-91646e9e6120883f5918ba7d1ee0b228.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Panels2.svg b/addons/godot_tours/bubble/assets/icons/Panels2.svg new file mode 100644 index 0000000..620a2c4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels2.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Panels2.svg.import b/addons/godot_tours/bubble/assets/icons/Panels2.svg.import new file mode 100644 index 0000000..012fe31 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels2.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://36we1o1j6esc" +path="res://.godot/imported/Panels2.svg-385b469bd845814b07368c64624f4dc3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Panels2.svg" +dest_files=["res://.godot/imported/Panels2.svg-385b469bd845814b07368c64624f4dc3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Panels2Alt.svg b/addons/godot_tours/bubble/assets/icons/Panels2Alt.svg new file mode 100644 index 0000000..8d76c78 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels2Alt.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Panels2Alt.svg.import b/addons/godot_tours/bubble/assets/icons/Panels2Alt.svg.import new file mode 100644 index 0000000..ae4b87c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels2Alt.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0xkcmjd2uicr" +path="res://.godot/imported/Panels2Alt.svg-450beff57a6edbdbc93c8f7210edf6ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Panels2Alt.svg" +dest_files=["res://.godot/imported/Panels2Alt.svg-450beff57a6edbdbc93c8f7210edf6ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Panels3.svg b/addons/godot_tours/bubble/assets/icons/Panels3.svg new file mode 100644 index 0000000..1155b5b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels3.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Panels3.svg.import b/addons/godot_tours/bubble/assets/icons/Panels3.svg.import new file mode 100644 index 0000000..6b6581c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels3.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clw5q77qtmho1" +path="res://.godot/imported/Panels3.svg-dc9f236fabb90c0d16fc3307d4383592.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Panels3.svg" +dest_files=["res://.godot/imported/Panels3.svg-dc9f236fabb90c0d16fc3307d4383592.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Panels3Alt.svg b/addons/godot_tours/bubble/assets/icons/Panels3Alt.svg new file mode 100644 index 0000000..3ab3b19 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels3Alt.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Panels3Alt.svg.import b/addons/godot_tours/bubble/assets/icons/Panels3Alt.svg.import new file mode 100644 index 0000000..718bd49 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels3Alt.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1xjuyn4ud7y5" +path="res://.godot/imported/Panels3Alt.svg-3762dd755850252e016775224c56af64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Panels3Alt.svg" +dest_files=["res://.godot/imported/Panels3Alt.svg-3762dd755850252e016775224c56af64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Panels4.svg b/addons/godot_tours/bubble/assets/icons/Panels4.svg new file mode 100644 index 0000000..3b12eae --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels4.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Panels4.svg.import b/addons/godot_tours/bubble/assets/icons/Panels4.svg.import new file mode 100644 index 0000000..d5d9b3d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Panels4.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2ypnr5ab36oe" +path="res://.godot/imported/Panels4.svg-151376f5db37d50b34074d3d2fd38288.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Panels4.svg" +dest_files=["res://.godot/imported/Panels4.svg-151376f5db37d50b34074d3d2fd38288.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PanoramaSkyMaterial.svg b/addons/godot_tours/bubble/assets/icons/PanoramaSkyMaterial.svg new file mode 100644 index 0000000..d230ba5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PanoramaSkyMaterial.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PanoramaSkyMaterial.svg.import b/addons/godot_tours/bubble/assets/icons/PanoramaSkyMaterial.svg.import new file mode 100644 index 0000000..a890483 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PanoramaSkyMaterial.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvu5risn225s" +path="res://.godot/imported/PanoramaSkyMaterial.svg-345a8fa0836136ab6523d8842bb16043.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PanoramaSkyMaterial.svg" +dest_files=["res://.godot/imported/PanoramaSkyMaterial.svg-345a8fa0836136ab6523d8842bb16043.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Parallax2D.svg b/addons/godot_tours/bubble/assets/icons/Parallax2D.svg new file mode 100644 index 0000000..8d41102 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Parallax2D.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/Parallax2D.svg.import b/addons/godot_tours/bubble/assets/icons/Parallax2D.svg.import new file mode 100644 index 0000000..83a2398 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Parallax2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6uvc07buyvj7" +path="res://.godot/imported/Parallax2D.svg-5765379464db63ef213438ebc70df8b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Parallax2D.svg" +dest_files=["res://.godot/imported/Parallax2D.svg-5765379464db63ef213438ebc70df8b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ParallaxBackground.svg b/addons/godot_tours/bubble/assets/icons/ParallaxBackground.svg new file mode 100644 index 0000000..d1badf5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ParallaxBackground.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ParallaxBackground.svg.import b/addons/godot_tours/bubble/assets/icons/ParallaxBackground.svg.import new file mode 100644 index 0000000..f764ee0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ParallaxBackground.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgif0xnwvg7p2" +path="res://.godot/imported/ParallaxBackground.svg-5cb8771f125f009cafecc22dec10611d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ParallaxBackground.svg" +dest_files=["res://.godot/imported/ParallaxBackground.svg-5cb8771f125f009cafecc22dec10611d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ParallaxLayer.svg b/addons/godot_tours/bubble/assets/icons/ParallaxLayer.svg new file mode 100644 index 0000000..06e6317 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ParallaxLayer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ParallaxLayer.svg.import b/addons/godot_tours/bubble/assets/icons/ParallaxLayer.svg.import new file mode 100644 index 0000000..5622445 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ParallaxLayer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://i817kp15h8a3" +path="res://.godot/imported/ParallaxLayer.svg-3f0c9ca00a9f8e442839f467b81a6f0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ParallaxLayer.svg" +dest_files=["res://.godot/imported/ParallaxLayer.svg-3f0c9ca00a9f8e442839f467b81a6f0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ParticleProcessMaterial.svg b/addons/godot_tours/bubble/assets/icons/ParticleProcessMaterial.svg new file mode 100644 index 0000000..530c459 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ParticleProcessMaterial.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ParticleProcessMaterial.svg.import b/addons/godot_tours/bubble/assets/icons/ParticleProcessMaterial.svg.import new file mode 100644 index 0000000..0592535 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ParticleProcessMaterial.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqyjd414fuudt" +path="res://.godot/imported/ParticleProcessMaterial.svg-432cfece46a62ff628ce248f6951dbe1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ParticleProcessMaterial.svg" +dest_files=["res://.godot/imported/ParticleProcessMaterial.svg-432cfece46a62ff628ce248f6951dbe1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Path2D.svg b/addons/godot_tours/bubble/assets/icons/Path2D.svg new file mode 100644 index 0000000..c8ae743 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Path2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Path2D.svg.import b/addons/godot_tours/bubble/assets/icons/Path2D.svg.import new file mode 100644 index 0000000..697f471 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Path2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oxda2ciy1yd3" +path="res://.godot/imported/Path2D.svg-d227849f3897531a499633ca9edd203d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Path2D.svg" +dest_files=["res://.godot/imported/Path2D.svg-d227849f3897531a499633ca9edd203d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Path3D.svg b/addons/godot_tours/bubble/assets/icons/Path3D.svg new file mode 100644 index 0000000..7d47e83 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Path3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Path3D.svg.import b/addons/godot_tours/bubble/assets/icons/Path3D.svg.import new file mode 100644 index 0000000..83f80fa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Path3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crxil3yhsbvk2" +path="res://.godot/imported/Path3D.svg-942ce8cbeb6ed824a343f5c9251a5fe3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Path3D.svg" +dest_files=["res://.godot/imported/Path3D.svg-942ce8cbeb6ed824a343f5c9251a5fe3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PathFollow2D.svg b/addons/godot_tours/bubble/assets/icons/PathFollow2D.svg new file mode 100644 index 0000000..ffb3fa3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PathFollow2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PathFollow2D.svg.import b/addons/godot_tours/bubble/assets/icons/PathFollow2D.svg.import new file mode 100644 index 0000000..ce4efed --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PathFollow2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dynhilgam17q2" +path="res://.godot/imported/PathFollow2D.svg-a6679aacec6283f30fc6892c6dcc16f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PathFollow2D.svg" +dest_files=["res://.godot/imported/PathFollow2D.svg-a6679aacec6283f30fc6892c6dcc16f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PathFollow3D.svg b/addons/godot_tours/bubble/assets/icons/PathFollow3D.svg new file mode 100644 index 0000000..5468d2d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PathFollow3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PathFollow3D.svg.import b/addons/godot_tours/bubble/assets/icons/PathFollow3D.svg.import new file mode 100644 index 0000000..8c5c946 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PathFollow3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci0wtxenlot0h" +path="res://.godot/imported/PathFollow3D.svg-7b5fd2851b65497c1ecb9deda09f1ab6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PathFollow3D.svg" +dest_files=["res://.godot/imported/PathFollow3D.svg-7b5fd2851b65497c1ecb9deda09f1ab6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Pause.svg b/addons/godot_tours/bubble/assets/icons/Pause.svg new file mode 100644 index 0000000..c97799f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Pause.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Pause.svg.import b/addons/godot_tours/bubble/assets/icons/Pause.svg.import new file mode 100644 index 0000000..ae2a527 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Pause.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c32u2j80m4a67" +path="res://.godot/imported/Pause.svg-ad3e2b5d28d094c25aff8ba2608389e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Pause.svg" +dest_files=["res://.godot/imported/Pause.svg-ad3e2b5d28d094c25aff8ba2608389e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Performance.svg b/addons/godot_tours/bubble/assets/icons/Performance.svg new file mode 100644 index 0000000..71af779 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Performance.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Performance.svg.import b/addons/godot_tours/bubble/assets/icons/Performance.svg.import new file mode 100644 index 0000000..047bd8c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Performance.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8nm76t8bll6j" +path="res://.godot/imported/Performance.svg-d197681e326164591e4a774d6c8aa6bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Performance.svg" +dest_files=["res://.godot/imported/Performance.svg-d197681e326164591e4a774d6c8aa6bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PhysicalBone2D.svg b/addons/godot_tours/bubble/assets/icons/PhysicalBone2D.svg new file mode 100644 index 0000000..b236d3e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PhysicalBone2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PhysicalBone2D.svg.import b/addons/godot_tours/bubble/assets/icons/PhysicalBone2D.svg.import new file mode 100644 index 0000000..f9717c3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PhysicalBone2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccvxg74xfedik" +path="res://.godot/imported/PhysicalBone2D.svg-5248279d63194d5fc30cca29a355be9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PhysicalBone2D.svg" +dest_files=["res://.godot/imported/PhysicalBone2D.svg-5248279d63194d5fc30cca29a355be9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PhysicalBone3D.svg b/addons/godot_tours/bubble/assets/icons/PhysicalBone3D.svg new file mode 100644 index 0000000..51b6077 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PhysicalBone3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PhysicalBone3D.svg.import b/addons/godot_tours/bubble/assets/icons/PhysicalBone3D.svg.import new file mode 100644 index 0000000..61476e8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PhysicalBone3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4dh1kcpxfy14" +path="res://.godot/imported/PhysicalBone3D.svg-18c7f08d9033ae08253165e448227eb6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PhysicalBone3D.svg" +dest_files=["res://.godot/imported/PhysicalBone3D.svg-18c7f08d9033ae08253165e448227eb6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PhysicalBoneSimulator3D.svg b/addons/godot_tours/bubble/assets/icons/PhysicalBoneSimulator3D.svg new file mode 100644 index 0000000..583c377 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PhysicalBoneSimulator3D.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/PhysicalBoneSimulator3D.svg.import b/addons/godot_tours/bubble/assets/icons/PhysicalBoneSimulator3D.svg.import new file mode 100644 index 0000000..0312263 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PhysicalBoneSimulator3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgar17f5rt3ii" +path="res://.godot/imported/PhysicalBoneSimulator3D.svg-055cd10a09ac22ae4a892371713b3243.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PhysicalBoneSimulator3D.svg" +dest_files=["res://.godot/imported/PhysicalBoneSimulator3D.svg-055cd10a09ac22ae4a892371713b3243.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PhysicalSkyMaterial.svg b/addons/godot_tours/bubble/assets/icons/PhysicalSkyMaterial.svg new file mode 100644 index 0000000..48763a5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PhysicalSkyMaterial.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PhysicalSkyMaterial.svg.import b/addons/godot_tours/bubble/assets/icons/PhysicalSkyMaterial.svg.import new file mode 100644 index 0000000..f491245 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PhysicalSkyMaterial.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqqyd5offvwsa" +path="res://.godot/imported/PhysicalSkyMaterial.svg-1ebb6876c09be4a93bf667cbbdfd984d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PhysicalSkyMaterial.svg" +dest_files=["res://.godot/imported/PhysicalSkyMaterial.svg-1ebb6876c09be4a93bf667cbbdfd984d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PhysicsMaterial.svg b/addons/godot_tours/bubble/assets/icons/PhysicsMaterial.svg new file mode 100644 index 0000000..bdb41a1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PhysicsMaterial.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PhysicsMaterial.svg.import b/addons/godot_tours/bubble/assets/icons/PhysicsMaterial.svg.import new file mode 100644 index 0000000..8a92a2d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PhysicsMaterial.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m1qw5snoi4qf" +path="res://.godot/imported/PhysicsMaterial.svg-44bfbb11f921126b5e9c9940dc67ab8c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PhysicsMaterial.svg" +dest_files=["res://.godot/imported/PhysicsMaterial.svg-44bfbb11f921126b5e9c9940dc67ab8c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PickerCursor.svg b/addons/godot_tours/bubble/assets/icons/PickerCursor.svg new file mode 100644 index 0000000..9754a8a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PickerCursor.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PickerCursor.svg.import b/addons/godot_tours/bubble/assets/icons/PickerCursor.svg.import new file mode 100644 index 0000000..824d96b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PickerCursor.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhk6h7edmyh37" +path="res://.godot/imported/PickerCursor.svg-77a4795640d6e5edcafdc50aad4c6df7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PickerCursor.svg" +dest_files=["res://.godot/imported/PickerCursor.svg-77a4795640d6e5edcafdc50aad4c6df7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PickerShapeCircle.svg b/addons/godot_tours/bubble/assets/icons/PickerShapeCircle.svg new file mode 100644 index 0000000..1f45259 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PickerShapeCircle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PickerShapeCircle.svg.import b/addons/godot_tours/bubble/assets/icons/PickerShapeCircle.svg.import new file mode 100644 index 0000000..125d465 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PickerShapeCircle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr2lredvmjgh1" +path="res://.godot/imported/PickerShapeCircle.svg-855a1250215ab25dac0f2c250623bf45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PickerShapeCircle.svg" +dest_files=["res://.godot/imported/PickerShapeCircle.svg-855a1250215ab25dac0f2c250623bf45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PickerShapeRectangle.svg b/addons/godot_tours/bubble/assets/icons/PickerShapeRectangle.svg new file mode 100644 index 0000000..4eb3357 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PickerShapeRectangle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PickerShapeRectangle.svg.import b/addons/godot_tours/bubble/assets/icons/PickerShapeRectangle.svg.import new file mode 100644 index 0000000..10d077e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PickerShapeRectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be68x0y8qjglb" +path="res://.godot/imported/PickerShapeRectangle.svg-6c3c6960d44cba2245b6f59fbf596ba0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PickerShapeRectangle.svg" +dest_files=["res://.godot/imported/PickerShapeRectangle.svg-6c3c6960d44cba2245b6f59fbf596ba0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PickerShapeRectangleWheel.svg b/addons/godot_tours/bubble/assets/icons/PickerShapeRectangleWheel.svg new file mode 100644 index 0000000..3b70538 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PickerShapeRectangleWheel.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PickerShapeRectangleWheel.svg.import b/addons/godot_tours/bubble/assets/icons/PickerShapeRectangleWheel.svg.import new file mode 100644 index 0000000..24906d2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PickerShapeRectangleWheel.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bonce7mmqhqxx" +path="res://.godot/imported/PickerShapeRectangleWheel.svg-532b4e4e81a4da525c8688ef75985be4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PickerShapeRectangleWheel.svg" +dest_files=["res://.godot/imported/PickerShapeRectangleWheel.svg-532b4e4e81a4da525c8688ef75985be4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Pin.svg b/addons/godot_tours/bubble/assets/icons/Pin.svg new file mode 100644 index 0000000..8e5935c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Pin.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Pin.svg.import b/addons/godot_tours/bubble/assets/icons/Pin.svg.import new file mode 100644 index 0000000..fc2f7a9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Pin.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l841hyihm76w" +path="res://.godot/imported/Pin.svg-e61890549cb2dfdb21391cbd74a5d61a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Pin.svg" +dest_files=["res://.godot/imported/Pin.svg-e61890549cb2dfdb21391cbd74a5d61a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PinJoint2D.svg b/addons/godot_tours/bubble/assets/icons/PinJoint2D.svg new file mode 100644 index 0000000..b84ec93 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PinJoint2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PinJoint2D.svg.import b/addons/godot_tours/bubble/assets/icons/PinJoint2D.svg.import new file mode 100644 index 0000000..59294fc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PinJoint2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq5bg8uck64l4" +path="res://.godot/imported/PinJoint2D.svg-6566027a0451a80babb91253fd240c82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PinJoint2D.svg" +dest_files=["res://.godot/imported/PinJoint2D.svg-6566027a0451a80babb91253fd240c82.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PinJoint3D.svg b/addons/godot_tours/bubble/assets/icons/PinJoint3D.svg new file mode 100644 index 0000000..ee36015 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PinJoint3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PinJoint3D.svg.import b/addons/godot_tours/bubble/assets/icons/PinJoint3D.svg.import new file mode 100644 index 0000000..9f698a9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PinJoint3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn4t8xyd0i5m2" +path="res://.godot/imported/PinJoint3D.svg-9cef14b543f4727ef239230bf0046440.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PinJoint3D.svg" +dest_files=["res://.godot/imported/PinJoint3D.svg-9cef14b543f4727ef239230bf0046440.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PinPressed.svg b/addons/godot_tours/bubble/assets/icons/PinPressed.svg new file mode 100644 index 0000000..8e5935c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PinPressed.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PinPressed.svg.import b/addons/godot_tours/bubble/assets/icons/PinPressed.svg.import new file mode 100644 index 0000000..58b2b5e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PinPressed.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgtfdgag67g45" +path="res://.godot/imported/PinPressed.svg-b4c40fbed6099e2e1f96f6da996ba476.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PinPressed.svg" +dest_files=["res://.godot/imported/PinPressed.svg-b4c40fbed6099e2e1f96f6da996ba476.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PingPongLoop.svg b/addons/godot_tours/bubble/assets/icons/PingPongLoop.svg new file mode 100644 index 0000000..6157868 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PingPongLoop.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PingPongLoop.svg.import b/addons/godot_tours/bubble/assets/icons/PingPongLoop.svg.import new file mode 100644 index 0000000..2f61332 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PingPongLoop.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dawuq08xv7mg8" +path="res://.godot/imported/PingPongLoop.svg-0d5463e1bbbabae73106c54c02ed6198.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PingPongLoop.svg" +dest_files=["res://.godot/imported/PingPongLoop.svg-0d5463e1bbbabae73106c54c02ed6198.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlaceholderMaterial.svg b/addons/godot_tours/bubble/assets/icons/PlaceholderMaterial.svg new file mode 100644 index 0000000..3b5a803 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlaceholderMaterial.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlaceholderMaterial.svg.import b/addons/godot_tours/bubble/assets/icons/PlaceholderMaterial.svg.import new file mode 100644 index 0000000..158ed7e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlaceholderMaterial.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4b6trfdld6u6" +path="res://.godot/imported/PlaceholderMaterial.svg-8fcb57b3af4fe761166e3844e7fea241.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlaceholderMaterial.svg" +dest_files=["res://.godot/imported/PlaceholderMaterial.svg-8fcb57b3af4fe761166e3844e7fea241.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlaceholderMesh.svg b/addons/godot_tours/bubble/assets/icons/PlaceholderMesh.svg new file mode 100644 index 0000000..c36156e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlaceholderMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlaceholderMesh.svg.import b/addons/godot_tours/bubble/assets/icons/PlaceholderMesh.svg.import new file mode 100644 index 0000000..ba94276 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlaceholderMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwhjc55c4hkex" +path="res://.godot/imported/PlaceholderMesh.svg-a32620806d040debd7f30af8a3f7b5bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlaceholderMesh.svg" +dest_files=["res://.godot/imported/PlaceholderMesh.svg-a32620806d040debd7f30af8a3f7b5bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlaceholderTexture2D.svg b/addons/godot_tours/bubble/assets/icons/PlaceholderTexture2D.svg new file mode 100644 index 0000000..3e7a375 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlaceholderTexture2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlaceholderTexture2D.svg.import b/addons/godot_tours/bubble/assets/icons/PlaceholderTexture2D.svg.import new file mode 100644 index 0000000..c3abb9d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlaceholderTexture2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1smm7tr3e87o" +path="res://.godot/imported/PlaceholderTexture2D.svg-4745a3e23f17e282343b2c776ac74d34.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlaceholderTexture2D.svg" +dest_files=["res://.godot/imported/PlaceholderTexture2D.svg-4745a3e23f17e282343b2c776ac74d34.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlaceholderTexture3D.svg b/addons/godot_tours/bubble/assets/icons/PlaceholderTexture3D.svg new file mode 100644 index 0000000..93014b9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlaceholderTexture3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlaceholderTexture3D.svg.import b/addons/godot_tours/bubble/assets/icons/PlaceholderTexture3D.svg.import new file mode 100644 index 0000000..6a4d061 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlaceholderTexture3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwfskw2bvjc3p" +path="res://.godot/imported/PlaceholderTexture3D.svg-d1ba34853dd18e14cd6f231cd2cf5c89.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlaceholderTexture3D.svg" +dest_files=["res://.godot/imported/PlaceholderTexture3D.svg-d1ba34853dd18e14cd6f231cd2cf5c89.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Plane.svg b/addons/godot_tours/bubble/assets/icons/Plane.svg new file mode 100644 index 0000000..eb3c548 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Plane.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Plane.svg.import b/addons/godot_tours/bubble/assets/icons/Plane.svg.import new file mode 100644 index 0000000..73878b2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Plane.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyr8n1dyo85na" +path="res://.godot/imported/Plane.svg-b330d8f2b91d90bfc65c3dac9346f25a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Plane.svg" +dest_files=["res://.godot/imported/Plane.svg-b330d8f2b91d90bfc65c3dac9346f25a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlaneMesh.svg b/addons/godot_tours/bubble/assets/icons/PlaneMesh.svg new file mode 100644 index 0000000..857583d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlaneMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlaneMesh.svg.import b/addons/godot_tours/bubble/assets/icons/PlaneMesh.svg.import new file mode 100644 index 0000000..b5f97e6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlaneMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4kxx51vekcxy" +path="res://.godot/imported/PlaneMesh.svg-913efec51c0e7c387b39bc43fe353fe0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlaneMesh.svg" +dest_files=["res://.godot/imported/PlaneMesh.svg-913efec51c0e7c387b39bc43fe353fe0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Play.svg b/addons/godot_tours/bubble/assets/icons/Play.svg new file mode 100644 index 0000000..385d501 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Play.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Play.svg.import b/addons/godot_tours/bubble/assets/icons/Play.svg.import new file mode 100644 index 0000000..3e0dec1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Play.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvhf8wsomnj7" +path="res://.godot/imported/Play.svg-e0d5211a654a79af54c631235743cc67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Play.svg" +dest_files=["res://.godot/imported/Play.svg-e0d5211a654a79af54c631235743cc67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlayBackwards.svg b/addons/godot_tours/bubble/assets/icons/PlayBackwards.svg new file mode 100644 index 0000000..8ab80c7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayBackwards.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlayBackwards.svg.import b/addons/godot_tours/bubble/assets/icons/PlayBackwards.svg.import new file mode 100644 index 0000000..f343c84 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayBackwards.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wjq867j4vn8p" +path="res://.godot/imported/PlayBackwards.svg-385e24398c234955036deda21cf6188e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlayBackwards.svg" +dest_files=["res://.godot/imported/PlayBackwards.svg-385e24398c234955036deda21cf6188e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlayCustom.svg b/addons/godot_tours/bubble/assets/icons/PlayCustom.svg new file mode 100644 index 0000000..118545e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayCustom.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlayCustom.svg.import b/addons/godot_tours/bubble/assets/icons/PlayCustom.svg.import new file mode 100644 index 0000000..d097ff0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayCustom.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7xar6mpfcwv2" +path="res://.godot/imported/PlayCustom.svg-87892f4313265fb6511e17458e87e4c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlayCustom.svg" +dest_files=["res://.godot/imported/PlayCustom.svg-87892f4313265fb6511e17458e87e4c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlayOverlay.svg b/addons/godot_tours/bubble/assets/icons/PlayOverlay.svg new file mode 100644 index 0000000..9ff59b1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayOverlay.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlayOverlay.svg.import b/addons/godot_tours/bubble/assets/icons/PlayOverlay.svg.import new file mode 100644 index 0000000..4fabe20 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayOverlay.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pdxbi7a76ix2" +path="res://.godot/imported/PlayOverlay.svg-68a50b5bb301877878583bfd85d131ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlayOverlay.svg" +dest_files=["res://.godot/imported/PlayOverlay.svg-68a50b5bb301877878583bfd85d131ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlayRemote.svg b/addons/godot_tours/bubble/assets/icons/PlayRemote.svg new file mode 100644 index 0000000..78e5ae8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayRemote.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlayRemote.svg.import b/addons/godot_tours/bubble/assets/icons/PlayRemote.svg.import new file mode 100644 index 0000000..3979961 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayRemote.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://caumwaqwcy1em" +path="res://.godot/imported/PlayRemote.svg-228bada0239c118cd86088feda4d8cd4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlayRemote.svg" +dest_files=["res://.godot/imported/PlayRemote.svg-228bada0239c118cd86088feda4d8cd4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlayScene.svg b/addons/godot_tours/bubble/assets/icons/PlayScene.svg new file mode 100644 index 0000000..7de0736 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayScene.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlayScene.svg.import b/addons/godot_tours/bubble/assets/icons/PlayScene.svg.import new file mode 100644 index 0000000..3d066fe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayScene.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1qrni6qrnhuo" +path="res://.godot/imported/PlayScene.svg-f8f1176498e404a6b2cce5732ac7b9f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlayScene.svg" +dest_files=["res://.godot/imported/PlayScene.svg-f8f1176498e404a6b2cce5732ac7b9f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlayStart.svg b/addons/godot_tours/bubble/assets/icons/PlayStart.svg new file mode 100644 index 0000000..ef24084 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayStart.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlayStart.svg.import b/addons/godot_tours/bubble/assets/icons/PlayStart.svg.import new file mode 100644 index 0000000..805be0e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayStart.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2fhdvyul326i" +path="res://.godot/imported/PlayStart.svg-e969621ac510f9562a809a1788fda9c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlayStart.svg" +dest_files=["res://.godot/imported/PlayStart.svg-e969621ac510f9562a809a1788fda9c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlayStartBackwards.svg b/addons/godot_tours/bubble/assets/icons/PlayStartBackwards.svg new file mode 100644 index 0000000..eaf4327 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayStartBackwards.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlayStartBackwards.svg.import b/addons/godot_tours/bubble/assets/icons/PlayStartBackwards.svg.import new file mode 100644 index 0000000..df4d654 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayStartBackwards.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3amoesdeok0y" +path="res://.godot/imported/PlayStartBackwards.svg-6a427981bf3edd4e2c8482fa8b184e97.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlayStartBackwards.svg" +dest_files=["res://.godot/imported/PlayStartBackwards.svg-6a427981bf3edd4e2c8482fa8b184e97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PlayTravel.svg b/addons/godot_tours/bubble/assets/icons/PlayTravel.svg new file mode 100644 index 0000000..77d89f0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayTravel.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PlayTravel.svg.import b/addons/godot_tours/bubble/assets/icons/PlayTravel.svg.import new file mode 100644 index 0000000..989f946 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PlayTravel.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clpykvw061byx" +path="res://.godot/imported/PlayTravel.svg-b995338bab5f32f21ee36964cad6ede5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PlayTravel.svg" +dest_files=["res://.godot/imported/PlayTravel.svg-b995338bab5f32f21ee36964cad6ede5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PluginScript.svg b/addons/godot_tours/bubble/assets/icons/PluginScript.svg new file mode 100644 index 0000000..afcedb4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PluginScript.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PluginScript.svg.import b/addons/godot_tours/bubble/assets/icons/PluginScript.svg.import new file mode 100644 index 0000000..ebaaaa7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PluginScript.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://571y8skr0m3p" +path="res://.godot/imported/PluginScript.svg-ff48580c764e9aed8f528e41289d4ef6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PluginScript.svg" +dest_files=["res://.godot/imported/PluginScript.svg-ff48580c764e9aed8f528e41289d4ef6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PointLight2D.svg b/addons/godot_tours/bubble/assets/icons/PointLight2D.svg new file mode 100644 index 0000000..270769c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PointLight2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PointLight2D.svg.import b/addons/godot_tours/bubble/assets/icons/PointLight2D.svg.import new file mode 100644 index 0000000..791537b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PointLight2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e76qo0yw1fyb" +path="res://.godot/imported/PointLight2D.svg-7556e906f723a98bfa12f1f4fb23590b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PointLight2D.svg" +dest_files=["res://.godot/imported/PointLight2D.svg-7556e906f723a98bfa12f1f4fb23590b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PointMesh.svg b/addons/godot_tours/bubble/assets/icons/PointMesh.svg new file mode 100644 index 0000000..2cafedc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PointMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PointMesh.svg.import b/addons/godot_tours/bubble/assets/icons/PointMesh.svg.import new file mode 100644 index 0000000..600b10c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PointMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyjp8r6c0onra" +path="res://.godot/imported/PointMesh.svg-9163c03172b5c4327d3ad029c0045d20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PointMesh.svg" +dest_files=["res://.godot/imported/PointMesh.svg-9163c03172b5c4327d3ad029c0045d20.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Polygon2D.svg b/addons/godot_tours/bubble/assets/icons/Polygon2D.svg new file mode 100644 index 0000000..0fdd5ef --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Polygon2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Polygon2D.svg.import b/addons/godot_tours/bubble/assets/icons/Polygon2D.svg.import new file mode 100644 index 0000000..4030f6a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Polygon2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ojk66vmsru6j" +path="res://.godot/imported/Polygon2D.svg-38711091d1ea14363233df7ab7ad44d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Polygon2D.svg" +dest_files=["res://.godot/imported/Polygon2D.svg-38711091d1ea14363233df7ab7ad44d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PolygonOccluder3D.svg b/addons/godot_tours/bubble/assets/icons/PolygonOccluder3D.svg new file mode 100644 index 0000000..f4cbec0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PolygonOccluder3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PolygonOccluder3D.svg.import b/addons/godot_tours/bubble/assets/icons/PolygonOccluder3D.svg.import new file mode 100644 index 0000000..d4ee1f1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PolygonOccluder3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di3pfdug1a1h5" +path="res://.godot/imported/PolygonOccluder3D.svg-e0d1c9fcee0213dc092820b4b06d7ff1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PolygonOccluder3D.svg" +dest_files=["res://.godot/imported/PolygonOccluder3D.svg-e0d1c9fcee0213dc092820b4b06d7ff1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PolygonPathFinder.svg b/addons/godot_tours/bubble/assets/icons/PolygonPathFinder.svg new file mode 100644 index 0000000..50c5ffc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PolygonPathFinder.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PolygonPathFinder.svg.import b/addons/godot_tours/bubble/assets/icons/PolygonPathFinder.svg.import new file mode 100644 index 0000000..ab9104d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PolygonPathFinder.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xi5w50pt3nat" +path="res://.godot/imported/PolygonPathFinder.svg-58d79260fc7bb43e02c3047749cd3886.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PolygonPathFinder.svg" +dest_files=["res://.godot/imported/PolygonPathFinder.svg-58d79260fc7bb43e02c3047749cd3886.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Popup.svg b/addons/godot_tours/bubble/assets/icons/Popup.svg new file mode 100644 index 0000000..a6cfe07 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Popup.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Popup.svg.import b/addons/godot_tours/bubble/assets/icons/Popup.svg.import new file mode 100644 index 0000000..c829dbc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Popup.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgcwagyetr4on" +path="res://.godot/imported/Popup.svg-5f32b3245ccffb3991133d21e29d0b9d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Popup.svg" +dest_files=["res://.godot/imported/Popup.svg-5f32b3245ccffb3991133d21e29d0b9d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PopupMenu.svg b/addons/godot_tours/bubble/assets/icons/PopupMenu.svg new file mode 100644 index 0000000..dd729e4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PopupMenu.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PopupMenu.svg.import b/addons/godot_tours/bubble/assets/icons/PopupMenu.svg.import new file mode 100644 index 0000000..5bae644 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PopupMenu.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7krdkd4855dm" +path="res://.godot/imported/PopupMenu.svg-e9f12fd1abd14c9702a0faf427effe8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PopupMenu.svg" +dest_files=["res://.godot/imported/PopupMenu.svg-e9f12fd1abd14c9702a0faf427effe8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PopupPanel.svg b/addons/godot_tours/bubble/assets/icons/PopupPanel.svg new file mode 100644 index 0000000..075cad6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PopupPanel.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PopupPanel.svg.import b/addons/godot_tours/bubble/assets/icons/PopupPanel.svg.import new file mode 100644 index 0000000..6f91d89 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PopupPanel.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqksesebxxvqc" +path="res://.godot/imported/PopupPanel.svg-437fc884beb3f0ac7d0a36a6bcfa4c84.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PopupPanel.svg" +dest_files=["res://.godot/imported/PopupPanel.svg-437fc884beb3f0ac7d0a36a6bcfa4c84.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PortableCompressedTexture2D.svg b/addons/godot_tours/bubble/assets/icons/PortableCompressedTexture2D.svg new file mode 100644 index 0000000..3f63dda --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PortableCompressedTexture2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PortableCompressedTexture2D.svg.import b/addons/godot_tours/bubble/assets/icons/PortableCompressedTexture2D.svg.import new file mode 100644 index 0000000..3111b3b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PortableCompressedTexture2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1ai3v8xtpvsf" +path="res://.godot/imported/PortableCompressedTexture2D.svg-0e156b797b5bfc94b33c7a9d267fdf67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PortableCompressedTexture2D.svg" +dest_files=["res://.godot/imported/PortableCompressedTexture2D.svg-0e156b797b5bfc94b33c7a9d267fdf67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PreviewEnvironment.svg b/addons/godot_tours/bubble/assets/icons/PreviewEnvironment.svg new file mode 100644 index 0000000..b356459 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PreviewEnvironment.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PreviewEnvironment.svg.import b/addons/godot_tours/bubble/assets/icons/PreviewEnvironment.svg.import new file mode 100644 index 0000000..638db43 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PreviewEnvironment.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv1nkl8r2am76" +path="res://.godot/imported/PreviewEnvironment.svg-fc3996ebb573a5c81239ed1042dbe376.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PreviewEnvironment.svg" +dest_files=["res://.godot/imported/PreviewEnvironment.svg-fc3996ebb573a5c81239ed1042dbe376.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PreviewRotate.svg b/addons/godot_tours/bubble/assets/icons/PreviewRotate.svg new file mode 100644 index 0000000..9e0da46 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PreviewRotate.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PreviewRotate.svg.import b/addons/godot_tours/bubble/assets/icons/PreviewRotate.svg.import new file mode 100644 index 0000000..0321b74 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PreviewRotate.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbn37krex8pov" +path="res://.godot/imported/PreviewRotate.svg-cd7d19e32835962ba7f5253af919e639.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PreviewRotate.svg" +dest_files=["res://.godot/imported/PreviewRotate.svg-cd7d19e32835962ba7f5253af919e639.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PreviewSun.svg b/addons/godot_tours/bubble/assets/icons/PreviewSun.svg new file mode 100644 index 0000000..fe96065 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PreviewSun.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PreviewSun.svg.import b/addons/godot_tours/bubble/assets/icons/PreviewSun.svg.import new file mode 100644 index 0000000..bfcfb90 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PreviewSun.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnpgrhnhqa30a" +path="res://.godot/imported/PreviewSun.svg-11acdeb31a20bc6d9d2503d31fbadcc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PreviewSun.svg" +dest_files=["res://.godot/imported/PreviewSun.svg-11acdeb31a20bc6d9d2503d31fbadcc5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/PrismMesh.svg b/addons/godot_tours/bubble/assets/icons/PrismMesh.svg new file mode 100644 index 0000000..6481b26 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PrismMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/PrismMesh.svg.import b/addons/godot_tours/bubble/assets/icons/PrismMesh.svg.import new file mode 100644 index 0000000..2ae33eb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/PrismMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwmaho3mwrum1" +path="res://.godot/imported/PrismMesh.svg-099c5f1227116367969a32f35ca7ff54.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/PrismMesh.svg" +dest_files=["res://.godot/imported/PrismMesh.svg-099c5f1227116367969a32f35ca7ff54.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ProceduralSkyMaterial.svg b/addons/godot_tours/bubble/assets/icons/ProceduralSkyMaterial.svg new file mode 100644 index 0000000..87d61de --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ProceduralSkyMaterial.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ProceduralSkyMaterial.svg.import b/addons/godot_tours/bubble/assets/icons/ProceduralSkyMaterial.svg.import new file mode 100644 index 0000000..9b274da --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ProceduralSkyMaterial.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq5v6e5bvy377" +path="res://.godot/imported/ProceduralSkyMaterial.svg-e150dc7caeb429639bc4a3546dc5d503.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ProceduralSkyMaterial.svg" +dest_files=["res://.godot/imported/ProceduralSkyMaterial.svg-e150dc7caeb429639bc4a3546dc5d503.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Progress1.svg b/addons/godot_tours/bubble/assets/icons/Progress1.svg new file mode 100644 index 0000000..8385bf0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress1.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Progress1.svg.import b/addons/godot_tours/bubble/assets/icons/Progress1.svg.import new file mode 100644 index 0000000..9504745 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress1.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxbdc50tnjg54" +path="res://.godot/imported/Progress1.svg-92e959d0c6ba47b09d5f8d592bfe5a68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Progress1.svg" +dest_files=["res://.godot/imported/Progress1.svg-92e959d0c6ba47b09d5f8d592bfe5a68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Progress2.svg b/addons/godot_tours/bubble/assets/icons/Progress2.svg new file mode 100644 index 0000000..9d48f48 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress2.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Progress2.svg.import b/addons/godot_tours/bubble/assets/icons/Progress2.svg.import new file mode 100644 index 0000000..29181ae --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress2.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2atmbol3imfe" +path="res://.godot/imported/Progress2.svg-ef7adf47f32873bbe4332930b26a371e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Progress2.svg" +dest_files=["res://.godot/imported/Progress2.svg-ef7adf47f32873bbe4332930b26a371e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Progress3.svg b/addons/godot_tours/bubble/assets/icons/Progress3.svg new file mode 100644 index 0000000..c0ac80a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress3.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Progress3.svg.import b/addons/godot_tours/bubble/assets/icons/Progress3.svg.import new file mode 100644 index 0000000..0405ac2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress3.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dotgls57anccm" +path="res://.godot/imported/Progress3.svg-d938e82de54e663c74ff212b539784fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Progress3.svg" +dest_files=["res://.godot/imported/Progress3.svg-d938e82de54e663c74ff212b539784fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Progress4.svg b/addons/godot_tours/bubble/assets/icons/Progress4.svg new file mode 100644 index 0000000..b5162d0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress4.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Progress4.svg.import b/addons/godot_tours/bubble/assets/icons/Progress4.svg.import new file mode 100644 index 0000000..3de4892 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress4.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpybfjhfmcknh" +path="res://.godot/imported/Progress4.svg-e04eeb61ff7223fd52103941136b970c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Progress4.svg" +dest_files=["res://.godot/imported/Progress4.svg-e04eeb61ff7223fd52103941136b970c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Progress5.svg b/addons/godot_tours/bubble/assets/icons/Progress5.svg new file mode 100644 index 0000000..f7b8f7a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress5.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Progress5.svg.import b/addons/godot_tours/bubble/assets/icons/Progress5.svg.import new file mode 100644 index 0000000..7b72262 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress5.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w1fpu40ujipm" +path="res://.godot/imported/Progress5.svg-8187056d7666977f1aea7abc8c99299f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Progress5.svg" +dest_files=["res://.godot/imported/Progress5.svg-8187056d7666977f1aea7abc8c99299f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Progress6.svg b/addons/godot_tours/bubble/assets/icons/Progress6.svg new file mode 100644 index 0000000..485c477 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress6.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Progress6.svg.import b/addons/godot_tours/bubble/assets/icons/Progress6.svg.import new file mode 100644 index 0000000..745a668 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress6.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buwoqbvgssqxu" +path="res://.godot/imported/Progress6.svg-94ef2b72f5358fad5b911a9090a7e2a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Progress6.svg" +dest_files=["res://.godot/imported/Progress6.svg-94ef2b72f5358fad5b911a9090a7e2a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Progress7.svg b/addons/godot_tours/bubble/assets/icons/Progress7.svg new file mode 100644 index 0000000..5a15ad8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress7.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Progress7.svg.import b/addons/godot_tours/bubble/assets/icons/Progress7.svg.import new file mode 100644 index 0000000..af057fc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress7.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck7vpr8d5k3nw" +path="res://.godot/imported/Progress7.svg-7e88d142fe60a209f669f32d1383f85d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Progress7.svg" +dest_files=["res://.godot/imported/Progress7.svg-7e88d142fe60a209f669f32d1383f85d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Progress8.svg b/addons/godot_tours/bubble/assets/icons/Progress8.svg new file mode 100644 index 0000000..06d0204 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress8.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Progress8.svg.import b/addons/godot_tours/bubble/assets/icons/Progress8.svg.import new file mode 100644 index 0000000..57001fc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Progress8.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcmi7ps5ca4ix" +path="res://.godot/imported/Progress8.svg-b793c7a7bd72d11837f27c7e7eb617c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Progress8.svg" +dest_files=["res://.godot/imported/Progress8.svg-b793c7a7bd72d11837f27c7e7eb617c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ProgressBar.svg b/addons/godot_tours/bubble/assets/icons/ProgressBar.svg new file mode 100644 index 0000000..894def2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ProgressBar.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ProgressBar.svg.import b/addons/godot_tours/bubble/assets/icons/ProgressBar.svg.import new file mode 100644 index 0000000..7b9c773 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ProgressBar.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d63kfvuxok86" +path="res://.godot/imported/ProgressBar.svg-1b8097f85c42e443ae87323316127176.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ProgressBar.svg" +dest_files=["res://.godot/imported/ProgressBar.svg-1b8097f85c42e443ae87323316127176.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ProjectIconLoading.svg b/addons/godot_tours/bubble/assets/icons/ProjectIconLoading.svg new file mode 100644 index 0000000..505edda --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ProjectIconLoading.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ProjectIconLoading.svg.import b/addons/godot_tours/bubble/assets/icons/ProjectIconLoading.svg.import new file mode 100644 index 0000000..30dfb8b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ProjectIconLoading.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rd1rjmfdr23u" +path="res://.godot/imported/ProjectIconLoading.svg-178e8fddd3d981bf5c288a5a4cbfc05d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ProjectIconLoading.svg" +dest_files=["res://.godot/imported/ProjectIconLoading.svg-178e8fddd3d981bf5c288a5a4cbfc05d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ProjectList.svg b/addons/godot_tours/bubble/assets/icons/ProjectList.svg new file mode 100644 index 0000000..ee72c39 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ProjectList.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ProjectList.svg.import b/addons/godot_tours/bubble/assets/icons/ProjectList.svg.import new file mode 100644 index 0000000..78f6eaa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ProjectList.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3v2htvnwd6wm" +path="res://.godot/imported/ProjectList.svg-27342f22092f318e00d94429d0585f74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ProjectList.svg" +dest_files=["res://.godot/imported/ProjectList.svg-27342f22092f318e00d94429d0585f74.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Projection.svg b/addons/godot_tours/bubble/assets/icons/Projection.svg new file mode 100644 index 0000000..aa415cd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Projection.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Projection.svg.import b/addons/godot_tours/bubble/assets/icons/Projection.svg.import new file mode 100644 index 0000000..c63fafb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Projection.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm0u5lfo0an7p" +path="res://.godot/imported/Projection.svg-628beaa0f5a74aac97693ee8343c0d4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Projection.svg" +dest_files=["res://.godot/imported/Projection.svg-628beaa0f5a74aac97693ee8343c0d4c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Quad.svg b/addons/godot_tours/bubble/assets/icons/Quad.svg new file mode 100644 index 0000000..5627876 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Quad.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Quad.svg.import b/addons/godot_tours/bubble/assets/icons/Quad.svg.import new file mode 100644 index 0000000..f260aae --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Quad.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw5lqph35p2kx" +path="res://.godot/imported/Quad.svg-f84f7c919400b89e54d1385d92d8a397.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Quad.svg" +dest_files=["res://.godot/imported/Quad.svg-f84f7c919400b89e54d1385d92d8a397.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/QuadMesh.svg b/addons/godot_tours/bubble/assets/icons/QuadMesh.svg new file mode 100644 index 0000000..c9f762c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/QuadMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/QuadMesh.svg.import b/addons/godot_tours/bubble/assets/icons/QuadMesh.svg.import new file mode 100644 index 0000000..2d48f10 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/QuadMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsfioig48vmku" +path="res://.godot/imported/QuadMesh.svg-79ee103545ccd0a3c395df5352996429.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/QuadMesh.svg" +dest_files=["res://.godot/imported/QuadMesh.svg-79ee103545ccd0a3c395df5352996429.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/QuadOccluder3D.svg b/addons/godot_tours/bubble/assets/icons/QuadOccluder3D.svg new file mode 100644 index 0000000..1f91cde --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/QuadOccluder3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/QuadOccluder3D.svg.import b/addons/godot_tours/bubble/assets/icons/QuadOccluder3D.svg.import new file mode 100644 index 0000000..f000f11 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/QuadOccluder3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://viwgikak8tey" +path="res://.godot/imported/QuadOccluder3D.svg-430ac8479f80e3664e013b1a36ca3fe4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/QuadOccluder3D.svg" +dest_files=["res://.godot/imported/QuadOccluder3D.svg-430ac8479f80e3664e013b1a36ca3fe4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Quaternion.svg b/addons/godot_tours/bubble/assets/icons/Quaternion.svg new file mode 100644 index 0000000..39b4937 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Quaternion.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Quaternion.svg.import b/addons/godot_tours/bubble/assets/icons/Quaternion.svg.import new file mode 100644 index 0000000..872ed61 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Quaternion.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5nexpcwl0fv4" +path="res://.godot/imported/Quaternion.svg-a7c070134a750cb6eae6f136fd126367.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Quaternion.svg" +dest_files=["res://.godot/imported/Quaternion.svg-a7c070134a750cb6eae6f136fd126367.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/README.md b/addons/godot_tours/bubble/assets/icons/README.md new file mode 100644 index 0000000..d191000 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/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/contributing/development/editor/creating_icons.html) +in the documentation for details on creating icons for the Godot editor. diff --git a/addons/godot_tours/bubble/assets/icons/RID.svg b/addons/godot_tours/bubble/assets/icons/RID.svg new file mode 100644 index 0000000..d249774 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RID.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RID.svg.import b/addons/godot_tours/bubble/assets/icons/RID.svg.import new file mode 100644 index 0000000..74444d8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RID.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsnxuvedh0tv3" +path="res://.godot/imported/RID.svg-312d52345d20c23db642b94f64be3e63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RID.svg" +dest_files=["res://.godot/imported/RID.svg-312d52345d20c23db642b94f64be3e63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RandomNumberGenerator.svg b/addons/godot_tours/bubble/assets/icons/RandomNumberGenerator.svg new file mode 100644 index 0000000..2071c44 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RandomNumberGenerator.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RandomNumberGenerator.svg.import b/addons/godot_tours/bubble/assets/icons/RandomNumberGenerator.svg.import new file mode 100644 index 0000000..845f12f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RandomNumberGenerator.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0jj00hxxq02g" +path="res://.godot/imported/RandomNumberGenerator.svg-0da1b242645d7408e76baa5efc1d864b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RandomNumberGenerator.svg" +dest_files=["res://.godot/imported/RandomNumberGenerator.svg-0da1b242645d7408e76baa5efc1d864b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Range.svg b/addons/godot_tours/bubble/assets/icons/Range.svg new file mode 100644 index 0000000..a171922 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Range.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Range.svg.import b/addons/godot_tours/bubble/assets/icons/Range.svg.import new file mode 100644 index 0000000..fde1309 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Range.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkyjc40hwedhi" +path="res://.godot/imported/Range.svg-976a48755096ebe080a55f7e1773c11b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Range.svg" +dest_files=["res://.godot/imported/Range.svg-976a48755096ebe080a55f7e1773c11b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RangeSliderLeft.svg b/addons/godot_tours/bubble/assets/icons/RangeSliderLeft.svg new file mode 100644 index 0000000..7647db6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RangeSliderLeft.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RangeSliderLeft.svg.import b/addons/godot_tours/bubble/assets/icons/RangeSliderLeft.svg.import new file mode 100644 index 0000000..3f7f282 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RangeSliderLeft.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckqdsj10u6sgs" +path="res://.godot/imported/RangeSliderLeft.svg-8c449316b84fdd6e66c78c6722b26320.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RangeSliderLeft.svg" +dest_files=["res://.godot/imported/RangeSliderLeft.svg-8c449316b84fdd6e66c78c6722b26320.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RangeSliderRight.svg b/addons/godot_tours/bubble/assets/icons/RangeSliderRight.svg new file mode 100644 index 0000000..3b46592 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RangeSliderRight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RangeSliderRight.svg.import b/addons/godot_tours/bubble/assets/icons/RangeSliderRight.svg.import new file mode 100644 index 0000000..10afeda --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RangeSliderRight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf3v40vvfecxv" +path="res://.godot/imported/RangeSliderRight.svg-04a000e29d70a29c97bcb1ffb5740412.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RangeSliderRight.svg" +dest_files=["res://.godot/imported/RangeSliderRight.svg-04a000e29d70a29c97bcb1ffb5740412.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RayCast2D.svg b/addons/godot_tours/bubble/assets/icons/RayCast2D.svg new file mode 100644 index 0000000..07c8d45 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RayCast2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RayCast2D.svg.import b/addons/godot_tours/bubble/assets/icons/RayCast2D.svg.import new file mode 100644 index 0000000..1437007 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RayCast2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2b8yqaqckyu" +path="res://.godot/imported/RayCast2D.svg-d123b9151a539ca1a39b8889ea3d9a1f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RayCast2D.svg" +dest_files=["res://.godot/imported/RayCast2D.svg-d123b9151a539ca1a39b8889ea3d9a1f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RayCast3D.svg b/addons/godot_tours/bubble/assets/icons/RayCast3D.svg new file mode 100644 index 0000000..59a5e18 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RayCast3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RayCast3D.svg.import b/addons/godot_tours/bubble/assets/icons/RayCast3D.svg.import new file mode 100644 index 0000000..710cafd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RayCast3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df2fgt21tkrpo" +path="res://.godot/imported/RayCast3D.svg-d661fd1c6333d1d3530f4e44651f3788.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RayCast3D.svg" +dest_files=["res://.godot/imported/RayCast3D.svg-d661fd1c6333d1d3530f4e44651f3788.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Rect2.svg b/addons/godot_tours/bubble/assets/icons/Rect2.svg new file mode 100644 index 0000000..bdb7028 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Rect2.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Rect2.svg.import b/addons/godot_tours/bubble/assets/icons/Rect2.svg.import new file mode 100644 index 0000000..c4fa62a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Rect2.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8x37y8caln5x" +path="res://.godot/imported/Rect2.svg-e3266319b75052349711a96e81b03577.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Rect2.svg" +dest_files=["res://.godot/imported/Rect2.svg-e3266319b75052349711a96e81b03577.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Rect2i.svg b/addons/godot_tours/bubble/assets/icons/Rect2i.svg new file mode 100644 index 0000000..f091f65 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Rect2i.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Rect2i.svg.import b/addons/godot_tours/bubble/assets/icons/Rect2i.svg.import new file mode 100644 index 0000000..1f5bc28 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Rect2i.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca6oauw62mjkl" +path="res://.godot/imported/Rect2i.svg-831d01e79100667dc3b5c4f73c77c8d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Rect2i.svg" +dest_files=["res://.godot/imported/Rect2i.svg-831d01e79100667dc3b5c4f73c77c8d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Rectangle.svg b/addons/godot_tours/bubble/assets/icons/Rectangle.svg new file mode 100644 index 0000000..ca34e16 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Rectangle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Rectangle.svg.import b/addons/godot_tours/bubble/assets/icons/Rectangle.svg.import new file mode 100644 index 0000000..09b79d7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7hucew2jvkgt" +path="res://.godot/imported/Rectangle.svg-fccf50bb46522d105b6e5eb7d19c8d47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Rectangle.svg" +dest_files=["res://.godot/imported/Rectangle.svg-fccf50bb46522d105b6e5eb7d19c8d47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RectangleShape2D.svg b/addons/godot_tours/bubble/assets/icons/RectangleShape2D.svg new file mode 100644 index 0000000..4a0f516 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RectangleShape2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RectangleShape2D.svg.import b/addons/godot_tours/bubble/assets/icons/RectangleShape2D.svg.import new file mode 100644 index 0000000..017724e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RectangleShape2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7oxlmi2b8k1q" +path="res://.godot/imported/RectangleShape2D.svg-df5f890312eb1083fb59c487e0c8ff57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RectangleShape2D.svg" +dest_files=["res://.godot/imported/RectangleShape2D.svg-df5f890312eb1083fb59c487e0c8ff57.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ReferenceRect.svg b/addons/godot_tours/bubble/assets/icons/ReferenceRect.svg new file mode 100644 index 0000000..4ba50b2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ReferenceRect.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ReferenceRect.svg.import b/addons/godot_tours/bubble/assets/icons/ReferenceRect.svg.import new file mode 100644 index 0000000..9c2bf35 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ReferenceRect.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvtnat1sni4mv" +path="res://.godot/imported/ReferenceRect.svg-bec6112b94375173cfd420ede9d75587.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ReferenceRect.svg" +dest_files=["res://.godot/imported/ReferenceRect.svg-bec6112b94375173cfd420ede9d75587.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ReflectionProbe.svg b/addons/godot_tours/bubble/assets/icons/ReflectionProbe.svg new file mode 100644 index 0000000..3199c3b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ReflectionProbe.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ReflectionProbe.svg.import b/addons/godot_tours/bubble/assets/icons/ReflectionProbe.svg.import new file mode 100644 index 0000000..7942b3e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ReflectionProbe.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dounuhdxvvv0b" +path="res://.godot/imported/ReflectionProbe.svg-27dacb3ed7a5b5e002a7e59df61c11cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ReflectionProbe.svg" +dest_files=["res://.godot/imported/ReflectionProbe.svg-27dacb3ed7a5b5e002a7e59df61c11cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RegEx.svg b/addons/godot_tours/bubble/assets/icons/RegEx.svg new file mode 100644 index 0000000..4df26f4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RegEx.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RegEx.svg.import b/addons/godot_tours/bubble/assets/icons/RegEx.svg.import new file mode 100644 index 0000000..e5706d9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RegEx.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oum86uxvwk4b" +path="res://.godot/imported/RegEx.svg-f1b726e4d5bde1d46e87c69228a754f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RegEx.svg" +dest_files=["res://.godot/imported/RegEx.svg-f1b726e4d5bde1d46e87c69228a754f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RegExMatch.svg b/addons/godot_tours/bubble/assets/icons/RegExMatch.svg new file mode 100644 index 0000000..889cf6c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RegExMatch.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RegExMatch.svg.import b/addons/godot_tours/bubble/assets/icons/RegExMatch.svg.import new file mode 100644 index 0000000..cb94c0b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RegExMatch.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brh5x7lylgq8x" +path="res://.godot/imported/RegExMatch.svg-de418507aac1f574086fabe822ce501b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RegExMatch.svg" +dest_files=["res://.godot/imported/RegExMatch.svg-de418507aac1f574086fabe822ce501b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RegionEdit.svg b/addons/godot_tours/bubble/assets/icons/RegionEdit.svg new file mode 100644 index 0000000..72f5d6e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RegionEdit.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RegionEdit.svg.import b/addons/godot_tours/bubble/assets/icons/RegionEdit.svg.import new file mode 100644 index 0000000..2baf5c7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RegionEdit.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xdv7fgax03pj" +path="res://.godot/imported/RegionEdit.svg-38d5f19c6a4127ec5a42c40fdefe2983.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RegionEdit.svg" +dest_files=["res://.godot/imported/RegionEdit.svg-38d5f19c6a4127ec5a42c40fdefe2983.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Reload.svg b/addons/godot_tours/bubble/assets/icons/Reload.svg new file mode 100644 index 0000000..9887d0d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Reload.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Reload.svg.import b/addons/godot_tours/bubble/assets/icons/Reload.svg.import new file mode 100644 index 0000000..461a355 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Reload.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jko6etx51e1v" +path="res://.godot/imported/Reload.svg-e14b98614ce7bc21f04115946e1e60d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Reload.svg" +dest_files=["res://.godot/imported/Reload.svg-e14b98614ce7bc21f04115946e1e60d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ReloadSmall.svg b/addons/godot_tours/bubble/assets/icons/ReloadSmall.svg new file mode 100644 index 0000000..970383f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ReloadSmall.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ReloadSmall.svg.import b/addons/godot_tours/bubble/assets/icons/ReloadSmall.svg.import new file mode 100644 index 0000000..2b05400 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ReloadSmall.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drjucn526dl14" +path="res://.godot/imported/ReloadSmall.svg-6d6daa520769ec9d8467c9defb5fa91d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ReloadSmall.svg" +dest_files=["res://.godot/imported/ReloadSmall.svg-6d6daa520769ec9d8467c9defb5fa91d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RemoteTransform2D.svg b/addons/godot_tours/bubble/assets/icons/RemoteTransform2D.svg new file mode 100644 index 0000000..15324fd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RemoteTransform2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RemoteTransform2D.svg.import b/addons/godot_tours/bubble/assets/icons/RemoteTransform2D.svg.import new file mode 100644 index 0000000..6c8eae7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RemoteTransform2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hse62g45hoy7" +path="res://.godot/imported/RemoteTransform2D.svg-8046b204bc99994abda584b408c1d857.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RemoteTransform2D.svg" +dest_files=["res://.godot/imported/RemoteTransform2D.svg-8046b204bc99994abda584b408c1d857.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RemoteTransform3D.svg b/addons/godot_tours/bubble/assets/icons/RemoteTransform3D.svg new file mode 100644 index 0000000..811d914 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RemoteTransform3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RemoteTransform3D.svg.import b/addons/godot_tours/bubble/assets/icons/RemoteTransform3D.svg.import new file mode 100644 index 0000000..2192e39 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RemoteTransform3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqhcujjwt6pa0" +path="res://.godot/imported/RemoteTransform3D.svg-230b613c2138fb479cd8dbec30a0a697.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RemoteTransform3D.svg" +dest_files=["res://.godot/imported/RemoteTransform3D.svg-230b613c2138fb479cd8dbec30a0a697.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Remove.svg b/addons/godot_tours/bubble/assets/icons/Remove.svg new file mode 100644 index 0000000..eb8e244 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Remove.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Remove.svg.import b/addons/godot_tours/bubble/assets/icons/Remove.svg.import new file mode 100644 index 0000000..82733ad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Remove.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl17bproheegt" +path="res://.godot/imported/Remove.svg-fe45d0d23dc0fe435e7bab8e89ef32fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Remove.svg" +dest_files=["res://.godot/imported/Remove.svg-fe45d0d23dc0fe435e7bab8e89ef32fb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RemoveInternal.svg b/addons/godot_tours/bubble/assets/icons/RemoveInternal.svg new file mode 100644 index 0000000..1d3cf25 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RemoveInternal.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RemoveInternal.svg.import b/addons/godot_tours/bubble/assets/icons/RemoveInternal.svg.import new file mode 100644 index 0000000..9685556 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RemoveInternal.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn7qoh6hfhfj2" +path="res://.godot/imported/RemoveInternal.svg-b5756f51193780fa2880767918a2581a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RemoveInternal.svg" +dest_files=["res://.godot/imported/RemoveInternal.svg-b5756f51193780fa2880767918a2581a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Rename.svg b/addons/godot_tours/bubble/assets/icons/Rename.svg new file mode 100644 index 0000000..bd6dad2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Rename.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Rename.svg.import b/addons/godot_tours/bubble/assets/icons/Rename.svg.import new file mode 100644 index 0000000..c975cf7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Rename.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7c4q7wdtcraj" +path="res://.godot/imported/Rename.svg-de8054b0fa9c6429e6e40c17d2fabb7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Rename.svg" +dest_files=["res://.godot/imported/Rename.svg-de8054b0fa9c6429e6e40c17d2fabb7a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Reparent.svg b/addons/godot_tours/bubble/assets/icons/Reparent.svg new file mode 100644 index 0000000..f06eef1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Reparent.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Reparent.svg.import b/addons/godot_tours/bubble/assets/icons/Reparent.svg.import new file mode 100644 index 0000000..e49cced --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Reparent.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5bki07rg8c7x" +path="res://.godot/imported/Reparent.svg-d8238f4424348d6226d165064ba4031a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Reparent.svg" +dest_files=["res://.godot/imported/Reparent.svg-d8238f4424348d6226d165064ba4031a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ReparentToNewNode.svg b/addons/godot_tours/bubble/assets/icons/ReparentToNewNode.svg new file mode 100644 index 0000000..94f9c1e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ReparentToNewNode.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ReparentToNewNode.svg.import b/addons/godot_tours/bubble/assets/icons/ReparentToNewNode.svg.import new file mode 100644 index 0000000..4f5e1ab --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ReparentToNewNode.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diadiqqw7hfjy" +path="res://.godot/imported/ReparentToNewNode.svg-ed55eb9f042274a92d0b3c992c7f3c17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ReparentToNewNode.svg" +dest_files=["res://.godot/imported/ReparentToNewNode.svg-ed55eb9f042274a92d0b3c992c7f3c17.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ResourcePreloader.svg b/addons/godot_tours/bubble/assets/icons/ResourcePreloader.svg new file mode 100644 index 0000000..16a1d8d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ResourcePreloader.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ResourcePreloader.svg.import b/addons/godot_tours/bubble/assets/icons/ResourcePreloader.svg.import new file mode 100644 index 0000000..d3b5ffd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ResourcePreloader.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfjbohfoy8y0n" +path="res://.godot/imported/ResourcePreloader.svg-3d1f1a523127b685873122570269f08f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ResourcePreloader.svg" +dest_files=["res://.godot/imported/ResourcePreloader.svg-3d1f1a523127b685873122570269f08f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ReverseGradient.svg b/addons/godot_tours/bubble/assets/icons/ReverseGradient.svg new file mode 100644 index 0000000..4009127 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ReverseGradient.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ReverseGradient.svg.import b/addons/godot_tours/bubble/assets/icons/ReverseGradient.svg.import new file mode 100644 index 0000000..25ec3e7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ReverseGradient.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qpm4j1qxxeoc" +path="res://.godot/imported/ReverseGradient.svg-e1a36a5c67e5d1c18ee39f22a4ea661a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ReverseGradient.svg" +dest_files=["res://.godot/imported/ReverseGradient.svg-e1a36a5c67e5d1c18ee39f22a4ea661a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RibbonTrailMesh.svg b/addons/godot_tours/bubble/assets/icons/RibbonTrailMesh.svg new file mode 100644 index 0000000..7b22a2b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RibbonTrailMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RibbonTrailMesh.svg.import b/addons/godot_tours/bubble/assets/icons/RibbonTrailMesh.svg.import new file mode 100644 index 0000000..cdf32ba --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RibbonTrailMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnxm71jd8d5y3" +path="res://.godot/imported/RibbonTrailMesh.svg-2abe04652e4f28f63e2b588a56155e78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RibbonTrailMesh.svg" +dest_files=["res://.godot/imported/RibbonTrailMesh.svg-2abe04652e4f28f63e2b588a56155e78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RichTextEffect.svg b/addons/godot_tours/bubble/assets/icons/RichTextEffect.svg new file mode 100644 index 0000000..04875f3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RichTextEffect.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RichTextEffect.svg.import b/addons/godot_tours/bubble/assets/icons/RichTextEffect.svg.import new file mode 100644 index 0000000..589d54f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RichTextEffect.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://detlc8bg4s88j" +path="res://.godot/imported/RichTextEffect.svg-376bf7810064c23bb432f210f8f244c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RichTextEffect.svg" +dest_files=["res://.godot/imported/RichTextEffect.svg-376bf7810064c23bb432f210f8f244c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RichTextLabel.svg b/addons/godot_tours/bubble/assets/icons/RichTextLabel.svg new file mode 100644 index 0000000..14c1af3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RichTextLabel.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RichTextLabel.svg.import b/addons/godot_tours/bubble/assets/icons/RichTextLabel.svg.import new file mode 100644 index 0000000..844a89e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RichTextLabel.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3koycntwkxmc" +path="res://.godot/imported/RichTextLabel.svg-169e045d82bbc845d8947b6badaa1323.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RichTextLabel.svg" +dest_files=["res://.godot/imported/RichTextLabel.svg-169e045d82bbc845d8947b6badaa1323.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RigidBody2D.svg b/addons/godot_tours/bubble/assets/icons/RigidBody2D.svg new file mode 100644 index 0000000..9c23918 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RigidBody2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RigidBody2D.svg.import b/addons/godot_tours/bubble/assets/icons/RigidBody2D.svg.import new file mode 100644 index 0000000..6fc5a8a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RigidBody2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nga8llg8wwu6" +path="res://.godot/imported/RigidBody2D.svg-531e905aa47be7955fba4dada864bfb5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RigidBody2D.svg" +dest_files=["res://.godot/imported/RigidBody2D.svg-531e905aa47be7955fba4dada864bfb5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RigidBody3D.svg b/addons/godot_tours/bubble/assets/icons/RigidBody3D.svg new file mode 100644 index 0000000..c482a30 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RigidBody3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RigidBody3D.svg.import b/addons/godot_tours/bubble/assets/icons/RigidBody3D.svg.import new file mode 100644 index 0000000..9612121 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RigidBody3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6liedtcgnvdd" +path="res://.godot/imported/RigidBody3D.svg-2ea049383ecf9e98fb14ec0d43d736b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RigidBody3D.svg" +dest_files=["res://.godot/imported/RigidBody3D.svg-2ea049383ecf9e98fb14ec0d43d736b3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RootMotionView.svg b/addons/godot_tours/bubble/assets/icons/RootMotionView.svg new file mode 100644 index 0000000..da7888a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RootMotionView.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RootMotionView.svg.import b/addons/godot_tours/bubble/assets/icons/RootMotionView.svg.import new file mode 100644 index 0000000..e18eb80 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RootMotionView.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqawv4u248271" +path="res://.godot/imported/RootMotionView.svg-c82ec9b53ef8b38fbb0c21bc49095f91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RootMotionView.svg" +dest_files=["res://.godot/imported/RootMotionView.svg-c82ec9b53ef8b38fbb0c21bc49095f91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RotateLeft.svg b/addons/godot_tours/bubble/assets/icons/RotateLeft.svg new file mode 100644 index 0000000..9887d0d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RotateLeft.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RotateLeft.svg.import b/addons/godot_tours/bubble/assets/icons/RotateLeft.svg.import new file mode 100644 index 0000000..59842ff --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RotateLeft.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nlidkgbls1hc" +path="res://.godot/imported/RotateLeft.svg-2ec54587ce18c409385604bd09071aa1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RotateLeft.svg" +dest_files=["res://.godot/imported/RotateLeft.svg-2ec54587ce18c409385604bd09071aa1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/RotateRight.svg b/addons/godot_tours/bubble/assets/icons/RotateRight.svg new file mode 100644 index 0000000..4fbfce7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RotateRight.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/RotateRight.svg.import b/addons/godot_tours/bubble/assets/icons/RotateRight.svg.import new file mode 100644 index 0000000..2707d9c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/RotateRight.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnnd5jiamc6sn" +path="res://.godot/imported/RotateRight.svg-22ba1f6fd3a8b2bdfc8e701a39e7a9b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/RotateRight.svg" +dest_files=["res://.godot/imported/RotateRight.svg-22ba1f6fd3a8b2bdfc8e701a39e7a9b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Ruler.svg b/addons/godot_tours/bubble/assets/icons/Ruler.svg new file mode 100644 index 0000000..186b3a6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Ruler.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Ruler.svg.import b/addons/godot_tours/bubble/assets/icons/Ruler.svg.import new file mode 100644 index 0000000..366ef62 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Ruler.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buraqhojjixj1" +path="res://.godot/imported/Ruler.svg-d05dfcbce27e87ee5a5c05e7cb5f5cfd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Ruler.svg" +dest_files=["res://.godot/imported/Ruler.svg-d05dfcbce27e87ee5a5c05e7cb5f5cfd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SCsub b/addons/godot_tours/bubble/assets/icons/SCsub new file mode 100644 index 0000000..d2d752c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SCsub @@ -0,0 +1,25 @@ +#!/usr/bin/env python + +Import("env") + +import os +import editor_icons_builders + + +env["BUILDERS"]["MakeEditorIconsBuilder"] = Builder( + action=env.Run(editor_icons_builders.make_editor_icons_action), + suffix=".h", + src_suffix=".svg", +) + +# 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("#" + path + "/*.svg") # Built-in. + else: + icon_sources += Glob(path + "/*.svg") # Custom. + +env.Alias("editor_icons", [env.MakeEditorIconsBuilder("#editor/themes/editor_icons.gen.h", icon_sources)]) diff --git a/addons/godot_tours/bubble/assets/icons/SampleLibrary.svg b/addons/godot_tours/bubble/assets/icons/SampleLibrary.svg new file mode 100644 index 0000000..f9ce765 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SampleLibrary.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SampleLibrary.svg.import b/addons/godot_tours/bubble/assets/icons/SampleLibrary.svg.import new file mode 100644 index 0000000..c040101 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SampleLibrary.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clboko8s31v7e" +path="res://.godot/imported/SampleLibrary.svg-3e4713a2b6183b9d1f143d9ac9425d15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SampleLibrary.svg" +dest_files=["res://.godot/imported/SampleLibrary.svg-3e4713a2b6183b9d1f143d9ac9425d15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Save.svg b/addons/godot_tours/bubble/assets/icons/Save.svg new file mode 100644 index 0000000..260cc8f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Save.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Save.svg.import b/addons/godot_tours/bubble/assets/icons/Save.svg.import new file mode 100644 index 0000000..f81598a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Save.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bretrdtpswl37" +path="res://.godot/imported/Save.svg-3ccaddfe216667b0b1c501ad9eef235a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Save.svg" +dest_files=["res://.godot/imported/Save.svg-3ccaddfe216667b0b1c501ad9eef235a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SceneUniqueName.svg b/addons/godot_tours/bubble/assets/icons/SceneUniqueName.svg new file mode 100644 index 0000000..4ba57d7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SceneUniqueName.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SceneUniqueName.svg.import b/addons/godot_tours/bubble/assets/icons/SceneUniqueName.svg.import new file mode 100644 index 0000000..081e476 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SceneUniqueName.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://64plrw0cwfc6" +path="res://.godot/imported/SceneUniqueName.svg-637e91d06f15954c7c9763d801c6970c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SceneUniqueName.svg" +dest_files=["res://.godot/imported/SceneUniqueName.svg-637e91d06f15954c7c9763d801c6970c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Script.svg b/addons/godot_tours/bubble/assets/icons/Script.svg new file mode 100644 index 0000000..0c5b363 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Script.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Script.svg.import b/addons/godot_tours/bubble/assets/icons/Script.svg.import new file mode 100644 index 0000000..5aad32a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Script.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jkgl8tv22bih" +path="res://.godot/imported/Script.svg-3f32449826c3a532c919cd2da6f449eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Script.svg" +dest_files=["res://.godot/imported/Script.svg-3f32449826c3a532c919cd2da6f449eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ScriptCreate.svg b/addons/godot_tours/bubble/assets/icons/ScriptCreate.svg new file mode 100644 index 0000000..fc54651 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ScriptCreate.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ScriptCreate.svg.import b/addons/godot_tours/bubble/assets/icons/ScriptCreate.svg.import new file mode 100644 index 0000000..00259e1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ScriptCreate.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw1q6b3ci3lix" +path="res://.godot/imported/ScriptCreate.svg-eb24adb04a3a600b0cdf210d6e9174e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ScriptCreate.svg" +dest_files=["res://.godot/imported/ScriptCreate.svg-eb24adb04a3a600b0cdf210d6e9174e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ScriptCreateDialog.svg b/addons/godot_tours/bubble/assets/icons/ScriptCreateDialog.svg new file mode 100644 index 0000000..3039c5a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ScriptCreateDialog.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ScriptCreateDialog.svg.import b/addons/godot_tours/bubble/assets/icons/ScriptCreateDialog.svg.import new file mode 100644 index 0000000..71701ae --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ScriptCreateDialog.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqx83rpbwewus" +path="res://.godot/imported/ScriptCreateDialog.svg-1ed674eff34cc55c30110e3d55b8cc9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ScriptCreateDialog.svg" +dest_files=["res://.godot/imported/ScriptCreateDialog.svg-1ed674eff34cc55c30110e3d55b8cc9a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ScriptExtend.svg b/addons/godot_tours/bubble/assets/icons/ScriptExtend.svg new file mode 100644 index 0000000..3f7c358 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ScriptExtend.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ScriptExtend.svg.import b/addons/godot_tours/bubble/assets/icons/ScriptExtend.svg.import new file mode 100644 index 0000000..850564e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ScriptExtend.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg18uvoer8bvx" +path="res://.godot/imported/ScriptExtend.svg-882cd8694a2a8fa41a67e9c44daf82b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ScriptExtend.svg" +dest_files=["res://.godot/imported/ScriptExtend.svg-882cd8694a2a8fa41a67e9c44daf82b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ScriptRemove.svg b/addons/godot_tours/bubble/assets/icons/ScriptRemove.svg new file mode 100644 index 0000000..14ae5d1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ScriptRemove.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ScriptRemove.svg.import b/addons/godot_tours/bubble/assets/icons/ScriptRemove.svg.import new file mode 100644 index 0000000..2c38b3a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ScriptRemove.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://euwlhmmqopk" +path="res://.godot/imported/ScriptRemove.svg-da2fdb5f1914c68fd9b45ed130e0906f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ScriptRemove.svg" +dest_files=["res://.godot/imported/ScriptRemove.svg-da2fdb5f1914c68fd9b45ed130e0906f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ScrollContainer.svg b/addons/godot_tours/bubble/assets/icons/ScrollContainer.svg new file mode 100644 index 0000000..aef634a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ScrollContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ScrollContainer.svg.import b/addons/godot_tours/bubble/assets/icons/ScrollContainer.svg.import new file mode 100644 index 0000000..79ecc2a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ScrollContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bck1cvkwy83kq" +path="res://.godot/imported/ScrollContainer.svg-152a033eb26b263da59d5c19c5d98131.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ScrollContainer.svg" +dest_files=["res://.godot/imported/ScrollContainer.svg-152a033eb26b263da59d5c19c5d98131.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Search.svg b/addons/godot_tours/bubble/assets/icons/Search.svg new file mode 100644 index 0000000..e046e87 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Search.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Search.svg.import b/addons/godot_tours/bubble/assets/icons/Search.svg.import new file mode 100644 index 0000000..92fc22b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Search.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d20gv7xwe4mx6" +path="res://.godot/imported/Search.svg-66362b135029a8f7729dddb255093252.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Search.svg" +dest_files=["res://.godot/imported/Search.svg-66362b135029a8f7729dddb255093252.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SegmentShape2D.svg b/addons/godot_tours/bubble/assets/icons/SegmentShape2D.svg new file mode 100644 index 0000000..23e7054 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SegmentShape2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SegmentShape2D.svg.import b/addons/godot_tours/bubble/assets/icons/SegmentShape2D.svg.import new file mode 100644 index 0000000..a5ef5c3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SegmentShape2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vlen6ms1w5it" +path="res://.godot/imported/SegmentShape2D.svg-6bfddd5ab4d00bec3a311a44e264a19b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SegmentShape2D.svg" +dest_files=["res://.godot/imported/SegmentShape2D.svg-6bfddd5ab4d00bec3a311a44e264a19b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SeparationRayShape2D.svg b/addons/godot_tours/bubble/assets/icons/SeparationRayShape2D.svg new file mode 100644 index 0000000..71da58f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SeparationRayShape2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SeparationRayShape2D.svg.import b/addons/godot_tours/bubble/assets/icons/SeparationRayShape2D.svg.import new file mode 100644 index 0000000..aa69b7e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SeparationRayShape2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wkf1pib7pkfa" +path="res://.godot/imported/SeparationRayShape2D.svg-cb33898bd71110e2b1bc6d2de74f95f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SeparationRayShape2D.svg" +dest_files=["res://.godot/imported/SeparationRayShape2D.svg-cb33898bd71110e2b1bc6d2de74f95f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SeparationRayShape3D.svg b/addons/godot_tours/bubble/assets/icons/SeparationRayShape3D.svg new file mode 100644 index 0000000..65c68d0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SeparationRayShape3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SeparationRayShape3D.svg.import b/addons/godot_tours/bubble/assets/icons/SeparationRayShape3D.svg.import new file mode 100644 index 0000000..d2d235e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SeparationRayShape3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk5suweu1hraj" +path="res://.godot/imported/SeparationRayShape3D.svg-497a2eff1710f2e0c8d7f1c1c3548f59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SeparationRayShape3D.svg" +dest_files=["res://.godot/imported/SeparationRayShape3D.svg-497a2eff1710f2e0c8d7f1c1c3548f59.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Shader.svg b/addons/godot_tours/bubble/assets/icons/Shader.svg new file mode 100644 index 0000000..2828ad5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Shader.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Shader.svg.import b/addons/godot_tours/bubble/assets/icons/Shader.svg.import new file mode 100644 index 0000000..dbcd1f5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Shader.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b827exfvurwvf" +path="res://.godot/imported/Shader.svg-22d8b143d118e59f71c5fffd261029ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Shader.svg" +dest_files=["res://.godot/imported/Shader.svg-22d8b143d118e59f71c5fffd261029ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ShaderGlobalsOverride.svg b/addons/godot_tours/bubble/assets/icons/ShaderGlobalsOverride.svg new file mode 100644 index 0000000..8ac50f0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShaderGlobalsOverride.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ShaderGlobalsOverride.svg.import b/addons/godot_tours/bubble/assets/icons/ShaderGlobalsOverride.svg.import new file mode 100644 index 0000000..b7b12e3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShaderGlobalsOverride.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0jqmhey5qg4b" +path="res://.godot/imported/ShaderGlobalsOverride.svg-4f2ed3aa22b67e966876ec31f86869e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ShaderGlobalsOverride.svg" +dest_files=["res://.godot/imported/ShaderGlobalsOverride.svg-4f2ed3aa22b67e966876ec31f86869e5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ShaderInclude.svg b/addons/godot_tours/bubble/assets/icons/ShaderInclude.svg new file mode 100644 index 0000000..8c540b5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShaderInclude.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ShaderInclude.svg.import b/addons/godot_tours/bubble/assets/icons/ShaderInclude.svg.import new file mode 100644 index 0000000..590c468 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShaderInclude.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkwamjl7qn8oi" +path="res://.godot/imported/ShaderInclude.svg-07016ca7c9a0adc43e192787e5c911cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ShaderInclude.svg" +dest_files=["res://.godot/imported/ShaderInclude.svg-07016ca7c9a0adc43e192787e5c911cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ShaderMaterial.svg b/addons/godot_tours/bubble/assets/icons/ShaderMaterial.svg new file mode 100644 index 0000000..a53be38 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShaderMaterial.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ShaderMaterial.svg.import b/addons/godot_tours/bubble/assets/icons/ShaderMaterial.svg.import new file mode 100644 index 0000000..cdc0a65 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShaderMaterial.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cieits6hqcxvx" +path="res://.godot/imported/ShaderMaterial.svg-fad0d38a4d3e2cbceb74c44354b5a8eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ShaderMaterial.svg" +dest_files=["res://.godot/imported/ShaderMaterial.svg-fad0d38a4d3e2cbceb74c44354b5a8eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ShapeCast2D.svg b/addons/godot_tours/bubble/assets/icons/ShapeCast2D.svg new file mode 100644 index 0000000..f659a80 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShapeCast2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ShapeCast2D.svg.import b/addons/godot_tours/bubble/assets/icons/ShapeCast2D.svg.import new file mode 100644 index 0000000..91ed20d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShapeCast2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://73qln1oc0g1l" +path="res://.godot/imported/ShapeCast2D.svg-b108ac0c275077aa5158cc29e40c9edd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ShapeCast2D.svg" +dest_files=["res://.godot/imported/ShapeCast2D.svg-b108ac0c275077aa5158cc29e40c9edd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ShapeCast3D.svg b/addons/godot_tours/bubble/assets/icons/ShapeCast3D.svg new file mode 100644 index 0000000..c5f8598 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShapeCast3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ShapeCast3D.svg.import b/addons/godot_tours/bubble/assets/icons/ShapeCast3D.svg.import new file mode 100644 index 0000000..e3bced3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShapeCast3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtvywki3ryyxs" +path="res://.godot/imported/ShapeCast3D.svg-1dbb5d21c5e349a0852f2382c98b13c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ShapeCast3D.svg" +dest_files=["res://.godot/imported/ShapeCast3D.svg-1dbb5d21c5e349a0852f2382c98b13c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Shortcut.svg b/addons/godot_tours/bubble/assets/icons/Shortcut.svg new file mode 100644 index 0000000..10a5c89 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Shortcut.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Shortcut.svg.import b/addons/godot_tours/bubble/assets/icons/Shortcut.svg.import new file mode 100644 index 0000000..4f41f89 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Shortcut.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnwcpy5ca2pof" +path="res://.godot/imported/Shortcut.svg-bde74f2810d2d1c448f22397a46dd2a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Shortcut.svg" +dest_files=["res://.godot/imported/Shortcut.svg-bde74f2810d2d1c448f22397a46dd2a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ShowInFileSystem.svg b/addons/godot_tours/bubble/assets/icons/ShowInFileSystem.svg new file mode 100644 index 0000000..9cfeaf4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShowInFileSystem.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ShowInFileSystem.svg.import b/addons/godot_tours/bubble/assets/icons/ShowInFileSystem.svg.import new file mode 100644 index 0000000..7fcba6a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ShowInFileSystem.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkkyabtktg8l4" +path="res://.godot/imported/ShowInFileSystem.svg-b1a962dc8827053a5e5858e040dd3226.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ShowInFileSystem.svg" +dest_files=["res://.godot/imported/ShowInFileSystem.svg-b1a962dc8827053a5e5858e040dd3226.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Signal.svg b/addons/godot_tours/bubble/assets/icons/Signal.svg new file mode 100644 index 0000000..ad5b5e5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Signal.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Signal.svg.import b/addons/godot_tours/bubble/assets/icons/Signal.svg.import new file mode 100644 index 0000000..d13c1fe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Signal.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://durx5v5enniib" +path="res://.godot/imported/Signal.svg-ce26fc84f9f2a3b5bd84043f0227b4b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Signal.svg" +dest_files=["res://.godot/imported/Signal.svg-ce26fc84f9f2a3b5bd84043f0227b4b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Signals.svg b/addons/godot_tours/bubble/assets/icons/Signals.svg new file mode 100644 index 0000000..3ac7c2b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Signals.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Signals.svg.import b/addons/godot_tours/bubble/assets/icons/Signals.svg.import new file mode 100644 index 0000000..7d39ce1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Signals.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmfo53okac7sb" +path="res://.godot/imported/Signals.svg-09cf6974fa4fad54088d55ce89cc5efc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Signals.svg" +dest_files=["res://.godot/imported/Signals.svg-09cf6974fa4fad54088d55ce89cc5efc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SignalsAndGroups.svg b/addons/godot_tours/bubble/assets/icons/SignalsAndGroups.svg new file mode 100644 index 0000000..3f618c6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SignalsAndGroups.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SignalsAndGroups.svg.import b/addons/godot_tours/bubble/assets/icons/SignalsAndGroups.svg.import new file mode 100644 index 0000000..87ec94a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SignalsAndGroups.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co831scnwmjn7" +path="res://.godot/imported/SignalsAndGroups.svg-f3bbafb1343c3e59990fbe8fcc882410.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SignalsAndGroups.svg" +dest_files=["res://.godot/imported/SignalsAndGroups.svg-f3bbafb1343c3e59990fbe8fcc882410.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Skeleton2D.svg b/addons/godot_tours/bubble/assets/icons/Skeleton2D.svg new file mode 100644 index 0000000..27a4015 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Skeleton2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Skeleton2D.svg.import b/addons/godot_tours/bubble/assets/icons/Skeleton2D.svg.import new file mode 100644 index 0000000..9b72135 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Skeleton2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq45vs1yuyxp2" +path="res://.godot/imported/Skeleton2D.svg-16274c83c1084009268256f4323e4d04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Skeleton2D.svg" +dest_files=["res://.godot/imported/Skeleton2D.svg-16274c83c1084009268256f4323e4d04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Skeleton3D.svg b/addons/godot_tours/bubble/assets/icons/Skeleton3D.svg new file mode 100644 index 0000000..6364b3f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Skeleton3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Skeleton3D.svg.import b/addons/godot_tours/bubble/assets/icons/Skeleton3D.svg.import new file mode 100644 index 0000000..25188f5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Skeleton3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d38lctfppogbs" +path="res://.godot/imported/Skeleton3D.svg-593fd3f49e8724e8b87cd3fc1b32ffdd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Skeleton3D.svg" +dest_files=["res://.godot/imported/Skeleton3D.svg-593fd3f49e8724e8b87cd3fc1b32ffdd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SkeletonIK3D.svg b/addons/godot_tours/bubble/assets/icons/SkeletonIK3D.svg new file mode 100644 index 0000000..aca71a7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SkeletonIK3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SkeletonIK3D.svg.import b/addons/godot_tours/bubble/assets/icons/SkeletonIK3D.svg.import new file mode 100644 index 0000000..5c221d6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SkeletonIK3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhu1863b4aerw" +path="res://.godot/imported/SkeletonIK3D.svg-00d017f8600570eed66579e9b2a99421.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SkeletonIK3D.svg" +dest_files=["res://.godot/imported/SkeletonIK3D.svg-00d017f8600570eed66579e9b2a99421.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SkeletonModifier3D.svg b/addons/godot_tours/bubble/assets/icons/SkeletonModifier3D.svg new file mode 100644 index 0000000..e3505a5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SkeletonModifier3D.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/SkeletonModifier3D.svg.import b/addons/godot_tours/bubble/assets/icons/SkeletonModifier3D.svg.import new file mode 100644 index 0000000..f5cb965 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SkeletonModifier3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3acbdpnjndgu" +path="res://.godot/imported/SkeletonModifier3D.svg-06a8debfb826ef532bd0397959974223.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SkeletonModifier3D.svg" +dest_files=["res://.godot/imported/SkeletonModifier3D.svg-06a8debfb826ef532bd0397959974223.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Sky.svg b/addons/godot_tours/bubble/assets/icons/Sky.svg new file mode 100644 index 0000000..73656ed --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Sky.svg @@ -0,0 +1 @@ + diff --git a/tours/godot-first-tour/assets/gdquest-logo.png.import b/addons/godot_tours/bubble/assets/icons/Sky.svg.import similarity index 60% rename from tours/godot-first-tour/assets/gdquest-logo.png.import rename to addons/godot_tours/bubble/assets/icons/Sky.svg.import index 1857c20..4bd338b 100644 --- a/tours/godot-first-tour/assets/gdquest-logo.png.import +++ b/addons/godot_tours/bubble/assets/icons/Sky.svg.import @@ -2,16 +2,16 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bmwfb0mc3i4xv" -path="res://.godot/imported/gdquest-logo.png-a88edf26dfb397c4a823f1a67b6f48ce.ctex" +uid="uid://o3rqqi4p800" +path="res://.godot/imported/Sky.svg-7b158f31d0ce9d62ca52b8d63865620b.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://tours/godot-first-tour/assets/gdquest-logo.png" -dest_files=["res://.godot/imported/gdquest-logo.png-a88edf26dfb397c4a823f1a67b6f48ce.ctex"] +source_file="res://addons/godot_tours/bubble/assets/icons/Sky.svg" +dest_files=["res://.godot/imported/Sky.svg-7b158f31d0ce9d62ca52b8d63865620b.ctex"] [params] @@ -32,3 +32,6 @@ process/hdr_as_srgb=false process/hdr_clamp_exposure=false process/size_limit=0 detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SliderJoint3D.svg b/addons/godot_tours/bubble/assets/icons/SliderJoint3D.svg new file mode 100644 index 0000000..f7ff73d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SliderJoint3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SliderJoint3D.svg.import b/addons/godot_tours/bubble/assets/icons/SliderJoint3D.svg.import new file mode 100644 index 0000000..e9fddde --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SliderJoint3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvf8y8la7j6hv" +path="res://.godot/imported/SliderJoint3D.svg-23d15f55ec5a9b89f2d99b137b058aed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SliderJoint3D.svg" +dest_files=["res://.godot/imported/SliderJoint3D.svg-23d15f55ec5a9b89f2d99b137b058aed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Slot.svg b/addons/godot_tours/bubble/assets/icons/Slot.svg new file mode 100644 index 0000000..93c125a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Slot.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Slot.svg.import b/addons/godot_tours/bubble/assets/icons/Slot.svg.import new file mode 100644 index 0000000..c09c247 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Slot.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7qdoh8vsf64p" +path="res://.godot/imported/Slot.svg-6ead4fc821fd9b628a02e251408e1db7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Slot.svg" +dest_files=["res://.godot/imported/Slot.svg-6ead4fc821fd9b628a02e251408e1db7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Snap.svg b/addons/godot_tours/bubble/assets/icons/Snap.svg new file mode 100644 index 0000000..22f52ed --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Snap.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Snap.svg.import b/addons/godot_tours/bubble/assets/icons/Snap.svg.import new file mode 100644 index 0000000..07ad4b1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Snap.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx4k64rqjjya4" +path="res://.godot/imported/Snap.svg-40491829a86c2fefde64f5f159518600.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Snap.svg" +dest_files=["res://.godot/imported/Snap.svg-40491829a86c2fefde64f5f159518600.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SnapDisable.svg b/addons/godot_tours/bubble/assets/icons/SnapDisable.svg new file mode 100644 index 0000000..deabc20 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SnapDisable.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SnapDisable.svg.import b/addons/godot_tours/bubble/assets/icons/SnapDisable.svg.import new file mode 100644 index 0000000..a7b0147 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SnapDisable.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpdmworvr8b70" +path="res://.godot/imported/SnapDisable.svg-f91c004972ca890104f24e9a410eddfc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SnapDisable.svg" +dest_files=["res://.godot/imported/SnapDisable.svg-f91c004972ca890104f24e9a410eddfc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SnapGrid.svg b/addons/godot_tours/bubble/assets/icons/SnapGrid.svg new file mode 100644 index 0000000..070a842 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SnapGrid.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SnapGrid.svg.import b/addons/godot_tours/bubble/assets/icons/SnapGrid.svg.import new file mode 100644 index 0000000..d3c4197 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SnapGrid.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyx2hi4sahxt0" +path="res://.godot/imported/SnapGrid.svg-da20721d35cc312b7687b1bbe4486388.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SnapGrid.svg" +dest_files=["res://.godot/imported/SnapGrid.svg-da20721d35cc312b7687b1bbe4486388.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SoftBody3D.svg b/addons/godot_tours/bubble/assets/icons/SoftBody3D.svg new file mode 100644 index 0000000..1bd2531 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SoftBody3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SoftBody3D.svg.import b/addons/godot_tours/bubble/assets/icons/SoftBody3D.svg.import new file mode 100644 index 0000000..0a74c8e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SoftBody3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3eywjedfq3p2" +path="res://.godot/imported/SoftBody3D.svg-58a8597425c3796dc3b61f6e436091ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SoftBody3D.svg" +dest_files=["res://.godot/imported/SoftBody3D.svg-58a8597425c3796dc3b61f6e436091ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Sort.svg b/addons/godot_tours/bubble/assets/icons/Sort.svg new file mode 100644 index 0000000..da18d50 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Sort.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Sort.svg.import b/addons/godot_tours/bubble/assets/icons/Sort.svg.import new file mode 100644 index 0000000..64d3a4b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Sort.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0ootp83hlw2h" +path="res://.godot/imported/Sort.svg-3db2dd21731726c3ed9fd48f68dd6422.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Sort.svg" +dest_files=["res://.godot/imported/Sort.svg-3db2dd21731726c3ed9fd48f68dd6422.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SphereMesh.svg b/addons/godot_tours/bubble/assets/icons/SphereMesh.svg new file mode 100644 index 0000000..83dd42f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SphereMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SphereMesh.svg.import b/addons/godot_tours/bubble/assets/icons/SphereMesh.svg.import new file mode 100644 index 0000000..ba2859d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SphereMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn4mtbopvw2nc" +path="res://.godot/imported/SphereMesh.svg-1461bc451bffc3c3c83d2635c99fd4dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SphereMesh.svg" +dest_files=["res://.godot/imported/SphereMesh.svg-1461bc451bffc3c3c83d2635c99fd4dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SphereOccluder3D.svg b/addons/godot_tours/bubble/assets/icons/SphereOccluder3D.svg new file mode 100644 index 0000000..d593ce6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SphereOccluder3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SphereOccluder3D.svg.import b/addons/godot_tours/bubble/assets/icons/SphereOccluder3D.svg.import new file mode 100644 index 0000000..eeda3d1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SphereOccluder3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5ams23523xmd" +path="res://.godot/imported/SphereOccluder3D.svg-35b6ae782b5dc570b8bc7712291ce2af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SphereOccluder3D.svg" +dest_files=["res://.godot/imported/SphereOccluder3D.svg-35b6ae782b5dc570b8bc7712291ce2af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SphereShape3D.svg b/addons/godot_tours/bubble/assets/icons/SphereShape3D.svg new file mode 100644 index 0000000..6aceee5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SphereShape3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SphereShape3D.svg.import b/addons/godot_tours/bubble/assets/icons/SphereShape3D.svg.import new file mode 100644 index 0000000..bea3c6a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SphereShape3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2vh573t0hwpi" +path="res://.godot/imported/SphereShape3D.svg-2e18fd0a719d0b8207887946e71eae3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SphereShape3D.svg" +dest_files=["res://.godot/imported/SphereShape3D.svg-2e18fd0a719d0b8207887946e71eae3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SpinBox.svg b/addons/godot_tours/bubble/assets/icons/SpinBox.svg new file mode 100644 index 0000000..9dd875d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SpinBox.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SpinBox.svg.import b/addons/godot_tours/bubble/assets/icons/SpinBox.svg.import new file mode 100644 index 0000000..6c30667 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SpinBox.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b71q4fa25uvlk" +path="res://.godot/imported/SpinBox.svg-ddb6b8f8614f5d00ea1ab18401cf1329.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SpinBox.svg" +dest_files=["res://.godot/imported/SpinBox.svg-ddb6b8f8614f5d00ea1ab18401cf1329.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SplitContainer.svg b/addons/godot_tours/bubble/assets/icons/SplitContainer.svg new file mode 100644 index 0000000..a44d78f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SplitContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SplitContainer.svg.import b/addons/godot_tours/bubble/assets/icons/SplitContainer.svg.import new file mode 100644 index 0000000..f3e521a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SplitContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djn81twmngesm" +path="res://.godot/imported/SplitContainer.svg-9945b8a4707bd8748b961b5368f9b31f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SplitContainer.svg" +dest_files=["res://.godot/imported/SplitContainer.svg-9945b8a4707bd8748b961b5368f9b31f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SpotLight3D.svg b/addons/godot_tours/bubble/assets/icons/SpotLight3D.svg new file mode 100644 index 0000000..0d43545 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SpotLight3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SpotLight3D.svg.import b/addons/godot_tours/bubble/assets/icons/SpotLight3D.svg.import new file mode 100644 index 0000000..5f2dd8d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SpotLight3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w8v3xsln7ajr" +path="res://.godot/imported/SpotLight3D.svg-214ddbca48f50295b8e8e481dc031e19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SpotLight3D.svg" +dest_files=["res://.godot/imported/SpotLight3D.svg-214ddbca48f50295b8e8e481dc031e19.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SpringArm3D.svg b/addons/godot_tours/bubble/assets/icons/SpringArm3D.svg new file mode 100644 index 0000000..e2c607c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SpringArm3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SpringArm3D.svg.import b/addons/godot_tours/bubble/assets/icons/SpringArm3D.svg.import new file mode 100644 index 0000000..4b3c398 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SpringArm3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl5dbqquvt6cu" +path="res://.godot/imported/SpringArm3D.svg-91d290d973a4fb1cc8863206ca397b7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SpringArm3D.svg" +dest_files=["res://.godot/imported/SpringArm3D.svg-91d290d973a4fb1cc8863206ca397b7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Sprite2D.svg b/addons/godot_tours/bubble/assets/icons/Sprite2D.svg new file mode 100644 index 0000000..ce6b08b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Sprite2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Sprite2D.svg.import b/addons/godot_tours/bubble/assets/icons/Sprite2D.svg.import new file mode 100644 index 0000000..66629b9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Sprite2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw3kqha66k5g1" +path="res://.godot/imported/Sprite2D.svg-6fd99f08d49ddcc8dadb6947a12ce656.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Sprite2D.svg" +dest_files=["res://.godot/imported/Sprite2D.svg-6fd99f08d49ddcc8dadb6947a12ce656.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Sprite3D.svg b/addons/godot_tours/bubble/assets/icons/Sprite3D.svg new file mode 100644 index 0000000..ac62610 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Sprite3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Sprite3D.svg.import b/addons/godot_tours/bubble/assets/icons/Sprite3D.svg.import new file mode 100644 index 0000000..439772a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Sprite3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dalfq482nfkft" +path="res://.godot/imported/Sprite3D.svg-ce21569a121d6f95f928f06ff74f169a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Sprite3D.svg" +dest_files=["res://.godot/imported/Sprite3D.svg-ce21569a121d6f95f928f06ff74f169a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SpriteFrames.svg b/addons/godot_tours/bubble/assets/icons/SpriteFrames.svg new file mode 100644 index 0000000..a6aecc4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SpriteFrames.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SpriteFrames.svg.import b/addons/godot_tours/bubble/assets/icons/SpriteFrames.svg.import new file mode 100644 index 0000000..cd43f7a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SpriteFrames.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp4w54tt4d5wc" +path="res://.godot/imported/SpriteFrames.svg-a3445ea743d4c99163673a84dc6a0d6c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SpriteFrames.svg" +dest_files=["res://.godot/imported/SpriteFrames.svg-a3445ea743d4c99163673a84dc6a0d6c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SpriteSheet.svg b/addons/godot_tours/bubble/assets/icons/SpriteSheet.svg new file mode 100644 index 0000000..2e2c512 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SpriteSheet.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SpriteSheet.svg.import b/addons/godot_tours/bubble/assets/icons/SpriteSheet.svg.import new file mode 100644 index 0000000..6662157 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SpriteSheet.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v328ifrv7nqc" +path="res://.godot/imported/SpriteSheet.svg-f3ca09a53c0e8625cb666915aa5e28e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SpriteSheet.svg" +dest_files=["res://.godot/imported/SpriteSheet.svg-f3ca09a53c0e8625cb666915aa5e28e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StandardMaterial3D.svg b/addons/godot_tours/bubble/assets/icons/StandardMaterial3D.svg new file mode 100644 index 0000000..41e9a67 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StandardMaterial3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StandardMaterial3D.svg.import b/addons/godot_tours/bubble/assets/icons/StandardMaterial3D.svg.import new file mode 100644 index 0000000..25bf59a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StandardMaterial3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j5mve6tcj4p7" +path="res://.godot/imported/StandardMaterial3D.svg-e6d59bf9965cd435ea2eccf41ab3a4e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StandardMaterial3D.svg" +dest_files=["res://.godot/imported/StandardMaterial3D.svg-e6d59bf9965cd435ea2eccf41ab3a4e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StaticBody2D.svg b/addons/godot_tours/bubble/assets/icons/StaticBody2D.svg new file mode 100644 index 0000000..a4aa560 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StaticBody2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StaticBody2D.svg.import b/addons/godot_tours/bubble/assets/icons/StaticBody2D.svg.import new file mode 100644 index 0000000..6f567cb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StaticBody2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co6sm2ahyir88" +path="res://.godot/imported/StaticBody2D.svg-59d44ad2b44dc1ea2c6956809c3e5006.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StaticBody2D.svg" +dest_files=["res://.godot/imported/StaticBody2D.svg-59d44ad2b44dc1ea2c6956809c3e5006.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StaticBody3D.svg b/addons/godot_tours/bubble/assets/icons/StaticBody3D.svg new file mode 100644 index 0000000..90082e4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StaticBody3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StaticBody3D.svg.import b/addons/godot_tours/bubble/assets/icons/StaticBody3D.svg.import new file mode 100644 index 0000000..1c3e889 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StaticBody3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://x7wtt46q4ic4" +path="res://.godot/imported/StaticBody3D.svg-4508c8e560af1e9f80675f934b483c2f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StaticBody3D.svg" +dest_files=["res://.godot/imported/StaticBody3D.svg-4508c8e560af1e9f80675f934b483c2f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StatusError.svg b/addons/godot_tours/bubble/assets/icons/StatusError.svg new file mode 100644 index 0000000..d6e3ebe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StatusError.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StatusError.svg.import b/addons/godot_tours/bubble/assets/icons/StatusError.svg.import new file mode 100644 index 0000000..4fd2777 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StatusError.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qfrqf827ffcr" +path="res://.godot/imported/StatusError.svg-72e35e7a6e26d5c4a6cdd18511b4cda1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StatusError.svg" +dest_files=["res://.godot/imported/StatusError.svg-72e35e7a6e26d5c4a6cdd18511b4cda1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StatusIndicator.svg b/addons/godot_tours/bubble/assets/icons/StatusIndicator.svg new file mode 100644 index 0000000..09673b3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StatusIndicator.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StatusIndicator.svg.import b/addons/godot_tours/bubble/assets/icons/StatusIndicator.svg.import new file mode 100644 index 0000000..2f69fec --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StatusIndicator.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnpsfvbc3eorv" +path="res://.godot/imported/StatusIndicator.svg-14de9e0eb9eba58ed8c86acfe33510d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StatusIndicator.svg" +dest_files=["res://.godot/imported/StatusIndicator.svg-14de9e0eb9eba58ed8c86acfe33510d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StatusSuccess.svg b/addons/godot_tours/bubble/assets/icons/StatusSuccess.svg new file mode 100644 index 0000000..4658d19 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StatusSuccess.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StatusSuccess.svg.import b/addons/godot_tours/bubble/assets/icons/StatusSuccess.svg.import new file mode 100644 index 0000000..9d8dfea --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StatusSuccess.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6beenc2x1bn2" +path="res://.godot/imported/StatusSuccess.svg-e7043e18a1f2ef7419c503d3c14f9ff6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StatusSuccess.svg" +dest_files=["res://.godot/imported/StatusSuccess.svg-e7043e18a1f2ef7419c503d3c14f9ff6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StatusWarning.svg b/addons/godot_tours/bubble/assets/icons/StatusWarning.svg new file mode 100644 index 0000000..876582a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StatusWarning.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StatusWarning.svg.import b/addons/godot_tours/bubble/assets/icons/StatusWarning.svg.import new file mode 100644 index 0000000..6266d02 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StatusWarning.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5g354afu3ruj" +path="res://.godot/imported/StatusWarning.svg-62285940a8b42c6aca9ce618a9429ece.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StatusWarning.svg" +dest_files=["res://.godot/imported/StatusWarning.svg-62285940a8b42c6aca9ce618a9429ece.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Stop.svg b/addons/godot_tours/bubble/assets/icons/Stop.svg new file mode 100644 index 0000000..b10acdb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Stop.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Stop.svg.import b/addons/godot_tours/bubble/assets/icons/Stop.svg.import new file mode 100644 index 0000000..83ec280 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Stop.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckco0sflnf0m6" +path="res://.godot/imported/Stop.svg-db0050c3f187f338ac37691a012a4143.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Stop.svg" +dest_files=["res://.godot/imported/Stop.svg-db0050c3f187f338ac37691a012a4143.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/String.svg b/addons/godot_tours/bubble/assets/icons/String.svg new file mode 100644 index 0000000..0028973 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/String.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/String.svg.import b/addons/godot_tours/bubble/assets/icons/String.svg.import new file mode 100644 index 0000000..a168405 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/String.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cohesm2it7fw5" +path="res://.godot/imported/String.svg-41fdfe9d3ea539faada398aa9441ef0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/String.svg" +dest_files=["res://.godot/imported/String.svg-41fdfe9d3ea539faada398aa9441ef0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StringName.svg b/addons/godot_tours/bubble/assets/icons/StringName.svg new file mode 100644 index 0000000..3520c20 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StringName.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StringName.svg.import b/addons/godot_tours/bubble/assets/icons/StringName.svg.import new file mode 100644 index 0000000..f8be5a3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StringName.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3vr5hwyhl8e6" +path="res://.godot/imported/StringName.svg-1c8335d4a7b10b6236d167e5ba6cfb0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StringName.svg" +dest_files=["res://.godot/imported/StringName.svg-1c8335d4a7b10b6236d167e5ba6cfb0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StyleBoxEmpty.svg b/addons/godot_tours/bubble/assets/icons/StyleBoxEmpty.svg new file mode 100644 index 0000000..c110d45 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StyleBoxEmpty.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StyleBoxEmpty.svg.import b/addons/godot_tours/bubble/assets/icons/StyleBoxEmpty.svg.import new file mode 100644 index 0000000..edced48 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StyleBoxEmpty.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgxhljedqq2uc" +path="res://.godot/imported/StyleBoxEmpty.svg-dc440dd552ff86d87c4f4062d44a7ef9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StyleBoxEmpty.svg" +dest_files=["res://.godot/imported/StyleBoxEmpty.svg-dc440dd552ff86d87c4f4062d44a7ef9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StyleBoxFlat.svg b/addons/godot_tours/bubble/assets/icons/StyleBoxFlat.svg new file mode 100644 index 0000000..9868644 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StyleBoxFlat.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StyleBoxFlat.svg.import b/addons/godot_tours/bubble/assets/icons/StyleBoxFlat.svg.import new file mode 100644 index 0000000..e4ac868 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StyleBoxFlat.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hy1c0n6300qd" +path="res://.godot/imported/StyleBoxFlat.svg-ccc3028d6ad814da86a8b07b46f3657e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StyleBoxFlat.svg" +dest_files=["res://.godot/imported/StyleBoxFlat.svg-ccc3028d6ad814da86a8b07b46f3657e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StyleBoxGrid.svg b/addons/godot_tours/bubble/assets/icons/StyleBoxGrid.svg new file mode 100644 index 0000000..9702421 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StyleBoxGrid.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StyleBoxGrid.svg.import b/addons/godot_tours/bubble/assets/icons/StyleBoxGrid.svg.import new file mode 100644 index 0000000..72f059f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StyleBoxGrid.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daijje50xtjc7" +path="res://.godot/imported/StyleBoxGrid.svg-91886d0322ba47e0c90c4407b37e806c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StyleBoxGrid.svg" +dest_files=["res://.godot/imported/StyleBoxGrid.svg-91886d0322ba47e0c90c4407b37e806c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StyleBoxLine.svg b/addons/godot_tours/bubble/assets/icons/StyleBoxLine.svg new file mode 100644 index 0000000..818864f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StyleBoxLine.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StyleBoxLine.svg.import b/addons/godot_tours/bubble/assets/icons/StyleBoxLine.svg.import new file mode 100644 index 0000000..86b2436 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StyleBoxLine.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctn3b86506gnf" +path="res://.godot/imported/StyleBoxLine.svg-888f84a0497b87941f74a3a8a453cac1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StyleBoxLine.svg" +dest_files=["res://.godot/imported/StyleBoxLine.svg-888f84a0497b87941f74a3a8a453cac1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/StyleBoxTexture.svg b/addons/godot_tours/bubble/assets/icons/StyleBoxTexture.svg new file mode 100644 index 0000000..9054053 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StyleBoxTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/StyleBoxTexture.svg.import b/addons/godot_tours/bubble/assets/icons/StyleBoxTexture.svg.import new file mode 100644 index 0000000..b8753bf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/StyleBoxTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0in07a0kh3h1" +path="res://.godot/imported/StyleBoxTexture.svg-3d25fe4a92a77e4179923f529063e0be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/StyleBoxTexture.svg" +dest_files=["res://.godot/imported/StyleBoxTexture.svg-3d25fe4a92a77e4179923f529063e0be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SubViewport.svg b/addons/godot_tours/bubble/assets/icons/SubViewport.svg new file mode 100644 index 0000000..3644215 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SubViewport.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SubViewport.svg.import b/addons/godot_tours/bubble/assets/icons/SubViewport.svg.import new file mode 100644 index 0000000..93308fa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SubViewport.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0x35cvqjtvqc" +path="res://.godot/imported/SubViewport.svg-444a3200995b1b0e4ed2209314bce08a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SubViewport.svg" +dest_files=["res://.godot/imported/SubViewport.svg-444a3200995b1b0e4ed2209314bce08a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SubViewportContainer.svg b/addons/godot_tours/bubble/assets/icons/SubViewportContainer.svg new file mode 100644 index 0000000..dc571ff --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SubViewportContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SubViewportContainer.svg.import b/addons/godot_tours/bubble/assets/icons/SubViewportContainer.svg.import new file mode 100644 index 0000000..235675b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SubViewportContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqtg686ln0ftr" +path="res://.godot/imported/SubViewportContainer.svg-9d1f2c73b736884dfc8111de59a9bd18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SubViewportContainer.svg" +dest_files=["res://.godot/imported/SubViewportContainer.svg-9d1f2c73b736884dfc8111de59a9bd18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SyntaxHighlighter.svg b/addons/godot_tours/bubble/assets/icons/SyntaxHighlighter.svg new file mode 100644 index 0000000..4773251 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SyntaxHighlighter.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SyntaxHighlighter.svg.import b/addons/godot_tours/bubble/assets/icons/SyntaxHighlighter.svg.import new file mode 100644 index 0000000..1595b05 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SyntaxHighlighter.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cujf5tcf3d3mk" +path="res://.godot/imported/SyntaxHighlighter.svg-1415a00360d2da457160d7d406d8e053.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SyntaxHighlighter.svg" +dest_files=["res://.godot/imported/SyntaxHighlighter.svg-1415a00360d2da457160d7d406d8e053.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/SystemFont.svg b/addons/godot_tours/bubble/assets/icons/SystemFont.svg new file mode 100644 index 0000000..438c707 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SystemFont.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/SystemFont.svg.import b/addons/godot_tours/bubble/assets/icons/SystemFont.svg.import new file mode 100644 index 0000000..57cb392 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/SystemFont.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u6yf1pvakgm2" +path="res://.godot/imported/SystemFont.svg-f98ad75ea9065d6b0fca60964180b1b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/SystemFont.svg" +dest_files=["res://.godot/imported/SystemFont.svg-f98ad75ea9065d6b0fca60964180b1b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TabBar.svg b/addons/godot_tours/bubble/assets/icons/TabBar.svg new file mode 100644 index 0000000..2ef0ed8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TabBar.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TabBar.svg.import b/addons/godot_tours/bubble/assets/icons/TabBar.svg.import new file mode 100644 index 0000000..18f236d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TabBar.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwubdp1jd58gx" +path="res://.godot/imported/TabBar.svg-2bd2fbcdb9db9fb80a0f4678ae59e0e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TabBar.svg" +dest_files=["res://.godot/imported/TabBar.svg-2bd2fbcdb9db9fb80a0f4678ae59e0e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TabContainer.svg b/addons/godot_tours/bubble/assets/icons/TabContainer.svg new file mode 100644 index 0000000..505f4a5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TabContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TabContainer.svg.import b/addons/godot_tours/bubble/assets/icons/TabContainer.svg.import new file mode 100644 index 0000000..5a485fd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TabContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4wo52brmf36q" +path="res://.godot/imported/TabContainer.svg-e715544cc873e1f7d0b02a19acda5697.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TabContainer.svg" +dest_files=["res://.godot/imported/TabContainer.svg-e715544cc873e1f7d0b02a19acda5697.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Terminal.svg b/addons/godot_tours/bubble/assets/icons/Terminal.svg new file mode 100644 index 0000000..5d92bdf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Terminal.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Terminal.svg.import b/addons/godot_tours/bubble/assets/icons/Terminal.svg.import new file mode 100644 index 0000000..15af2aa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Terminal.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://23o6elrpxn0q" +path="res://.godot/imported/Terminal.svg-e2b5d496698b8a68a8f3c46749d4a7eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Terminal.svg" +dest_files=["res://.godot/imported/Terminal.svg-e2b5d496698b8a68a8f3c46749d4a7eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TerrainConnect.svg b/addons/godot_tours/bubble/assets/icons/TerrainConnect.svg new file mode 100644 index 0000000..3cf7507 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TerrainConnect.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TerrainConnect.svg.import b/addons/godot_tours/bubble/assets/icons/TerrainConnect.svg.import new file mode 100644 index 0000000..7db03b3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TerrainConnect.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hxh8tn808nn1" +path="res://.godot/imported/TerrainConnect.svg-99eac4c010b31ea0334eaf860ee77521.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TerrainConnect.svg" +dest_files=["res://.godot/imported/TerrainConnect.svg-99eac4c010b31ea0334eaf860ee77521.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TerrainMatchCorners.svg b/addons/godot_tours/bubble/assets/icons/TerrainMatchCorners.svg new file mode 100644 index 0000000..ae18af4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TerrainMatchCorners.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TerrainMatchCorners.svg.import b/addons/godot_tours/bubble/assets/icons/TerrainMatchCorners.svg.import new file mode 100644 index 0000000..492b5ca --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TerrainMatchCorners.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2gcn2y4f7vli" +path="res://.godot/imported/TerrainMatchCorners.svg-92d627d4e723972d68fb3767791a15c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TerrainMatchCorners.svg" +dest_files=["res://.godot/imported/TerrainMatchCorners.svg-92d627d4e723972d68fb3767791a15c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TerrainMatchCornersAndSides.svg b/addons/godot_tours/bubble/assets/icons/TerrainMatchCornersAndSides.svg new file mode 100644 index 0000000..b9cbafd --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TerrainMatchCornersAndSides.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TerrainMatchCornersAndSides.svg.import b/addons/godot_tours/bubble/assets/icons/TerrainMatchCornersAndSides.svg.import new file mode 100644 index 0000000..4d3e100 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TerrainMatchCornersAndSides.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bey46k7mjk1w6" +path="res://.godot/imported/TerrainMatchCornersAndSides.svg-ae5f2a97c6bb9e39533dd8231712f4af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TerrainMatchCornersAndSides.svg" +dest_files=["res://.godot/imported/TerrainMatchCornersAndSides.svg-ae5f2a97c6bb9e39533dd8231712f4af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TerrainMatchSides.svg b/addons/godot_tours/bubble/assets/icons/TerrainMatchSides.svg new file mode 100644 index 0000000..f5fdb9c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TerrainMatchSides.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TerrainMatchSides.svg.import b/addons/godot_tours/bubble/assets/icons/TerrainMatchSides.svg.import new file mode 100644 index 0000000..2c4e310 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TerrainMatchSides.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bob2vh21qnyq3" +path="res://.godot/imported/TerrainMatchSides.svg-31be743fe7e50589848907d846f145b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TerrainMatchSides.svg" +dest_files=["res://.godot/imported/TerrainMatchSides.svg-31be743fe7e50589848907d846f145b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TerrainPath.svg b/addons/godot_tours/bubble/assets/icons/TerrainPath.svg new file mode 100644 index 0000000..00b63bb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TerrainPath.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TerrainPath.svg.import b/addons/godot_tours/bubble/assets/icons/TerrainPath.svg.import new file mode 100644 index 0000000..f09f76c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TerrainPath.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn40y48ciyaye" +path="res://.godot/imported/TerrainPath.svg-276f51bb1709544a76e38cb350804472.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TerrainPath.svg" +dest_files=["res://.godot/imported/TerrainPath.svg-276f51bb1709544a76e38cb350804472.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TextEdit.svg b/addons/godot_tours/bubble/assets/icons/TextEdit.svg new file mode 100644 index 0000000..1053ad1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextEdit.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TextEdit.svg.import b/addons/godot_tours/bubble/assets/icons/TextEdit.svg.import new file mode 100644 index 0000000..1a2c0b6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextEdit.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bst8tft1my4ou" +path="res://.godot/imported/TextEdit.svg-685a1d6e7d96fea713be08ec4a3a1cc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TextEdit.svg" +dest_files=["res://.godot/imported/TextEdit.svg-685a1d6e7d96fea713be08ec4a3a1cc5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TextEditorPlay.svg b/addons/godot_tours/bubble/assets/icons/TextEditorPlay.svg new file mode 100644 index 0000000..340d44f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextEditorPlay.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TextEditorPlay.svg.import b/addons/godot_tours/bubble/assets/icons/TextEditorPlay.svg.import new file mode 100644 index 0000000..c713fd4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextEditorPlay.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqulr63ie2tnk" +path="res://.godot/imported/TextEditorPlay.svg-03895c0b22724f3c6697e2e7fc42fc7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TextEditorPlay.svg" +dest_files=["res://.godot/imported/TextEditorPlay.svg-03895c0b22724f3c6697e2e7fc42fc7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TextFile.svg b/addons/godot_tours/bubble/assets/icons/TextFile.svg new file mode 100644 index 0000000..5752366 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextFile.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TextFile.svg.import b/addons/godot_tours/bubble/assets/icons/TextFile.svg.import new file mode 100644 index 0000000..e0a2727 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextFile.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmxfisyg0ucrn" +path="res://.godot/imported/TextFile.svg-68626b2ab57e3b859a533bc9f6bcd45c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TextFile.svg" +dest_files=["res://.godot/imported/TextFile.svg-68626b2ab57e3b859a533bc9f6bcd45c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TextMesh.svg b/addons/godot_tours/bubble/assets/icons/TextMesh.svg new file mode 100644 index 0000000..868ab6e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TextMesh.svg.import b/addons/godot_tours/bubble/assets/icons/TextMesh.svg.import new file mode 100644 index 0000000..52271c7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dav8lmwiwi4ar" +path="res://.godot/imported/TextMesh.svg-2ff74fac3739cc4760e0e50652c70963.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TextMesh.svg" +dest_files=["res://.godot/imported/TextMesh.svg-2ff74fac3739cc4760e0e50652c70963.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Texture2D.svg b/addons/godot_tours/bubble/assets/icons/Texture2D.svg new file mode 100644 index 0000000..635547b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Texture2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Texture2D.svg.import b/addons/godot_tours/bubble/assets/icons/Texture2D.svg.import new file mode 100644 index 0000000..3022a95 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Texture2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c40gux57fhlaw" +path="res://.godot/imported/Texture2D.svg-23e55f7fb6a5f4f175e4d37732281ef6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Texture2D.svg" +dest_files=["res://.godot/imported/Texture2D.svg-23e55f7fb6a5f4f175e4d37732281ef6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Texture2DArray.svg b/addons/godot_tours/bubble/assets/icons/Texture2DArray.svg new file mode 100644 index 0000000..f585263 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Texture2DArray.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Texture2DArray.svg.import b/addons/godot_tours/bubble/assets/icons/Texture2DArray.svg.import new file mode 100644 index 0000000..5b12e83 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Texture2DArray.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckgnra0sy6x7k" +path="res://.godot/imported/Texture2DArray.svg-4915590d09e48353c5f5b4a827d54bf3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Texture2DArray.svg" +dest_files=["res://.godot/imported/Texture2DArray.svg-4915590d09e48353c5f5b4a827d54bf3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Texture3D.svg b/addons/godot_tours/bubble/assets/icons/Texture3D.svg new file mode 100644 index 0000000..208fa41 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Texture3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Texture3D.svg.import b/addons/godot_tours/bubble/assets/icons/Texture3D.svg.import new file mode 100644 index 0000000..aa1deb3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Texture3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl5cbs1vhpim8" +path="res://.godot/imported/Texture3D.svg-a491c9aa2d9677ec3f692bb297539aaf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Texture3D.svg" +dest_files=["res://.godot/imported/Texture3D.svg-a491c9aa2d9677ec3f692bb297539aaf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TextureButton.svg b/addons/godot_tours/bubble/assets/icons/TextureButton.svg new file mode 100644 index 0000000..39ec672 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextureButton.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TextureButton.svg.import b/addons/godot_tours/bubble/assets/icons/TextureButton.svg.import new file mode 100644 index 0000000..9bb6662 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextureButton.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfehr360ldxqr" +path="res://.godot/imported/TextureButton.svg-37f91d5635c1fb0e605aaa5a13c5cae6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TextureButton.svg" +dest_files=["res://.godot/imported/TextureButton.svg-37f91d5635c1fb0e605aaa5a13c5cae6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TextureProgressBar.svg b/addons/godot_tours/bubble/assets/icons/TextureProgressBar.svg new file mode 100644 index 0000000..861772d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextureProgressBar.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TextureProgressBar.svg.import b/addons/godot_tours/bubble/assets/icons/TextureProgressBar.svg.import new file mode 100644 index 0000000..2fc17cc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextureProgressBar.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx6qq2i56x78w" +path="res://.godot/imported/TextureProgressBar.svg-aa47722d1942f1c49c19fd1451991627.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TextureProgressBar.svg" +dest_files=["res://.godot/imported/TextureProgressBar.svg-aa47722d1942f1c49c19fd1451991627.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TextureRect.svg b/addons/godot_tours/bubble/assets/icons/TextureRect.svg new file mode 100644 index 0000000..5f55c06 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextureRect.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TextureRect.svg.import b/addons/godot_tours/bubble/assets/icons/TextureRect.svg.import new file mode 100644 index 0000000..79047f7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TextureRect.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://danetryrs0mss" +path="res://.godot/imported/TextureRect.svg-0a1b5f2bf078721f5f938ae1c812ae6d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TextureRect.svg" +dest_files=["res://.godot/imported/TextureRect.svg-0a1b5f2bf078721f5f938ae1c812ae6d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Theme.svg b/addons/godot_tours/bubble/assets/icons/Theme.svg new file mode 100644 index 0000000..f35462d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Theme.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Theme.svg.import b/addons/godot_tours/bubble/assets/icons/Theme.svg.import new file mode 100644 index 0000000..05620f7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Theme.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt3l2o1bm3f7b" +path="res://.godot/imported/Theme.svg-9ca4f83008eae363f9672258e5fccded.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Theme.svg" +dest_files=["res://.godot/imported/Theme.svg-9ca4f83008eae363f9672258e5fccded.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ThemeDeselectAll.svg b/addons/godot_tours/bubble/assets/icons/ThemeDeselectAll.svg new file mode 100644 index 0000000..808aafe --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThemeDeselectAll.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ThemeDeselectAll.svg.import b/addons/godot_tours/bubble/assets/icons/ThemeDeselectAll.svg.import new file mode 100644 index 0000000..29e5bd2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThemeDeselectAll.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drkb16thxkb3e" +path="res://.godot/imported/ThemeDeselectAll.svg-16493128f23dc8a349ed57ff87ea54ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ThemeDeselectAll.svg" +dest_files=["res://.godot/imported/ThemeDeselectAll.svg-16493128f23dc8a349ed57ff87ea54ec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ThemeRemoveAllItems.svg b/addons/godot_tours/bubble/assets/icons/ThemeRemoveAllItems.svg new file mode 100644 index 0000000..d476df3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThemeRemoveAllItems.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ThemeRemoveAllItems.svg.import b/addons/godot_tours/bubble/assets/icons/ThemeRemoveAllItems.svg.import new file mode 100644 index 0000000..e9b10e4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThemeRemoveAllItems.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m1dgd8txejsb" +path="res://.godot/imported/ThemeRemoveAllItems.svg-51851caffde3303d323de64df55df9cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ThemeRemoveAllItems.svg" +dest_files=["res://.godot/imported/ThemeRemoveAllItems.svg-51851caffde3303d323de64df55df9cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ThemeRemoveCustomItems.svg b/addons/godot_tours/bubble/assets/icons/ThemeRemoveCustomItems.svg new file mode 100644 index 0000000..5748c2c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThemeRemoveCustomItems.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ThemeRemoveCustomItems.svg.import b/addons/godot_tours/bubble/assets/icons/ThemeRemoveCustomItems.svg.import new file mode 100644 index 0000000..1ba34d4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThemeRemoveCustomItems.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c31xx06w727u6" +path="res://.godot/imported/ThemeRemoveCustomItems.svg-c53fb0a72ec17245c4ffe1490b1bbe8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ThemeRemoveCustomItems.svg" +dest_files=["res://.godot/imported/ThemeRemoveCustomItems.svg-c53fb0a72ec17245c4ffe1490b1bbe8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ThemeSelectAll.svg b/addons/godot_tours/bubble/assets/icons/ThemeSelectAll.svg new file mode 100644 index 0000000..1e4e5ba --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThemeSelectAll.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ThemeSelectAll.svg.import b/addons/godot_tours/bubble/assets/icons/ThemeSelectAll.svg.import new file mode 100644 index 0000000..ec0be35 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThemeSelectAll.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dymsktvb3walv" +path="res://.godot/imported/ThemeSelectAll.svg-412faad5aa42dda5e26f55ae29950638.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ThemeSelectAll.svg" +dest_files=["res://.godot/imported/ThemeSelectAll.svg-412faad5aa42dda5e26f55ae29950638.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ThemeSelectFull.svg b/addons/godot_tours/bubble/assets/icons/ThemeSelectFull.svg new file mode 100644 index 0000000..2355aac --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThemeSelectFull.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ThemeSelectFull.svg.import b/addons/godot_tours/bubble/assets/icons/ThemeSelectFull.svg.import new file mode 100644 index 0000000..fc47d7e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThemeSelectFull.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cesyreima5m5f" +path="res://.godot/imported/ThemeSelectFull.svg-a7c2c4481c8bfd9c4ced56e52039605a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ThemeSelectFull.svg" +dest_files=["res://.godot/imported/ThemeSelectFull.svg-a7c2c4481c8bfd9c4ced56e52039605a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ThumbnailWait.svg b/addons/godot_tours/bubble/assets/icons/ThumbnailWait.svg new file mode 100644 index 0000000..14d45f9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThumbnailWait.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ThumbnailWait.svg.import b/addons/godot_tours/bubble/assets/icons/ThumbnailWait.svg.import new file mode 100644 index 0000000..5c6b247 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ThumbnailWait.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr3bv7b33ckfv" +path="res://.godot/imported/ThumbnailWait.svg-3db35fdb424b291b3e314dce71d53621.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ThumbnailWait.svg" +dest_files=["res://.godot/imported/ThumbnailWait.svg-3db35fdb424b291b3e314dce71d53621.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TileChecked.svg b/addons/godot_tours/bubble/assets/icons/TileChecked.svg new file mode 100644 index 0000000..fad3a77 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileChecked.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TileChecked.svg.import b/addons/godot_tours/bubble/assets/icons/TileChecked.svg.import new file mode 100644 index 0000000..22bf5ca --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileChecked.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt6xb86o5egi5" +path="res://.godot/imported/TileChecked.svg-fa334631e3fca80e4ff675d939013be8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TileChecked.svg" +dest_files=["res://.godot/imported/TileChecked.svg-fa334631e3fca80e4ff675d939013be8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TileMap.svg b/addons/godot_tours/bubble/assets/icons/TileMap.svg new file mode 100644 index 0000000..b30fbe8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileMap.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TileMap.svg.import b/addons/godot_tours/bubble/assets/icons/TileMap.svg.import new file mode 100644 index 0000000..e60de38 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileMap.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyase242syka" +path="res://.godot/imported/TileMap.svg-f433e844dfe6e071412c7047384519b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TileMap.svg" +dest_files=["res://.godot/imported/TileMap.svg-f433e844dfe6e071412c7047384519b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TileMapHighlightSelected.svg b/addons/godot_tours/bubble/assets/icons/TileMapHighlightSelected.svg new file mode 100644 index 0000000..8a17793 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileMapHighlightSelected.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TileMapHighlightSelected.svg.import b/addons/godot_tours/bubble/assets/icons/TileMapHighlightSelected.svg.import new file mode 100644 index 0000000..bb8c4da --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileMapHighlightSelected.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgkva47mfvil" +path="res://.godot/imported/TileMapHighlightSelected.svg-e9dcb7c2067ac3ece6c7a21e2d739121.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TileMapHighlightSelected.svg" +dest_files=["res://.godot/imported/TileMapHighlightSelected.svg-e9dcb7c2067ac3ece6c7a21e2d739121.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TileMapLayer.svg b/addons/godot_tours/bubble/assets/icons/TileMapLayer.svg new file mode 100644 index 0000000..90664de --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileMapLayer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/TileMapLayer.svg.import b/addons/godot_tours/bubble/assets/icons/TileMapLayer.svg.import new file mode 100644 index 0000000..2ffacb9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileMapLayer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpvn2243rbnxp" +path="res://.godot/imported/TileMapLayer.svg-5b27dc5a37ac19769196861b1b649b23.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TileMapLayer.svg" +dest_files=["res://.godot/imported/TileMapLayer.svg-5b27dc5a37ac19769196861b1b649b23.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TileSelection.svg b/addons/godot_tours/bubble/assets/icons/TileSelection.svg new file mode 100644 index 0000000..7925e4e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileSelection.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TileSelection.svg.import b/addons/godot_tours/bubble/assets/icons/TileSelection.svg.import new file mode 100644 index 0000000..7a4edd7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileSelection.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b07f2guxi8vf6" +path="res://.godot/imported/TileSelection.svg-87506cb6122ff0ed4467d1be0d3b9edb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TileSelection.svg" +dest_files=["res://.godot/imported/TileSelection.svg-87506cb6122ff0ed4467d1be0d3b9edb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TileSet.svg b/addons/godot_tours/bubble/assets/icons/TileSet.svg new file mode 100644 index 0000000..5d423c0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileSet.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TileSet.svg.import b/addons/godot_tours/bubble/assets/icons/TileSet.svg.import new file mode 100644 index 0000000..d9e7829 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileSet.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5efgn02df0xf" +path="res://.godot/imported/TileSet.svg-1f83ec98ac6a2e4086cde7b1f3b104fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TileSet.svg" +dest_files=["res://.godot/imported/TileSet.svg-1f83ec98ac6a2e4086cde7b1f3b104fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TileUnchecked.svg b/addons/godot_tours/bubble/assets/icons/TileUnchecked.svg new file mode 100644 index 0000000..64600b9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileUnchecked.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TileUnchecked.svg.import b/addons/godot_tours/bubble/assets/icons/TileUnchecked.svg.import new file mode 100644 index 0000000..9db26b0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TileUnchecked.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bof73b1na48ew" +path="res://.godot/imported/TileUnchecked.svg-ac6230f79c89218c399602623c8f95f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TileUnchecked.svg" +dest_files=["res://.godot/imported/TileUnchecked.svg-ac6230f79c89218c399602623c8f95f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Time.svg b/addons/godot_tours/bubble/assets/icons/Time.svg new file mode 100644 index 0000000..ec09b3d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Time.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Time.svg.import b/addons/godot_tours/bubble/assets/icons/Time.svg.import new file mode 100644 index 0000000..3f1ac20 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Time.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://in1pktbj8hlo" +path="res://.godot/imported/Time.svg-d71842ff9e280d36b5ce2bd2af088f04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Time.svg" +dest_files=["res://.godot/imported/Time.svg-d71842ff9e280d36b5ce2bd2af088f04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TimelineIndicator.svg b/addons/godot_tours/bubble/assets/icons/TimelineIndicator.svg new file mode 100644 index 0000000..3f89206 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TimelineIndicator.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TimelineIndicator.svg.import b/addons/godot_tours/bubble/assets/icons/TimelineIndicator.svg.import new file mode 100644 index 0000000..398299b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TimelineIndicator.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8u5k02o7l3et" +path="res://.godot/imported/TimelineIndicator.svg-b787e148ce391770c36cb58a554fe35b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TimelineIndicator.svg" +dest_files=["res://.godot/imported/TimelineIndicator.svg-b787e148ce391770c36cb58a554fe35b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Timer.svg b/addons/godot_tours/bubble/assets/icons/Timer.svg new file mode 100644 index 0000000..565a3b7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Timer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Timer.svg.import b/addons/godot_tours/bubble/assets/icons/Timer.svg.import new file mode 100644 index 0000000..51b29ef --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Timer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brpw1agan0cko" +path="res://.godot/imported/Timer.svg-774eacbc80be43e579b83316d1b1639d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Timer.svg" +dest_files=["res://.godot/imported/Timer.svg-774eacbc80be43e579b83316d1b1639d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TitleBarLogo.svg b/addons/godot_tours/bubble/assets/icons/TitleBarLogo.svg new file mode 100644 index 0000000..893ebb0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TitleBarLogo.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TitleBarLogo.svg.import b/addons/godot_tours/bubble/assets/icons/TitleBarLogo.svg.import new file mode 100644 index 0000000..6db5cf2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TitleBarLogo.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi4g178voe8jb" +path="res://.godot/imported/TitleBarLogo.svg-ebd40eed2844be674f90a4c1acdf0620.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TitleBarLogo.svg" +dest_files=["res://.godot/imported/TitleBarLogo.svg-ebd40eed2844be674f90a4c1acdf0620.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ToolAddNode.svg b/addons/godot_tours/bubble/assets/icons/ToolAddNode.svg new file mode 100644 index 0000000..74a4ac9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolAddNode.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ToolAddNode.svg.import b/addons/godot_tours/bubble/assets/icons/ToolAddNode.svg.import new file mode 100644 index 0000000..4eb67e1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolAddNode.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbfx26pgi7mwo" +path="res://.godot/imported/ToolAddNode.svg-f1046187937382b8f2b449bde87f3047.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ToolAddNode.svg" +dest_files=["res://.godot/imported/ToolAddNode.svg-f1046187937382b8f2b449bde87f3047.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ToolBoneSelect.svg b/addons/godot_tours/bubble/assets/icons/ToolBoneSelect.svg new file mode 100644 index 0000000..4cf9f9a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolBoneSelect.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ToolBoneSelect.svg.import b/addons/godot_tours/bubble/assets/icons/ToolBoneSelect.svg.import new file mode 100644 index 0000000..357ab12 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolBoneSelect.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceeni043vq20e" +path="res://.godot/imported/ToolBoneSelect.svg-153b20516df354d820b3cc3d26dc84a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ToolBoneSelect.svg" +dest_files=["res://.godot/imported/ToolBoneSelect.svg-153b20516df354d820b3cc3d26dc84a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ToolConnect.svg b/addons/godot_tours/bubble/assets/icons/ToolConnect.svg new file mode 100644 index 0000000..b4f71a1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolConnect.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ToolConnect.svg.import b/addons/godot_tours/bubble/assets/icons/ToolConnect.svg.import new file mode 100644 index 0000000..7cd050e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolConnect.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u78ujn1c4ewg" +path="res://.godot/imported/ToolConnect.svg-8c533431810d71a33fbf932bd40d0faa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ToolConnect.svg" +dest_files=["res://.godot/imported/ToolConnect.svg-8c533431810d71a33fbf932bd40d0faa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ToolMove.svg b/addons/godot_tours/bubble/assets/icons/ToolMove.svg new file mode 100644 index 0000000..889afc5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolMove.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ToolMove.svg.import b/addons/godot_tours/bubble/assets/icons/ToolMove.svg.import new file mode 100644 index 0000000..829ebc5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolMove.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kv0s3vhwnomt" +path="res://.godot/imported/ToolMove.svg-87daff7f461e2eef45c4cd93819912f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ToolMove.svg" +dest_files=["res://.godot/imported/ToolMove.svg-87daff7f461e2eef45c4cd93819912f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ToolPan.svg b/addons/godot_tours/bubble/assets/icons/ToolPan.svg new file mode 100644 index 0000000..a51e3e7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolPan.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ToolPan.svg.import b/addons/godot_tours/bubble/assets/icons/ToolPan.svg.import new file mode 100644 index 0000000..6c4b311 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolPan.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ug3vnx4lqnvf" +path="res://.godot/imported/ToolPan.svg-e05378ae91e86e069a59a56dc5b0cb5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ToolPan.svg" +dest_files=["res://.godot/imported/ToolPan.svg-e05378ae91e86e069a59a56dc5b0cb5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ToolRotate.svg b/addons/godot_tours/bubble/assets/icons/ToolRotate.svg new file mode 100644 index 0000000..a24b6b4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolRotate.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ToolRotate.svg.import b/addons/godot_tours/bubble/assets/icons/ToolRotate.svg.import new file mode 100644 index 0000000..9bc7248 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolRotate.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://di3v371saoptu" +path="res://.godot/imported/ToolRotate.svg-eed3f173971da46896d201ea54856370.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ToolRotate.svg" +dest_files=["res://.godot/imported/ToolRotate.svg-eed3f173971da46896d201ea54856370.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ToolScale.svg b/addons/godot_tours/bubble/assets/icons/ToolScale.svg new file mode 100644 index 0000000..8072f23 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolScale.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ToolScale.svg.import b/addons/godot_tours/bubble/assets/icons/ToolScale.svg.import new file mode 100644 index 0000000..160447f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolScale.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6e1kcjqm67ml" +path="res://.godot/imported/ToolScale.svg-1a92ce7c1489c1c14082c13fa7c618d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ToolScale.svg" +dest_files=["res://.godot/imported/ToolScale.svg-1a92ce7c1489c1c14082c13fa7c618d4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ToolSelect.svg b/addons/godot_tours/bubble/assets/icons/ToolSelect.svg new file mode 100644 index 0000000..1079ab5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolSelect.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ToolSelect.svg.import b/addons/godot_tours/bubble/assets/icons/ToolSelect.svg.import new file mode 100644 index 0000000..496fa8b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolSelect.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://eyl2pv20pwye" +path="res://.godot/imported/ToolSelect.svg-e7ad6c0c51ace8724dea38f4bd934635.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ToolSelect.svg" +dest_files=["res://.godot/imported/ToolSelect.svg-e7ad6c0c51ace8724dea38f4bd934635.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ToolTriangle.svg b/addons/godot_tours/bubble/assets/icons/ToolTriangle.svg new file mode 100644 index 0000000..1d07f18 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolTriangle.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ToolTriangle.svg.import b/addons/godot_tours/bubble/assets/icons/ToolTriangle.svg.import new file mode 100644 index 0000000..1b556ad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ToolTriangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg4mjcpfal0vn" +path="res://.godot/imported/ToolTriangle.svg-d4eed246de067c8e14eebb1a20286e14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ToolTriangle.svg" +dest_files=["res://.godot/imported/ToolTriangle.svg-d4eed246de067c8e14eebb1a20286e14.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Tools.svg b/addons/godot_tours/bubble/assets/icons/Tools.svg new file mode 100644 index 0000000..1591a56 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Tools.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Tools.svg.import b/addons/godot_tours/bubble/assets/icons/Tools.svg.import new file mode 100644 index 0000000..52d7a87 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Tools.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6x5i7rc7xf07" +path="res://.godot/imported/Tools.svg-2aae1237b5afb33dd3e1241a291ef7c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Tools.svg" +dest_files=["res://.godot/imported/Tools.svg-2aae1237b5afb33dd3e1241a291ef7c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TorusMesh.svg b/addons/godot_tours/bubble/assets/icons/TorusMesh.svg new file mode 100644 index 0000000..adf3a84 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TorusMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TorusMesh.svg.import b/addons/godot_tours/bubble/assets/icons/TorusMesh.svg.import new file mode 100644 index 0000000..e501eb1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TorusMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brfxfcb3phxh0" +path="res://.godot/imported/TorusMesh.svg-1f1533df0aac6802268660db62577534.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TorusMesh.svg" +dest_files=["res://.godot/imported/TorusMesh.svg-1f1533df0aac6802268660db62577534.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TouchScreenButton.svg b/addons/godot_tours/bubble/assets/icons/TouchScreenButton.svg new file mode 100644 index 0000000..183f414 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TouchScreenButton.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TouchScreenButton.svg.import b/addons/godot_tours/bubble/assets/icons/TouchScreenButton.svg.import new file mode 100644 index 0000000..a160202 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TouchScreenButton.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqdafu4r3y87n" +path="res://.godot/imported/TouchScreenButton.svg-ef354ea4ded68c304bc734411fbe9869.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TouchScreenButton.svg" +dest_files=["res://.godot/imported/TouchScreenButton.svg-ef354ea4ded68c304bc734411fbe9869.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TrackCapture.svg b/addons/godot_tours/bubble/assets/icons/TrackCapture.svg new file mode 100644 index 0000000..6251330 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TrackCapture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TrackCapture.svg.import b/addons/godot_tours/bubble/assets/icons/TrackCapture.svg.import new file mode 100644 index 0000000..9be32f2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TrackCapture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkwtngur7skxg" +path="res://.godot/imported/TrackCapture.svg-008235a835ca87572de46c7e6dd3aa40.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TrackCapture.svg" +dest_files=["res://.godot/imported/TrackCapture.svg-008235a835ca87572de46c7e6dd3aa40.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TrackColor.svg b/addons/godot_tours/bubble/assets/icons/TrackColor.svg new file mode 100644 index 0000000..93be9b6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TrackColor.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TrackColor.svg.import b/addons/godot_tours/bubble/assets/icons/TrackColor.svg.import new file mode 100644 index 0000000..f801800 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TrackColor.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuaiy26rrtai1" +path="res://.godot/imported/TrackColor.svg-f94eb0ff467988c9a28da8bc382a5d04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TrackColor.svg" +dest_files=["res://.godot/imported/TrackColor.svg-f94eb0ff467988c9a28da8bc382a5d04.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TrackContinuous.svg b/addons/godot_tours/bubble/assets/icons/TrackContinuous.svg new file mode 100644 index 0000000..b48e67a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TrackContinuous.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TrackContinuous.svg.import b/addons/godot_tours/bubble/assets/icons/TrackContinuous.svg.import new file mode 100644 index 0000000..63c0529 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TrackContinuous.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwkjccm2co5j8" +path="res://.godot/imported/TrackContinuous.svg-224955f771b66a528edf0b7e47b27b82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TrackContinuous.svg" +dest_files=["res://.godot/imported/TrackContinuous.svg-224955f771b66a528edf0b7e47b27b82.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TrackDiscrete.svg b/addons/godot_tours/bubble/assets/icons/TrackDiscrete.svg new file mode 100644 index 0000000..007729e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TrackDiscrete.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TrackDiscrete.svg.import b/addons/godot_tours/bubble/assets/icons/TrackDiscrete.svg.import new file mode 100644 index 0000000..957f25f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TrackDiscrete.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cse5illjpwtq" +path="res://.godot/imported/TrackDiscrete.svg-6b2b96fba36d4ff674833aeeefc6cfba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TrackDiscrete.svg" +dest_files=["res://.godot/imported/TrackDiscrete.svg-6b2b96fba36d4ff674833aeeefc6cfba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Transform2D.svg b/addons/godot_tours/bubble/assets/icons/Transform2D.svg new file mode 100644 index 0000000..58e5621 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Transform2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Transform2D.svg.import b/addons/godot_tours/bubble/assets/icons/Transform2D.svg.import new file mode 100644 index 0000000..4b70a08 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Transform2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddu3obgn11g2s" +path="res://.godot/imported/Transform2D.svg-213fd797c9247279eef5cb191e99af5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Transform2D.svg" +dest_files=["res://.godot/imported/Transform2D.svg-213fd797c9247279eef5cb191e99af5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Transform3D.svg b/addons/godot_tours/bubble/assets/icons/Transform3D.svg new file mode 100644 index 0000000..f077754 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Transform3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Transform3D.svg.import b/addons/godot_tours/bubble/assets/icons/Transform3D.svg.import new file mode 100644 index 0000000..9ea11a4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Transform3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rs3jeq45nqfg" +path="res://.godot/imported/Transform3D.svg-b1a6fafcae4aec39f154b87815e4ee62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Transform3D.svg" +dest_files=["res://.godot/imported/Transform3D.svg-b1a6fafcae4aec39f154b87815e4ee62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionEnd.svg b/addons/godot_tours/bubble/assets/icons/TransitionEnd.svg new file mode 100644 index 0000000..62c9e1f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionEnd.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionEnd.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionEnd.svg.import new file mode 100644 index 0000000..10a8f35 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionEnd.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c35v68llkbn2p" +path="res://.godot/imported/TransitionEnd.svg-c415c7cf8e22e18389b25b63febf333f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionEnd.svg" +dest_files=["res://.godot/imported/TransitionEnd.svg-c415c7cf8e22e18389b25b63febf333f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionEndAuto.svg b/addons/godot_tours/bubble/assets/icons/TransitionEndAuto.svg new file mode 100644 index 0000000..24fac4a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionEndAuto.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionEndAuto.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionEndAuto.svg.import new file mode 100644 index 0000000..c0e4d6a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionEndAuto.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bovbx7ejvsfkf" +path="res://.godot/imported/TransitionEndAuto.svg-54aeb8c4d53382c655ce2d0dba6c5727.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionEndAuto.svg" +dest_files=["res://.godot/imported/TransitionEndAuto.svg-54aeb8c4d53382c655ce2d0dba6c5727.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionEndAutoBig.svg b/addons/godot_tours/bubble/assets/icons/TransitionEndAutoBig.svg new file mode 100644 index 0000000..b7a9b85 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionEndAutoBig.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionEndAutoBig.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionEndAutoBig.svg.import new file mode 100644 index 0000000..850e895 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionEndAutoBig.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fkv46rcytlbs" +path="res://.godot/imported/TransitionEndAutoBig.svg-7bd62f67f59b8611054be0ee89619e1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionEndAutoBig.svg" +dest_files=["res://.godot/imported/TransitionEndAutoBig.svg-7bd62f67f59b8611054be0ee89619e1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionEndBig.svg b/addons/godot_tours/bubble/assets/icons/TransitionEndBig.svg new file mode 100644 index 0000000..11f2871 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionEndBig.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionEndBig.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionEndBig.svg.import new file mode 100644 index 0000000..67ad119 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionEndBig.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvesoo8susxuy" +path="res://.godot/imported/TransitionEndBig.svg-9810959799a8a7546b4c4c60793a8dcd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionEndBig.svg" +dest_files=["res://.godot/imported/TransitionEndBig.svg-9810959799a8a7546b4c4c60793a8dcd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionImmediate.svg b/addons/godot_tours/bubble/assets/icons/TransitionImmediate.svg new file mode 100644 index 0000000..b39aaa7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionImmediate.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionImmediate.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionImmediate.svg.import new file mode 100644 index 0000000..f62ba09 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionImmediate.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tns1d152ehtv" +path="res://.godot/imported/TransitionImmediate.svg-5acffa0e556cbab8a53741cc7fdb7f28.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionImmediate.svg" +dest_files=["res://.godot/imported/TransitionImmediate.svg-5acffa0e556cbab8a53741cc7fdb7f28.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionImmediateAuto.svg b/addons/godot_tours/bubble/assets/icons/TransitionImmediateAuto.svg new file mode 100644 index 0000000..6118e86 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionImmediateAuto.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionImmediateAuto.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionImmediateAuto.svg.import new file mode 100644 index 0000000..5fef9b1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionImmediateAuto.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3ey57vnwdoc5" +path="res://.godot/imported/TransitionImmediateAuto.svg-bb16295efec98485be9ff65b72ecae25.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionImmediateAuto.svg" +dest_files=["res://.godot/imported/TransitionImmediateAuto.svg-bb16295efec98485be9ff65b72ecae25.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionImmediateAutoBig.svg b/addons/godot_tours/bubble/assets/icons/TransitionImmediateAutoBig.svg new file mode 100644 index 0000000..accc4e4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionImmediateAutoBig.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionImmediateAutoBig.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionImmediateAutoBig.svg.import new file mode 100644 index 0000000..2f861bf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionImmediateAutoBig.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vu5cla11bk0t" +path="res://.godot/imported/TransitionImmediateAutoBig.svg-affc510f4e7ea11ed7c57ee08be94a71.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionImmediateAutoBig.svg" +dest_files=["res://.godot/imported/TransitionImmediateAutoBig.svg-affc510f4e7ea11ed7c57ee08be94a71.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionImmediateBig.svg b/addons/godot_tours/bubble/assets/icons/TransitionImmediateBig.svg new file mode 100644 index 0000000..ce35cb0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionImmediateBig.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionImmediateBig.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionImmediateBig.svg.import new file mode 100644 index 0000000..d65500e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionImmediateBig.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dingelc4iugb0" +path="res://.godot/imported/TransitionImmediateBig.svg-61cafde4ecb578b74ca6982202a723bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionImmediateBig.svg" +dest_files=["res://.godot/imported/TransitionImmediateBig.svg-61cafde4ecb578b74ca6982202a723bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionSync.svg b/addons/godot_tours/bubble/assets/icons/TransitionSync.svg new file mode 100644 index 0000000..87e25b8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionSync.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionSync.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionSync.svg.import new file mode 100644 index 0000000..fd78acc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionSync.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsboo2smjwxib" +path="res://.godot/imported/TransitionSync.svg-6d4d38ee4fd63e9e5e5f359a2da3524c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionSync.svg" +dest_files=["res://.godot/imported/TransitionSync.svg-6d4d38ee4fd63e9e5e5f359a2da3524c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionSyncAuto.svg b/addons/godot_tours/bubble/assets/icons/TransitionSyncAuto.svg new file mode 100644 index 0000000..9e22974 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionSyncAuto.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionSyncAuto.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionSyncAuto.svg.import new file mode 100644 index 0000000..42ee08c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionSyncAuto.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7dc2wp1mr402" +path="res://.godot/imported/TransitionSyncAuto.svg-aadd21897d8aaeec783a8f4bf1b0577d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionSyncAuto.svg" +dest_files=["res://.godot/imported/TransitionSyncAuto.svg-aadd21897d8aaeec783a8f4bf1b0577d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionSyncAutoBig.svg b/addons/godot_tours/bubble/assets/icons/TransitionSyncAutoBig.svg new file mode 100644 index 0000000..6ca4e20 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionSyncAutoBig.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionSyncAutoBig.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionSyncAutoBig.svg.import new file mode 100644 index 0000000..b46b06e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionSyncAutoBig.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6fhy75jejb52" +path="res://.godot/imported/TransitionSyncAutoBig.svg-5112bd86c0994ba7570634ccbf375664.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionSyncAutoBig.svg" +dest_files=["res://.godot/imported/TransitionSyncAutoBig.svg-5112bd86c0994ba7570634ccbf375664.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TransitionSyncBig.svg b/addons/godot_tours/bubble/assets/icons/TransitionSyncBig.svg new file mode 100644 index 0000000..4fc445e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionSyncBig.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TransitionSyncBig.svg.import b/addons/godot_tours/bubble/assets/icons/TransitionSyncBig.svg.import new file mode 100644 index 0000000..d8d65a1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TransitionSyncBig.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdg5m1h36ox0k" +path="res://.godot/imported/TransitionSyncBig.svg-07cd6b175f6a0dd3e9a0feb2178a0c6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TransitionSyncBig.svg" +dest_files=["res://.godot/imported/TransitionSyncBig.svg-07cd6b175f6a0dd3e9a0feb2178a0c6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Translation.svg b/addons/godot_tours/bubble/assets/icons/Translation.svg new file mode 100644 index 0000000..5c10469 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Translation.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Translation.svg.import b/addons/godot_tours/bubble/assets/icons/Translation.svg.import new file mode 100644 index 0000000..295e862 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Translation.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3omxbjc8qerc" +path="res://.godot/imported/Translation.svg-f68dbbe092d38ff1801e6c85b38e248f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Translation.svg" +dest_files=["res://.godot/imported/Translation.svg-f68dbbe092d38ff1801e6c85b38e248f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Tree.svg b/addons/godot_tours/bubble/assets/icons/Tree.svg new file mode 100644 index 0000000..2316bd9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Tree.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Tree.svg.import b/addons/godot_tours/bubble/assets/icons/Tree.svg.import new file mode 100644 index 0000000..7df28d1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Tree.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqshcqta7ydim" +path="res://.godot/imported/Tree.svg-f86af5c5c282d2e9e46cf427da10b79a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Tree.svg" +dest_files=["res://.godot/imported/Tree.svg-f86af5c5c282d2e9e46cf427da10b79a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TripleBar.svg b/addons/godot_tours/bubble/assets/icons/TripleBar.svg new file mode 100644 index 0000000..92c3e0a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TripleBar.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TripleBar.svg.import b/addons/godot_tours/bubble/assets/icons/TripleBar.svg.import new file mode 100644 index 0000000..744733a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TripleBar.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://conk8p0xgtvd8" +path="res://.godot/imported/TripleBar.svg-a4b2dedd2f29a3735368ddc1e8fb7141.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TripleBar.svg" +dest_files=["res://.godot/imported/TripleBar.svg-a4b2dedd2f29a3735368ddc1e8fb7141.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/TubeTrailMesh.svg b/addons/godot_tours/bubble/assets/icons/TubeTrailMesh.svg new file mode 100644 index 0000000..1cbab36 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TubeTrailMesh.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/TubeTrailMesh.svg.import b/addons/godot_tours/bubble/assets/icons/TubeTrailMesh.svg.import new file mode 100644 index 0000000..f504057 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/TubeTrailMesh.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://70krhjtd0lpw" +path="res://.godot/imported/TubeTrailMesh.svg-e8de982127131f64278ac8e7f6f60f18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/TubeTrailMesh.svg" +dest_files=["res://.godot/imported/TubeTrailMesh.svg-e8de982127131f64278ac8e7f6f60f18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Tween.svg b/addons/godot_tours/bubble/assets/icons/Tween.svg new file mode 100644 index 0000000..bb70c9d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Tween.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Tween.svg.import b/addons/godot_tours/bubble/assets/icons/Tween.svg.import new file mode 100644 index 0000000..9aaec8d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Tween.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgmaws40btru2" +path="res://.godot/imported/Tween.svg-81ad5b970e7718f6bfac2442f7e784d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Tween.svg" +dest_files=["res://.godot/imported/Tween.svg-81ad5b970e7718f6bfac2442f7e784d6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/UndoRedo.svg b/addons/godot_tours/bubble/assets/icons/UndoRedo.svg new file mode 100644 index 0000000..459efeb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/UndoRedo.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/UndoRedo.svg.import b/addons/godot_tours/bubble/assets/icons/UndoRedo.svg.import new file mode 100644 index 0000000..27caa58 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/UndoRedo.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh38nqalvrwj2" +path="res://.godot/imported/UndoRedo.svg-be852424fb03f3a5c187dd8e94c7a61d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/UndoRedo.svg" +dest_files=["res://.godot/imported/UndoRedo.svg-be852424fb03f3a5c187dd8e94c7a61d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Ungroup.svg b/addons/godot_tours/bubble/assets/icons/Ungroup.svg new file mode 100644 index 0000000..ff1169d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Ungroup.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Ungroup.svg.import b/addons/godot_tours/bubble/assets/icons/Ungroup.svg.import new file mode 100644 index 0000000..025908e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Ungroup.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh5pbd6gtagtq" +path="res://.godot/imported/Ungroup.svg-f286501607ac52c38784bb864c33c2f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Ungroup.svg" +dest_files=["res://.godot/imported/Ungroup.svg-f286501607ac52c38784bb864c33c2f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Unlinked.svg b/addons/godot_tours/bubble/assets/icons/Unlinked.svg new file mode 100644 index 0000000..47c4f30 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Unlinked.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Unlinked.svg.import b/addons/godot_tours/bubble/assets/icons/Unlinked.svg.import new file mode 100644 index 0000000..5f00124 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Unlinked.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq7agp4kimh3j" +path="res://.godot/imported/Unlinked.svg-26be744c4f41e08b55991d9e63c107f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Unlinked.svg" +dest_files=["res://.godot/imported/Unlinked.svg-26be744c4f41e08b55991d9e63c107f1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Unlock.svg b/addons/godot_tours/bubble/assets/icons/Unlock.svg new file mode 100644 index 0000000..d377cf1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Unlock.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Unlock.svg.import b/addons/godot_tours/bubble/assets/icons/Unlock.svg.import new file mode 100644 index 0000000..5ae943a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Unlock.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4l8ytgqw2dcs" +path="res://.godot/imported/Unlock.svg-cdee8322e2a9cdd3fefc8504b09e72de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Unlock.svg" +dest_files=["res://.godot/imported/Unlock.svg-cdee8322e2a9cdd3fefc8504b09e72de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/UseBlendDisable.svg b/addons/godot_tours/bubble/assets/icons/UseBlendDisable.svg new file mode 100644 index 0000000..8b73ff4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/UseBlendDisable.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/UseBlendDisable.svg.import b/addons/godot_tours/bubble/assets/icons/UseBlendDisable.svg.import new file mode 100644 index 0000000..fe4364c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/UseBlendDisable.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://choe2bdhs2jtc" +path="res://.godot/imported/UseBlendDisable.svg-c8c2771dd1147f41dce9081f804ad89b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/UseBlendDisable.svg" +dest_files=["res://.godot/imported/UseBlendDisable.svg-c8c2771dd1147f41dce9081f804ad89b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/UseBlendEnable.svg b/addons/godot_tours/bubble/assets/icons/UseBlendEnable.svg new file mode 100644 index 0000000..385fb52 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/UseBlendEnable.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/UseBlendEnable.svg.import b/addons/godot_tours/bubble/assets/icons/UseBlendEnable.svg.import new file mode 100644 index 0000000..541e809 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/UseBlendEnable.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgau0mcl2livd" +path="res://.godot/imported/UseBlendEnable.svg-fcc210333a4d54d3478d369bef75d9ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/UseBlendEnable.svg" +dest_files=["res://.godot/imported/UseBlendEnable.svg-fcc210333a4d54d3478d369bef75d9ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Uv.svg b/addons/godot_tours/bubble/assets/icons/Uv.svg new file mode 100644 index 0000000..be00424 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Uv.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Uv.svg.import b/addons/godot_tours/bubble/assets/icons/Uv.svg.import new file mode 100644 index 0000000..e865b8c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Uv.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db25g34acvapn" +path="res://.godot/imported/Uv.svg-b13d3d3c232461c437b1822c3d6c1303.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Uv.svg" +dest_files=["res://.godot/imported/Uv.svg-b13d3d3c232461c437b1822c3d6c1303.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VBoxContainer.svg b/addons/godot_tours/bubble/assets/icons/VBoxContainer.svg new file mode 100644 index 0000000..18de011 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VBoxContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VBoxContainer.svg.import b/addons/godot_tours/bubble/assets/icons/VBoxContainer.svg.import new file mode 100644 index 0000000..0ac9baf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VBoxContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0va7qhnegxsp" +path="res://.godot/imported/VBoxContainer.svg-f77e6fa1bf0ab74178a54710c93b48bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VBoxContainer.svg" +dest_files=["res://.godot/imported/VBoxContainer.svg-f77e6fa1bf0ab74178a54710c93b48bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VFlowContainer.svg b/addons/godot_tours/bubble/assets/icons/VFlowContainer.svg new file mode 100644 index 0000000..161f03d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VFlowContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VFlowContainer.svg.import b/addons/godot_tours/bubble/assets/icons/VFlowContainer.svg.import new file mode 100644 index 0000000..f9ff238 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VFlowContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df4ove4rop016" +path="res://.godot/imported/VFlowContainer.svg-66686723b3efda3476a0c8ec673b6e46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VFlowContainer.svg" +dest_files=["res://.godot/imported/VFlowContainer.svg-66686723b3efda3476a0c8ec673b6e46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VScrollBar.svg b/addons/godot_tours/bubble/assets/icons/VScrollBar.svg new file mode 100644 index 0000000..f2b5f33 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VScrollBar.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VScrollBar.svg.import b/addons/godot_tours/bubble/assets/icons/VScrollBar.svg.import new file mode 100644 index 0000000..41c614a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VScrollBar.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg83fqvaqutp4" +path="res://.godot/imported/VScrollBar.svg-6ac86ed146086d3750304cab943ac826.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VScrollBar.svg" +dest_files=["res://.godot/imported/VScrollBar.svg-6ac86ed146086d3750304cab943ac826.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VSeparator.svg b/addons/godot_tours/bubble/assets/icons/VSeparator.svg new file mode 100644 index 0000000..a729ae7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VSeparator.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VSeparator.svg.import b/addons/godot_tours/bubble/assets/icons/VSeparator.svg.import new file mode 100644 index 0000000..6060e98 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VSeparator.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvbq3788sfl0o" +path="res://.godot/imported/VSeparator.svg-7ebde65e65e6e2d57de1837e2c618ba5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VSeparator.svg" +dest_files=["res://.godot/imported/VSeparator.svg-7ebde65e65e6e2d57de1837e2c618ba5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VSlider.svg b/addons/godot_tours/bubble/assets/icons/VSlider.svg new file mode 100644 index 0000000..f013e76 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VSlider.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VSlider.svg.import b/addons/godot_tours/bubble/assets/icons/VSlider.svg.import new file mode 100644 index 0000000..8ec8a7c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VSlider.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pggfp1oy375d" +path="res://.godot/imported/VSlider.svg-49b16eaabbdc9687effc17aba6d86861.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VSlider.svg" +dest_files=["res://.godot/imported/VSlider.svg-49b16eaabbdc9687effc17aba6d86861.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VSplitContainer.svg b/addons/godot_tours/bubble/assets/icons/VSplitContainer.svg new file mode 100644 index 0000000..0068219 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VSplitContainer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VSplitContainer.svg.import b/addons/godot_tours/bubble/assets/icons/VSplitContainer.svg.import new file mode 100644 index 0000000..a02f881 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VSplitContainer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dshjh3pj3nri1" +path="res://.godot/imported/VSplitContainer.svg-e8f9dce9dc2ff209f7255379326bbe70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VSplitContainer.svg" +dest_files=["res://.godot/imported/VSplitContainer.svg-e8f9dce9dc2ff209f7255379326bbe70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Variant.svg b/addons/godot_tours/bubble/assets/icons/Variant.svg new file mode 100644 index 0000000..c4e485d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Variant.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Variant.svg.import b/addons/godot_tours/bubble/assets/icons/Variant.svg.import new file mode 100644 index 0000000..88ae835 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Variant.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7dcfg7qh3lsa" +path="res://.godot/imported/Variant.svg-c2e4aa05a4c6d2a0b06ab21afcce4601.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Variant.svg" +dest_files=["res://.godot/imported/Variant.svg-c2e4aa05a4c6d2a0b06ab21afcce4601.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VcsBranches.svg b/addons/godot_tours/bubble/assets/icons/VcsBranches.svg new file mode 100644 index 0000000..88a1606 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VcsBranches.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VcsBranches.svg.import b/addons/godot_tours/bubble/assets/icons/VcsBranches.svg.import new file mode 100644 index 0000000..466f609 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VcsBranches.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgcdxhdrdjta5" +path="res://.godot/imported/VcsBranches.svg-473bee6d6efa7258d49374a5f9de4b01.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VcsBranches.svg" +dest_files=["res://.godot/imported/VcsBranches.svg-473bee6d6efa7258d49374a5f9de4b01.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Vector2.svg b/addons/godot_tours/bubble/assets/icons/Vector2.svg new file mode 100644 index 0000000..fd6ea7a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector2.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Vector2.svg.import b/addons/godot_tours/bubble/assets/icons/Vector2.svg.import new file mode 100644 index 0000000..86477d1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector2.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4go84sgjo3na" +path="res://.godot/imported/Vector2.svg-9f04285b94ae80a5f67b5b405b73e46c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Vector2.svg" +dest_files=["res://.godot/imported/Vector2.svg-9f04285b94ae80a5f67b5b405b73e46c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Vector2i.svg b/addons/godot_tours/bubble/assets/icons/Vector2i.svg new file mode 100644 index 0000000..5e82eb3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector2i.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Vector2i.svg.import b/addons/godot_tours/bubble/assets/icons/Vector2i.svg.import new file mode 100644 index 0000000..28d6dde --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector2i.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc8gyhxaft4qb" +path="res://.godot/imported/Vector2i.svg-6e0583acd525c954f75c59d41f0ac39a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Vector2i.svg" +dest_files=["res://.godot/imported/Vector2i.svg-6e0583acd525c954f75c59d41f0ac39a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Vector3.svg b/addons/godot_tours/bubble/assets/icons/Vector3.svg new file mode 100644 index 0000000..a78f890 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector3.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Vector3.svg.import b/addons/godot_tours/bubble/assets/icons/Vector3.svg.import new file mode 100644 index 0000000..d404d75 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector3.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dok2fcmslepkv" +path="res://.godot/imported/Vector3.svg-47453ba2c257a42a79e8ac9e1a80d3b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Vector3.svg" +dest_files=["res://.godot/imported/Vector3.svg-47453ba2c257a42a79e8ac9e1a80d3b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Vector3i.svg b/addons/godot_tours/bubble/assets/icons/Vector3i.svg new file mode 100644 index 0000000..0f7dd47 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector3i.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Vector3i.svg.import b/addons/godot_tours/bubble/assets/icons/Vector3i.svg.import new file mode 100644 index 0000000..b50bf89 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector3i.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du0kgl23ckkmr" +path="res://.godot/imported/Vector3i.svg-57bf002679e1688ea5d6e723651f7151.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Vector3i.svg" +dest_files=["res://.godot/imported/Vector3i.svg-57bf002679e1688ea5d6e723651f7151.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Vector4.svg b/addons/godot_tours/bubble/assets/icons/Vector4.svg new file mode 100644 index 0000000..224d61e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector4.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Vector4.svg.import b/addons/godot_tours/bubble/assets/icons/Vector4.svg.import new file mode 100644 index 0000000..7f5899a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector4.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5perjxl7jxs4" +path="res://.godot/imported/Vector4.svg-2f2476d8411e8dcdc1b99f29d1f5683f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Vector4.svg" +dest_files=["res://.godot/imported/Vector4.svg-2f2476d8411e8dcdc1b99f29d1f5683f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Vector4i.svg b/addons/godot_tours/bubble/assets/icons/Vector4i.svg new file mode 100644 index 0000000..1bcedec --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector4i.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Vector4i.svg.import b/addons/godot_tours/bubble/assets/icons/Vector4i.svg.import new file mode 100644 index 0000000..8e7c485 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Vector4i.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdmnjd7a0nbm3" +path="res://.godot/imported/Vector4i.svg-f50c968250c851a1a53adc129bab7ca0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Vector4i.svg" +dest_files=["res://.godot/imported/Vector4i.svg-f50c968250c851a1a53adc129bab7ca0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VehicleBody3D.svg b/addons/godot_tours/bubble/assets/icons/VehicleBody3D.svg new file mode 100644 index 0000000..631f877 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VehicleBody3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VehicleBody3D.svg.import b/addons/godot_tours/bubble/assets/icons/VehicleBody3D.svg.import new file mode 100644 index 0000000..def393f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VehicleBody3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpkj1mm0xod1l" +path="res://.godot/imported/VehicleBody3D.svg-c98deea8f3afafb8e611c363c8d160c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VehicleBody3D.svg" +dest_files=["res://.godot/imported/VehicleBody3D.svg-c98deea8f3afafb8e611c363c8d160c9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VehicleWheel3D.svg b/addons/godot_tours/bubble/assets/icons/VehicleWheel3D.svg new file mode 100644 index 0000000..1ab31e7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VehicleWheel3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VehicleWheel3D.svg.import b/addons/godot_tours/bubble/assets/icons/VehicleWheel3D.svg.import new file mode 100644 index 0000000..8a56711 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VehicleWheel3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p6qb7lmkhr13" +path="res://.godot/imported/VehicleWheel3D.svg-0e797725f99371088126f68374aa17e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VehicleWheel3D.svg" +dest_files=["res://.godot/imported/VehicleWheel3D.svg-0e797725f99371088126f68374aa17e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VideoStream.svg b/addons/godot_tours/bubble/assets/icons/VideoStream.svg new file mode 100644 index 0000000..0e7163f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VideoStream.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VideoStream.svg.import b/addons/godot_tours/bubble/assets/icons/VideoStream.svg.import new file mode 100644 index 0000000..fd977e4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VideoStream.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2ce74410klsi" +path="res://.godot/imported/VideoStream.svg-9d5afb99fa3dd46b29b73f8ddd6ffe10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VideoStream.svg" +dest_files=["res://.godot/imported/VideoStream.svg-9d5afb99fa3dd46b29b73f8ddd6ffe10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VideoStreamPlayer.svg b/addons/godot_tours/bubble/assets/icons/VideoStreamPlayer.svg new file mode 100644 index 0000000..52dc15f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VideoStreamPlayer.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VideoStreamPlayer.svg.import b/addons/godot_tours/bubble/assets/icons/VideoStreamPlayer.svg.import new file mode 100644 index 0000000..699ae30 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VideoStreamPlayer.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wtbonl3kyure" +path="res://.godot/imported/VideoStreamPlayer.svg-d57ac6ad498c1b8a1d4c57a636e85c26.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VideoStreamPlayer.svg" +dest_files=["res://.godot/imported/VideoStreamPlayer.svg-d57ac6ad498c1b8a1d4c57a636e85c26.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VideoStreamTheora.svg b/addons/godot_tours/bubble/assets/icons/VideoStreamTheora.svg new file mode 100644 index 0000000..1a5924f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VideoStreamTheora.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VideoStreamTheora.svg.import b/addons/godot_tours/bubble/assets/icons/VideoStreamTheora.svg.import new file mode 100644 index 0000000..48be8f1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VideoStreamTheora.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnma2iqqeejvc" +path="res://.godot/imported/VideoStreamTheora.svg-4d3af1e25c19bee62040833a7cc07d10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VideoStreamTheora.svg" +dest_files=["res://.godot/imported/VideoStreamTheora.svg-4d3af1e25c19bee62040833a7cc07d10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Viewport.svg b/addons/godot_tours/bubble/assets/icons/Viewport.svg new file mode 100644 index 0000000..95dee29 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Viewport.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Viewport.svg.import b/addons/godot_tours/bubble/assets/icons/Viewport.svg.import new file mode 100644 index 0000000..4f6782d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Viewport.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlq8ulxwg6ygf" +path="res://.godot/imported/Viewport.svg-c6e68547386f7133ea631c20702c8ac1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Viewport.svg" +dest_files=["res://.godot/imported/Viewport.svg-c6e68547386f7133ea631c20702c8ac1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ViewportSpeed.svg b/addons/godot_tours/bubble/assets/icons/ViewportSpeed.svg new file mode 100644 index 0000000..d000f47 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ViewportSpeed.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ViewportSpeed.svg.import b/addons/godot_tours/bubble/assets/icons/ViewportSpeed.svg.import new file mode 100644 index 0000000..19b1272 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ViewportSpeed.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmfooiaeaghl1" +path="res://.godot/imported/ViewportSpeed.svg-0c692e5a89c6ecdf837b2479da6ce2e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ViewportSpeed.svg" +dest_files=["res://.godot/imported/ViewportSpeed.svg-0c692e5a89c6ecdf837b2479da6ce2e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ViewportTexture.svg b/addons/godot_tours/bubble/assets/icons/ViewportTexture.svg new file mode 100644 index 0000000..de2ad7f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ViewportTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ViewportTexture.svg.import b/addons/godot_tours/bubble/assets/icons/ViewportTexture.svg.import new file mode 100644 index 0000000..f8f8ee5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ViewportTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dktlwcbqudny2" +path="res://.godot/imported/ViewportTexture.svg-334bbfe04effecb837bfc54ca8e84eb9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ViewportTexture.svg" +dest_files=["res://.godot/imported/ViewportTexture.svg-334bbfe04effecb837bfc54ca8e84eb9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ViewportZoom.svg b/addons/godot_tours/bubble/assets/icons/ViewportZoom.svg new file mode 100644 index 0000000..d09f948 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ViewportZoom.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ViewportZoom.svg.import b/addons/godot_tours/bubble/assets/icons/ViewportZoom.svg.import new file mode 100644 index 0000000..27b2079 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ViewportZoom.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx6klomep3vse" +path="res://.godot/imported/ViewportZoom.svg-d93ee14d51d22585675f8437ef051e88.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ViewportZoom.svg" +dest_files=["res://.godot/imported/ViewportZoom.svg-d93ee14d51d22585675f8437ef051e88.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler2D.svg b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler2D.svg new file mode 100644 index 0000000..e7cb7ba --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler2D.svg.import b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler2D.svg.import new file mode 100644 index 0000000..d8d5bcb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do7pqenbj6m41" +path="res://.godot/imported/VisibleOnScreenEnabler2D.svg-a2086a0ebf4c51c56715f522b8209f56.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler2D.svg" +dest_files=["res://.godot/imported/VisibleOnScreenEnabler2D.svg-a2086a0ebf4c51c56715f522b8209f56.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler3D.svg b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler3D.svg new file mode 100644 index 0000000..183cca9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler3D.svg.import b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler3D.svg.import new file mode 100644 index 0000000..a65f41c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b817yoca7flel" +path="res://.godot/imported/VisibleOnScreenEnabler3D.svg-d8ee2dd2868993ca1e34b402ec88308a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisibleOnScreenEnabler3D.svg" +dest_files=["res://.godot/imported/VisibleOnScreenEnabler3D.svg-d8ee2dd2868993ca1e34b402ec88308a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier2D.svg b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier2D.svg new file mode 100644 index 0000000..4152982 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier2D.svg.import b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier2D.svg.import new file mode 100644 index 0000000..615d3de --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvk5her5p3k5c" +path="res://.godot/imported/VisibleOnScreenNotifier2D.svg-f00b06db1d447b8c2ff3574b0e07c436.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier2D.svg" +dest_files=["res://.godot/imported/VisibleOnScreenNotifier2D.svg-f00b06db1d447b8c2ff3574b0e07c436.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier3D.svg b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier3D.svg new file mode 100644 index 0000000..5bdcd28 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier3D.svg.import b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier3D.svg.import new file mode 100644 index 0000000..568681e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsvqp2h1gu7eh" +path="res://.godot/imported/VisibleOnScreenNotifier3D.svg-2088d6a6733467febb4ed58b02630ce0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisibleOnScreenNotifier3D.svg" +dest_files=["res://.godot/imported/VisibleOnScreenNotifier3D.svg-2088d6a6733467febb4ed58b02630ce0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualInstance3D.svg b/addons/godot_tours/bubble/assets/icons/VisualInstance3D.svg new file mode 100644 index 0000000..95eb632 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualInstance3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualInstance3D.svg.import b/addons/godot_tours/bubble/assets/icons/VisualInstance3D.svg.import new file mode 100644 index 0000000..072067c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualInstance3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blpi5bg25qdka" +path="res://.godot/imported/VisualInstance3D.svg-979659046f5fe3728d91d85f9f18c45f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualInstance3D.svg" +dest_files=["res://.godot/imported/VisualInstance3D.svg-979659046f5fe3728d91d85f9f18c45f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShader.svg b/addons/godot_tours/bubble/assets/icons/VisualShader.svg new file mode 100644 index 0000000..945d215 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShader.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShader.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShader.svg.import new file mode 100644 index 0000000..80a406e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShader.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn3poolonacm2" +path="res://.godot/imported/VisualShader.svg-6e1c1d2c651f7be7e8dd92bbe0376f4b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShader.svg" +dest_files=["res://.godot/imported/VisualShader.svg-6e1c1d2c651f7be7e8dd92bbe0376f4b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderGraphTextureUniform.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderGraphTextureUniform.svg new file mode 100644 index 0000000..dd5bfa1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderGraphTextureUniform.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderGraphTextureUniform.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderGraphTextureUniform.svg.import new file mode 100644 index 0000000..730f871 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderGraphTextureUniform.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg0vp351lknd0" +path="res://.godot/imported/VisualShaderGraphTextureUniform.svg-dc88c16c69e0f46b82581c4428cb93fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderGraphTextureUniform.svg" +dest_files=["res://.godot/imported/VisualShaderGraphTextureUniform.svg-dc88c16c69e0f46b82581c4428cb93fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeBooleanUniform.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeBooleanUniform.svg new file mode 100644 index 0000000..f31f945 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeBooleanUniform.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeBooleanUniform.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeBooleanUniform.svg.import new file mode 100644 index 0000000..94b0662 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeBooleanUniform.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xo4du62tt51w" +path="res://.godot/imported/VisualShaderNodeBooleanUniform.svg-029ddbf0c17fca4b2298e70434427d49.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeBooleanUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeBooleanUniform.svg-029ddbf0c17fca4b2298e70434427d49.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorConstant.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorConstant.svg new file mode 100644 index 0000000..c2af7df --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorConstant.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorConstant.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorConstant.svg.import new file mode 100644 index 0000000..f3deefc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorConstant.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0jryca78vwkk" +path="res://.godot/imported/VisualShaderNodeColorConstant.svg-e57be5d2aa2c517fe5d2c99ed259cac0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorConstant.svg" +dest_files=["res://.godot/imported/VisualShaderNodeColorConstant.svg-e57be5d2aa2c517fe5d2c99ed259cac0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorOp.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorOp.svg new file mode 100644 index 0000000..c21852a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorOp.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorOp.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorOp.svg.import new file mode 100644 index 0000000..32cc113 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorOp.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://opv0jno7gbl1" +path="res://.godot/imported/VisualShaderNodeColorOp.svg-821e41b23363f8519008fe83c1710e0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorOp.svg" +dest_files=["res://.godot/imported/VisualShaderNodeColorOp.svg-821e41b23363f8519008fe83c1710e0c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorUniform.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorUniform.svg new file mode 100644 index 0000000..53e86ca --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorUniform.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorUniform.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorUniform.svg.import new file mode 100644 index 0000000..699b9b1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorUniform.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu7fiho71rb0" +path="res://.godot/imported/VisualShaderNodeColorUniform.svg-6d14d83fb29616963a60e5d0955034f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeColorUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeColorUniform.svg-6d14d83fb29616963a60e5d0955034f4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeComment.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeComment.svg new file mode 100644 index 0000000..3887853 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeComment.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeComment.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeComment.svg.import new file mode 100644 index 0000000..5fd0df7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeComment.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://catolmjk7lk8y" +path="res://.godot/imported/VisualShaderNodeComment.svg-676acb0167bac30491ca9611db9a6279.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeComment.svg" +dest_files=["res://.godot/imported/VisualShaderNodeComment.svg-676acb0167bac30491ca9611db9a6279.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemap.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemap.svg new file mode 100644 index 0000000..e28552c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemap.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemap.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemap.svg.import new file mode 100644 index 0000000..bcd1e57 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemap.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jfa0s1do15fa" +path="res://.godot/imported/VisualShaderNodeCubemap.svg-bedb90b5768ec240f11c456b491250dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemap.svg" +dest_files=["res://.godot/imported/VisualShaderNodeCubemap.svg-bedb90b5768ec240f11c456b491250dc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemapUniform.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemapUniform.svg new file mode 100644 index 0000000..1505caf --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemapUniform.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemapUniform.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemapUniform.svg.import new file mode 100644 index 0000000..765ab0f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemapUniform.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gosx5ug4lji4" +path="res://.godot/imported/VisualShaderNodeCubemapUniform.svg-6706088d54a5a118a739c6c1cf96c7ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeCubemapUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeCubemapUniform.svg-6706088d54a5a118a739c6c1cf96c7ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveTexture.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveTexture.svg new file mode 100644 index 0000000..f1f6a54 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveTexture.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveTexture.svg.import new file mode 100644 index 0000000..6f0b877 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6ci6dgttamqt" +path="res://.godot/imported/VisualShaderNodeCurveTexture.svg-58aa5df8784dec3aeaa5cd986a553445.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveTexture.svg" +dest_files=["res://.godot/imported/VisualShaderNodeCurveTexture.svg-58aa5df8784dec3aeaa5cd986a553445.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveXYZTexture.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveXYZTexture.svg new file mode 100644 index 0000000..f1f6a54 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveXYZTexture.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveXYZTexture.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveXYZTexture.svg.import new file mode 100644 index 0000000..37a91f7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveXYZTexture.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqpvawteqwavj" +path="res://.godot/imported/VisualShaderNodeCurveXYZTexture.svg-7d45a2bb900d9e2e88307e7c71061df0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeCurveXYZTexture.svg" +dest_files=["res://.godot/imported/VisualShaderNodeCurveXYZTexture.svg-7d45a2bb900d9e2e88307e7c71061df0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeExpression.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeExpression.svg new file mode 100644 index 0000000..ae403da --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeExpression.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeExpression.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeExpression.svg.import new file mode 100644 index 0000000..ef59f2a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeExpression.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbkod1c6bbs7" +path="res://.godot/imported/VisualShaderNodeExpression.svg-9c4c9e728646ea2dc33f2151639bd4a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeExpression.svg" +dest_files=["res://.godot/imported/VisualShaderNodeExpression.svg-9c4c9e728646ea2dc33f2151639bd4a5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatFunc.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatFunc.svg new file mode 100644 index 0000000..7cf2a5f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatFunc.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatFunc.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatFunc.svg.import new file mode 100644 index 0000000..265168c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatFunc.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfogyg4xo2sid" +path="res://.godot/imported/VisualShaderNodeFloatFunc.svg-0c0547d11ee3c410e5ec1129c9396cb4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatFunc.svg" +dest_files=["res://.godot/imported/VisualShaderNodeFloatFunc.svg-0c0547d11ee3c410e5ec1129c9396cb4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatOp.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatOp.svg new file mode 100644 index 0000000..54048f0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatOp.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatOp.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatOp.svg.import new file mode 100644 index 0000000..ed9fd06 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatOp.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cix0km3qc0ncu" +path="res://.godot/imported/VisualShaderNodeFloatOp.svg-ac0c969057689d885c6ad2c1f1be6861.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatOp.svg" +dest_files=["res://.godot/imported/VisualShaderNodeFloatOp.svg-ac0c969057689d885c6ad2c1f1be6861.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatUniform.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatUniform.svg new file mode 100644 index 0000000..9612ed0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatUniform.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatUniform.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatUniform.svg.import new file mode 100644 index 0000000..8d257b9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatUniform.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8kmvl3182gev" +path="res://.godot/imported/VisualShaderNodeFloatUniform.svg-38f722ea511947e8a4744840576d8c43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeFloatUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeFloatUniform.svg-38f722ea511947e8a4744840576d8c43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeGlobalExpression.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeGlobalExpression.svg new file mode 100644 index 0000000..14b75e2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeGlobalExpression.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeGlobalExpression.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeGlobalExpression.svg.import new file mode 100644 index 0000000..ded36a8 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeGlobalExpression.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnua7gkrcfxn7" +path="res://.godot/imported/VisualShaderNodeGlobalExpression.svg-036be8ff07224eb21cf1ece7946979f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeGlobalExpression.svg" +dest_files=["res://.godot/imported/VisualShaderNodeGlobalExpression.svg-036be8ff07224eb21cf1ece7946979f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeInput.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeInput.svg new file mode 100644 index 0000000..0c4de2e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeInput.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeInput.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeInput.svg.import new file mode 100644 index 0000000..58f68d3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeInput.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dymnjm1hkgj6i" +path="res://.godot/imported/VisualShaderNodeInput.svg-dae50e1f0de6e5553b0133d6e84fa26b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeInput.svg" +dest_files=["res://.godot/imported/VisualShaderNodeInput.svg-dae50e1f0de6e5553b0133d6e84fa26b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntFunc.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntFunc.svg new file mode 100644 index 0000000..7cf2a5f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntFunc.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntFunc.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntFunc.svg.import new file mode 100644 index 0000000..c455983 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntFunc.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch2lg8v0di3cd" +path="res://.godot/imported/VisualShaderNodeIntFunc.svg-583b134e53591a00d787ccbc498c0b7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntFunc.svg" +dest_files=["res://.godot/imported/VisualShaderNodeIntFunc.svg-583b134e53591a00d787ccbc498c0b7e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntOp.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntOp.svg new file mode 100644 index 0000000..54048f0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntOp.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntOp.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntOp.svg.import new file mode 100644 index 0000000..17acc74 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntOp.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpmumgbmvdlur" +path="res://.godot/imported/VisualShaderNodeIntOp.svg-a491ff45b60d67d2b90a9da8f2038085.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntOp.svg" +dest_files=["res://.godot/imported/VisualShaderNodeIntOp.svg-a491ff45b60d67d2b90a9da8f2038085.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntUniform.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntUniform.svg new file mode 100644 index 0000000..9612ed0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntUniform.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntUniform.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntUniform.svg.import new file mode 100644 index 0000000..c362872 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntUniform.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp6vr6w4gogl3" +path="res://.godot/imported/VisualShaderNodeIntUniform.svg-2bdffcca1901adab5576cc9d4d939448.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeIntUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeIntUniform.svg-2bdffcca1901adab5576cc9d4d939448.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture2DArrayUniform.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture2DArrayUniform.svg new file mode 100644 index 0000000..dd5bfa1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture2DArrayUniform.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture2DArrayUniform.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture2DArrayUniform.svg.import new file mode 100644 index 0000000..fb5f26f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture2DArrayUniform.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sxhcbugehwpd" +path="res://.godot/imported/VisualShaderNodeTexture2DArrayUniform.svg-04ae0a8096a698485a09e7956bea3776.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture2DArrayUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTexture2DArrayUniform.svg-04ae0a8096a698485a09e7956bea3776.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture3DUniform.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture3DUniform.svg new file mode 100644 index 0000000..dd5bfa1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture3DUniform.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture3DUniform.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture3DUniform.svg.import new file mode 100644 index 0000000..4ab26c5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture3DUniform.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8xijpx0tsq35" +path="res://.godot/imported/VisualShaderNodeTexture3DUniform.svg-95ad9699b189c9c2cb9126830e4b1b2a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeTexture3DUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTexture3DUniform.svg-95ad9699b189c9c2cb9126830e4b1b2a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniform.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniform.svg new file mode 100644 index 0000000..dd5bfa1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniform.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniform.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniform.svg.import new file mode 100644 index 0000000..865ac1c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniform.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqqpmt28jel6" +path="res://.godot/imported/VisualShaderNodeTextureUniform.svg-d746b1a89458327651aaba30a0849c67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTextureUniform.svg-d746b1a89458327651aaba30a0849c67.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniformTriplanar.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniformTriplanar.svg new file mode 100644 index 0000000..dd5bfa1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniformTriplanar.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniformTriplanar.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniformTriplanar.svg.import new file mode 100644 index 0000000..624f281 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniformTriplanar.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjigv1m8mg264" +path="res://.godot/imported/VisualShaderNodeTextureUniformTriplanar.svg-9b14d5bfd2f34c8eca068a3103277771.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeTextureUniformTriplanar.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTextureUniformTriplanar.svg-9b14d5bfd2f34c8eca068a3103277771.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformCompose.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformCompose.svg new file mode 100644 index 0000000..6f44f23 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformCompose.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformCompose.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformCompose.svg.import new file mode 100644 index 0000000..d676288 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformCompose.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6ldx8xj63a31" +path="res://.godot/imported/VisualShaderNodeTransformCompose.svg-f39630ccbee3fb4320afcaa22f93c539.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformCompose.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTransformCompose.svg-f39630ccbee3fb4320afcaa22f93c539.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformDecompose.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformDecompose.svg new file mode 100644 index 0000000..1521181 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformDecompose.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformDecompose.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformDecompose.svg.import new file mode 100644 index 0000000..1dc0f53 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformDecompose.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt0426wiex5ni" +path="res://.godot/imported/VisualShaderNodeTransformDecompose.svg-0bc83b9c94cf8e1748330334811bfd79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformDecompose.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTransformDecompose.svg-0bc83b9c94cf8e1748330334811bfd79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformUniform.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformUniform.svg new file mode 100644 index 0000000..507b616 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformUniform.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformUniform.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformUniform.svg.import new file mode 100644 index 0000000..148f6a9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformUniform.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rtgga411s5ys" +path="res://.godot/imported/VisualShaderNodeTransformUniform.svg-1ad95573ae2ad1a459239c11e50f2151.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformUniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTransformUniform.svg-1ad95573ae2ad1a459239c11e50f2151.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformVecMult.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformVecMult.svg new file mode 100644 index 0000000..cd108f6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformVecMult.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformVecMult.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformVecMult.svg.import new file mode 100644 index 0000000..0d5f712 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformVecMult.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6qfjyb30o878" +path="res://.godot/imported/VisualShaderNodeTransformVecMult.svg-4b4dc321fedcb30e292d299a38effb2f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeTransformVecMult.svg" +dest_files=["res://.godot/imported/VisualShaderNodeTransformVecMult.svg-4b4dc321fedcb30e292d299a38effb2f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVec3Uniform.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVec3Uniform.svg new file mode 100644 index 0000000..9432c7c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVec3Uniform.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVec3Uniform.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVec3Uniform.svg.import new file mode 100644 index 0000000..160bf6c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVec3Uniform.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q3gqmw1icrcw" +path="res://.godot/imported/VisualShaderNodeVec3Uniform.svg-80db6a5228afe2c7525b7e7f13d197fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeVec3Uniform.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVec3Uniform.svg-80db6a5228afe2c7525b7e7f13d197fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorCompose.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorCompose.svg new file mode 100644 index 0000000..6502ca5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorCompose.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorCompose.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorCompose.svg.import new file mode 100644 index 0000000..4273722 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorCompose.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5gll67m6q2ip" +path="res://.godot/imported/VisualShaderNodeVectorCompose.svg-b98e977263928836000138566df8fb85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorCompose.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVectorCompose.svg-b98e977263928836000138566df8fb85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDecompose.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDecompose.svg new file mode 100644 index 0000000..5ff0706 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDecompose.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDecompose.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDecompose.svg.import new file mode 100644 index 0000000..7b4aab2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDecompose.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmwlfx5ysu4u2" +path="res://.godot/imported/VisualShaderNodeVectorDecompose.svg-28c27540b6d51e23e3dcdb8641c9bf7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDecompose.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVectorDecompose.svg-28c27540b6d51e23e3dcdb8641c9bf7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDistance.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDistance.svg new file mode 100644 index 0000000..9ea5462 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDistance.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDistance.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDistance.svg.import new file mode 100644 index 0000000..01578ad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDistance.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbw2nw6mm7s8l" +path="res://.godot/imported/VisualShaderNodeVectorDistance.svg-1b93b345ef87af28fb0885a065bddacc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorDistance.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVectorDistance.svg-1b93b345ef87af28fb0885a065bddacc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorFunc.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorFunc.svg new file mode 100644 index 0000000..11405f1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorFunc.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorFunc.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorFunc.svg.import new file mode 100644 index 0000000..953dbd1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorFunc.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djh7ywumlpykw" +path="res://.godot/imported/VisualShaderNodeVectorFunc.svg-7cf60f3883c7df619e91f0fe2f47fcf4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorFunc.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVectorFunc.svg-7cf60f3883c7df619e91f0fe2f47fcf4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorLen.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorLen.svg new file mode 100644 index 0000000..ad9b51d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorLen.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorLen.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorLen.svg.import new file mode 100644 index 0000000..d812f7a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorLen.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ux388j184e41" +path="res://.godot/imported/VisualShaderNodeVectorLen.svg-54531678fcafd4d9c748ed5e45081f49.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderNodeVectorLen.svg" +dest_files=["res://.godot/imported/VisualShaderNodeVectorLen.svg-54531678fcafd4d9c748ed5e45081f49.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderPort.svg b/addons/godot_tours/bubble/assets/icons/VisualShaderPort.svg new file mode 100644 index 0000000..6bde8f3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderPort.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VisualShaderPort.svg.import b/addons/godot_tours/bubble/assets/icons/VisualShaderPort.svg.import new file mode 100644 index 0000000..fecbc9b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VisualShaderPort.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3fxr8ra5mm66" +path="res://.godot/imported/VisualShaderPort.svg-89cc2a745d095aeb975b56178034d3ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VisualShaderPort.svg" +dest_files=["res://.godot/imported/VisualShaderPort.svg-89cc2a745d095aeb975b56178034d3ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VoxelGI.svg b/addons/godot_tours/bubble/assets/icons/VoxelGI.svg new file mode 100644 index 0000000..2b578d9 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VoxelGI.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VoxelGI.svg.import b/addons/godot_tours/bubble/assets/icons/VoxelGI.svg.import new file mode 100644 index 0000000..b759cba --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VoxelGI.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfofq7gea8vpm" +path="res://.godot/imported/VoxelGI.svg-5f1f45b36d9ae39d23bce9d55f76b61c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VoxelGI.svg" +dest_files=["res://.godot/imported/VoxelGI.svg-5f1f45b36d9ae39d23bce9d55f76b61c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/VoxelGIData.svg b/addons/godot_tours/bubble/assets/icons/VoxelGIData.svg new file mode 100644 index 0000000..a4eb174 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VoxelGIData.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/VoxelGIData.svg.import b/addons/godot_tours/bubble/assets/icons/VoxelGIData.svg.import new file mode 100644 index 0000000..7d1e58e --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/VoxelGIData.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkjhm52tvfx00" +path="res://.godot/imported/VoxelGIData.svg-9d2872a9c4fbb070a2ea57a9e016635b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/VoxelGIData.svg" +dest_files=["res://.godot/imported/VoxelGIData.svg-9d2872a9c4fbb070a2ea57a9e016635b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Warning.svg b/addons/godot_tours/bubble/assets/icons/Warning.svg new file mode 100644 index 0000000..405ce66 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Warning.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Warning.svg.import b/addons/godot_tours/bubble/assets/icons/Warning.svg.import new file mode 100644 index 0000000..c18b4b1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Warning.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfqpf0580o6kx" +path="res://.godot/imported/Warning.svg-57959e808eb39d8da11fa92a6ee0457c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Warning.svg" +dest_files=["res://.godot/imported/Warning.svg-57959e808eb39d8da11fa92a6ee0457c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/WarningPattern.svg b/addons/godot_tours/bubble/assets/icons/WarningPattern.svg new file mode 100644 index 0000000..8ef2c14 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/WarningPattern.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/WarningPattern.svg.import b/addons/godot_tours/bubble/assets/icons/WarningPattern.svg.import new file mode 100644 index 0000000..b48d81f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/WarningPattern.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://banueejegb54y" +path="res://.godot/imported/WarningPattern.svg-100c9b1a488086ed9c7a4fc48301683f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/WarningPattern.svg" +dest_files=["res://.godot/imported/WarningPattern.svg-100c9b1a488086ed9c7a4fc48301683f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Window.svg b/addons/godot_tours/bubble/assets/icons/Window.svg new file mode 100644 index 0000000..a60a25b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Window.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Window.svg.import b/addons/godot_tours/bubble/assets/icons/Window.svg.import new file mode 100644 index 0000000..9dd6232 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Window.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vi2nlg82c8ac" +path="res://.godot/imported/Window.svg-607bfa64e11e9ace2bfbca3580b93d4d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Window.svg" +dest_files=["res://.godot/imported/Window.svg-607bfa64e11e9ace2bfbca3580b93d4d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/World2D.svg b/addons/godot_tours/bubble/assets/icons/World2D.svg new file mode 100644 index 0000000..94d42a2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/World2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/World2D.svg.import b/addons/godot_tours/bubble/assets/icons/World2D.svg.import new file mode 100644 index 0000000..48e790c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/World2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p6xnf5je4k0a" +path="res://.godot/imported/World2D.svg-7f67a3666be0a6bb63d7f6b73b17b627.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/World2D.svg" +dest_files=["res://.godot/imported/World2D.svg-7f67a3666be0a6bb63d7f6b73b17b627.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/World3D.svg b/addons/godot_tours/bubble/assets/icons/World3D.svg new file mode 100644 index 0000000..1e292e2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/World3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/World3D.svg.import b/addons/godot_tours/bubble/assets/icons/World3D.svg.import new file mode 100644 index 0000000..1ac79a5 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/World3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c30i56joqkiuv" +path="res://.godot/imported/World3D.svg-6d9300c1881c84f0be6df4abac47d6b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/World3D.svg" +dest_files=["res://.godot/imported/World3D.svg-6d9300c1881c84f0be6df4abac47d6b7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape2D.svg b/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape2D.svg new file mode 100644 index 0000000..34dcbdc --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape2D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape2D.svg.import b/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape2D.svg.import new file mode 100644 index 0000000..7ec86a6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape2D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4m7e1sblww81" +path="res://.godot/imported/WorldBoundaryShape2D.svg-8d52d7e4ec822754fe5bfae3bd0081c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/WorldBoundaryShape2D.svg" +dest_files=["res://.godot/imported/WorldBoundaryShape2D.svg-8d52d7e4ec822754fe5bfae3bd0081c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape3D.svg b/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape3D.svg new file mode 100644 index 0000000..c7d0495 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape3D.svg.import b/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape3D.svg.import new file mode 100644 index 0000000..df2a37f --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/WorldBoundaryShape3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1a7tt3rvk1lt" +path="res://.godot/imported/WorldBoundaryShape3D.svg-7d08a2d880617e15a9b0f65b9404a5d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/WorldBoundaryShape3D.svg" +dest_files=["res://.godot/imported/WorldBoundaryShape3D.svg-7d08a2d880617e15a9b0f65b9404a5d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/WorldEnvironment.svg b/addons/godot_tours/bubble/assets/icons/WorldEnvironment.svg new file mode 100644 index 0000000..a5b48cb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/WorldEnvironment.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/WorldEnvironment.svg.import b/addons/godot_tours/bubble/assets/icons/WorldEnvironment.svg.import new file mode 100644 index 0000000..05d26e7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/WorldEnvironment.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ql5bddmw8rbi" +path="res://.godot/imported/WorldEnvironment.svg-02b99f348b19168fbb9dc73fdf55c9a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/WorldEnvironment.svg" +dest_files=["res://.godot/imported/WorldEnvironment.svg-02b99f348b19168fbb9dc73fdf55c9a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/X509Certificate.svg b/addons/godot_tours/bubble/assets/icons/X509Certificate.svg new file mode 100644 index 0000000..a3b5394 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/X509Certificate.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/X509Certificate.svg.import b/addons/godot_tours/bubble/assets/icons/X509Certificate.svg.import new file mode 100644 index 0000000..fe65a16 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/X509Certificate.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2j5fetog0b6j" +path="res://.godot/imported/X509Certificate.svg-4fb43d6ee38b69f9b0fa71bc06301a13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/X509Certificate.svg" +dest_files=["res://.godot/imported/X509Certificate.svg-4fb43d6ee38b69f9b0fa71bc06301a13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/XRAnchor3D.svg b/addons/godot_tours/bubble/assets/icons/XRAnchor3D.svg new file mode 100644 index 0000000..bb684df --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRAnchor3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/XRAnchor3D.svg.import b/addons/godot_tours/bubble/assets/icons/XRAnchor3D.svg.import new file mode 100644 index 0000000..f8afb98 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRAnchor3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcyd4eiulttt7" +path="res://.godot/imported/XRAnchor3D.svg-db6984a24b00023461f27f77bec6489e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/XRAnchor3D.svg" +dest_files=["res://.godot/imported/XRAnchor3D.svg-db6984a24b00023461f27f77bec6489e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/XRBodyModifier3D.svg b/addons/godot_tours/bubble/assets/icons/XRBodyModifier3D.svg new file mode 100644 index 0000000..7e3fcff --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRBodyModifier3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/XRBodyModifier3D.svg.import b/addons/godot_tours/bubble/assets/icons/XRBodyModifier3D.svg.import new file mode 100644 index 0000000..3410486 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRBodyModifier3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2w0ds0gu3sfl" +path="res://.godot/imported/XRBodyModifier3D.svg-6e2de95569e0d2e051c1e970ce89a5a1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/XRBodyModifier3D.svg" +dest_files=["res://.godot/imported/XRBodyModifier3D.svg-6e2de95569e0d2e051c1e970ce89a5a1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/XRCamera3D.svg b/addons/godot_tours/bubble/assets/icons/XRCamera3D.svg new file mode 100644 index 0000000..501a86a --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRCamera3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/XRCamera3D.svg.import b/addons/godot_tours/bubble/assets/icons/XRCamera3D.svg.import new file mode 100644 index 0000000..49c8f4c --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRCamera3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi0leidug6ab2" +path="res://.godot/imported/XRCamera3D.svg-54b348f6b4c6115a6388cb498f654606.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/XRCamera3D.svg" +dest_files=["res://.godot/imported/XRCamera3D.svg-54b348f6b4c6115a6388cb498f654606.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/XRController3D.svg b/addons/godot_tours/bubble/assets/icons/XRController3D.svg new file mode 100644 index 0000000..e7c29b0 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRController3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/XRController3D.svg.import b/addons/godot_tours/bubble/assets/icons/XRController3D.svg.import new file mode 100644 index 0000000..b602ab3 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRController3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr0gcsn6sjdr" +path="res://.godot/imported/XRController3D.svg-d1024bd470476f88f4b71e1a655094f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/XRController3D.svg" +dest_files=["res://.godot/imported/XRController3D.svg-d1024bd470476f88f4b71e1a655094f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/XRFaceModifier3D.svg b/addons/godot_tours/bubble/assets/icons/XRFaceModifier3D.svg new file mode 100644 index 0000000..6ab48ca --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRFaceModifier3D.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/XRFaceModifier3D.svg.import b/addons/godot_tours/bubble/assets/icons/XRFaceModifier3D.svg.import new file mode 100644 index 0000000..cb5e02d --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRFaceModifier3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byec5jl1eblao" +path="res://.godot/imported/XRFaceModifier3D.svg-58a2bebce92eb6e29a2dd4b033c2e690.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/XRFaceModifier3D.svg" +dest_files=["res://.godot/imported/XRFaceModifier3D.svg-58a2bebce92eb6e29a2dd4b033c2e690.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/XRHandModifier3D.svg b/addons/godot_tours/bubble/assets/icons/XRHandModifier3D.svg new file mode 100644 index 0000000..60578ac --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRHandModifier3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/XRHandModifier3D.svg.import b/addons/godot_tours/bubble/assets/icons/XRHandModifier3D.svg.import new file mode 100644 index 0000000..afce414 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRHandModifier3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dska7b28xx14b" +path="res://.godot/imported/XRHandModifier3D.svg-77ca2aa6a85eab87d7784dd529081cf1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/XRHandModifier3D.svg" +dest_files=["res://.godot/imported/XRHandModifier3D.svg-77ca2aa6a85eab87d7784dd529081cf1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/XRNode3D.svg b/addons/godot_tours/bubble/assets/icons/XRNode3D.svg new file mode 100644 index 0000000..50dd3ad --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRNode3D.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/addons/godot_tours/bubble/assets/icons/XRNode3D.svg.import b/addons/godot_tours/bubble/assets/icons/XRNode3D.svg.import new file mode 100644 index 0000000..d1b5da4 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XRNode3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://etxm3217cmm4" +path="res://.godot/imported/XRNode3D.svg-75b49d68d4a5b1d7dd1105270cd2e423.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/XRNode3D.svg" +dest_files=["res://.godot/imported/XRNode3D.svg-75b49d68d4a5b1d7dd1105270cd2e423.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/XROrigin3D.svg b/addons/godot_tours/bubble/assets/icons/XROrigin3D.svg new file mode 100644 index 0000000..d1402aa --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XROrigin3D.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/XROrigin3D.svg.import b/addons/godot_tours/bubble/assets/icons/XROrigin3D.svg.import new file mode 100644 index 0000000..e12b7f2 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/XROrigin3D.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfrqns32k8jh8" +path="res://.godot/imported/XROrigin3D.svg-7365190a134ddd23fa542350cc506481.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/XROrigin3D.svg" +dest_files=["res://.godot/imported/XROrigin3D.svg-7365190a134ddd23fa542350cc506481.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/YSort.svg b/addons/godot_tours/bubble/assets/icons/YSort.svg new file mode 100644 index 0000000..8394a3b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/YSort.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/YSort.svg.import b/addons/godot_tours/bubble/assets/icons/YSort.svg.import new file mode 100644 index 0000000..95a0615 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/YSort.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://npalnb0qmdx0" +path="res://.godot/imported/YSort.svg-61c06e348b6c70382bb2e90cffd5d5e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/YSort.svg" +dest_files=["res://.godot/imported/YSort.svg-61c06e348b6c70382bb2e90cffd5d5e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/Zoom.svg b/addons/godot_tours/bubble/assets/icons/Zoom.svg new file mode 100644 index 0000000..655636b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Zoom.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/Zoom.svg.import b/addons/godot_tours/bubble/assets/icons/Zoom.svg.import new file mode 100644 index 0000000..0e186d6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/Zoom.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdai805rvg11t" +path="res://.godot/imported/Zoom.svg-e78c3dcc55303d3d9d3a48386dde95cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/Zoom.svg" +dest_files=["res://.godot/imported/Zoom.svg-e78c3dcc55303d3d9d3a48386dde95cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ZoomLess.svg b/addons/godot_tours/bubble/assets/icons/ZoomLess.svg new file mode 100644 index 0000000..acaadb6 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ZoomLess.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ZoomLess.svg.import b/addons/godot_tours/bubble/assets/icons/ZoomLess.svg.import new file mode 100644 index 0000000..12dcb80 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ZoomLess.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0so4v64gxpjx" +path="res://.godot/imported/ZoomLess.svg-fbdad3eab95f2dc8c956193301eb071c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ZoomLess.svg" +dest_files=["res://.godot/imported/ZoomLess.svg-fbdad3eab95f2dc8c956193301eb071c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ZoomMore.svg b/addons/godot_tours/bubble/assets/icons/ZoomMore.svg new file mode 100644 index 0000000..2327fca --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ZoomMore.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ZoomMore.svg.import b/addons/godot_tours/bubble/assets/icons/ZoomMore.svg.import new file mode 100644 index 0000000..4116379 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ZoomMore.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0fiv8bn50a7e" +path="res://.godot/imported/ZoomMore.svg-aa2f6268bee078b7d051653102b28622.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ZoomMore.svg" +dest_files=["res://.godot/imported/ZoomMore.svg-aa2f6268bee078b7d051653102b28622.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/ZoomReset.svg b/addons/godot_tours/bubble/assets/icons/ZoomReset.svg new file mode 100644 index 0000000..75c9aeb --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ZoomReset.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/ZoomReset.svg.import b/addons/godot_tours/bubble/assets/icons/ZoomReset.svg.import new file mode 100644 index 0000000..a29a1a1 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/ZoomReset.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cefoet4l348d7" +path="res://.godot/imported/ZoomReset.svg-a640efe6bd73708e59e21cc45317a8b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/ZoomReset.svg" +dest_files=["res://.godot/imported/ZoomReset.svg-a640efe6bd73708e59e21cc45317a8b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/bool.svg b/addons/godot_tours/bubble/assets/icons/bool.svg new file mode 100644 index 0000000..4fd042b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/bool.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/bool.svg.import b/addons/godot_tours/bubble/assets/icons/bool.svg.import new file mode 100644 index 0000000..b727b0b --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/bool.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cilo1qe4ihoky" +path="res://.godot/imported/bool.svg-dd3a1769a422ef6e3a549eb47da32d91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/bool.svg" +dest_files=["res://.godot/imported/bool.svg-dd3a1769a422ef6e3a549eb47da32d91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/editor_icons_builders.py b/addons/godot_tours/bubble/assets/icons/editor_icons_builders.py new file mode 100644 index 0000000..5cc67ca --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/editor_icons_builders.py @@ -0,0 +1,81 @@ +"""Functions used to generate source files during build time""" + +import os +from io import StringIO + + +# See also `scene/theme/icons/default_theme_icons_builders.py`. +def make_editor_icons_action(target, source, env): + dst = str(target[0]) + svg_icons = source + + with StringIO() as icons_string, StringIO() as s: + for f in svg_icons: + fname = str(f) + + icons_string.write('\t"') + + with open(fname, "rb") as svgf: + b = svgf.read(1) + while len(b) == 1: + icons_string.write("\\" + str(hex(ord(b)))[1:]) + b = svgf.read(1) + + icons_string.write('"') + if fname != svg_icons[-1]: + icons_string.write(",") + icons_string.write("\n") + + s.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n") + s.write("#ifndef _EDITOR_ICONS_H\n") + s.write("#define _EDITOR_ICONS_H\n") + s.write("static const int editor_icons_count = {};\n".format(len(svg_icons))) + s.write("static const char *editor_icons_sources[] = {\n") + s.write(icons_string.getvalue()) + s.write("};\n\n") + s.write("static const char *editor_icons_names[] = {\n") + + # this is used to store the indices of thumbnail icons + thumb_medium_indices = [] + thumb_big_indices = [] + index = 0 + for f in svg_icons: + fname = str(f) + + # Trim the `.svg` extension from the string. + icon_name = os.path.basename(fname)[:-4] + # some special cases + if icon_name.endswith("MediumThumb"): # don't know a better way to handle this + thumb_medium_indices.append(str(index)) + if icon_name.endswith("BigThumb"): # don't know a better way to handle this + thumb_big_indices.append(str(index)) + if icon_name.endswith("GodotFile"): # don't know a better way to handle this + thumb_big_indices.append(str(index)) + + s.write('\t"{0}"'.format(icon_name)) + + if fname != svg_icons[-1]: + s.write(",") + s.write("\n") + + index += 1 + + s.write("};\n") + + if thumb_medium_indices: + s.write("\n\n") + s.write("static const int editor_md_thumbs_count = {};\n".format(len(thumb_medium_indices))) + s.write("static const int editor_md_thumbs_indices[] = {") + s.write(", ".join(thumb_medium_indices)) + s.write("};\n") + if thumb_big_indices: + s.write("\n\n") + s.write("static const int editor_bg_thumbs_count = {};\n".format(len(thumb_big_indices))) + s.write("static const int editor_bg_thumbs_indices[] = {") + s.write(", ".join(thumb_big_indices)) + s.write("};\n") + + s.write("#endif\n") + + with open(dst, "w", encoding="utf-8", newline="\n") as f: + f.write(s.getvalue()) diff --git a/addons/godot_tours/bubble/assets/icons/float.svg b/addons/godot_tours/bubble/assets/icons/float.svg new file mode 100644 index 0000000..0512345 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/float.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/float.svg.import b/addons/godot_tours/bubble/assets/icons/float.svg.import new file mode 100644 index 0000000..1c05eba --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/float.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1p4crojiobjl" +path="res://.godot/imported/float.svg-9df8facafeeb989d1e7f72dc328ab51d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/float.svg" +dest_files=["res://.godot/imported/float.svg-9df8facafeeb989d1e7f72dc328ab51d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/int.svg b/addons/godot_tours/bubble/assets/icons/int.svg new file mode 100644 index 0000000..b943822 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/int.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/int.svg.import b/addons/godot_tours/bubble/assets/icons/int.svg.import new file mode 100644 index 0000000..1e3be89 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/int.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0bluvv64do38" +path="res://.godot/imported/int.svg-b00aa647451fb387f93f0cda8997c94c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/int.svg" +dest_files=["res://.godot/imported/int.svg-b00aa647451fb387f93f0cda8997c94c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/assets/icons/uint.svg b/addons/godot_tours/bubble/assets/icons/uint.svg new file mode 100644 index 0000000..1be22d7 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/uint.svg @@ -0,0 +1 @@ + diff --git a/addons/godot_tours/bubble/assets/icons/uint.svg.import b/addons/godot_tours/bubble/assets/icons/uint.svg.import new file mode 100644 index 0000000..1ce3027 --- /dev/null +++ b/addons/godot_tours/bubble/assets/icons/uint.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csby5p0r5kcmb" +path="res://.godot/imported/uint.svg-744c5bb8dfa5a9bf3b5fda7d2d872cfe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://addons/godot_tours/bubble/assets/icons/uint.svg" +dest_files=["res://.godot/imported/uint.svg-744c5bb8dfa5a9bf3b5fda7d2d872cfe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 +svg/scale=4.0 +editor/scale_with_editor_scale=false +editor/convert_colors_with_editor_theme=false diff --git a/addons/godot_tours/bubble/bubble.gd b/addons/godot_tours/bubble/bubble.gd index 3d05185..15d1a1f 100644 --- a/addons/godot_tours/bubble/bubble.gd +++ b/addons/godot_tours/bubble/bubble.gd @@ -60,12 +60,15 @@ var offset_vector := Vector2.ZERO ## Custom offset for [method move_and_anchor] var control: Control = null ## Reference to the control node passed to [method move_and_anchor]. var translation_service: TranslationService = null var step_count := 0 ## Tour step count. +var drag_margin := 32.0 * EditorInterface.get_editor_scale() +var is_left_click := false +var was_moved := false var tween: Tween = null var avatar_tween_position: Tween = null var avatar_tween_rotation: Tween = null -@onready var panel: Control = %Panel +@onready var panel_container: PanelContainer = $PanelContainer @onready var avatar: Node2D = %Avatar @@ -73,16 +76,55 @@ func setup(translation_service: TranslationService, step_count: int) -> void: self.translation_service = translation_service self.step_count = step_count + +func _ready() -> void: + if not Engine.is_editor_hint() or EditorInterface.get_edited_scene_root() == self: + return + + panel_container.gui_input.connect(_on_panel_container_gui_input) + var editor_scale := EditorInterface.get_editor_scale() + panel_container.custom_minimum_size *= editor_scale + if panel_container.theme: + panel_container.theme = ThemeUtils.request_fallback_font(panel_container.theme) + panel_container.theme = ThemeUtils.generate_scaled_theme(panel_container.theme) + + +func _process(delta: float) -> void: # We call this function that updates the position and size of the bubble. # RichTextLabel nodes added to the bubble can cause it to resize after 0, 1, or 2 frames. It's not reliable - # and depends on the computer. So, it's best to let the panel container node tell us when it's been resized. - panel.minimum_size_changed.connect(refresh) + # and depends on the computer. So, it's best to refresh every frame. + refresh() + + +func _on_panel_container_gui_input(event: InputEvent) -> void: + var is_event_in_margin: bool = ( + event is InputEventMouse + and ( + event.position.y <= drag_margin + or event.position.y >= panel_container.size.y - drag_margin + or event.position.x <= drag_margin + or event.position.x >= panel_container.size.x - drag_margin + ) + ) + panel_container.mouse_default_cursor_shape = ( + Control.CURSOR_MOVE if is_event_in_margin else Control.CURSOR_ARROW + ) + + if ( + event is InputEventMouseButton + and event.button_index == MOUSE_BUTTON_LEFT + and is_event_in_margin + ): + is_left_click = event.pressed + elif event is InputEventMouseMotion and is_left_click: + panel_container.position += event.relative + was_moved = true ## [b]Virtual[/b] method for reacting to the tour step change. See ["addons/godot_tours/tour.gd"] ## [code]step_changed[/code] signal for details. func on_tour_step_changed(index: int) -> void: - pass + was_moved = false ## [b]Virtual[/b] method called at the beginning of every tour step for clearing anything necessary. @@ -101,7 +143,7 @@ func add_text(text: Array[String]) -> void: ## [b]Virtual[/b] method to insert a texture image. -func add_texture(texture: Texture2D) -> void: +func add_texture(texture: Texture2D, max_height := 0.0) -> void: pass @@ -160,9 +202,8 @@ func move_and_anchor( self.at = at self.margin = margin self.offset_vector = offset_vector - panel.grow_horizontal = GROW_DIRECTIONS[at].h - panel.grow_vertical = GROW_DIRECTIONS[at].v - panel.reset_size() + panel_container.grow_horizontal = GROW_DIRECTIONS[at].h + panel_container.grow_vertical = GROW_DIRECTIONS[at].v ## Sets the avatar location at the top of the bubble. Check [member avatar_at] for details on the parameter. @@ -170,9 +211,9 @@ func set_avatar_at(at := AvatarAt.LEFT) -> void: avatar_at = at var editor_scale := EditorInterface.get_editor_scale() var at_offset := { - AvatarAt.LEFT: Vector2(-8.0, -6.0) * editor_scale, - AvatarAt.CENTER: Vector2(panel.size.x / 2.0, -8.0 * editor_scale), - AvatarAt.RIGHT: Vector2(panel.size.x + 3.0 * editor_scale, -8.0 * editor_scale), + AvatarAt.LEFT: Vector2(-8.0, -8.0) * editor_scale, + AvatarAt.CENTER: Vector2(panel_container.size.x / 2.0, -12.0 * editor_scale), + AvatarAt.RIGHT: Vector2(panel_container.size.x + 3.0 * editor_scale, -8.0 * editor_scale), } var new_avatar_position: Vector2 = at_offset[at] @@ -193,7 +234,7 @@ func set_avatar_at(at := AvatarAt.LEFT) -> void: avatar, "position", new_avatar_position, TWEEN_DURATION_AVATAR ) - if not avatar.position.is_equal_approx(new_avatar_position): + if not is_equal_approx(avatar.rotation, new_avatar_rotation): if avatar_tween_rotation != null: avatar_tween_rotation.kill() avatar_tween_rotation = create_tween().set_ease(Tween.EASE_OUT).set_trans(Tween.TRANS_CUBIC) @@ -203,28 +244,36 @@ func set_avatar_at(at := AvatarAt.LEFT) -> void: ## Refreshes the position and size of the bubble and its avatar as necessary. -## Connected to the [member minimum_size_changed] signal of the [member panel]. +## Called in [method Node._process]. func refresh() -> void: - if control == null: + if was_moved or control == null: return + panel_container.reset_size() var at_offset := { At.TOP_LEFT: margin * Vector2.ONE, - At.TOP_CENTER: Vector2((control.size.x - panel.size.x) / 2.0, 0.0) + margin * Vector2.DOWN, - At.TOP_RIGHT: Vector2(control.size.x - panel.size.x, 0.0) + margin * Vector2(-1.0, 1.0), - At.BOTTOM_RIGHT: control.size - panel.size - margin * Vector2.ONE, - At.BOTTOM_CENTER: Vector2(0.5, 1.0) * (control.size - panel.size) + margin * Vector2.UP, - At.BOTTOM_LEFT: Vector2(0.0, control.size.y - panel.size.y) + margin * Vector2(1.0, -1.0), + At.TOP_CENTER: + Vector2((control.size.x - panel_container.size.x) / 2.0, 0.0) + margin * Vector2.DOWN, + At.TOP_RIGHT: + Vector2(control.size.x - panel_container.size.x, 0.0) + margin * Vector2(-1.0, 1.0), + At.BOTTOM_RIGHT: control.size - panel_container.size - margin * Vector2.ONE, + At.BOTTOM_CENTER: + Vector2(0.5, 1.0) * (control.size - panel_container.size) + margin * Vector2.UP, + At.BOTTOM_LEFT: + Vector2(0.0, control.size.y - panel_container.size.y) + margin * Vector2(1.0, -1.0), At.CENTER_LEFT: - Vector2(0.0, (control.size.y - panel.size.y) / 2.0) + margin * Vector2.RIGHT, - At.CENTER_RIGHT: Vector2(1.0, 0.5) * (control.size - panel.size) + margin * Vector2.LEFT, - At.CENTER: (control.size - panel.size) / 2.0, + Vector2(0.0, (control.size.y - panel_container.size.y) / 2.0) + margin * Vector2.RIGHT, + At.CENTER_RIGHT: + Vector2(1.0, 0.5) * (control.size - panel_container.size) + margin * Vector2.LEFT, + At.CENTER: (control.size - panel_container.size) / 2.0, } var new_global_position: Vector2 = control.global_position + at_offset[at] + offset_vector - if not panel.global_position.is_equal_approx(new_global_position): + if not panel_container.global_position.is_equal_approx(new_global_position): if tween != null: tween.kill() tween = create_tween().set_ease(Tween.EASE_OUT).set_trans(Tween.TRANS_CUBIC) - tween.tween_property(panel, "global_position", new_global_position, TWEEN_DURATION) + tween.tween_property( + panel_container, "global_position", new_global_position, TWEEN_DURATION + ) set_avatar_at(avatar_at) diff --git a/addons/godot_tours/bubble/bubble.tscn b/addons/godot_tours/bubble/bubble.tscn new file mode 100644 index 0000000..93d3592 --- /dev/null +++ b/addons/godot_tours/bubble/bubble.tscn @@ -0,0 +1,29 @@ +[gd_scene load_steps=4 format=3 uid="uid://d2prd14xbjee2"] + +[ext_resource type="Script" path="res://addons/godot_tours/bubble/bubble.gd" id="1_oyoy5"] +[ext_resource type="Theme" uid="uid://cx2cxgbadh7fg" path="res://addons/godot_tours/bubble/assets/bubble_theme.tres" id="2_biru1"] +[ext_resource type="PackedScene" uid="uid://bgxtydff0olev" path="res://addons/godot_tours/bubble/gobot/gobot.tscn" id="7_2u8aa"] + +[node name="Bubble" type="CanvasLayer"] +script = ExtResource("1_oyoy5") + +[node name="PanelContainer" type="PanelContainer" parent="."] +unique_name_in_owner = true +custom_minimum_size = Vector2(512, 174) +anchors_preset = 8 +anchor_left = 0.5 +anchor_top = 0.5 +anchor_right = 0.5 +anchor_bottom = 0.5 +offset_left = -256.0 +offset_top = -87.0 +offset_right = 256.0 +offset_bottom = 87.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("2_biru1") + +[node name="Avatar" parent="PanelContainer" instance=ExtResource("7_2u8aa")] +unique_name_in_owner = true +rotation = -0.261799 +scale = Vector2(0.35, 0.35) diff --git a/addons/godot_tours/bubble/default_bubble.gd b/addons/godot_tours/bubble/default_bubble.gd index 733b7aa..c836e9b 100644 --- a/addons/godot_tours/bubble/default_bubble.gd +++ b/addons/godot_tours/bubble/default_bubble.gd @@ -9,6 +9,8 @@ const TextureRectPackedScene := preload("texture_rect.tscn") const VideoStreamPlayerPackedScene := preload("video_stream_player.tscn") const RichTextLabelPackedScene := preload("rich_text_label/rich_text_label.tscn") +const CLASS_IMG := r"[img=%dx%d]res://addons/godot_tours/bubble/assets/icons/$1.svg[/img] [b]$1[/b]" + ## Separation between paragraphs of text and elements in the main content in pixels. @export var paragraph_separation := 12: set(new_value): @@ -17,6 +19,9 @@ const RichTextLabelPackedScene := preload("rich_text_label/rich_text_label.tscn" await ready main_v_box_container.add_theme_constant_override("separation", paragraph_separation) +var img_size := 24 * EditorInterface.get_editor_scale() +var regex_class := RegEx.new() + @onready var background_texture_rect: TextureRect = %BackgroundTextureRect @onready var title_label: Label = %TitleLabel @onready var header_rich_text_label: RichTextLabel = %HeaderRichTextLabel @@ -41,6 +46,11 @@ const RichTextLabelPackedScene := preload("rich_text_label/rich_text_label.tscn" func setup(translation_service: TranslationService, step_count: int) -> void: super(translation_service, step_count) + + var classes := Array(ClassDB.get_class_list()) + classes.sort_custom(func(a: String, b: String) -> bool: return a.length() > b.length()) + regex_class.compile(r"\[b\](%s)\[\/b\]" % "|".join(classes)) + update_step_count_display(0) Utils.update_locale(translation_service, { back_button: {text = "BACK"}, @@ -54,6 +64,7 @@ func setup(translation_service: TranslationService, step_count: int) -> void: func _ready() -> void: + super() if not Engine.is_editor_hint() or EditorInterface.get_edited_scene_root() == self: return @@ -76,14 +87,12 @@ func _ready() -> void: node.visible = false var editor_scale := EditorInterface.get_editor_scale() - panel.theme = ThemeUtils.generate_scaled_theme(panel.theme) - panel.custom_minimum_size *= editor_scale button_close.custom_minimum_size *= editor_scale - avatar.scale = avatar.scale_start * editor_scale paragraph_separation *= editor_scale func on_tour_step_changed(index: int) -> void: + super(index) back_button.visible = true finish_button.visible = false if index == 0: @@ -120,11 +129,16 @@ func add_element(element: Control, data: Variant) -> void: if element is RichTextLabel or element is CodeEdit: element.text = data elif element is TextureRect: - element.texture = data + element.texture = data.texture + if "max_height" in data: + element.max_height = data.max_height elif element is VideoStreamPlayer: element.stream = data element.finished.connect(element.play) element.play() + var texture: Texture2D = element.get_video_texture() + element.custom_minimum_size.x = main_v_box_container.size.x + element.custom_minimum_size.y = element.custom_minimum_size.x * texture.get_height() / texture.get_width() func set_title(title_text: String) -> void: @@ -133,6 +147,7 @@ func set_title(title_text: String) -> void: func add_text(text: Array[String]) -> void: for line in text: + line = regex_class.sub(line, CLASS_IMG % [img_size, img_size], true) add_element(RichTextLabelPackedScene.instantiate(), line) @@ -141,10 +156,14 @@ func add_code(code: Array[String]) -> void: add_element(CodeEditPackedScene.instantiate(), snippet) -func add_texture(texture: Texture2D) -> void: +func add_texture(texture: Texture2D, max_height := 0.0) -> void: if texture == null: return - add_element(TextureRectPackedScene.instantiate(), texture) + var texture_rect := TextureRectPackedScene.instantiate() + var data := {"texture": texture} + if max_height > 0.0: + data["max_height"] = max_height + add_element(texture_rect, data) func add_video(stream: VideoStream) -> void: @@ -179,7 +198,7 @@ func set_background(texture: Texture2D) -> void: func check_tasks() -> bool: - var are_tasks_done := tasks_v_box_container.get_children().all(func(task: Task) -> bool: return task.is_done()) + var are_tasks_done := tasks_v_box_container.get_children().all(func(task: Task) -> bool: return task.is_done() and not task.is_queued_for_deletion()) next_button.visible = are_tasks_done if are_tasks_done: avatar.do_wink() diff --git a/addons/godot_tours/bubble/default_bubble.tscn b/addons/godot_tours/bubble/default_bubble.tscn index 48f0c53..6c36358 100644 --- a/addons/godot_tours/bubble/default_bubble.tscn +++ b/addons/godot_tours/bubble/default_bubble.tscn @@ -5,7 +5,7 @@ [ext_resource type="Texture2D" uid="uid://bidxqlunyylhn" path="res://addons/godot_tours/bubble/assets/close.svg" id="3_y6crt"] [ext_resource type="PackedScene" uid="uid://wd822miy3aij" path="res://addons/godot_tours/bubble/rich_text_label/rich_text_label.tscn" id="4_ev3jl"] [ext_resource type="Script" path="res://addons/godot_tours/bubble/rich_text_label/rich_text_label.gd" id="6_iitqn"] -[ext_resource type="FontFile" uid="uid://b0tcgxag5h452" path="res://addons/godot_tours/bubble/assets/fonts/poppins_regular.ttf" id="7_nlyrj"] +[ext_resource type="FontFile" uid="uid://b0tcgxag5h452" path="res://addons/godot_tours/assets/fonts/poppins_regular.ttf" id="7_nlyrj"] [ext_resource type="PackedScene" uid="uid://bgxtydff0olev" path="res://addons/godot_tours/bubble/gobot/gobot.tscn" id="8_oayod"] [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_0pees"] @@ -13,7 +13,7 @@ [node name="Bubble" type="CanvasLayer"] script = ExtResource("1_q308r") -[node name="Panel" type="PanelContainer" parent="."] +[node name="PanelContainer" type="PanelContainer" parent="."] unique_name_in_owner = true custom_minimum_size = Vector2(512, 0) anchors_preset = 8 @@ -29,31 +29,31 @@ grow_horizontal = 2 grow_vertical = 2 theme = ExtResource("2_mkok2") -[node name="Outline" type="PanelContainer" parent="Panel"] +[node name="Outline" type="PanelContainer" parent="PanelContainer"] clip_contents = true layout_mode = 2 theme_type_variation = &"PanelContainerOutline" -[node name="BackgroundTextureRect" type="TextureRect" parent="Panel/Outline"] +[node name="BackgroundTextureRect" type="TextureRect" parent="PanelContainer/Outline"] unique_name_in_owner = true show_behind_parent = true layout_mode = 2 expand_mode = 1 stretch_mode = 6 -[node name="MarginContainer" type="MarginContainer" parent="Panel"] +[node name="MarginContainer" type="MarginContainer" parent="PanelContainer"] layout_mode = 2 theme_type_variation = &"MainMarginContainer" -[node name="ViewContent" type="VBoxContainer" parent="Panel/MarginContainer"] +[node name="ViewContent" type="VBoxContainer" parent="PanelContainer/MarginContainer"] unique_name_in_owner = true layout_mode = 2 mouse_filter = 2 -[node name="HBoxContainer" type="HBoxContainer" parent="Panel/MarginContainer/ViewContent"] +[node name="HBoxContainer" type="HBoxContainer" parent="PanelContainer/MarginContainer/ViewContent"] layout_mode = 2 -[node name="TitleLabel" type="Label" parent="Panel/MarginContainer/ViewContent/HBoxContainer"] +[node name="TitleLabel" type="Label" parent="PanelContainer/MarginContainer/ViewContent/HBoxContainer"] unique_name_in_owner = true layout_mode = 2 size_flags_horizontal = 3 @@ -61,14 +61,14 @@ theme_type_variation = &"LabelTitle" text = "The missing \"walls\"" autowrap_mode = 2 -[node name="ButtonClose" type="Button" parent="Panel/MarginContainer/ViewContent/HBoxContainer"] +[node name="ButtonClose" type="Button" parent="PanelContainer/MarginContainer/ViewContent/HBoxContainer"] unique_name_in_owner = true custom_minimum_size = Vector2(22, 22) layout_mode = 2 mouse_default_cursor_shape = 2 flat = true -[node name="TextureRect" type="TextureRect" parent="Panel/MarginContainer/ViewContent/HBoxContainer/ButtonClose"] +[node name="TextureRect" type="TextureRect" parent="PanelContainer/MarginContainer/ViewContent/HBoxContainer/ButtonClose"] layout_mode = 1 anchors_preset = 15 anchor_right = 1.0 @@ -80,7 +80,7 @@ texture = ExtResource("3_y6crt") expand_mode = 1 stretch_mode = 5 -[node name="HeaderRichTextLabel" parent="Panel/MarginContainer/ViewContent" instance=ExtResource("4_ev3jl")] +[node name="HeaderRichTextLabel" parent="PanelContainer/MarginContainer/ViewContent" instance=ExtResource("4_ev3jl")] unique_name_in_owner = true visible = false layout_mode = 2 @@ -90,38 +90,25 @@ This is normal. In a game, what you see and the physical limits of the world liv Computer games use simple geometric shapes to control where a character can move, which greatly improves performance. We call these collision shapes, and our bridge currently doesn't have any." -[node name="MainVBoxContainer" type="VBoxContainer" parent="Panel/MarginContainer/ViewContent"] +[node name="MainVBoxContainer" type="VBoxContainer" parent="PanelContainer/MarginContainer/ViewContent"] unique_name_in_owner = true -visible = false layout_mode = 2 mouse_filter = 2 theme_override_constants/separation = 12 -[node name="RichTextLabel" parent="Panel/MarginContainer/ViewContent/MainVBoxContainer" instance=ExtResource("4_ev3jl")] -layout_mode = 2 -text = "The player can move [b]outside of the bridges![/b]" - -[node name="RichTextLabel2" parent="Panel/MarginContainer/ViewContent/MainVBoxContainer" instance=ExtResource("4_ev3jl")] -layout_mode = 2 -text = "This is normal. In a game, what you see and the physical limits of the world live in two separate layers." - -[node name="RichTextLabel3" parent="Panel/MarginContainer/ViewContent/MainVBoxContainer" instance=ExtResource("4_ev3jl")] -layout_mode = 2 -text = "Computer games use simple geometric shapes to control where a character can move, which greatly improves performance." - -[node name="TasksVBoxContainer" type="VBoxContainer" parent="Panel/MarginContainer/ViewContent"] +[node name="TasksVBoxContainer" type="VBoxContainer" parent="PanelContainer/MarginContainer/ViewContent"] unique_name_in_owner = true visible = false layout_mode = 2 mouse_filter = 2 -[node name="PanelContainer" type="PanelContainer" parent="Panel/MarginContainer/ViewContent"] +[node name="PanelContainer" type="PanelContainer" parent="PanelContainer/MarginContainer/ViewContent"] layout_mode = 2 size_flags_vertical = 8 mouse_filter = 2 theme_override_styles/panel = SubResource("StyleBoxEmpty_0pees") -[node name="BackButton" type="Button" parent="Panel/MarginContainer/ViewContent/PanelContainer"] +[node name="BackButton" type="Button" parent="PanelContainer/MarginContainer/ViewContent/PanelContainer"] unique_name_in_owner = true layout_mode = 2 size_flags_horizontal = 0 @@ -131,7 +118,7 @@ shortcut_in_tooltip = false text = "BACK" flat = true -[node name="StepCountLabel" type="Label" parent="Panel/MarginContainer/ViewContent/PanelContainer"] +[node name="StepCountLabel" type="Label" parent="PanelContainer/MarginContainer/ViewContent/PanelContainer"] unique_name_in_owner = true custom_minimum_size = Vector2(80, 0) layout_mode = 2 @@ -139,7 +126,7 @@ size_flags_horizontal = 4 text = "5/40" horizontal_alignment = 1 -[node name="NextButton" type="Button" parent="Panel/MarginContainer/ViewContent/PanelContainer"] +[node name="NextButton" type="Button" parent="PanelContainer/MarginContainer/ViewContent/PanelContainer"] unique_name_in_owner = true layout_mode = 2 size_flags_horizontal = 8 @@ -155,7 +142,7 @@ theme_override_colors/font_disabled_color = Color(0.415686, 0.0980392, 0, 1) shortcut_in_tooltip = false text = "NEXT STEP" -[node name="FinishButton" type="Button" parent="Panel/MarginContainer/ViewContent/PanelContainer"] +[node name="FinishButton" type="Button" parent="PanelContainer/MarginContainer/ViewContent/PanelContainer"] unique_name_in_owner = true visible = false layout_mode = 2 @@ -169,13 +156,13 @@ theme_override_colors/font_hover_pressed_color = Color(0.415686, 0.0980392, 0, 1 theme_override_colors/font_disabled_color = Color(0.415686, 0.0980392, 0, 1) text = "END TOUR AND CONTINUE LEARNING" -[node name="FooterSpacer" type="Control" parent="Panel/MarginContainer/ViewContent"] +[node name="FooterSpacer" type="Control" parent="PanelContainer/MarginContainer/ViewContent"] unique_name_in_owner = true visible = false custom_minimum_size = Vector2(0, 20) layout_mode = 2 -[node name="FooterRichTextLabel" type="RichTextLabel" parent="Panel/MarginContainer/ViewContent"] +[node name="FooterRichTextLabel" type="RichTextLabel" parent="PanelContainer/MarginContainer/ViewContent"] unique_name_in_owner = true visible = false layout_mode = 2 @@ -187,13 +174,13 @@ scroll_active = false autowrap_mode = 0 script = ExtResource("6_iitqn") -[node name="ViewClose" type="VBoxContainer" parent="Panel/MarginContainer"] +[node name="ViewClose" type="VBoxContainer" parent="PanelContainer/MarginContainer"] unique_name_in_owner = true visible = false layout_mode = 2 alignment = 1 -[node name="LabelCloseTour" type="Label" parent="Panel/MarginContainer/ViewClose"] +[node name="LabelCloseTour" type="Label" parent="PanelContainer/MarginContainer/ViewClose"] unique_name_in_owner = true layout_mode = 2 theme_type_variation = &"LabelTitle" @@ -201,7 +188,7 @@ text = "Close the tour?" horizontal_alignment = 1 autowrap_mode = 2 -[node name="LabelProgressLost" type="Label" parent="Panel/MarginContainer/ViewClose"] +[node name="LabelProgressLost" type="Label" parent="PanelContainer/MarginContainer/ViewClose"] unique_name_in_owner = true layout_mode = 2 theme_override_fonts/font = ExtResource("7_nlyrj") @@ -209,19 +196,19 @@ text = "Your progress will be lost." horizontal_alignment = 1 autowrap_mode = 2 -[node name="HBoxContainer" type="HBoxContainer" parent="Panel/MarginContainer/ViewClose"] +[node name="HBoxContainer" type="HBoxContainer" parent="PanelContainer/MarginContainer/ViewClose"] layout_mode = 2 size_flags_vertical = 8 alignment = 1 -[node name="ButtonCloseNo" type="Button" parent="Panel/MarginContainer/ViewClose/HBoxContainer"] +[node name="ButtonCloseNo" type="Button" parent="PanelContainer/MarginContainer/ViewClose/HBoxContainer"] unique_name_in_owner = true layout_mode = 2 mouse_default_cursor_shape = 2 text = "NO" flat = true -[node name="ButtonCloseYes" type="Button" parent="Panel/MarginContainer/ViewClose/HBoxContainer"] +[node name="ButtonCloseYes" type="Button" parent="PanelContainer/MarginContainer/ViewClose/HBoxContainer"] unique_name_in_owner = true layout_mode = 2 mouse_default_cursor_shape = 2 @@ -235,7 +222,7 @@ theme_override_colors/font_disabled_color = Color(0.415686, 0.0980392, 0, 1) shortcut_in_tooltip = false text = "YES" -[node name="Avatar" parent="Panel" instance=ExtResource("8_oayod")] +[node name="Avatar" parent="PanelContainer" instance=ExtResource("8_oayod")] unique_name_in_owner = true rotation = -0.261799 scale = Vector2(0.35, 0.35) diff --git a/addons/godot_tours/bubble/gobot/gobot.gd b/addons/godot_tours/bubble/gobot/gobot.gd index 00ecbd4..b82028c 100644 --- a/addons/godot_tours/bubble/gobot/gobot.gd +++ b/addons/godot_tours/bubble/gobot/gobot.gd @@ -1,16 +1,20 @@ @tool extends Node2D -enum Expressions {NEUTRAL, HAPPY, SURPRISED} +enum Expressions { NEUTRAL, HAPPY, SURPRISED } -@export_range(-1.0, 1.0, 0.1) var tilt_x : float = 0.0 : set = _set_tilt_x -@export_range(-1.0, 1.0, 0.1) var tilt_y : float = 0.0 : set = _set_tilt_y +@export_range(-1.0, 1.0, 0.1) var tilt_x: float = 0.0: + set = _set_tilt_x +@export_range(-1.0, 1.0, 0.1) var tilt_y: float = 0.0: + set = _set_tilt_y -@export var expression := Expressions.NEUTRAL: set = set_expression -@export var look_at_cursor := false: set = set_look_at_cursor +@export var expression := Expressions.NEUTRAL: + set = set_expression +@export var look_at_cursor := false: + set = set_look_at_cursor ## Stores the initial scale of the avatar from the scene instance. -@onready var scale_start := scale +var _scale_start := scale @onready var animation_tree: AnimationTree = %AnimationTree # Character nodes @@ -24,6 +28,12 @@ enum Expressions {NEUTRAL, HAPPY, SURPRISED} @onready var bolt_r: Sprite2D = %BoltR +func _ready() -> void: + if Engine.is_editor_hint() and (not EditorInterface.get_edited_scene_root() in [self, owner]): + scale *= EditorInterface.get_editor_scale() + _scale_start = scale + + func do_wink() -> void: animation_tree.set("parameters/OneShot/request", true) @@ -32,7 +42,9 @@ func set_expression(value: Expressions) -> void: expression = value if not is_node_ready(): return - animation_tree.set("parameters/Transition/transition_request", Expressions.find_key(expression).to_lower()) + animation_tree.set( + "parameters/Transition/transition_request", Expressions.find_key(expression).to_lower() + ) func set_look_at_cursor(state: bool) -> void: @@ -43,6 +55,11 @@ func set_look_at_cursor(state: bool) -> void: animation_tree.set("parameters/AddTilt/add_amount", float(animation_tree.active)) +## Scales the avatar relative to its initial scale. A value of 1.0 is the default scale. +func set_scale_multiplier(value: float) -> void: + scale = _scale_start * value + + func _set_tilt_x(value: float) -> void: if not is_node_ready() or tilt_x == value: return diff --git a/addons/godot_tours/bubble/gobot/gobot.tscn b/addons/godot_tours/bubble/gobot/gobot.tscn index 27a5d4d..fd84dcf 100644 --- a/addons/godot_tours/bubble/gobot/gobot.tscn +++ b/addons/godot_tours/bubble/gobot/gobot.tscn @@ -920,9 +920,6 @@ libraries = { [node name="AnimationTree" type="AnimationTree" parent="SubViewportContainer/SubViewport"] unique_name_in_owner = true root_node = NodePath("%AnimationTree/..") -libraries = { -"": SubResource("AnimationLibrary_axgnh") -} tree_root = SubResource("AnimationNodeBlendTree_n4c0l") anim_player = NodePath("../AnimationPlayer") parameters/Add2/add_amount = 1.0 diff --git a/addons/godot_tours/bubble/texture_rect.gd b/addons/godot_tours/bubble/texture_rect.gd new file mode 100644 index 0000000..fc89fbb --- /dev/null +++ b/addons/godot_tours/bubble/texture_rect.gd @@ -0,0 +1,21 @@ +@tool +extends TextureRect + +## Limits the height of the texture in the bubble. +var max_height := 300.0 * EditorInterface.get_editor_scale(): + set = set_max_height + + +func _ready() -> void: + set_max_height(max_height) + + +func set_max_height(new_max_height: float) -> void: + if new_max_height > 0.0: + max_height = new_max_height + + if not is_inside_tree(): + return + + await get_tree().process_frame + custom_minimum_size = Vector2(size.x, min(max_height, texture.get_size().y)) diff --git a/addons/godot_tours/bubble/texture_rect.tscn b/addons/godot_tours/bubble/texture_rect.tscn index ea4b1c1..218de70 100644 --- a/addons/godot_tours/bubble/texture_rect.tscn +++ b/addons/godot_tours/bubble/texture_rect.tscn @@ -1,6 +1,10 @@ -[gd_scene format=3 uid="uid://ujd7chtlh3wb"] +[gd_scene load_steps=2 format=3 uid="uid://ujd7chtlh3wb"] + +[ext_resource type="Script" path="res://addons/godot_tours/bubble/texture_rect.gd" id="1_ofbqh"] [node name="TextureRect" type="TextureRect"] offset_right = 40.0 offset_bottom = 40.0 -stretch_mode = 3 +expand_mode = 1 +stretch_mode = 5 +script = ExtResource("1_ofbqh") diff --git a/addons/godot_tours/bubble/video_stream_player.tscn b/addons/godot_tours/bubble/video_stream_player.tscn index 7407dac..139b4e9 100644 --- a/addons/godot_tours/bubble/video_stream_player.tscn +++ b/addons/godot_tours/bubble/video_stream_player.tscn @@ -3,3 +3,4 @@ [node name="VideoStreamPlayer" type="VideoStreamPlayer"] size_flags_horizontal = 4 size_flags_vertical = 4 +expand = true diff --git a/addons/godot_tours/convert.gd b/addons/godot_tours/convert.gd new file mode 100644 index 0000000..83cb7c6 --- /dev/null +++ b/addons/godot_tours/convert.gd @@ -0,0 +1,126 @@ +extends SceneTree + +const Utils := preload("../gdquest_sparkly_bag/sparkly_bag_utils.gd") + +const MD_BUBBLE_TITLE := "##" +const MD_CALL := ">" +const HEADER := """ +extends "../../addons/godot_tours/tour.gd" + +func _build() -> void: +""" +const CALLS := { + generic = "\t%s(%s)", + bubble_move_and_anchor = "\t%s(interface.%s, Bubble.At.%s)", + bubble_set_title = """\tbubble_set_title(%s)""", + bubble_add_text = """\tbubble_add_text([%s])""", + bubble_add_task_press_button = """\t%s(interface.%s)""", + complete_step = "\tcomplete_step()", + scene_open = """\t%s("%s")""", + gtr = """gtr("%s")""", + note = "\t# %s: %s", +} + + +func _init() -> void: + var md_files := Utils.fs_find("*.md", "res://tours", false) + for md_file_path: String in md_files.result: + convert_to_test(md_file_path) + quit() + return + + +func convert_to_test(md_file_path: String) -> void: + var tour_file_path := "%s.gd" % md_file_path.get_basename() + print_rich( + "\n[color=blue]Generating[/color] '%s' from '%s'..." % [tour_file_path, md_file_path] + ) + if FileAccess.file_exists(tour_file_path): + print_rich("'%s' already exists. [color=yellow]SKIP[/color]..." % tour_file_path) + return + + var regex_md_bold := RegEx.create_from_string(r"(\*\*)(.+?)(\*\*)") + var regex_md_scene := RegEx.create_from_string(r"[^\s]+\.tscn") + + var calls := [] + var bubble_text_lines: Array[String] = [] + var tour_contents: Array[String] = [HEADER.strip_edges()] + + var md_file := FileAccess.open(md_file_path, FileAccess.READ) + var lines: Array[String] = [] + lines.assign(strip_lines_edges(md_file.get_as_text().strip_edges().split("\n"))) + + var bubble_title: String = ( + to_bubble_title(lines.front()) + if not lines.is_empty() and lines.front().begins_with(MD_BUBBLE_TITLE) + else "" + ) + + var line_count := lines.size() + for i in range(line_count): + var line := lines[i] + var new_bubble_title := bubble_title + if line.begins_with(MD_BUBBLE_TITLE): + new_bubble_title = to_bubble_title(line) + + elif line.begins_with(MD_CALL): + calls.push_back(to_call(line)) + + else: + line = regex_md_bold.sub(line, "[b]$2[/b]", true).strip_edges() + if line.begins_with("-"): + line = "[ul]%s[/ul]" % line.lstrip("- ") + bubble_text_lines.push_back(line) + + if bubble_title != new_bubble_title or i == line_count - 1: + tour_contents.push_back(CALLS.bubble_set_title % call_gtr(bubble_title)) + var bubble_text := ", ".join(strip_lines_edges(bubble_text_lines).map(call_gtr)) + if not bubble_text.is_empty(): + tour_contents.push_back(CALLS.bubble_add_text % bubble_text) + for call in calls: + var call_fmt: String = CALLS.get(call.function, CALLS.generic) + tour_contents.push_back(call_fmt % ([call.function] + call.parameters)) + tour_contents.push_back(CALLS.complete_step) + tour_contents.push_back("") + + bubble_title = new_bubble_title + bubble_text_lines = [] + calls = [] + + var tour_file := FileAccess.open(tour_file_path, FileAccess.WRITE) + tour_file.store_string(join_lines(tour_contents, true, false)) + + +func to_bubble_title(line: String) -> String: + return line.lstrip(MD_BUBBLE_TITLE).strip_edges() + + +func to_call(s: String) -> Dictionary: + var result := {function = "", parameters = []} + var strip_edges := func(s: String) -> String: return s.strip_edges() + var extraction: Array = Array(s.lstrip(MD_CALL).split(":")).map(strip_edges) + result.function = extraction.front().to_lower() + result.parameters = Array(extraction.back().split(",")).map(strip_edges) + if result.function == "bubble_move_and_anchor": + result.parameters.push_back(result.parameters.pop_back().to_upper()) + elif result.function == "note" or not result.function in CALLS: + result.parameters = [", ".join(result.parameters)] + return result + + +func call_gtr(s: String) -> String: + return '""' if s.is_empty() else CALLS.gtr % sanitize(s) + + +func join_lines(lines: Array, do_strip_left := true, do_strip_right := true) -> String: + return "\n".join(lines).strip_edges(do_strip_left, do_strip_right) + + +func strip_lines_edges(lines: Array[String]) -> Array[String]: + var result: Array[String] = [] + result.assign(join_lines(lines).strip_edges().split("\n")) + return result + + +func sanitize(s: String) -> String: + return s.replace('"', '\\"') diff --git a/addons/godot_tours/editor_interface_access.gd b/addons/godot_tours/editor_interface_access.gd index 243e302..c544bf8 100644 --- a/addons/godot_tours/editor_interface_access.gd +++ b/addons/godot_tours/editor_interface_access.gd @@ -18,7 +18,7 @@ var run_bar: MarginContainer = null var run_bar_play_button: Button = null var run_bar_pause_button: Button = null var run_bar_stop_button: Button = null -var run_bar_debug_button: Button = null +var run_bar_debug_button: MenuButton = null var run_bar_play_current_button: Button = null var run_bar_play_custom_button: Button = null var run_bar_movie_mode_button: Button = null @@ -43,9 +43,11 @@ var canvas_item_editor_toolbar_pan_button: Button = null var canvas_item_editor_toolbar_ruler_button: Button = null var canvas_item_editor_toolbar_smart_snap_button: Button = null var canvas_item_editor_toolbar_grid_button: Button = null -var canvas_item_editor_toolbar_snap_options_button: Button = null +var canvas_item_editor_toolbar_snap_options_button: MenuButton = null var canvas_item_editor_toolbar_lock_button: Button = null +var canvas_item_editor_toolbar_unlock_button: Button = null var canvas_item_editor_toolbar_group_button: Button = null +var canvas_item_editor_toolbar_ungroup_button: Button = null var canvas_item_editor_toolbar_skeleton_options_button: Button = null ## Parent container of the zoom buttons in the top-left of the 2D editor. var canvas_item_editor_zoom_widget: Control = null @@ -56,13 +58,35 @@ var canvas_item_editor_zoom_button_lower: Button = null var canvas_item_editor_zoom_button_reset: Button = null ## Increase zoom button in the top-left of the 2D viewport. var canvas_item_editor_zoom_button_increase: Button = null + var spatial_editor: Control = null +var spatial_editor_surfaces: Array[Control] = [] +var spatial_editor_surfaces_menu_buttons: Array[MenuButton] = [] +var spatial_editor_viewports: Array[Control] = [] +var spatial_editor_preview_check_boxes: Array[CheckBox] = [] var spatial_editor_cameras: Array[Camera3D] = [] -var spatial_editor_surface: Control = null +var spatial_editor_toolbar: Control = null +var spatial_editor_toolbar_select_button: Button = null +var spatial_editor_toolbar_move_button: Button = null +var spatial_editor_toolbar_rotate_button: Button = null +var spatial_editor_toolbar_scale_button: Button = null +var spatial_editor_toolbar_selectable_button: Button = null +var spatial_editor_toolbar_lock_button: Button = null +var spatial_editor_toolbar_unlock_button: Button = null +var spatial_editor_toolbar_group_button: Button = null +var spatial_editor_toolbar_ungroup_button: Button = null +var spatial_editor_toolbar_local_button: Button = null +var spatial_editor_toolbar_snap_button: Button = null +var spatial_editor_toolbar_camera_button: Button = null +var spatial_editor_toolbar_sun_button: Button = null +var spatial_editor_toolbar_environment_button: Button = null +var spatial_editor_toolbar_sun_environment_button: Button = null +var spatial_editor_toolbar_transform_menu_button: MenuButton = null +var spatial_editor_toolbar_view_menu_button: MenuButton = null + var script_editor: ScriptEditor = null ## Parent node of the script editor, used to pop out the editor and controls the script editor's -## visibility -## Used to check if students are in the scripting context. +## visibility. Used to check if students are in the scripting context. var script_editor_window_wrapper: Node = null var script_editor_top_bar: HBoxContainer = null var script_editor_items: ItemList = null @@ -89,6 +113,7 @@ var scene_dock: VBoxContainer = null var scene_dock_button_add: Button = null var scene_tree: Tree = null var import_dock: VBoxContainer = null +var select_node_window: ConfirmationDialog = null var node_create_window: ConfirmationDialog = null var node_create_panel: HSplitContainer = null @@ -164,6 +189,13 @@ var bottom_button_tilemap: Button = null var bottom_button_tileset: Button = null var bottom_buttons: Array[Button] = [] +var scene_import_settings_window: ConfirmationDialog = null +var scene_import_settings: VBoxContainer = null +var scene_import_settings_ok_button: Button = null +var scene_import_settings_cancel_button: Button = null + +var windows: Array[ConfirmationDialog] = [] + func _init() -> void: base_control = EditorInterface.get_base_control() @@ -190,15 +222,17 @@ func _init() -> void: run_bar_pause_button = run_bar_buttons[1] run_bar_stop_button = run_bar_buttons[2] run_bar_debug_button = run_bar_buttons[3] - run_bar_play_current_button = run_bar_buttons[5] - run_bar_play_custom_button = run_bar_buttons[6] - run_bar_movie_mode_button = run_bar_buttons[7] + run_bar_play_current_button = run_bar_buttons[7] + run_bar_play_custom_button = run_bar_buttons[8] + run_bar_movie_mode_button = run_bar_buttons[9] rendering_options = Utils.find_child_by_type(editor_title_bar, "OptionButton") # Main Screen main_screen = EditorInterface.get_editor_main_screen() main_screen_tabs = Utils.find_child_by_type(main_screen.get_parent().get_parent(), "TabBar") - distraction_free_button = Utils.find_child_by_type(main_screen_tabs.get_parent(), "Button") + distraction_free_button = ( + main_screen_tabs.get_parent().find_children("", "Button", true, false).back() + ) canvas_item_editor = Utils.find_child_by_type(main_screen, "CanvasItemEditor") canvas_item_editor_viewport = Utils.find_child_by_type( canvas_item_editor, "CanvasItemEditorViewport" @@ -219,11 +253,13 @@ func _init() -> void: canvas_item_editor_toolbar_grid_button = canvas_item_editor_toolbar_buttons[9] canvas_item_editor_toolbar_snap_options_button = canvas_item_editor_toolbar_buttons[10] canvas_item_editor_toolbar_lock_button = canvas_item_editor_toolbar_buttons[11] + canvas_item_editor_toolbar_unlock_button = canvas_item_editor_toolbar_buttons[12] canvas_item_editor_toolbar_group_button = canvas_item_editor_toolbar_buttons[13] + canvas_item_editor_toolbar_ungroup_button = canvas_item_editor_toolbar_buttons[14] canvas_item_editor_toolbar_skeleton_options_button = canvas_item_editor_toolbar_buttons[15] canvas_item_editor_zoom_widget = Utils.find_child_by_type( - canvas_item_editor, "EditorZoomWidget" + canvas_item_editor_viewport, "EditorZoomWidget" ) canvas_item_editor_zoom_button_lower = canvas_item_editor_zoom_widget.get_child(0) canvas_item_editor_zoom_button_reset = canvas_item_editor_zoom_widget.get_child(1) @@ -243,10 +279,45 @@ func _init() -> void: snap_options_scale_step_controls.assign(snap_options.get_child(4).get_children()) spatial_editor = Utils.find_child_by_type(main_screen, "Node3DEditor") + spatial_editor_viewports.assign( + spatial_editor.find_children("", "Node3DEditorViewport", true, false) + ) + spatial_editor_preview_check_boxes.assign( + spatial_editor.find_children("", "CheckBox", true, false) + ) spatial_editor_cameras.assign(spatial_editor.find_children("", "Camera3D", true, false)) - spatial_editor_surface = ( - Utils.find_child_by_type(spatial_editor, "ViewportNavigationControl").get_parent() + var surfaces := {} + for surface in spatial_editor.find_children("", "ViewportNavigationControl", true, false).map( + func(c: Control) -> Control: return c.get_parent() + ): + surfaces[surface] = null + spatial_editor_surfaces.assign(surfaces.keys()) + for surface in spatial_editor_surfaces: + spatial_editor_surfaces_menu_buttons.append_array( + surface.find_children("", "MenuButton", true, false) + ) + spatial_editor_toolbar = spatial_editor.get_child(0).get_child(0).get_child(0) + var spatial_editor_toolbar_buttons := spatial_editor_toolbar.find_children( + "", "Button", false, false ) + spatial_editor_toolbar_select_button = spatial_editor_toolbar_buttons[0] + spatial_editor_toolbar_move_button = spatial_editor_toolbar_buttons[1] + spatial_editor_toolbar_rotate_button = spatial_editor_toolbar_buttons[2] + spatial_editor_toolbar_scale_button = spatial_editor_toolbar_buttons[3] + spatial_editor_toolbar_selectable_button = spatial_editor_toolbar_buttons[4] + spatial_editor_toolbar_lock_button = spatial_editor_toolbar_buttons[5] + spatial_editor_toolbar_unlock_button = spatial_editor_toolbar_buttons[6] + spatial_editor_toolbar_group_button = spatial_editor_toolbar_buttons[7] + spatial_editor_toolbar_ungroup_button = spatial_editor_toolbar_buttons[8] + spatial_editor_toolbar_local_button = spatial_editor_toolbar_buttons[9] + spatial_editor_toolbar_snap_button = spatial_editor_toolbar_buttons[10] + spatial_editor_toolbar_camera_button = spatial_editor_toolbar_buttons[11] + spatial_editor_toolbar_sun_button = spatial_editor_toolbar_buttons[12] + spatial_editor_toolbar_environment_button = spatial_editor_toolbar_buttons[13] + spatial_editor_toolbar_sun_environment_button = spatial_editor_toolbar_buttons[14] + spatial_editor_toolbar_transform_menu_button = spatial_editor_toolbar_buttons[15] + spatial_editor_toolbar_view_menu_button = spatial_editor_toolbar_buttons[16] + script_editor = EditorInterface.get_script_editor() script_editor_window_wrapper = script_editor.get_parent() script_editor_code_panel = script_editor.get_child(0).get_child(1).get_child(1) @@ -275,6 +346,7 @@ func _init() -> void: scene_tabs = Utils.find_child_by_type(scene_dock.get_parent(), "TabBar") var scene_tree_editor := Utils.find_child_by_type(scene_dock, "SceneTreeEditor") scene_tree = Utils.find_child_by_type(scene_tree_editor, "Tree") + select_node_window = Utils.find_child_by_type(base_control, "SceneTreeDialog") import_dock = Utils.find_child_by_type(base_control, "ImportDock") # Left Bottom @@ -337,7 +409,7 @@ func _init() -> void: bottom_button_output, bottom_button_debugger, bottom_button_tileset, bottom_button_tilemap ] - tilemap = Utils.find_child_by_type(bottom_panels_vboxcontainer, "TileMapEditor", false) + tilemap = Utils.find_child_by_type(bottom_panels_vboxcontainer, "TileMapLayerEditor", false) var tilemap_flow_container: HFlowContainer = Utils.find_child_by_type( tilemap, "HFlowContainer", false ) @@ -369,16 +441,22 @@ func _init() -> void: tileset_patterns_panel = tileset.get_child(0).get_child(2) tileset_panels = [tileset_tiles_panel, tileset_patterns_panel] - for window in [signals_dialog_window, node_create_window]: + scene_import_settings_window = Utils.find_child_by_type(base_control, "SceneImportSettingsDialog") + scene_import_settings = scene_import_settings_window.get_child(0) + scene_import_settings_cancel_button = scene_import_settings_window.get_cancel_button() + scene_import_settings_ok_button = scene_import_settings_window.get_ok_button() + + windows.assign([signals_dialog_window, node_create_window, scene_import_settings_window]) + for window in windows: window_toggle_tour_mode(window, true) func clean_up() -> void: - for window in [signals_dialog_window, node_create_window]: + for window in windows: window_toggle_tour_mode(window, false) -func window_toggle_tour_mode(window: Window, is_in_tour: bool) -> void: +func window_toggle_tour_mode(window: ConfirmationDialog, is_in_tour: bool) -> void: window.dialog_close_on_escape = not is_in_tour window.transient = is_in_tour window.exclusive = not is_in_tour diff --git a/addons/godot_tours/mouse/mouse.gd b/addons/godot_tours/mouse/mouse.gd index eab1b26..f262e37 100644 --- a/addons/godot_tours/mouse/mouse.gd +++ b/addons/godot_tours/mouse/mouse.gd @@ -3,7 +3,7 @@ ## Call functions add_*_operation() to queue animations, then call play() to run the animations. ## See tour.gd for utility functions that simplify usage of the mouse cursor. @tool -extends CanvasGroup +extends CanvasLayer const DEFAULT_PRESS_TEXTURE := preload("../assets/icons/white_circle.png") @@ -12,13 +12,14 @@ var last_to := Callable() var operations: Array[Callable] = [] var editor_scale: float = EditorInterface.get_editor_scale() +@onready var canvas_group: CanvasGroup = %CanvasGroup @onready var pointer_sprite: Sprite2D = %PointerSprite2D @onready var press_sprite: Sprite2D = %PressSprite2D @onready var tween := create_tween() func _ready() -> void: - scale *= editor_scale + canvas_group.scale *= editor_scale tween.kill() @@ -31,12 +32,12 @@ func play() -> void: tween.kill() tween = create_tween().set_loops().set_ease(Tween.EASE_OUT) - tween.tween_callback(func() -> void: global_position = first_from.call()) - tween.tween_property(self, "modulate:a", 1.0, ON_DURATION) + tween.tween_callback(func() -> void: canvas_group.global_position = first_from.call()) + tween.tween_property(canvas_group, "modulate:a", 1.0, ON_DURATION) for operation in operations: operation.call() tween.tween_interval(WAIT) - tween.tween_property(self, "modulate:a", 0.0, OFF_DURATION) + tween.tween_property(canvas_group, "modulate:a", 0.0, OFF_DURATION) func add_move_operation(from: Callable, to: Callable) -> void: @@ -44,14 +45,17 @@ func add_move_operation(from: Callable, to: Callable) -> void: if first_from.is_null(): first_from = from - var speed := 400 * editor_scale + var distance: float = from.call().distance_to(to.call()) + var min_speed := 400 + var max_speed := 1000 + var speed := remap(max(1.0, distance - 400.0), 0.0, EditorInterface.get_base_control().size.x * 0.75, min_speed, max_speed) * editor_scale operations.push_back(func() -> void: tween.tween_method( func(param: float) -> void: - global_position = from.call().lerp(to.call(), param), + canvas_group.global_position = from.call().lerp(to.call(), param), 0.0, 1.0, - from.call().distance_to(to.call()) / speed + max(distance / speed, 0.5) ) ) @@ -108,7 +112,7 @@ func add_bounce_operation(loops := 2, at := Callable()) -> void: tween.parallel().tween_method( func(param: float) -> void: var at_vector: Vector2 = last_to.call() - global_position = at_vector.lerp(at_vector + amplitude, param), + canvas_group.global_position = at_vector.lerp(at_vector + amplitude, param), 0.0, 1.0, UP_DURATION, @@ -116,7 +120,7 @@ func add_bounce_operation(loops := 2, at := Callable()) -> void: tween.tween_method( func(param: float) -> void: var at_vector: Vector2 = last_to.call() - global_position = (at_vector + amplitude).lerp(at_vector, param), + canvas_group.global_position = (at_vector + amplitude).lerp(at_vector, param), 0.0, 1.0, DOWN_DURATION, diff --git a/addons/godot_tours/mouse/mouse.tscn b/addons/godot_tours/mouse/mouse.tscn index 6d841f7..5beef49 100644 --- a/addons/godot_tours/mouse/mouse.tscn +++ b/addons/godot_tours/mouse/mouse.tscn @@ -4,19 +4,23 @@ [ext_resource type="Texture2D" uid="uid://x62xms6s656a" path="res://addons/godot_tours/assets/icons/white_circle.png" id="2_odi3x"] [ext_resource type="Texture2D" uid="uid://dwjvpjb2kpbip" path="res://addons/godot_tours/mouse/mouse_texture.png" id="3_bgpww"] -[node name="Mouse" type="CanvasGroup"] +[node name="Mouse" type="CanvasLayer"] +layer = 2 +script = ExtResource("1_bmo3f") + +[node name="CanvasGroup" type="CanvasGroup" parent="."] +unique_name_in_owner = true modulate = Color(1, 1, 1, 0) top_level = true z_index = 999 scale = Vector2(0.4, 0.4) -script = ExtResource("1_bmo3f") -[node name="PressSprite2D" type="Sprite2D" parent="."] +[node name="PressSprite2D" type="Sprite2D" parent="CanvasGroup"] unique_name_in_owner = true scale = Vector2(1e-05, 1e-05) texture = ExtResource("2_odi3x") -[node name="PointerSprite2D" type="Sprite2D" parent="."] +[node name="PointerSprite2D" type="Sprite2D" parent="CanvasGroup"] unique_name_in_owner = true texture = ExtResource("3_bgpww") centered = false diff --git a/addons/godot_tours/overlays/dimmer/dimmer.gd b/addons/godot_tours/overlays/dimmer/dimmer.gd index d0eb53e..0535b3c 100644 --- a/addons/godot_tours/overlays/dimmer/dimmer.gd +++ b/addons/godot_tours/overlays/dimmer/dimmer.gd @@ -3,19 +3,17 @@ extends SubViewportContainer const DimmerMaskPackedScene := preload("dimmer_mask.tscn") -var root: Window = null - +@onready var window := get_window() @onready var film_color_rect: ColorRect = %FilmColorRect func _ready() -> void: - root = get_tree().root - root.size_changed.connect(refresh) + window.size_changed.connect(refresh) refresh() func clean_up() -> void: - root.size_changed.disconnect(refresh) + window.size_changed.disconnect(refresh) func add_mask() -> ColorRect: @@ -25,7 +23,7 @@ func add_mask() -> ColorRect: func refresh() -> void: - size = root.size + size = window.size func toggle_dimmer_mask(is_on: bool) -> void: diff --git a/addons/godot_tours/overlays/dimmer/dimmer.tscn b/addons/godot_tours/overlays/dimmer/dimmer.tscn index f58342e..2188cfa 100644 --- a/addons/godot_tours/overlays/dimmer/dimmer.tscn +++ b/addons/godot_tours/overlays/dimmer/dimmer.tscn @@ -7,11 +7,12 @@ blend_mode = 3 [node name="Dimmer" type="SubViewportContainer" groups=["dimmer"]] self_modulate = Color(1, 1, 1, 0.6) +top_level = true material = SubResource("CanvasItemMaterial_cvwys") anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 -offset_bottom = -69.0 +offset_bottom = -37.0 grow_horizontal = 2 grow_vertical = 2 mouse_filter = 2 @@ -20,7 +21,7 @@ script = ExtResource("1_30fag") [node name="SubViewport" type="SubViewport" parent="."] handle_input_locally = false -size = Vector2i(1920, 1011) +size = Vector2i(1920, 1043) render_target_update_mode = 4 [node name="FilmColorRect" type="ColorRect" parent="SubViewport"] diff --git a/addons/godot_tours/overlays/highlight/highlight.gd b/addons/godot_tours/overlays/highlight/highlight.gd index 59dbfe9..ca6001f 100644 --- a/addons/godot_tours/overlays/highlight/highlight.gd +++ b/addons/godot_tours/overlays/highlight/highlight.gd @@ -6,15 +6,14 @@ extends Panel const Dimmer := preload("../dimmer/dimmer.gd") -var rect_getters: Array[Callable] = [] var dimmer_mask: ColorRect = null -var control: Control = null +var controls: Array[Control] = [] +var rect_getters: Array[Callable] = [] @onready var flash_area: ColorRect = %FlashArea -func setup(control: Control, rect_getter: Callable, dimmer: Dimmer, stylebox: StyleBoxFlat) -> void: - self.control = control +func setup(rect_getter: Callable, dimmer: Dimmer, stylebox: StyleBoxFlat) -> void: self.dimmer_mask = dimmer.add_mask() self.rect_getters.push_back(rect_getter) refresh.call_deferred() @@ -27,6 +26,10 @@ func _exit_tree() -> void: dimmer_mask.queue_free() +func _process(_delta: float) -> void: + refresh() + + func flash() -> void: flash_area.visible = true @@ -43,7 +46,7 @@ func refresh() -> void: ) global_position = rect.position custom_minimum_size = rect.size - visible = rect != Rect2() and control.is_visible_in_tree() + visible = rect != Rect2() and controls.any(control_is_visible_in_tree) dimmer_mask.global_position = global_position dimmer_mask.size = custom_minimum_size dimmer_mask.visible = visible @@ -52,3 +55,7 @@ func refresh() -> void: func refresh_tabs(_index: int) -> void: refresh() + + +func control_is_visible_in_tree(c: Control) -> bool: + return c.is_visible_in_tree() diff --git a/addons/godot_tours/overlays/highlight/highlight.tres b/addons/godot_tours/overlays/highlight/highlight.tres index 72e4461..2cfb2eb 100644 --- a/addons/godot_tours/overlays/highlight/highlight.tres +++ b/addons/godot_tours/overlays/highlight/highlight.tres @@ -7,7 +7,7 @@ border_width_left = 4 border_width_top = 4 border_width_right = 4 border_width_bottom = 4 -border_color = Color(0.396078, 0.733333, 0.960784, 1) +border_color = Color(0.552941, 0.0980392, 0.843137, 1) corner_radius_top_left = 4 corner_radius_top_right = 4 corner_radius_bottom_right = 4 diff --git a/addons/godot_tours/overlays/overlays.gd b/addons/godot_tours/overlays/overlays.gd index 38ee9e9..098c581 100644 --- a/addons/godot_tours/overlays/overlays.gd +++ b/addons/godot_tours/overlays/overlays.gd @@ -56,13 +56,16 @@ func _process(_delta: float) -> void: ## Highlights a control, allowing the end user to interact with it using the mouse, and carving into the dimmers. -func add_highlight_to_control(control: Control, rect_getter := Callable(), play_flash := false) -> void: +func add_highlight_to_control(control: Control, rect_getter := Callable(), play_flash := false, do_grow := false) -> void: var dimmer := ensure_get_dimmer_for(control) # Calculate overlapping highlights to avoid stacking highlights and outlines. var overlaps := [] if rect_getter.is_null(): - rect_getter = control.get_global_rect + if interface.inspector_editor.is_ancestor_of(control): + rect_getter = func() -> Rect2: return control.get_global_rect().intersection(interface.inspector_editor.get_global_rect()) + else: + rect_getter = control.get_global_rect var editor_scale := EditorInterface.get_editor_scale() var rect := rect_getter.call() @@ -70,7 +73,7 @@ func add_highlight_to_control(control: Control, rect_getter := Callable(), play_ if child is Highlight: child.refresh() var child_rect := Rect2(child.global_position, child.custom_minimum_size) - if rect.grow(RECT_GROW * editor_scale).intersects(child_rect): + if (rect.grow(RECT_GROW * editor_scale) if do_grow else rect).intersects(child_rect): overlaps.push_back(child) var highlight := HighlightPackedScene.instantiate() @@ -78,15 +81,15 @@ func add_highlight_to_control(control: Control, rect_getter := Callable(), play_ if play_flash: highlight.flash() - highlight.setup(control, rect_getter, dimmer, _highlight_style_scaled) + highlight.setup(rect_getter, dimmer, _highlight_style_scaled) + highlight.controls.push_back(control) if overlaps.is_empty() and control is TabBar: control.tab_changed.connect(highlight.refresh_tabs) elif not overlaps.is_empty(): for other_highlight: Highlight in overlaps: + highlight.controls.append_array(other_highlight.controls) highlight.rect_getters.append_array(other_highlight.rect_getters) other_highlight.queue_free() - control.draw.connect(highlight.refresh) - control.visibility_changed.connect(highlight.refresh) ## Removes all dimmers and consequently highlights from the editor. @@ -106,8 +109,8 @@ func toggle_dimmers(is_on: bool) -> void: ## Get the dimmer associated with a [Control]. There is only one dimmer per [Viewport] so the dimmer is really ## associated with the Control's Viewport. If there is no such dimmer, create one on the fly and return it. func ensure_get_dimmer_for(control: Control) -> Dimmer: - var viewport := control.get_viewport() - var result: Dimmer = viewport.get_node_or_null("Dimmer") + var window := control.get_window() + var result: Dimmer = window.get_node_or_null("Dimmer") # Ensure that when we create a new Dimmer, the name Dimmer won't be taken. if result != null and result.is_queued_for_deletion(): @@ -115,7 +118,7 @@ func ensure_get_dimmer_for(control: Control) -> Dimmer: if result == null or result.is_queued_for_deletion(): result = DimmerPackedScene.instantiate() - viewport.add_child(result) + window.add_child(result) dimmers.push_back(result) return result @@ -123,15 +126,15 @@ func ensure_get_dimmer_for(control: Control) -> Dimmer: ## Highlight [TreeItem]s from the given [code]tree[/code] that match the [code]predicate[/code]. The highlight can ## also play a flash animation if [code]play_flash[/code] is [code]true[/code]. [code]button_index[/code] specifies ## which button to highlight from the [TreeItem] instead of the whole item. -func highlight_tree_items(tree: Tree, predicate: Callable, button_index := -1, play_flash := false) -> void: +func highlight_tree_items(tree: Tree, predicate: Callable, button_index := -1, do_center := true, play_flash := false) -> void: var root := tree.get_root() if root == null: return - + var height_fix := 6 * EditorInterface.get_editor_scale() for item in Utils.filter_tree_items(root, predicate): interface.unfold_tree_item(item) - tree.scroll_to_item(item) + tree.scroll_to_item(item, do_center) var item_path := Utils.get_tree_item_path(item) var rect_getter := func() -> Rect2: @@ -143,56 +146,57 @@ func highlight_tree_items(tree: Tree, predicate: Callable, button_index := -1, p rect.position.y += height_fix - tree.get_scroll().y return rect.intersection(tree.get_global_rect()) return Rect2() - add_highlight_to_control.call_deferred(tree, rect_getter, play_flash) + add_highlight_to_control.call_deferred(tree, rect_getter, play_flash, true) ## Highlights multiple Scene dock [TreeItem]s by [code]names[/code]. See [method highlight_tree_items] ## for details on the other parameters. -func highlight_scene_nodes_by_name(names: Array[String], button_index := -1, play_flash := false) -> void: +func highlight_scene_nodes_by_name(names: Array[String], button_index := -1, do_center := true, play_flash := false) -> void: highlight_tree_items( interface.scene_tree, func(item: TreeItem) -> bool: return item.get_text(0) in names, button_index, + do_center, play_flash, ) ## Highlights multiple Scene dock [TreeItem]s by [code]paths[/code]. See [method highlight_tree_items] ## for details on the other parameters. -func highlight_scene_nodes_by_path(paths: Array[String], button_index := -1, play_flash := false) -> void: +func highlight_scene_nodes_by_path(paths: Array[String], button_index := -1, do_center := true, play_flash := false) -> void: highlight_tree_items( interface.scene_tree, func(item: TreeItem) -> bool: return Utils.get_tree_item_path(item) in paths, button_index, + do_center, play_flash, ) ## Highlights FileSystem dock [TreeItem]s by [code]paths[/code]. See [method highlight_tree_items] ## for [code]play_flash[/code]. -func highlight_filesystem_paths(paths: Array[String], play_flash := false) -> void: +func highlight_filesystem_paths(paths: Array[String], do_center := true, play_flash := false) -> void: highlight_tree_items( interface.filesystem_tree, func(item: TreeItem) -> bool: return Utils.get_tree_item_path(item) in paths, -1, + do_center, play_flash, ) ## Highlights Inspector dock properties by (programmatic) [code]name[/code]. See [method highlight_tree_items] ## for [code]play_flash[/code]. -func highlight_inspector_properties(names: Array[StringName], play_flash := false) -> void: - for name in names: - var property: EditorProperty = Utils.find_child_by_type( - interface.inspector_editor, - "EditorProperty", - true, - func(ep: EditorProperty) -> bool: return ep.get_edited_property() == name, - ) - if property != null: +func highlight_inspector_properties(names: Array[StringName], do_center := true, play_flash := false) -> void: + var scroll_offset := 200 * EditorInterface.get_editor_scale() + var all_properties := interface.inspector_editor.find_children("", "EditorProperty", true, false) + for n in names: + var predicate_first := func predicate_first(p: EditorProperty) -> bool: + return p.get_edited_property() == n + + for property: EditorProperty in all_properties.filter(predicate_first): # Unfold parent sections recursively if necessary. - var current_parent: Node = property.get_parent() - var last_section = null + var current_parent := property.get_parent() const MAX_ITERATION_COUNT := 10 for i in MAX_ITERATION_COUNT: if current_parent.get_class() == "EditorInspectorSection": @@ -200,29 +204,38 @@ func highlight_inspector_properties(names: Array[StringName], play_flash := fals current_parent = current_parent.get_parent() if current_parent == interface.inspector_editor: break - - if last_section: - await last_section.draw - - interface.inspector_editor.ensure_control_visible(property) - var dimmer := ensure_get_dimmer_for(interface.inspector_dock) - var rect_getter := func() -> Rect2: - var rect := property.get_global_rect() - rect.position.x = interface.inspector_editor.global_position.x - rect.size.x = interface.inspector_editor.size.x - return rect - add_highlight_to_control.call_deferred(interface.inspector_editor, rect_getter, play_flash) + if do_center: + interface.inspector_editor.scroll_vertical += ( + property.global_position.y + scroll_offset + - interface.inspector_editor.global_position.y + - interface.inspector_editor.size.y / 2.0 + ) + else: + interface.inspector_editor.ensure_control_visible(property) + + var dimmer := ensure_get_dimmer_for(interface.inspector_dock) + var rect_getter := func inspector_property_rect_getter() -> Rect2: + all_properties = interface.inspector_editor.find_children("", "EditorProperty", true, false) + for property: EditorProperty in all_properties.filter(predicate_first): + if property.is_visible_in_tree(): + var rect := property.get_global_rect() + rect.position.x = interface.inspector_editor.global_position.x + rect.size.x = interface.inspector_editor.size.x + return rect.intersection(interface.inspector_editor.get_global_rect()) + return Rect2() + add_highlight_to_control.call_deferred(interface.inspector_editor, rect_getter, play_flash, true) ## Highlights Node > Signals dock [TreeItem]s by [code]signal_names[/code]. See [method highlight_tree_items] ## for details on the other parameters. -func highlight_signals(signal_names: Array[String], play_flash := false) -> void: +func highlight_signals(signal_names: Array[String], do_center := true, play_flash := false) -> void: highlight_tree_items( interface.node_dock_signals_tree, func(item: TreeItem) -> bool: var predicate := func(sn: String) -> bool: return item.get_text(0).begins_with(sn) return signal_names.any(predicate), -1, + do_center, play_flash, ) @@ -266,7 +279,7 @@ func highlight_controls(controls: Array[Control], play_flash := false) -> void: for control in controls: if control == null: continue - add_highlight_to_control(control, control.get_global_rect, play_flash) + add_highlight_to_control(control, Callable(), play_flash) ## Highlights either the whole [code]tabs[/code] [TabBar] if [code]index == -1[/code] or the given [TabContainer] tab diff --git a/addons/godot_tours/plugin.gd b/addons/godot_tours/plugin.gd index e479437..b14ec28 100644 --- a/addons/godot_tours/plugin.gd +++ b/addons/godot_tours/plugin.gd @@ -238,7 +238,7 @@ func _reset_tour_files(tour_path: String) -> bool: var tour_dir_path := "%s/" % tour_path.get_base_dir() var tour_file_paths := Utils.fs_find("*", tour_dir_path).filter( - func(path: String) -> bool: return not (path.get_extension() == "import" or path == tour_path) + func(path: String) -> bool: return not (path.get_extension() == "import" or path.get_extension() == "md" or path == tour_path) ) var open_scene_paths := EditorInterface.get_open_scenes() diff --git a/addons/godot_tours/shortcuts.gd b/addons/godot_tours/shortcuts.gd new file mode 100644 index 0000000..36ad99f --- /dev/null +++ b/addons/godot_tours/shortcuts.gd @@ -0,0 +1,28 @@ +var ctrl := "Ctrl" + +var context_2d := "Ctrl+F1" +var context_3d := "Ctrl+F2" +var context_script := "Ctrl+F3" + +var run_project := "F5" +var run_current := "F6" +var stop := "F8" +var focus := "F" +var select_mode := "Q" +var move_mode := "W" +var rotate_mode := "E" +var top_view := "Kp 7" + + +func _init() -> void: + if OS.get_name() != "macOS": + return + + ctrl = "Cmd" + + context_2d = "Alt+1" + context_3d = "Alt+2" + context_script = "Alt+3" + + run_current = "%s+R" % ctrl + stop = "%s+." % ctrl diff --git a/addons/godot_tours/tour.gd b/addons/godot_tours/tour.gd index 7c03f36..d419a9e 100644 --- a/addons/godot_tours/tour.gd +++ b/addons/godot_tours/tour.gd @@ -42,6 +42,7 @@ class Command: await callable.callv(parameters) const Log := preload("log.gd") +const Shortcuts := preload("shortcuts.gd") const EditorInterfaceAccess := preload("editor_interface_access.gd") const Utils := preload("utils.gd") const Overlays := preload("overlays/overlays.gd") @@ -50,7 +51,9 @@ const Task := preload("bubble/task/task.gd") const Mouse := preload("mouse/mouse.gd") const TranslationService := preload("translation/translation_service.gd") const FlashArea := preload("overlays/flash_area/flash_area.gd") +const Guide3D := preload("assets/guide_3d.gd") +const Guide3DPackedScene := preload("assets/guide_3d.tscn") const FlashAreaPackedScene := preload("overlays/flash_area/flash_area.tscn") const WARNING_MESSAGE := "[color=orange][WARN][/color] %s for [b]'%s()'[/b] at [b]'step_commands(=%d)'[/b]." @@ -64,8 +67,10 @@ const EVENTS := { var index := -1: set = set_index var steps: Array[Array] = [] var step_commands: Array[Command] = [] +var guides: Dictionary = {} var log := Log.new() +var shortcuts := Shortcuts.new() var editor_selection: EditorSelection = null ## Object that provides access to many nodes in the editor's user interface. var interface: EditorInterfaceAccess = null @@ -80,8 +85,14 @@ func _init(interface: EditorInterfaceAccess, overlays: Overlays, translation_se self.interface = interface self.overlays = overlays self.translation_service = translation_service + interface.run_bar.stop_pressed.connect(_close_bottom_panel) translation_service.update_tour_key(get_script().resource_path) + for key in EVENTS: + var action: StringName = "tour_%s" % key + InputMap.add_action(action) + InputMap.action_add_event(action, EVENTS[key]) + # Applies the default layout so every tour starts from the same UI state. interface.restore_default_layout() _build() @@ -98,7 +109,13 @@ func _build() -> void: func clean_up() -> void: + for key in EVENTS: + var action: StringName = "tour_%s" % key + if InputMap.has_action(action): + InputMap.erase_action(action) + clear_mouse() + clear_guides() log.clean_up() if is_instance_valid(bubble): bubble.queue_free() @@ -177,6 +194,7 @@ func complete_step() -> void: Command.new(overlays.clean_up), Command.new(overlays.ensure_get_dimmer_for.bind(interface.base_control)), Command.new(clear_mouse), + Command.new(clear_guides), ] step_commands.push_back(Command.new(play_mouse)) steps.push_back(step_start + step_commands) @@ -213,9 +231,11 @@ func scene_open(path: String) -> void: func scene_select_nodes_by_path(paths: Array[String] = []) -> void: scene_deselect_all_nodes() queue_command(func() -> void: - var nodes := Utils.find_children_by_path(EditorInterface.get_edited_scene_root(), paths) + var scene_root := EditorInterface.get_edited_scene_root() + var nodes := ([scene_root] if scene_root.name in paths else []) + Utils.find_children_by_path(scene_root, paths) for node in nodes: editor_selection.add_node(node) + EditorInterface.edit_node(node) ) @@ -232,6 +252,17 @@ func scene_deselect_all_nodes() -> void: queue_command(editor_selection.clear) +## Frees the `Guide3D` nodes from the currently edited scene. +func clear_guides() -> void: + var scene_root := EditorInterface.get_edited_scene_root() + if scene_root == null: + return + + for guide in guides.values(): + guide.queue_free() + guides = {} + + func tabs_set_to_index(tabs: TabBar, index: int) -> void: if index < 0 or index >= tabs.tab_count: warn("[b]'index(=%d)'[/b] not in [b]'range(0, tabs.tab_count(=%d))'[/b]." % [index, tabs.tab_count], "tabs_set_to_index") @@ -321,13 +352,48 @@ func canvas_item_editor_flash_area(rect: Rect2) -> void: # TODO: test? func spatial_editor_focus() -> void: - queue_command(func() -> void: interface.spatial_editor_surface.gui_input.emit(EVENTS.f)) + queue_command(func() -> void: + for surface in interface.spatial_editor_surfaces: + if surface.is_inside_tree(): + surface.gui_input.emit(EVENTS.f) + ) # TODO: test? func spatial_editor_focus_node_by_paths(paths: Array[String]) -> void: scene_select_nodes_by_path(paths) - queue_command(func() -> void: interface.spatial_editor_surface.gui_input.emit(EVENTS.f)) + spatial_editor_focus() + + +enum ViewportLayouts { + ONE = 0, TWO = 1, TWO_ALT = 2, THREE = 3, THREE_ALT = 4, FOUR = 5 +} +## Changes the layout of the 3D viewport. Corresponds to clicking items in the +## View menu in the toolbar above the 3D viewport. +func spatial_editor_change_viewport_layout(layout: ViewportLayouts) -> void: + queue_command(func spatial_editor_change_viewport_layout() -> void: + var popup := interface.spatial_editor_toolbar_view_menu_button.get_popup() + var event := InputEventKey.new() + event.pressed = true + event.ctrl_pressed = true + + if layout == ViewportLayouts.ONE: + event.keycode = KEY_1 + elif layout == ViewportLayouts.TWO: + event.keycode = KEY_2 + elif layout == ViewportLayouts.TWO_ALT: + event.keycode = KEY_2 + event.alt = true + elif layout == ViewportLayouts.THREE: + event.keycode = KEY_3 + elif layout == ViewportLayouts.THREE_ALT: + event.keycode = KEY_3 + event.alt = true + elif layout == ViewportLayouts.FOUR: + event.keycode = KEY_4 + + popup.activate_item_by_event(event) + ) func context_set(type: String) -> void: @@ -358,8 +424,10 @@ func bubble_add_text(text: Array[String]) -> void: queue_command(func bubble_add_text() -> void: bubble.add_text(text)) -func bubble_add_texture(texture: Texture2D) -> void: - queue_command(func bubble_add_texture() -> void: bubble.add_texture(texture)) +func bubble_add_texture(texture: Texture2D, max_height := 0.0) -> void: + queue_command(func bubble_add_texture() -> void: + bubble.add_texture(texture, max_height * EditorInterface.get_editor_scale()) + ) func bubble_add_code(lines: Array[String]) -> void: @@ -408,12 +476,7 @@ func bubble_add_task_press_button(button: Button, description := "") -> void: func bubble_add_task_toggle_button(button: Button, is_toggled := true, description := "") -> void: - var text: String = description - if text.is_empty(): - if button.text.is_empty(): - text = button.tooltip_text - else: - text = button.text + var text := button.tooltip_text if button.text.is_empty() else button.text text = text.replace(".", "") if not button.toggle_mode: @@ -421,7 +484,9 @@ func bubble_add_task_toggle_button(button: Button, is_toggled := true, descripti return const TOGGLE_MAP := {true: "ON", false: "OFF"} - description = gtr("Turn the [b]%s[/b] button %s.") % [text, TOGGLE_MAP[is_toggled]] + if description.is_empty(): + description = gtr("Turn the [b]%s[/b] button %s.") % [text, TOGGLE_MAP[is_toggled]] + bubble_add_task( description, 1, @@ -475,15 +540,20 @@ func bubble_add_task_set_tilemap_tab_by_control(control: Control, description := bubble_add_task_set_tab_to_index(interface.tilemap_tabs, index, description) -func bubble_add_task_select_node(node_name: String) -> void: +func bubble_add_task_select_nodes_by_path(node_paths: Array[String], description_override := "") -> void: + var description := description_override + if description.is_empty(): + description = gtr("Select the %s %s in the [b]Scene Dock[/b].") % [", ".join(node_paths.map(func(s: String) -> String: return "[b]%s[/b]" % s.get_file())), "node" if node_paths.size() == 1 else "nodes"] bubble_add_task( - "Select the [b]" + node_name + "[/b] node in the [b]Scene Dock[/b].", + description, 1, func task_select_node(_task: Task) -> int: - var scene_root: Node = EditorInterface.get_edited_scene_root() - var target_node: Node = scene_root if node_name == scene_root.name else scene_root.find_child(node_name) + var scene_root := EditorInterface.get_edited_scene_root() + var nodes := get_scene_nodes_by_path(node_paths) + nodes.sort_custom(sort_ascending_by_path) var selected_nodes := EditorInterface.get_selection().get_selected_nodes() - return 1 if selected_nodes.size() == 1 and selected_nodes.front() == target_node else 0, + selected_nodes.sort_custom(sort_ascending_by_path) + return 1 if nodes == selected_nodes else 0 ) @@ -496,11 +566,10 @@ func bubble_add_task_set_ranges(ranges: Dictionary, label_text: String, descript if description.is_empty(): description = gtr( """Set [b]%s[/b] to [code]%s[/code]""" - % [ + ) % [ label_text, "x".join(ranges.keys().map(func(r: Range) -> String: return str(snappedf(ranges[r], r.step)))), ] - ) bubble_add_task( description, 1, @@ -509,6 +578,172 @@ func bubble_add_task_set_ranges(ranges: Dictionary, label_text: String, descript ) +func bubble_add_task_set_node_property(node_name: String, property_name: String, property_value: Variant, description := "") -> void: + if description.is_empty(): + description = gtr("""Set [b]%s[/b]'s [b]%s[/b] property to [b]%s[/b]""") % [node_name, property_name.capitalize(), str(property_value).get_file()] + bubble_add_task(description, 1, func set_node_property(_task: Task) -> int: + var scene_root := EditorInterface.get_edited_scene_root() + var node := scene_root if node_name == scene_root.name else scene_root.find_child(node_name) + if node == null: + return 0 + + var node_property := node.get(property_name) + var is_equal := false + if ( + node_property is Vector2 or + node_property is Vector2i or + node_property is Vector3 or + node_property is Vector3i or + node_property is Vector4 or + node_property is Vector4i or + node_property is Rect2 or + node_property is Transform2D or + node_property is Plane or + node_property is Quaternion or + node_property is AABB or + node_property is Basis or + node_property is Transform3D or + node_property is Color + ): + is_equal = node_property.is_equal_approx(property_value) + elif node_property is float: + is_equal = is_equal_approx(node_property, property_value) + elif node_property is Node: + is_equal = node_property == get_scene_node_by_path(property_value) + else: + is_equal = node_property == property_value + + var result := 1 if is_equal else 0 + if mouse != null: + mouse.visible = result == 0 + return result + ) + + +func bubble_add_task_open_scene(path: String, description := "") -> void: + if description.is_empty(): + description = gtr("""Open the scene [b]%s[/b]""") % path.get_file() + bubble_add_task(description, 1, func open_scene(_task: Task) -> int: + var current_tab := interface.main_screen_tabs.current_tab + var current_tab_title = interface.main_screen_tabs.get_tab_title(current_tab) + return 1 if path in EditorInterface.get_open_scenes() and current_tab_title == path.get_file().get_basename() else 0 + ) + + +func bubble_add_task_expand_inspector_property(property_name: String, description := "") -> void: + if description.is_empty(): + description = gtr("""Expand the property [b]%s[/b] in the [b]Inspector[/b]""") % property_name.capitalize() + bubble_add_task(description, 1, func expand_property(_task: Task) -> int: + var result := 0 + var properties := interface.inspector_editor.find_children("", "EditorProperty", true, false) + for property: EditorProperty in properties: + if property.is_class("EditorPropertyResource") and property.get_edited_property() == property_name and property.get_child_count() > 1: + result = 1 + return result + ) + +## Used to tell [method bubble_add_task_node_to_guide] to check if the node position perfectly matches the guide's position or if it's just in the guide box's bounding box. +enum Guide3DCheckMode { + ## The node's position must be the same as the guide's position, or within a small margin of error. + POSITION, + ## The node's position must be within the guide box's bounding box. + IN_BOUNDING_BOX +} + +## Parameters to add a task to move a node to a specific position. The location to move to is represented by a transparent guide box. +## Used by the function [method bubble_add_task_node_to_guide]. +class Guide3DTaskParameters: + ## The name of the node to check. + var node_name: String + var global_position: Vector3 + ## The offset of the guide box relative to the node's position. + ## This is useful when the checked node's origin is not at the center of the object. + var box_offset := Vector3.ZERO + ## The size of the guide box in meters. + var box_size := Vector3.ONE + ## The mode to check the node's position. See [enum Guide3DCheckMode] for more information. + var check_mode: Guide3DCheckMode = Guide3DCheckMode.POSITION + ## The margin of error to check the node's position, in meters. Only used when [member check_mode] is set to [constant Guide3DCheckMode.POSITION] + var position_margin := 0.1 + ## The description of the task. If not set, the function generates the description automatically. + var description_override := "" + + func _init(p_node_name: String, p_global_position: Vector3, p_check_mode := Guide3DCheckMode.POSITION) -> void: + self.node_name = p_node_name + self.global_position = p_global_position + self.check_mode = p_check_mode + +## Adds a task to move a given node to a specific position or within a box. The location to move to is represented by a transparent guide box. +func bubble_add_task_node_to_guide(parameters: Guide3DTaskParameters) -> void: + if parameters.description_override.is_empty(): + parameters.description_override = gtr("""Move [b]%s[/b] inside the guide box""") % parameters.node_name + + queue_command(func() -> void: + var scene_root := EditorInterface.get_edited_scene_root() + var guide := Guide3DPackedScene.instantiate() + guides[parameters.node_name] = guide + guide.global_position = parameters.global_position + guide.box_offset = parameters.box_offset + guide.size = parameters.box_size + scene_root.add_child(guide) + ) + bubble_add_task(parameters.description_override, 1, func node_to_guide(_task: Task) -> int: + var scene_root := EditorInterface.get_edited_scene_root() + var node: Node3D = null + if parameters.node_name == scene_root.name: + node = scene_root + else: + node = scene_root.find_child(parameters.node_name) + + var guide: Guide3D = guides.get(parameters.node_name, null) + var does_match := node != null and guide != null + if not does_match: + return 0 + + if parameters.check_mode == Guide3DCheckMode.POSITION: + does_match = does_match and node.global_position.distance_to(guide.global_position) < parameters.position_margin + elif parameters.check_mode == Guide3DCheckMode.IN_BOUNDING_BOX: + var aabb := guide.get_aabb() + aabb.position += guide.global_position + does_match = does_match and aabb.has_point(node.global_position) + + return 1 if does_match else 0 + ) + + +func bubble_add_task_instantiate_scene(file_path: String, node_name: String, parent_node_name: String, description := "") -> void: + if description.is_empty(): + description = gtr("Instantiate the [b]%s[/b] scene as a child of [b]%s[/b]") % [file_path.get_file(), parent_node_name] + bubble_add_task( + description, + 1, + func instantiate_platform_goal(_task: Task) -> int: + var scene_root := EditorInterface.get_edited_scene_root() + var parent := scene_root if parent_node_name == scene_root.name else scene_root.find_child(parent_node_name) + var node := parent.get_node_or_null(node_name) + var result := 1 if node != null and node.scene_file_path == file_path else 0 + if mouse != null: + mouse.visible = result == 0 + return result + ) + + +func bubble_add_task_focus_node(node_name: String, description := "") -> void: + if description.is_empty(): + description = gtr("""Focus the [b]%s[/b] node""" % node_name) + bubble_add_task( + description, + 1, + func focus_camera_task(task: Task) -> int: + var scene_root := EditorInterface.get_edited_scene_root() + var node := scene_root if node_name == scene_root.name else scene_root.find_child(node_name) + var selected_nodes := EditorInterface.get_selection().get_selected_nodes() + var is_node_selected := node in selected_nodes + var is_focus_on_node := interface.spatial_editor_surfaces.any(control_has_focus) and Input.is_action_just_pressed("tour_f") + return 1 if task.is_done() or is_node_selected and is_focus_on_node else 0 + ) + + ## Moves and anchors the bubble relative to the given control. ## You can optionally set a margin and an offset to fine-tune the bubble's position. func bubble_move_and_anchor(control: Control, at := Bubble.At.CENTER, margin := 16.0, offset := Vector2.ZERO) -> void: @@ -527,27 +762,27 @@ func bubble_set_avatar_at(at: Bubble.AvatarAt) -> void: ## you can call this function with a [code]size[/code] of [constant Vector2.ZERO] on the following ## [member step_commands] to let the bubble automatically control its size again. func bubble_set_minimum_size_scaled(size := Vector2.ZERO) -> void: - queue_command(func() -> void: bubble.panel.set_custom_minimum_size(size * EditorInterface.get_editor_scale())) + queue_command(func() -> void: bubble.panel_container.set_custom_minimum_size(size * EditorInterface.get_editor_scale())) -func highlight_scene_nodes_by_name(names: Array[String], button_index := -1, play_flash := true) -> void: - queue_command(overlays.highlight_scene_nodes_by_name, [names, button_index, play_flash]) +func highlight_scene_nodes_by_name(names: Array[String], button_index := -1, do_center := true, play_flash := true) -> void: + queue_command(overlays.highlight_scene_nodes_by_name, [names, button_index, do_center, play_flash]) -func highlight_scene_nodes_by_path(paths: Array[String], button_index := -1, play_flash := true) -> void: - queue_command(overlays.highlight_scene_nodes_by_path, [paths, button_index, play_flash]) +func highlight_scene_nodes_by_path(paths: Array[String], button_index := -1, do_center := true, play_flash := true) -> void: + queue_command(overlays.highlight_scene_nodes_by_path, [paths, button_index, do_center, play_flash]) -func highlight_filesystem_paths(paths: Array[String], play_flash := true) -> void: - queue_command(overlays.highlight_filesystem_paths, [paths, play_flash]) +func highlight_filesystem_paths(paths: Array[String], do_center := true, play_flash := true) -> void: + queue_command(overlays.highlight_filesystem_paths, [paths, do_center, play_flash]) -func highlight_inspector_properties(names: Array[StringName], play_flash := true) -> void: - queue_command(overlays.highlight_inspector_properties, [names, play_flash]) +func highlight_inspector_properties(names: Array[StringName], do_center := true, play_flash := true) -> void: + queue_command(overlays.highlight_inspector_properties, [names, do_center, play_flash]) -func highlight_signals(paths: Array[String], play_flash := true) -> void: - queue_command(overlays.highlight_signals, [paths, play_flash]) +func highlight_signals(paths: Array[String], do_center := true, play_flash := true) -> void: + queue_command(overlays.highlight_signals, [paths, do_center, play_flash]) func highlight_code(start: int, end := 0, caret := 0, do_center := true, play_flash := false) -> void: @@ -601,6 +836,19 @@ func highlight_spatial_editor_camera_region(start: Vector3, end: Vector3, index ) +# FIXME: follow scroll and parametrize to highlight a previoew other than "material" property. +func highlight_material_preview() -> void: + queue_command(func highlight_preview() -> void: + interface.inspector_editor.scroll_vertical = 0 + var properties := interface.inspector_editor.find_children("", "EditorProperty", true, false) + for property: EditorProperty in properties: + if property.is_class("EditorPropertyResource") and property.get_edited_property() == "material" and property.get_child_count() > 1: + var controls: Array[Control] = [] + controls.assign(property.find_children("", "MaterialEditor", true, false)) + overlays.highlight_controls(controls) + ) + + func mouse_move_by_position(from: Vector2, to: Vector2) -> void: queue_command(func() -> void: ensure_mouse() @@ -719,7 +967,7 @@ func get_tree_item_center_by_path(tree: Tree, path: String, button_index := -1) return result for item in Utils.filter_tree_items(root, func(ti: TreeItem) -> bool: return path == Utils.get_tree_item_path(ti)): var rect := tree.get_global_transform() * tree.get_item_area_rect(item, 0, button_index) - rect.position.y -= tree.get_scroll().y + rect.position -= tree.get_scroll() result = rect.get_center() break return result @@ -733,7 +981,7 @@ func get_tree_item_center_by_name(tree: Tree, name: String) -> Vector2: var item := Utils.find_tree_item_by_name(tree, name) var rect := tree.get_global_transform() * tree.get_item_area_rect(item, 0) - rect.position.y -= tree.get_scroll().y + rect.position -= tree.get_scroll() result = rect.get_center() return result @@ -745,6 +993,17 @@ func get_tilemap_global_rect_pixels(tilemap_node: TileMap) -> Rect2: return rect +func get_inspector_property_center(name: String) -> Vector2: + var result := Vector2.ZERO + var properties := interface.inspector_editor.find_children("", "EditorProperty", true, false) + var predicate_first := func predicate_first(p: EditorProperty) -> bool: return p.get_edited_property() == name + for property: EditorProperty in properties.filter(predicate_first): + result = property.get_global_rect().get_center() + break + return result + + + func get_control_global_center(control: Control) -> Vector2: return control.get_global_rect().get_center() @@ -813,6 +1072,16 @@ func bbcode_generate_icon_image_string(image_filepath: String) -> String: return "[img=%sx%s]" % [size, size] + image_filepath + "[/img]" +## Generates a BBCode [code][img][/code] tag for a Godot editor icon by name, +## scaling the image size based on the editor scale. +## The icon name must match the name of the SVG file in the [code]res://addons/godot_tours/bubble/assets/icons[/code] directory, without the extension. +## Example: For Node2D.svg, the icon name is "Node2D" +func bbcode_generate_icon_image_by_name(icon_name: String) -> String: + var path := "res://addons/godot_tours/bubble/assets/icons/".path_join(icon_name + ".svg") + assert(FileAccess.file_exists(path), "Icon file not found: %s" % path) + return bbcode_generate_icon_image_string(path) + + ## Wraps the text in a [code][font_size][/code] BBCode tag, scaling the value of size_pixels based on the editor ## scale. func bbcode_wrap_font_size(text: String, size_pixels: int) -> String: @@ -823,3 +1092,13 @@ func bbcode_wrap_font_size(text: String, size_pixels: int) -> String: func delay_process_frame(frames := 1) -> void: for _frame in range(frames): await interface.base_control.get_tree().process_frame + + +func control_has_focus(c: Control) -> bool: return c.has_focus() + + +func sort_ascending_by_path(a: Node, b: Node) -> bool: return str(a.get_path()) < str(b.get_path()) + + +func _close_bottom_panel() -> void: + interface.bottom_button_output.button_pressed = false diff --git a/addons/godot_tours/translation/translation_parser.gd b/addons/godot_tours/translation/translation_parser.gd index 26ed66c..314f883 100644 --- a/addons/godot_tours/translation/translation_parser.gd +++ b/addons/godot_tours/translation/translation_parser.gd @@ -2,8 +2,8 @@ extends EditorTranslationParserPlugin const PATTERNS := [ - """gtr\\(\\s*['"]+(.*?)['"]+\\s*(?:,\\s*['"]+(.*?)['"]+\\s*)?\\)""", - """gtr_n\\(\\s*['"]+(.*?)['"]+\\s*,\\s*['"]+(.*?)['"]+\\s*,\\s*(?:\\d+)\\s*(?:,\\s*['"]+(.*?)['"]+\\s*)?\\)""", + r"""gtr\(\s*['"]+(.*?(?:\\")?)['"]+\s*(?:,\s*['"]+(.*?)['"]+\s*)?\)""", + r"""gtr_n\(\s*['"]+(.*?(?:\\")?)['"]+\s*,\s*['"]+(.*?(?:\\")?)['"]+\s*,\s*(?:\d+)\s*(?:,\s*['"]+(.*?)['"]+\s*)?\)""", ] var regex := RegEx.new() @@ -14,14 +14,18 @@ func _parse_file(path: String, msgids: Array[String], msgids_context_plural: Arr for pattern in PATTERNS: regex.compile(pattern) for regex_match in regex.search_all(source_code): - var singular := regex_match.strings[1] + var singular := _replace_quotes(regex_match.strings[1]) var context := regex_match.strings[2] var plural := "" if regex_match.get_group_count() > 2: - plural = regex_match.strings[2] + plural = _replace_quotes(regex_match.strings[2]) context = regex_match.strings[3] msgids_context_plural.push_back([singular, context, plural]) func _get_recognized_extensions() -> PackedStringArray: return ["gd"] + + +func _replace_quotes(s: String) -> String: + return s.replace(r"\'", "'").replace(r'\"', '"') diff --git a/addons/godot_tours/ui/theme_utils.gd b/addons/godot_tours/ui/theme_utils.gd index a914d66..96fc9f3 100644 --- a/addons/godot_tours/ui/theme_utils.gd +++ b/addons/godot_tours/ui/theme_utils.gd @@ -1,6 +1,16 @@ ## Functions to process UI Theme properties. In particular, provides functions to scale theme values with the editor scale. @tool +const FALLBACK_FONT_LANGUAGES := ["ja"] +const FALLBACK_FONT_FMT := "res://addons/godot_tours/assets/fonts/fallback/noto_sans%s_%s.ttf" +const FALLBACK_FONT_MAP := { + "bold_font": "bold", + "italics_font": "italic", + "mono_font": "mono", + "normal_font": "regular", + "font": "regular" +} + ## Gets and scales the font_size theme override of the input text_node using the editor scale. ## Adds a font size override to text_node directly. @@ -76,3 +86,22 @@ static func generate_scaled_theme(theme_resource: Theme) -> Theme: stylebox.content_margin_bottom *= editor_scale return new_theme + + +static func request_fallback_font(theme: Theme) -> Theme: + var settings := EditorInterface.get_editor_settings() + var language: String = settings.get("interface/editor/editor_language") + if not language in FALLBACK_FONT_LANGUAGES: + return theme + + language = "_%s" % language + var result := theme.duplicate() + result.default_font = load(FALLBACK_FONT_FMT % [language, "regular"]) + for type in result.get_font_type_list(): + for font: String in result.get_font_list(type): + if result.has_font(font, type): + var font_file_path: String = FALLBACK_FONT_FMT % [language, FALLBACK_FONT_MAP[font]] + prints(font, font_file_path, FileAccess.file_exists(font_file_path)) + if FileAccess.file_exists(font_file_path): + result.set_font(font, type, load(font_file_path)) + return result diff --git a/addons/godot_tours/ui/theme_welcome_menu.tres b/addons/godot_tours/ui/theme_welcome_menu.tres index 3735a00..3bffa67 100644 --- a/addons/godot_tours/ui/theme_welcome_menu.tres +++ b/addons/godot_tours/ui/theme_welcome_menu.tres @@ -1,9 +1,11 @@ -[gd_resource type="Theme" load_steps=15 format=3 uid="uid://7hcgepakmhxl"] +[gd_resource type="Theme" load_steps=18 format=3 uid="uid://7hcgepakmhxl"] -[ext_resource type="FontFile" uid="uid://cxeo2n3ky21xb" path="res://addons/godot_tours/bubble/assets/fonts/mukta_bold.ttf" id="1_dub3d"] +[ext_resource type="FontFile" uid="uid://cxeo2n3ky21xb" path="res://addons/godot_tours/assets/fonts/mukta_bold.ttf" id="1_dub3d"] [ext_resource type="Texture2D" uid="uid://dmv0g5yqal8s7" path="res://addons/godot_tours/assets/icons/lock.svg" id="2_h5oj8"] -[ext_resource type="FontFile" uid="uid://b0tcgxag5h452" path="res://addons/godot_tours/bubble/assets/fonts/poppins_regular.ttf" id="2_q27tu"] -[ext_resource type="FontFile" uid="uid://b0egmv7mkouwp" path="res://addons/godot_tours/bubble/assets/fonts/poppins_bold.ttf" id="3_0qm4b"] +[ext_resource type="FontFile" uid="uid://b0tcgxag5h452" path="res://addons/godot_tours/assets/fonts/poppins_regular.ttf" id="2_q27tu"] +[ext_resource type="FontFile" uid="uid://b0egmv7mkouwp" path="res://addons/godot_tours/assets/fonts/poppins_bold.ttf" id="3_0qm4b"] +[ext_resource type="FontFile" uid="uid://cowlnwvq0rikj" path="res://addons/godot_tours/assets/fonts/poppins_italic.ttf" id="5_jtekx"] +[ext_resource type="FontFile" uid="uid://c3xincxynype7" path="res://addons/godot_tours/assets/fonts/hasklug_nerd_mono.otf" id="6_42au4"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_t2qdf"] content_margin_left = -5.0625 @@ -114,6 +116,8 @@ shadow_color = Color(0, 0, 0, 0.184314) shadow_size = 8 shadow_offset = Vector2(0, 8) +[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_dlql6"] + [resource] default_font = ExtResource("2_q27tu") default_font_size = 16 @@ -147,4 +151,9 @@ NextButton/styles/hover = SubResource("StyleBoxFlat_rngto") NextButton/styles/normal = SubResource("StyleBoxFlat_mkome") NextButton/styles/pressed = SubResource("StyleBoxFlat_x34p0") PanelContainer/styles/panel = SubResource("StyleBoxFlat_7nwh6") +RichTextLabel/fonts/bold_font = ExtResource("3_0qm4b") +RichTextLabel/fonts/italics_font = ExtResource("5_jtekx") +RichTextLabel/fonts/mono_font = ExtResource("6_42au4") +RichTextLabel/fonts/normal_font = ExtResource("2_q27tu") +RichTextLabel/styles/normal = SubResource("StyleBoxEmpty_dlql6") VBoxContainer/constants/separation = 16 diff --git a/addons/godot_tours/ui/ui_button_godot_tours.tscn b/addons/godot_tours/ui/ui_button_godot_tours.tscn index 4cdca20..7bcbb87 100644 --- a/addons/godot_tours/ui/ui_button_godot_tours.tscn +++ b/addons/godot_tours/ui/ui_button_godot_tours.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=7 format=3 uid="uid://boy5tvkasxato"] -[ext_resource type="FontFile" uid="uid://cxeo2n3ky21xb" path="res://addons/godot_tours/bubble/assets/fonts/mukta_bold.ttf" id="1_k0khj"] +[ext_resource type="FontFile" uid="uid://cxeo2n3ky21xb" path="res://addons/godot_tours/assets/fonts/mukta_bold.ttf" id="1_k0khj"] [ext_resource type="Script" path="res://addons/godot_tours/ui/ui_button_godot_tours.gd" id="1_m0m61"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nq4yk"] diff --git a/addons/godot_tours/ui/ui_welcome_menu.gd b/addons/godot_tours/ui/ui_welcome_menu.gd index e573be4..fcf53d0 100644 --- a/addons/godot_tours/ui/ui_welcome_menu.gd +++ b/addons/godot_tours/ui/ui_welcome_menu.gd @@ -30,7 +30,7 @@ const UISelectableTourPackedScene = preload("ui_selectable_tour.tscn") # Nodes for reset view and confirmation @onready var view_menu: VBoxContainer = %ViewMenu @onready var view_reset_confirmation: VBoxContainer = %ViewResetConfirmation -@onready var label_reset_explanation: Label = %LabelResetExplanation +@onready var label_reset_explanation: RichTextLabel = %LabelResetExplanation @onready var button_reset_no: Button = %ButtonResetNo @onready var button_reset_yes: Button = %ButtonResetYes @onready var label_reset_title: Label = %LabelResetTitle @@ -67,7 +67,7 @@ func setup(translation_service: TranslationService, tour_list: GodotTourList) -> button_reset_no.show() button_reset_yes.show() label_reset_title.text = tr("Reset the tour?") - label_reset_explanation.text = tr("Do you want to reset \"%s\"?" % get_selectable_tour().title) + label_reset_explanation.text = tr("Do you want to reset [b]%s[/b]?" % get_selectable_tour().title) label_reset_explanation.text += "\n" + tr("This will reset the files to the tour starting point, overwriting your changes.") ) button_reset_no.pressed.connect(func open_welcome_menu() -> void: @@ -89,10 +89,11 @@ func setup(translation_service: TranslationService, tour_list: GodotTourList) -> # Scale with editor scale if Engine.is_editor_hint() and owner != self: + control.theme = ThemeUtils.generate_scaled_theme(control.theme) + for node: Control in [label_title, button_start_learning]: + ThemeUtils.scale_font_size(node) var editor_scale := EditorInterface.get_editor_scale() panel_container.custom_minimum_size.x *= editor_scale - for node: Control in [label_title, button_start_learning, button_reset_selected, button_reset_no, button_reset_yes, button_reset_ok, label_reset_explanation, label_reset_title]: - ThemeUtils.scale_font_size(node) ThemeUtils.scale_margin_container_margins(margin_container) for button: BaseButton in [button_reset_selected, button_reset_no, button_reset_yes, button_reset_ok, button_start_learning]: button.custom_minimum_size *= editor_scale @@ -114,7 +115,7 @@ func toggle_dimmer(is_on := true) -> void: ## Called by the plugin after a tour has been reset. func show_reset_success() -> void: label_reset_title.text = tr("Reset successful") - label_reset_explanation.text = tr("The tour \"%s\" has been reset to its starting point." % get_selectable_tour().title) + label_reset_explanation.text = tr("The tour [b]%s[/b] has been reset to its starting point." % get_selectable_tour().title) label_reset_explanation.text += "\n" + tr("You may need to close and reopen Godot scenes to see the changes.") button_reset_no.hide() button_reset_yes.hide() @@ -124,7 +125,7 @@ func show_reset_success() -> void: ## Called by the plugin after a tour has been reset. func show_reset_failure() -> void: label_reset_title.text = tr("Reset failed") - label_reset_explanation.text = tr("The tour \"%s\" could not be reset. Try closing and reopening Godot or restarting your computer and try resetting again." % get_selectable_tour().title) + label_reset_explanation.text = tr("The tour [b]%s[/] could not be reset. Try closing and reopening Godot or restarting your computer and try resetting again." % get_selectable_tour().title) label_reset_explanation.text += "\n" + tr("If the problem persists, please check the errors in the Output bottom panel and let us know!") button_reset_no.hide() button_reset_yes.hide() diff --git a/addons/godot_tours/ui/ui_welcome_menu.tscn b/addons/godot_tours/ui/ui_welcome_menu.tscn index a8e1166..878fe5b 100644 --- a/addons/godot_tours/ui/ui_welcome_menu.tscn +++ b/addons/godot_tours/ui/ui_welcome_menu.tscn @@ -1,9 +1,8 @@ -[gd_scene load_steps=6 format=3 uid="uid://bhu2wc07q7fxk"] +[gd_scene load_steps=5 format=3 uid="uid://bhu2wc07q7fxk"] [ext_resource type="Script" path="res://addons/godot_tours/ui/ui_welcome_menu.gd" id="1_kfmbk"] [ext_resource type="Theme" uid="uid://7hcgepakmhxl" path="res://addons/godot_tours/ui/theme_welcome_menu.tres" id="2_0icf0"] [ext_resource type="Texture2D" uid="uid://cb4s7cxc5wtdv" path="res://addons/godot_tours/assets/icons/reload.svg" id="3_rgtlm"] -[ext_resource type="FontFile" uid="uid://b0tcgxag5h452" path="res://addons/godot_tours/bubble/assets/fonts/poppins_regular.ttf" id="4_joepv"] [sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_1q4hb"] @@ -156,13 +155,15 @@ text = "Reset the tour?" horizontal_alignment = 1 autowrap_mode = 2 -[node name="LabelResetExplanation" type="Label" parent="Control/PanelContainer/MarginContainer/ViewResetConfirmation"] +[node name="LabelResetExplanation" type="RichTextLabel" parent="Control/PanelContainer/MarginContainer/ViewResetConfirmation"] unique_name_in_owner = true custom_minimum_size = Vector2(200, 0) layout_mode = 2 -theme_override_fonts/font = ExtResource("4_joepv") -text = "Do you want to reset %s? +bbcode_enabled = true +text = "Do you want to reset [b]%s[/b]? This will reset the files to the tour starting point, overwriting your changes." +fit_content = true +scroll_active = false autowrap_mode = 2 [node name="HBoxContainer" type="HBoxContainer" parent="Control/PanelContainer/MarginContainer/ViewResetConfirmation"] diff --git a/assets/bubble-background.png b/assets/bubble-background.png index 1e684b2..e240f64 100644 Binary files a/assets/bubble-background.png and b/assets/bubble-background.png differ diff --git a/assets/icon_move_tool.svg b/assets/icon_move_tool.svg new file mode 100644 index 0000000..889afc5 --- /dev/null +++ b/assets/icon_move_tool.svg @@ -0,0 +1 @@ + diff --git a/assets/icon_move_tool.svg.import b/assets/icon_move_tool.svg.import new file mode 100644 index 0000000..5f0eb4d --- /dev/null +++ b/assets/icon_move_tool.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://425wdrcfps52" +path="res://.godot/imported/icon_move_tool.svg-547fe35f160481be158b880f8e553e81.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icon_move_tool.svg" +dest_files=["res://.godot/imported/icon_move_tool.svg-547fe35f160481be158b880f8e553e81.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_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/common/Montserrat-ExtraBold.ttf.import b/common/Montserrat-ExtraBold.ttf.import index 77064b8..340e7ef 100644 --- a/common/Montserrat-ExtraBold.ttf.import +++ b/common/Montserrat-ExtraBold.ttf.import @@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/Montserrat-ExtraBold.ttf-3d8db194fbdbfddf10d1 Rendering=null antialiasing=1 generate_mipmaps=false +disable_embedded_bitmaps=true multichannel_signed_distance_field=false msdf_pixel_range=8 msdf_size=48 diff --git a/completed_project.tscn b/completed_project.tscn index 0f98032..04011d0 100644 --- a/completed_project.tscn +++ b/completed_project.tscn @@ -5,7 +5,7 @@ [ext_resource type="TileSet" uid="uid://cqb2wtrubw0n6" path="res://levels/rooms/tileset_invisible_walls.tres" id="3_vklf7"] [ext_resource type="PackedScene" uid="uid://dds7yrrx56gcy" path="res://player/player.tscn" id="4_idksr"] [ext_resource type="PackedScene" uid="uid://cce7r30dfjm4r" path="res://interface/bars/ui_health_bar.tscn" id="4_mukgi"] -[ext_resource type="PackedScene" uid="uid://dq3p4x4do28l6" path="res://levels/rooms/room_a.tscn" id="5_d5k6w"] +[ext_resource type="PackedScene" uid="uid://cu2rb5dl4ljte" path="res://levels/rooms/room_a.tscn" id="5_d5k6w"] [ext_resource type="PackedScene" uid="uid://dgayuh42w4v6u" path="res://levels/rooms/room_b.tscn" id="6_d2i4m"] [ext_resource type="PackedScene" uid="uid://dw1qted83s8gw" path="res://pickups/weapon_pickup.tscn" id="6_w1fjs"] [ext_resource type="PackedScene" uid="uid://cq0mmphkbrvmm" path="res://levels/rooms/room_c.tscn" id="7_g7cph"] diff --git a/game.gd b/game.gd index 582dc51..7b377cd 100644 --- a/game.gd +++ b/game.gd @@ -8,7 +8,7 @@ func _ready() -> void: _invisible_walls.hide() if _player: - _player.connect("died", _on_Player_died) + _player.connect("died", Callable(self, "_on_Player_died")) if _health_bar: _health_bar.set_health(_player.health) diff --git a/icon.png.import b/icon.png.import index 9748151..484276d 100644 --- a/icon.png.import +++ b/icon.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d3c7tcqiiklxe" +uid="uid://br451ttp3da4r" path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex" metadata={ "vram_texture": false diff --git a/levels/background/background_blue_sky.tscn b/levels/background/background_blue_sky.tscn index 103f7ac..13aed6d 100644 --- a/levels/background/background_blue_sky.tscn +++ b/levels/background/background_blue_sky.tscn @@ -11,12 +11,12 @@ [ext_resource type="Texture2D" uid="uid://ck4a00lm1krmo" path="res://levels/background/far_island_2.png" id="9"] [sub_resource type="ShaderMaterial" id="32"] -render_priority = 0 shader = ExtResource("1_e0ril") +shader_parameter/color = null [sub_resource type="ShaderMaterial" id="31"] -render_priority = 0 shader = ExtResource("1_e0ril") +shader_parameter/color = null [sub_resource type="Curve" id="34"] _data = [Vector2(0, 0.0298014), 0.0, 4.09699, 0, 0, Vector2(0.522584, 1), 0.0, 0.0, 0, 0, Vector2(1, 0.00331128), -4.54184, 0.0, 0, 0] @@ -138,10 +138,10 @@ texture = ExtResource("4") [node name="AnimationPlayer" type="AnimationPlayer" parent="LayerTop"] unique_name_in_owner = true -autoplay = "loop" libraries = { "": SubResource("AnimationLibrary_erbys") } +autoplay = "loop" [node name="Fade" type="ColorRect" parent="."] anchors_preset = 15 diff --git a/levels/background/loop_clouds.gd b/levels/background/loop_clouds.gd index 935f59f..1d97cc4 100644 --- a/levels/background/loop_clouds.gd +++ b/levels/background/loop_clouds.gd @@ -3,5 +3,5 @@ extends Node2D @export var speed := 0.1 @onready var animation_player := $AnimationPlayer -func _ready(): +func _ready() -> void: animation_player.speed_scale = speed diff --git a/levels/rooms/chests/chest.gd b/levels/rooms/chests/chest.gd index 346b7e4..e810386 100644 --- a/levels/rooms/chests/chest.gd +++ b/levels/rooms/chests/chest.gd @@ -11,15 +11,15 @@ const LOOT_SCENES := [ func loot() -> void: _animation_player.play("open") - + func create_pickup() -> void: - var loot = LOOT_SCENES[randi() % LOOT_SCENES.size()].instantiate() - _path_follow.call_deferred("add_child", loot) + var loot_instance = LOOT_SCENES[randi() % LOOT_SCENES.size()].instantiate() + _path_follow.add_child.call_deferred(loot_instance) var tween := create_tween().set_ease(Tween.EASE_OUT).set_trans(Tween.TRANS_SINE) tween.tween_property(_path_follow, "progress_ratio", 1, 0.3) - tween.start() + tween.play() -func _on_body_entered(body: Node2D) -> void: +func _on_body_entered(_body: Node2D) -> void: loot() diff --git a/levels/rooms/chests/chest.tscn b/levels/rooms/chests/chest.tscn index bb73198..754f0d2 100644 --- a/levels/rooms/chests/chest.tscn +++ b/levels/rooms/chests/chest.tscn @@ -122,17 +122,17 @@ collision_mask = 0 shape = SubResource("1") [node name="AnimationPlayer" type="AnimationPlayer" parent="."] -autoplay = "RESET" libraries = { "": SubResource("AnimationLibrary_xyhmo") } +autoplay = "RESET" [node name="Path2D" type="Path2D" parent="."] curve = SubResource("4") [node name="PathFollow2D" type="PathFollow2D" parent="Path2D"] position = Vector2(-0.386932, -0.414749) -rotation = -2.25364 +rotates = false loop = false [connection signal="body_entered" from="." to="." method="_on_body_entered"] diff --git a/levels/rooms/floating_dungeon_tileset.tres b/levels/rooms/floating_dungeon_tileset.tres index 980ff6e..310bd0e 100644 --- a/levels/rooms/floating_dungeon_tileset.tres +++ b/levels/rooms/floating_dungeon_tileset.tres @@ -8,8 +8,6 @@ texture_region_size = Vector2i(128, 128) 0:0/0 = 0 0:0/0/terrain_set = 0 0:0/0/terrain = 0 -0:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:0/0/physics_layer_0/angular_velocity = 0.0 0:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, 0, 64, 0, 64, 64, -64, 64) 0:0/0/terrains_peering_bit/right_side = 0 0:0/0/terrains_peering_bit/bottom_right_corner = 0 @@ -17,8 +15,6 @@ texture_region_size = Vector2i(128, 128) 1:0/0 = 0 1:0/0/terrain_set = 0 1:0/0/terrain = 0 -1:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:0/0/physics_layer_0/angular_velocity = 0.0 1:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, 0, 64, 0, 64, 64, -64, 64) 1:0/0/terrains_peering_bit/right_side = 0 1:0/0/terrains_peering_bit/bottom_right_corner = 0 @@ -28,8 +24,6 @@ texture_region_size = Vector2i(128, 128) 2:0/0 = 0 2:0/0/terrain_set = 0 2:0/0/terrain = 0 -2:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:0/0/physics_layer_0/angular_velocity = 0.0 2:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, 0, 64, 0, 64, 64, -64, 64) 2:0/0/terrains_peering_bit/bottom_side = 0 2:0/0/terrains_peering_bit/bottom_left_corner = 0 @@ -37,8 +31,6 @@ texture_region_size = Vector2i(128, 128) 3:0/0 = 0 3:0/0/terrain_set = 0 3:0/0/terrain = 0 -3:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) -3:0/0/physics_layer_0/angular_velocity = 0.0 3:0/0/terrains_peering_bit/right_side = 0 3:0/0/terrains_peering_bit/bottom_side = 0 3:0/0/terrains_peering_bit/bottom_left_corner = 0 @@ -48,14 +40,10 @@ texture_region_size = Vector2i(128, 128) 3:0/0/terrains_peering_bit/top_right_corner = 0 4:0/0 = 0 4:0/0/terrain_set = 0 -4:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) -4:0/0/physics_layer_0/angular_velocity = 0.0 4:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 5:0/0 = 0 5:0/0/terrain_set = 0 5:0/0/terrain = 0 -5:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) -5:0/0/physics_layer_0/angular_velocity = 0.0 5:0/0/terrains_peering_bit/right_side = 0 5:0/0/terrains_peering_bit/bottom_right_corner = 0 5:0/0/terrains_peering_bit/bottom_side = 0 @@ -64,16 +52,10 @@ texture_region_size = Vector2i(128, 128) 5:0/0/terrains_peering_bit/top_side = 0 5:0/0/terrains_peering_bit/top_right_corner = 0 9:0/0 = 0 -9:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:0/0/physics_layer_0/angular_velocity = 0.0 11:0/0 = 0 -11:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) -11:0/0/physics_layer_0/angular_velocity = 0.0 0:1/0 = 0 0:1/0/terrain_set = 0 0:1/0/terrain = 0 -0:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:1/0/physics_layer_0/angular_velocity = 0.0 0:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 0:1/0/terrains_peering_bit/right_side = 0 0:1/0/terrains_peering_bit/bottom_right_corner = 0 @@ -83,8 +65,6 @@ texture_region_size = Vector2i(128, 128) 1:1/0 = 0 1:1/0/terrain_set = 0 1:1/0/terrain = 0 -1:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:1/0/physics_layer_0/angular_velocity = 0.0 1:1/0/terrains_peering_bit/right_side = 0 1:1/0/terrains_peering_bit/bottom_right_corner = 0 1:1/0/terrains_peering_bit/bottom_side = 0 @@ -96,8 +76,6 @@ texture_region_size = Vector2i(128, 128) 2:1/0 = 0 2:1/0/terrain_set = 0 2:1/0/terrain = 0 -2:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:1/0/physics_layer_0/angular_velocity = 0.0 2:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 2:1/0/terrains_peering_bit/bottom_side = 0 2:1/0/terrains_peering_bit/bottom_left_corner = 0 @@ -106,37 +84,19 @@ texture_region_size = Vector2i(128, 128) 2:1/0/terrains_peering_bit/top_side = 0 3:1/0 = 0 3:1/0/terrain_set = 0 -3:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) -3:1/0/physics_layer_0/angular_velocity = 0.0 3:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 5:1/0 = 0 5:1/0/terrain_set = 0 -5:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) -5:1/0/physics_layer_0/angular_velocity = 0.0 5:1/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 6:1/0 = 0 -6:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) -6:1/0/physics_layer_0/angular_velocity = 0.0 7:1/0 = 0 -7:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) -7:1/0/physics_layer_0/angular_velocity = 0.0 8:1/0 = 0 -8:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) -8:1/0/physics_layer_0/angular_velocity = 0.0 9:1/0 = 0 -9:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:1/0/physics_layer_0/angular_velocity = 0.0 10:1/0 = 0 -10:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) -10:1/0/physics_layer_0/angular_velocity = 0.0 11:1/0 = 0 -11:1/0/physics_layer_0/linear_velocity = Vector2(0, 0) -11:1/0/physics_layer_0/angular_velocity = 0.0 0:2/0 = 0 0:2/0/terrain_set = 0 0:2/0/terrain = 0 -0:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:2/0/physics_layer_0/angular_velocity = 0.0 0:2/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 0:2/0/terrains_peering_bit/right_side = 0 0:2/0/terrains_peering_bit/top_side = 0 @@ -144,8 +104,6 @@ texture_region_size = Vector2i(128, 128) 1:2/0 = 0 1:2/0/terrain_set = 0 1:2/0/terrain = 0 -1:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:2/0/physics_layer_0/angular_velocity = 0.0 1:2/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 1:2/0/terrains_peering_bit/right_side = 0 1:2/0/terrains_peering_bit/left_side = 0 @@ -155,48 +113,26 @@ texture_region_size = Vector2i(128, 128) 2:2/0 = 0 2:2/0/terrain_set = 0 2:2/0/terrain = 0 -2:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:2/0/physics_layer_0/angular_velocity = 0.0 2:2/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 2:2/0/terrains_peering_bit/left_side = 0 2:2/0/terrains_peering_bit/top_left_corner = 0 2:2/0/terrains_peering_bit/top_side = 0 3:2/0 = 0 3:2/0/terrain_set = 0 -3:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -3:2/0/physics_layer_0/angular_velocity = 0.0 4:2/0 = 0 4:2/0/terrain_set = 0 -4:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -4:2/0/physics_layer_0/angular_velocity = 0.0 4:2/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 5:2/0 = 0 5:2/0/terrain_set = 0 -5:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -5:2/0/physics_layer_0/angular_velocity = 0.0 6:2/0 = 0 -6:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -6:2/0/physics_layer_0/angular_velocity = 0.0 7:2/0 = 0 -7:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -7:2/0/physics_layer_0/angular_velocity = 0.0 8:2/0 = 0 -8:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -8:2/0/physics_layer_0/angular_velocity = 0.0 9:2/0 = 0 -9:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:2/0/physics_layer_0/angular_velocity = 0.0 10:2/0 = 0 -10:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -10:2/0/physics_layer_0/angular_velocity = 0.0 11:2/0 = 0 -11:2/0/physics_layer_0/linear_velocity = Vector2(0, 0) -11:2/0/physics_layer_0/angular_velocity = 0.0 0:3/0 = 0 0:3/0/terrain_set = 0 0:3/0/terrain = 0 -0:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:3/0/physics_layer_0/angular_velocity = 0.0 0:3/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 0:3/0/terrains_peering_bit/right_side = 0 0:3/0/terrains_peering_bit/bottom_right_corner = 0 @@ -208,8 +144,6 @@ texture_region_size = Vector2i(128, 128) 1:3/0 = 0 1:3/0/terrain_set = 0 1:3/0/terrain = 0 -1:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:3/0/physics_layer_0/angular_velocity = 0.0 1:3/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 1:3/0/terrains_peering_bit/right_side = 0 1:3/0/terrains_peering_bit/bottom_right_corner = 0 @@ -219,361 +153,169 @@ texture_region_size = Vector2i(128, 128) 1:3/0/terrains_peering_bit/top_left_corner = 0 1:3/0/terrains_peering_bit/top_side = 0 2:3/0 = 0 -2:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:3/0/physics_layer_0/angular_velocity = 0.0 2:3/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 3:3/0 = 0 -3:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -3:3/0/physics_layer_0/angular_velocity = 0.0 3:3/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 4:3/0 = 0 4:3/0/terrain_set = 0 4:3/0/terrain = 0 -4:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -4:3/0/physics_layer_0/angular_velocity = 0.0 4:3/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 4:3/0/terrains_peering_bit/bottom_side = 0 4:3/0/terrains_peering_bit/top_side = 0 5:3/0 = 0 5:3/0/terrain_set = 0 5:3/0/terrain = 0 -5:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -5:3/0/physics_layer_0/angular_velocity = 0.0 5:3/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 5:3/0/terrains_peering_bit/bottom_side = 0 6:3/0 = 0 -6:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -6:3/0/physics_layer_0/angular_velocity = 0.0 7:3/0 = 0 -7:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -7:3/0/physics_layer_0/angular_velocity = 0.0 8:3/0 = 0 -8:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -8:3/0/physics_layer_0/angular_velocity = 0.0 9:3/0 = 0 -9:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:3/0/physics_layer_0/angular_velocity = 0.0 10:3/0 = 0 -10:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -10:3/0/physics_layer_0/angular_velocity = 0.0 11:3/0 = 0 -11:3/0/physics_layer_0/linear_velocity = Vector2(0, 0) -11:3/0/physics_layer_0/angular_velocity = 0.0 0:4/0 = 0 -0:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:4/0/physics_layer_0/angular_velocity = 0.0 0:4/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 1:4/0 = 0 -1:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:4/0/physics_layer_0/angular_velocity = 0.0 1:4/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 2:4/0 = 0 -2:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:4/0/physics_layer_0/angular_velocity = 0.0 2:4/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 3:4/0 = 0 -3:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -3:4/0/physics_layer_0/angular_velocity = 0.0 3:4/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 4:4/0 = 0 -4:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -4:4/0/physics_layer_0/angular_velocity = 0.0 4:4/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 5:4/0 = 0 -5:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -5:4/0/physics_layer_0/angular_velocity = 0.0 5:4/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 6:4/0 = 0 -6:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -6:4/0/physics_layer_0/angular_velocity = 0.0 7:4/0 = 0 -7:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -7:4/0/physics_layer_0/angular_velocity = 0.0 8:4/0 = 0 -8:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -8:4/0/physics_layer_0/angular_velocity = 0.0 9:4/0 = 0 -9:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:4/0/physics_layer_0/angular_velocity = 0.0 10:4/0 = 0 -10:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -10:4/0/physics_layer_0/angular_velocity = 0.0 11:4/0 = 0 -11:4/0/physics_layer_0/linear_velocity = Vector2(0, 0) -11:4/0/physics_layer_0/angular_velocity = 0.0 0:5/0 = 0 -0:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:5/0/physics_layer_0/angular_velocity = 0.0 0:5/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 1:5/0 = 0 -1:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:5/0/physics_layer_0/angular_velocity = 0.0 1:5/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 2:5/0 = 0 -2:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:5/0/physics_layer_0/angular_velocity = 0.0 2:5/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 4:5/0 = 0 -4:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) -4:5/0/physics_layer_0/angular_velocity = 0.0 4:5/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 5:5/0 = 0 -5:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) -5:5/0/physics_layer_0/angular_velocity = 0.0 5:5/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 7:5/0 = 0 -7:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) -7:5/0/physics_layer_0/angular_velocity = 0.0 8:5/0 = 0 -8:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) -8:5/0/physics_layer_0/angular_velocity = 0.0 9:5/0 = 0 -9:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:5/0/physics_layer_0/angular_velocity = 0.0 10:5/0 = 0 -10:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) -10:5/0/physics_layer_0/angular_velocity = 0.0 11:5/0 = 0 -11:5/0/physics_layer_0/linear_velocity = Vector2(0, 0) -11:5/0/physics_layer_0/angular_velocity = 0.0 0:6/0 = 0 -0:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:6/0/physics_layer_0/angular_velocity = 0.0 0:6/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 1:6/0 = 0 -1:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:6/0/physics_layer_0/angular_velocity = 0.0 1:6/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 2:6/0 = 0 -2:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:6/0/physics_layer_0/angular_velocity = 0.0 2:6/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 3:6/0 = 0 -3:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) -3:6/0/physics_layer_0/angular_velocity = 0.0 3:6/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 4:6/0 = 0 -4:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) -4:6/0/physics_layer_0/angular_velocity = 0.0 4:6/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 5:6/0 = 0 -5:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) -5:6/0/physics_layer_0/angular_velocity = 0.0 5:6/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 6:6/0 = 0 -6:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) -6:6/0/physics_layer_0/angular_velocity = 0.0 8:6/0 = 0 -8:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) -8:6/0/physics_layer_0/angular_velocity = 0.0 9:6/0 = 0 -9:6/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:6/0/physics_layer_0/angular_velocity = 0.0 0:7/0 = 0 -0:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:7/0/physics_layer_0/angular_velocity = 0.0 0:7/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 1:7/0 = 0 -1:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:7/0/physics_layer_0/angular_velocity = 0.0 1:7/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 2:7/0 = 0 -2:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:7/0/physics_layer_0/angular_velocity = 0.0 2:7/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 3:7/0 = 0 -3:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) -3:7/0/physics_layer_0/angular_velocity = 0.0 3:7/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 4:7/0 = 0 -4:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) -4:7/0/physics_layer_0/angular_velocity = 0.0 4:7/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 6:7/0 = 0 -6:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) -6:7/0/physics_layer_0/angular_velocity = 0.0 7:7/0 = 0 -7:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) -7:7/0/physics_layer_0/angular_velocity = 0.0 8:7/0 = 0 -8:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) -8:7/0/physics_layer_0/angular_velocity = 0.0 9:7/0 = 0 -9:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:7/0/physics_layer_0/angular_velocity = 0.0 10:7/0 = 0 -10:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) -10:7/0/physics_layer_0/angular_velocity = 0.0 11:7/0 = 0 -11:7/0/physics_layer_0/linear_velocity = Vector2(0, 0) -11:7/0/physics_layer_0/angular_velocity = 0.0 0:8/0 = 0 -0:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:8/0/physics_layer_0/angular_velocity = 0.0 0:8/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 1:8/0 = 0 -1:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:8/0/physics_layer_0/angular_velocity = 0.0 1:8/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 2:8/0 = 0 -2:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:8/0/physics_layer_0/angular_velocity = 0.0 2:8/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 3:8/0 = 0 -3:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) -3:8/0/physics_layer_0/angular_velocity = 0.0 3:8/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 4:8/0 = 0 -4:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) -4:8/0/physics_layer_0/angular_velocity = 0.0 4:8/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 6:8/0 = 0 -6:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) -6:8/0/physics_layer_0/angular_velocity = 0.0 7:8/0 = 0 -7:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) -7:8/0/physics_layer_0/angular_velocity = 0.0 8:8/0 = 0 -8:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) -8:8/0/physics_layer_0/angular_velocity = 0.0 9:8/0 = 0 -9:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:8/0/physics_layer_0/angular_velocity = 0.0 10:8/0 = 0 -10:8/0/physics_layer_0/linear_velocity = Vector2(0, 0) -10:8/0/physics_layer_0/angular_velocity = 0.0 0:9/0 = 0 -0:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:9/0/physics_layer_0/angular_velocity = 0.0 1:9/0 = 0 -1:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:9/0/physics_layer_0/angular_velocity = 0.0 2:9/0 = 0 -2:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:9/0/physics_layer_0/angular_velocity = 0.0 3:9/0 = 0 -3:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) -3:9/0/physics_layer_0/angular_velocity = 0.0 4:9/0 = 0 -4:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) -4:9/0/physics_layer_0/angular_velocity = 0.0 6:9/0 = 0 -6:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) -6:9/0/physics_layer_0/angular_velocity = 0.0 7:9/0 = 0 -7:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) -7:9/0/physics_layer_0/angular_velocity = 0.0 8:9/0 = 0 -8:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) -8:9/0/physics_layer_0/angular_velocity = 0.0 9:9/0 = 0 -9:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:9/0/physics_layer_0/angular_velocity = 0.0 10:9/0 = 0 -10:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) -10:9/0/physics_layer_0/angular_velocity = 0.0 11:9/0 = 0 -11:9/0/physics_layer_0/linear_velocity = Vector2(0, 0) -11:9/0/physics_layer_0/angular_velocity = 0.0 1:10/0 = 0 -1:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:10/0/physics_layer_0/angular_velocity = 0.0 1:10/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 2:10/0 = 0 -2:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:10/0/physics_layer_0/angular_velocity = 0.0 2:10/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 3:10/0 = 0 -3:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) -3:10/0/physics_layer_0/angular_velocity = 0.0 4:10/0 = 0 -4:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) -4:10/0/physics_layer_0/angular_velocity = 0.0 5:10/0 = 0 -5:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) -5:10/0/physics_layer_0/angular_velocity = 0.0 6:10/0 = 0 -6:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) -6:10/0/physics_layer_0/angular_velocity = 0.0 7:10/0 = 0 -7:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) -7:10/0/physics_layer_0/angular_velocity = 0.0 8:10/0 = 0 -8:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) -8:10/0/physics_layer_0/angular_velocity = 0.0 9:10/0 = 0 -9:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:10/0/physics_layer_0/angular_velocity = 0.0 10:10/0 = 0 -10:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) -10:10/0/physics_layer_0/angular_velocity = 0.0 11:10/0 = 0 -11:10/0/physics_layer_0/linear_velocity = Vector2(0, 0) -11:10/0/physics_layer_0/angular_velocity = 0.0 0:11/0 = 0 -0:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:11/0/physics_layer_0/angular_velocity = 0.0 0:11/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 1:11/0 = 0 1:11/0/terrain_set = 0 1:11/0/terrain = 0 -1:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:11/0/physics_layer_0/angular_velocity = 0.0 1:11/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 1:11/0/terrains_peering_bit/top_side = 0 2:11/0 = 0 -2:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -2:11/0/physics_layer_0/angular_velocity = 0.0 2:11/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 3:11/0 = 0 -3:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -3:11/0/physics_layer_0/angular_velocity = 0.0 4:11/0 = 0 -4:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -4:11/0/physics_layer_0/angular_velocity = 0.0 5:11/0 = 0 -5:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -5:11/0/physics_layer_0/angular_velocity = 0.0 6:11/0 = 0 6:11/0/terrain_set = 0 6:11/0/terrain = 1 -6:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -6:11/0/physics_layer_0/angular_velocity = 0.0 6:11/0/terrains_peering_bit/bottom_side = 1 6:11/0/terrains_peering_bit/left_side = 1 7:11/0 = 0 7:11/0/terrain_set = 0 7:11/0/terrain = 1 -7:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -7:11/0/physics_layer_0/angular_velocity = 0.0 7:11/0/terrains_peering_bit/right_side = 1 7:11/0/terrains_peering_bit/bottom_side = 1 8:11/0 = 0 8:11/0/terrain_set = 0 8:11/0/terrain = 1 -8:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -8:11/0/physics_layer_0/angular_velocity = 0.0 8:11/0/terrains_peering_bit/right_side = 1 8:11/0/terrains_peering_bit/left_side = 1 9:11/0 = 0 9:11/0/terrain_set = 0 9:11/0/terrain = 1 -9:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -9:11/0/physics_layer_0/angular_velocity = 0.0 9:11/0/terrains_peering_bit/right_side = 1 9:11/0/terrains_peering_bit/top_side = 1 10:11/0 = 0 10:11/0/terrain_set = 0 10:11/0/terrain = 1 -10:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -10:11/0/physics_layer_0/angular_velocity = 0.0 10:11/0/terrains_peering_bit/bottom_side = 1 10:11/0/terrains_peering_bit/top_side = 1 11:11/0 = 0 11:11/0/terrain_set = 0 11:11/0/terrain = 1 -11:11/0/physics_layer_0/linear_velocity = Vector2(0, 0) -11:11/0/physics_layer_0/angular_velocity = 0.0 11:11/0/terrains_peering_bit/left_side = 1 11:11/0/terrains_peering_bit/top_side = 1 diff --git a/levels/rooms/invisible_walls.gd b/levels/rooms/invisible_walls.gd index 961bf5e..c6b97c7 100644 --- a/levels/rooms/invisible_walls.gd +++ b/levels/rooms/invisible_walls.gd @@ -1,5 +1,5 @@ extends TileMap -func _ready(): +func _ready() -> void: visible = false diff --git a/levels/rooms/room_a.tscn b/levels/rooms/room_a.tscn index 444bf07..839c0a6 100644 --- a/levels/rooms/room_a.tscn +++ b/levels/rooms/room_a.tscn @@ -1,14 +1,15 @@ -[gd_scene load_steps=2 format=3 uid="uid://dq3p4x4do28l6"] +[gd_scene load_steps=2 format=3 uid="uid://cu2rb5dl4ljte"] -[ext_resource type="PackedScene" uid="uid://bupkynq73ufaa" path="res://levels/base_room.tscn" id="1"] +[ext_resource type="PackedScene" uid="uid://bupkynq73ufaa" path="res://levels/base_room.tscn" id="1_plgur"] -[node name="RoomA" instance=ExtResource("1")] +[node name="RoomA" instance=ExtResource("1_plgur")] rotation = -0.00114604 [node name="Floor" parent="." index="0"] -layer_0/tile_data = PackedInt32Array(65537, 393221, 6, 65538, 393221, 7, 65539, 393221, 7, 196610, 393221, 7, 131073, 393221, 7, 262146, 393221, 7, 327680, 393221, 6, 393216, 393221, 7, 458752, 589829, 7, 458762, 393221, 7, 393226, 393221, 7, 327690, 393221, 7, 262154, 393221, 7, 196618, 393221, 7, 131082, 393221, 7, 65546, 524293, 6, 8, 524293, 6, 7, 393221, 7, 6, 393221, 7, 5, 393221, 6, 65540, 393221, 7, 65545, 524293, 8, 327681, 393221, 7, 393223, 393221, 7, 327687, 393221, 7, 262151, 393221, 9, 196615, 393221, 7, 131079, 393221, 7, 65543, 393221, 7, 65542, 393221, 7, 65541, 393221, 7, 131077, 393221, 8, 131076, 393221, 7, 131075, 393221, 7, 131074, 393221, 7, 196611, 393221, 7, 262147, 393221, 7, 327683, 524293, 9, 327682, 393221, 7, 393218, 393221, 7, 393217, 393221, 7, 458753, 393221, 7, 458754, 393221, 7, 458755, 393221, 7, 393219, 393221, 7, 393220, 393221, 7, 327684, 393221, 7, 262148, 393221, 7, 196612, 393221, 7, 196613, 393221, 7, 262149, 393221, 7, 327685, 393221, 7, 393221, 458757, 9, 458757, 458757, 9, 458756, 393221, 7, 458758, 458757, 9, 393222, 458757, 9, 327686, 393221, 7, 262150, 393221, 7, 196614, 393221, 7, 131078, 393221, 7, 458759, 393221, 7, 458760, 393221, 7, 393224, 393221, 7, 327688, 393221, 7, 262152, 458757, 9, 196616, 458757, 9, 131080, 393221, 7, 65544, 393221, 7, 131081, 393221, 7, 196617, 458757, 9, 262153, 458757, 9, 327689, 393221, 7, 393225, 393221, 7, 458761, 393221, 7, 196609, 589829, 7, 524289, 589829, 7, 524290, 393221, 7, 589826, 589829, 7, 524291, 393221, 7, 524292, 393221, 7, 589828, 655365, 9, 524293, 393221, 9, 589829, 655365, 9, 524294, 393221, 7, 589830, 655365, 9, 524295, 393221, 7, 589831, 655365, 9, 524296, 393221, 7, 589832, 655365, 10, 524297, 524293, 8, 589833, 655365, 9, 524298, 393221, 7, 589834, 720901, 7, 589827, 589829, 8) +rendering_quadrant_size = 64 +layer_0/tile_data = PackedInt32Array(327680, 393221, 6, 393216, 393221, 7, 458752, 589829, 7, 65537, 393221, 6, 131073, 393221, 7, 196609, 589829, 7, 327681, 393221, 7, 393217, 393221, 7, 458753, 393221, 7, 524289, 589829, 7, 65538, 393221, 7, 131074, 393221, 7, 196610, 393221, 7, 262146, 393221, 7, 327682, 393221, 7, 393218, 393221, 7, 458754, 393221, 7, 524290, 393221, 7, 589826, 589829, 7, 65539, 393221, 7, 131075, 393221, 7, 196611, 393221, 7, 262147, 393221, 7, 327683, 524293, 9, 393219, 393221, 7, 458755, 393221, 7, 524291, 393221, 7, 589827, 589829, 8, 65540, 393221, 7, 131076, 393221, 7, 196612, 393221, 7, 262148, 393221, 7, 327684, 393221, 7, 393220, 393221, 7, 458756, 393221, 7, 524292, 393221, 7, 589828, 655365, 9, 5, 393221, 6, 65541, 393221, 7, 131077, 393221, 8, 196613, 393221, 7, 262149, 393221, 7, 327685, 393221, 7, 393221, 458757, 9, 458757, 458757, 9, 524293, 393221, 9, 589829, 655365, 9, 6, 393221, 7, 65542, 393221, 7, 131078, 393221, 7, 196614, 393221, 7, 262150, 393221, 7, 327686, 393221, 7, 393222, 458757, 9, 458758, 458757, 9, 524294, 393221, 7, 589830, 655365, 9, 7, 393221, 7, 65543, 393221, 7, 131079, 393221, 7, 196615, 393221, 7, 262151, 393221, 9, 327687, 393221, 7, 393223, 393221, 7, 458759, 393221, 7, 524295, 393221, 7, 589831, 655365, 9, 8, 524293, 6, 65544, 393221, 7, 131080, 393221, 7, 196616, 458757, 9, 262152, 458757, 9, 327688, 393221, 7, 393224, 393221, 7, 458760, 393221, 7, 524296, 393221, 7, 589832, 655365, 10, 65545, 524293, 8, 131081, 393221, 7, 196617, 458757, 9, 262153, 458757, 9, 327689, 393221, 7, 393225, 393221, 7, 458761, 393221, 7, 524297, 524293, 8, 589833, 655365, 9, 65546, 524293, 6, 131082, 393221, 7, 196618, 393221, 7, 262154, 393221, 7, 327690, 393221, 7, 393226, 393221, 7, 458762, 393221, 7, 524298, 393221, 7, 589834, 720901, 7) layer_1/tile_data = PackedInt32Array(589829, 655365, 4, 589830, 655365, 4, 589831, 720901, 4, 589828, 589829, 4, 524295, 458757, 2, 524294, 458757, 2, 524293, 458757, 2, 458757, 458757, 2, 458756, 458757, 2, 458755, 458757, 2, 458754, 655365, 2, 393218, 458757, 2, 393219, 589829, 3, 393221, 458757, 2, 458758, 458757, 2, 393217, 458757, 2, 458753, 458757, 2, 524289, 589829, 5, 458752, 589829, 5, 393216, 655365, 3, 524290, 458757, 3, 524291, 458757, 3, 524292, 458757, 2, 393222, 458757, 2, 327686, 458757, 2, 262150, 458757, 2, 196615, 458757, 2, 327683, 524293, 1, 327682, 458757, 1, 327681, 458757, 1, 262149, 458757, 2, 196614, 458757, 2, 131078, 458757, 2, 131079, 458757, 2, 131080, 524293, 2, 196616, 524293, 2, 196613, 458757, 1, 65542, 458757, 1, 65543, 458757, 1, 65544, 524293, 1, 262152, 524293, 3, 327687, 524293, 3, 262151, 589829, 1, 458759, 458757, 1, 327685, 458757, 2, 393220, 720901, 3, 196612, 393221, 1, 262148, 393221, 2, 327684, 393221, 2) layer_2/tile_data = PackedInt32Array(262145, 262149, 5, 262146, 5, 4, 262147, 327685, 4, 393221, 262149, 5, 393222, 5, 4, 393223, 196613, 6, 393224, 327685, 5, 65546, 327685, 5, 65545, 5, 6, 65544, 131077, 7, 65543, 262149, 5) [node name="InvisibleWalls" parent="." index="1"] -layer_0/tile_data = PackedInt32Array(-65532, 0, 0, -65531, 0, 0, -65530, 0, 0, -65529, 0, 0, -65528, 0, 0, -65527, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 3, 0, 0, 4, 0, 0, 9, 0, 0, 10, 0, 0, 11, 0, 0, 65536, 0, 0, 65547, 0, 0, 131072, 0, 0, 131083, 0, 0, 196608, 0, 0, 196609, 65536, 0, 196619, 0, 0, 327679, 0, 0, 262144, 0, 0, 262145, 0, 0, 393215, 0, 0, 327691, 0, 0, 458751, 0, 0, 393227, 0, 0, 524287, 0, 0, 458752, 65536, 0, 458763, 0, 0, 524288, 0, 0, 524289, 65536, 0, 524299, 0, 0, 589825, 0, 0, 589826, 65536, 0, 589827, 65536, 0, 589828, 65536, 0, 589829, 65536, 0, 589830, 65536, 0, 589832, 65536, 0, 589833, 65536, 0, 589834, 65536, 0, 589835, 0, 0, 589824, 0, 0, 655361, 0, 0, 655362, 0, 0, 655363, 0, 0, 655371, 0, 0, 655370, 0, 0, 655369, 0, 0, 655368, 0, 0, 655366, 0, 0, 655365, 0, 0, 655364, 0, 0, 589831, 65536, 0, 655367, 0, 0) +layer_0/tile_data = PackedInt32Array(-65532, 0, 0, -65529, 0, 0, -65528, 0, 0, -65527, 0, 0, 11, 0, 0, 65547, 0, 0, 131083, 0, 0, 196619, 0, 0, 327691, 0, 0, 458751, 0, 0, 524287, 0, 0, 524299, 0, 0, 589835, 0, 0, 655371, 0, 0, 393215, 0, 0, 327679, 0, 0, -65531, 0, 0, -65530, 0, 0, 393227, 0, 0, 458763, 0, 0, 655361, 0, 0, 655362, 0, 0, 655363, 0, 0, 655364, 0, 0, 655365, 0, 0, 655366, 0, 0, 655367, 0, 0, 655368, 0, 0, 655369, 0, 0, 655370, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 3, 0, 0, 4, 0, 0, 9, 0, 0, 10, 0, 0, 65536, 0, 0, 131072, 0, 0, 196608, 0, 0, 196609, 65536, 0, 262144, 0, 0, 262145, 0, 0, 458752, 65536, 0, 524288, 0, 0, 524289, 65536, 0, 589825, 0, 0, 589826, 65536, 0, 589827, 65536, 0, 589828, 65536, 0, 589829, 65536, 0, 589830, 65536, 0, 589832, 65536, 0, 589833, 65536, 0, 589834, 65536, 0, 589824, 0, 0, 589831, 65536, 0) diff --git a/levels/rooms/tileset_invisible_walls.tres b/levels/rooms/tileset_invisible_walls.tres index 72d72a7..7ac64e7 100644 --- a/levels/rooms/tileset_invisible_walls.tres +++ b/levels/rooms/tileset_invisible_walls.tres @@ -7,12 +7,8 @@ texture = ExtResource("1") texture_region_size = Vector2i(128, 128) 0:0/next_alternative_id = 8 0:0/0 = 0 -0:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) -0:0/0/physics_layer_0/angular_velocity = 0.0 0:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, -64, 64, -64, 64, 64, -64, 64) 1:0/0 = 0 -1:0/0/physics_layer_0/linear_velocity = Vector2(0, 0) -1:0/0/physics_layer_0/angular_velocity = 0.0 1:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-64, 0, 64, 0, 64, 64, -64, 64) [resource] diff --git a/locale/ja.po b/locale/ja.po new file mode 100644 index 0000000..bea324b --- /dev/null +++ b/locale/ja.po @@ -0,0 +1,470 @@ +# LANGUAGE translation for M2. Getting to Know Godot (Interactive Tours) for the following files: +# res://tours/102_assemble_your_first_game/102_assemble_your_first_game.gd +# res://addons/godot_tours/tour.gd +# res://tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +# +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: M2. Getting to Know Godot (Interactive Tours)\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.4.4\n" + +#: tours/102_assemble_your_first_game/102_assemble_your_first_game.gd +msgid "Open the start scene" +msgstr "startシーンを開く" + +#: tours/102_assemble_your_first_game/102_assemble_your_first_game.gd +msgid "Let's start by opening the scene we will be working with." +msgstr "それではこれから作業するシーンを開きましょう。" + +#: tours/102_assemble_your_first_game/102_assemble_your_first_game.gd +msgid "" +"In the [b]FileSystem Dock[/b] at the bottom-left, find and [b]double-click[/" +"b] on the scene we will be working with: [b]%s[/b]." +msgstr "" +"左下の[b]ファイルシステムドック[/b]から、これから作業する[b]%s[/b]シーンを見" +"つけて[b]ダブルクリック[/b]します。" + +#: tours/102_assemble_your_first_game/102_assemble_your_first_game.gd +msgid "Open the scene [b]%s[/b]." +msgstr "[b]%s[/b]シーンを開いてください。" + +#: addons/godot_tours/tour.gd +msgid "Press the [b]%s[/b] button." +msgstr "[b]%s[/b]ボタンを押してください。" + +#: addons/godot_tours/tour.gd +msgid "Turn the [b]%s[/b] button %s." +msgstr "[b]%s[/b]ボタンを%sしてください。" + +#: addons/godot_tours/tour.gd +msgid "Change to the [b]%s[/b] tab." +msgstr "タブを[b]%s[/b]に変更してください。" + +#: addons/godot_tours/tour.gd +msgid "Select the %s %s in the [b]Scene Dock[/b]." +msgstr "[b]シーンドック[/b]で%s %sを選択してください。" + +#: addons/godot_tours/tour.gd +msgid "Set [b]%s[/b] to [code]%s[/code]" +msgstr "[b]%s[/b]を[code]%s[/code]に設定してください。" + +#: addons/godot_tours/tour.gd +msgid "Set [b]%s[/b]'s [b]%s[/b] property to [b]%s[/b]" +msgstr "[b]%s[/b]の[b]%s[/b]プロパティを[b]%s[/b] に設定してください" + +#: addons/godot_tours/tour.gd +msgid "Open the scene [b]%s[/b]" +msgstr "[b]%s[/b]シーンを開いてください" + +#: addons/godot_tours/tour.gd +msgid "Expand the property [b]%s[/b] in the [b]Inspector[/b]" +msgstr "[b]Inspector[/b]のプロパティ[b]%s[/b]を展開してください" + +#: addons/godot_tours/tour.gd +msgid "Move [b]%s[/b] inside the guide box" +msgstr "ガイドボックスの内側に[b]%s[/b]を移動してください" + +#: addons/godot_tours/tour.gd +msgid "Instantiate the [b]%s[/b] scene as a child of [b]%s[/b]" +msgstr "[b]%s[/b] シーンを [b]%s[/b] の子としてインスタンス化してください" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Add Bridges" +msgstr "橋を追加する" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Let's draw bridges to connect the rooms using a [b]TileMap[/b] next." +msgstr "次に[b]TileMap[/b]を使って部屋と部屋をつなぐ橋を描いてみましょう。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Tilesets and Tilemaps" +msgstr "タイルセットとタイルマップ" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"As soon as you selected [b]Bridges[/b], a bottom panel expanded and two tabs " +"appeared: [b]TileSet[/b] and [b]TileMap[/b]." +msgstr "" +"[b]Bridges[/b]を選択するとすぐに下のパネルが展開し、[b]TileSet[/b]と" +"[b]TileMap[/b]の2つのタブが現れます。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "It's because [b]Bridges[/b] is a [b]TileMap[/b] node." +msgstr "[b]Bridges[/b]は[b]タイルマップ[/b]ノードだからです." + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Godot will automatically show you the relevant tabs for the selected node." +msgstr "Godotは選択されたノードに関連するタブを自動的に表示します。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"That's why we say the [b]Bottom Panels[/b] are \"[b]contextual[/b]\". They " +"appear in the right context." +msgstr "" +"それによって[b]下部のパネル[/b]は「[b]コンテキストに応じた内容[/b]」が表示さ" +"れます。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "The TileMap Tab" +msgstr "タイルマップタブ" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "For drawing bridges, we will use the [b]TileMap[/b] tab." +msgstr "橋を描くには[b]TileMap[/b]を使います。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Tilemaps are an efficient way to draw game levels using a grid and [b]tiling " +"images[/b]." +msgstr "" +"タイルマップは、グリッドと[b]タイル画像[/b]を使ってゲームレベルを描画できる効" +"率的な方法です。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Most of your childhood 2D games used tilemaps (like Final Fantasy 6 and " +"Zelda: Link's Awakening)!" +msgstr "" +"皆さんが子供の頃に遊んだ2Dゲームのほとんどはタイルマップを使っていました!\n" +"(例えばファイナルファンタジーⅥやゼルダの伝説 夢をみる島など)" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Tile Selection" +msgstr "タイル選択" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"To the right of the panel, you can see the different tile images we have at " +"our disposal." +msgstr "パネルの右側には、自由に使えるさまざまなタイル画像が表示されています。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"You can select them one at a time and draw on the map, but there is a faster " +"way: using [b]Terrains[/b]." +msgstr "" +"一度に1つずつ選択してマップに描くこともできますが、[b]地形[/b]を使ったより速" +"く描く方法もあります。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "The Terrains Tab" +msgstr "地形タブ" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Terrains are a set of rules to create compositions for auto-tiling. They " +"help us draw faster." +msgstr "" +"地形は自動タイル描画のための構成を作るためのルールセットです。より速く描画す" +"るのに役立ちます。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "You'll learn more about creating terrains later in the course." +msgstr "地形の作成については、コースの後半で詳しく学びます。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Click on the [b]Terrains[/b] tab to find the terrain we've set up for the " +"bridges." +msgstr "" +"[b]地形[/b]タブをクリックして、橋のために設定した地形を見つけましょう。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "The Bridge Terrain" +msgstr "橋の地形" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Next, click the terrain named [b]Bridge[/b] in the tree on the left to " +"select it." +msgstr "" +"次に左側のツリーにある[b]Bridge[/b]という名前の地形をクリックして選択しましょ" +"う。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select the [b]Bridge[/b] terrain." +msgstr "[b]Bridge[/b]地形を選択します。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "The Path Drawing Mode" +msgstr "パスモード" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Now, click on the Path-like icon to select the [b]Path Drawing Mode[/b]." +msgstr "" +"次にパスのようなアイコンをクリックして[b]パスモード[/b]に切り替えます。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "With this tool active, you can draw your bridges." +msgstr "このモードを有効にすると橋を描くことができます。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select the [b]Path Drawing Mode[/b]." +msgstr "[b]パスモード[/b]を選択します。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Restore the Select mode" +msgstr "選択モードに戻す" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"As we are currently in the [b]Move Mode[/b], we cannot draw the bridges. To " +"draw, we need to be in the [b]Select Mode[/b]." +msgstr "" +"現在は[b]移動モード[/b]のため、橋を描くことができません。\n" +"描画するために[b]選択モード[/b]に変更する必要があります。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Click the [b]Select Mode[/b] button to activate it." +msgstr "[b]選択モード[/b]ボタンをクリックして有効化しましょう。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select Mode" +msgstr "選択モード" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Draw The Bridges" +msgstr "橋を描く" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgctxt "[b]Right-click[/b] to erase bridges." +msgid "[b]Left Click and drag[/b] on the map to draw bridges between rooms." +msgstr "" +"マップ上で[b]左クリック&ドラッグ[/b]すると、部屋と部屋の間に橋をかけることが" +"できます。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Try to connect the openings in the rooms. The openings are located where " +"there are red crosses around the perimeter of the room." +msgstr "" +"部屋の開口部をつなげてみてください。開口部は、部屋の周囲に赤いバッテンがある" +"場所にあります。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "You are free to draw the bridges however you like." +msgstr "あなたの思うがままに自由に橋を描いてみましょう。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Reconnecting bridges" +msgstr "橋の再接続" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"If you lift the mouse button when drawing bridges, you may see gaps like " +"this:" +msgstr "" +"ブリッジを描画するときにマウスボタンを離すと、次のようなギャップが表示される" +"場合があります:" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"To correct that and get clean corners, click and drag over the already drawn " +"tiles." +msgstr "" +"これを修正してきれいな角を作るには、すでに描かれているタイルの上をクリック&" +"ドラッグしましょう。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"This allows the tilemap's terrain to apply its rules and clean up the bridge " +"for you. That's the power of terrains!" +msgstr "" +"この操作によりタイルマップの地形がそのルールを適用し、あなたのために橋をきれ" +"いにすることができます。これが地形の力です!" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Excellent! Time to play!" +msgstr "素晴らしい!早速遊んでみましょう!" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Let's see if everything works as expected." +msgstr "全てが期待通りに機能するか確認してみましょう。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"The [b]Play[/b] button we used earlier is for running the [b]%s[/b] scene." +msgstr "" +"先ほど使った[b]プロジェクトを実行[/b]ボタンは、[b]%s[/b]シーンを実行するため" +"のものです。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"To play the [b]current[/b] scene, click the [b]Play Edited Scene[/b] button " +"to run the scene." +msgstr "" +"[b]現在のシーン[/b]を再生するには、[b]現在のシーンを実行[/b]ボタンをクリック" +"してシーンを実行します。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Alternatively, you can press press [b]%s[/b] on your keyboard." +msgstr "または、キーボードの[b]%s[/b]を押すこともできます。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Then, press [b]%s[/b] or close the game window to stop the game." +msgstr "次に[b]%s[/b]を押すか、ゲームウィンドウを閉じてゲームを停止します。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "The missing \"walls\"" +msgstr "見えない壁" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"While playing, did you notice something strange? The player can move outside " +"of the bridges!" +msgstr "" +"遊んでいる時に不思議なことに気づきましたか?そう、プレイヤーは橋の外側を移動" +"できるんです!" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"This is because the bridges lack [b]collision shapes[/b]. They are invisible " +"geometric shapes that control where characters can move." +msgstr "" +"その理由は橋に[b]コリジョン領域[/b]が無いからです。\n" +"コリジョン領域は目に見えない幾何学的な領域で、キャラクターが移動できる場所を" +"制限できます。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"What you see on screen and the physical limits of the world are two separate " +"layers." +msgstr "" +"スクリーンから見えるものと、ゲーム世界の物理的な制限は別のレイヤーなのです。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Our bridges currently lack this invisible layer. We'll add it next." +msgstr "" +"現在、あなたが作った橋にはこの見えないレイヤーがないので追加しましょう。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select the InvisibleWalls node" +msgstr "InvisibleWallsノードを選択します" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Did you notice the red crosses around the rooms? They are collision shapes " +"we pre-added to the rooms to give them \"walls\", or limits." +msgstr "" +"部屋の周りに赤いバッテンがあるのに気づきましたか?\n" +"これは部屋に「壁」、つまり移動を制限するためにあらかじめ追加したコリジョン領" +"域です。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "We can draw them using the [b]InvisibleWalls[/b] tilemap." +msgstr "[b]InvisibleWalls[/b]タイルマップを使って描くことができます。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Let's add \"walls\" to prevent players from walking outside of the bridges." +msgstr "プレイヤーが橋の外を歩けないように「壁」を追加しましょう。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select the Tiles tab" +msgstr "タイルタブを選択する" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"In the [b]TileMap[/b] bottom panel, we need to find and select the red cross." +msgstr "" +"下部のタイルマップパネルで、赤いバッテンを見つけて選択する必要があります。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Since we were previously looking at the [b]Terrains[/b] tab, we need to " +"switch back to the [b]Tiles[/b] tab first, where the red cross is." +msgstr "" +"この前まで[b]地形[/b]タブを見ていたので、赤いバッテンのある[b]タイル[/b]タブ" +"に戻る必要があります。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Draw the invisible walls" +msgstr "見えない壁を描く" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select the big [b]red cross[/b] in the [b]TileMap[/b] bottom panel." +msgstr "" +"[b]タイルマップ[/b]の下部パネルで大きな[b]赤いバッテン[/b]を選択します。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Then, [b]Left Click and drag[/b] around bridges in the viewport to draw red " +"cross tiles. They will prevent the player from moving off the bridges." +msgstr "" +"次に[b]左クリックしてドラッグ[/b]し、ビューポートの橋の周りに赤いバッテンのタ" +"イルを描きます。\n" +"このタイルはプレイヤーが橋の上から移動できないようにします。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"If you make a mistake, you can use the [b]Right Click[/b] to remove tiles." +msgstr "間違えたら、[b]右クリック[/b]でタイルを削除しましょう。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Take your time and draw the invisible walls around all bridges. Once you're " +"done, click the [b]Next[/b] button" +msgstr "" +"時間をかけて全ての橋の周りに見えない壁を描いてください。\n" +"描き終わったら[b]次へ[/b]ボタンをクリックします" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Let's try this!" +msgstr "試してみよう!" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"If you run the scene, you should see the player can't walk anywhere you drew " +"a red cross." +msgstr "" +"シーンを実行すると、赤いバッテンを引いたところはプレイヤーが歩けないのがわか" +"るはずです。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"Click the [b]Play Edited Scene[/b] button in the top-right or press [b]%s[/" +"b] to run the scene." +msgstr "" +"右上の[b]現在のシーンを実行[/b]ボタンをクリックするか、[b]%s[/b]を押してシー" +"ンを実行します。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Press [b]%s[/b] to close the game window once you're done." +msgstr "完了したら、[b]%s[/b]を押してゲームウィンドウを閉じます。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Play Edited Scene" +msgstr "現在のシーンを実行" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Excellent!" +msgstr "素晴らしい!" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"You learned to use tilemaps to draw bridges and add collision shapes that " +"prevent the player from walking outside of the bridges." +msgstr "" +"タイルマップを使用して橋を描画し、プレイヤーが橋の外を歩けないようにするコリ" +"ジョン領域を追加する方法を学びました。" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "" +"In the next part, you'll make the level feel fuller by adding a sky and a " +"health bar." +msgstr "" +"次のパートでは、青空とHPバーを追加して、レベルをより充実感のあるものに変えて" +"いきます。" diff --git a/locale/locale.pot b/locale/locale.pot new file mode 100644 index 0000000..55742cf --- /dev/null +++ b/locale/locale.pot @@ -0,0 +1,343 @@ +# LANGUAGE translation for M2. Getting to Know Godot (Interactive Tours) for the following files: +# res://tours/102_assemble_your_first_game/102_assemble_your_first_game.gd +# res://addons/godot_tours/tour.gd +# res://tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +# +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: M2. Getting to Know Godot (Interactive Tours)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8-bit\n" + +#: tours/102_assemble_your_first_game/102_assemble_your_first_game.gd +msgid "Open the start scene" +msgstr "" + +#: tours/102_assemble_your_first_game/102_assemble_your_first_game.gd +msgid "Let's start by opening the scene we will be working with." +msgstr "" + +#: tours/102_assemble_your_first_game/102_assemble_your_first_game.gd +msgid "In the [b]FileSystem Dock[/b] at the bottom-left, find and [b]double-click[/b] on the scene we will be working with: [b]%s[/b]." +msgstr "" + +#: tours/102_assemble_your_first_game/102_assemble_your_first_game.gd +msgid "Open the scene [b]%s[/b]." +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Press the [b]%s[/b] button." +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Turn the [b]%s[/b] button %s." +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Change to the [b]%s[/b] tab." +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Select the %s %s in the [b]Scene Dock[/b]." +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Set [b]%s[/b] to [code]%s[/code]" +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Set [b]%s[/b]'s [b]%s[/b] property to [b]%s[/b]" +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Open the scene [b]%s[/b]" +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Expand the property [b]%s[/b] in the [b]Inspector[/b]" +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Move [b]%s[/b] inside the guide box" +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Instantiate the [b]%s[/b] scene as a child of [b]%s[/b]" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Add Bridges" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Let's draw bridges to connect the rooms using a [b]TileMap[/b] next." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Tilesets and Tilemaps" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "As soon as you selected [b]Bridges[/b], a bottom panel expanded and two tabs appeared: [b]TileSet[/b] and [b]TileMap[/b]." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "It's because [b]Bridges[/b] is a [b]TileMap[/b] node." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Godot will automatically show you the relevant tabs for the selected node." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "That's why we say the [b]Bottom Panels[/b] are \"[b]contextual[/b]\". They appear in the right context." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "The TileMap Tab" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "For drawing bridges, we will use the [b]TileMap[/b] tab." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Tilemaps are an efficient way to draw game levels using a grid and [b]tiling images[/b]." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Most of your childhood 2D games used tilemaps (like Final Fantasy 6 and Zelda: Link's Awakening)!" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Tile Selection" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "To the right of the panel, you can see the different tile images we have at our disposal." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "You can select them one at a time and draw on the map, but there is a faster way: using [b]Terrains[/b]." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "The Terrains Tab" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Terrains are a set of rules to create compositions for auto-tiling. They help us draw faster." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "You'll learn more about creating terrains later in the course." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Click on the [b]Terrains[/b] tab to find the terrain we've set up for the bridges." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "The Bridge Terrain" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Next, click the terrain named [b]Bridge[/b] in the tree on the left to select it." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select the [b]Bridge[/b] terrain." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "The Path Drawing Mode" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Now, click on the Path-like icon to select the [b]Path Drawing Mode[/b]." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "With this tool active, you can draw your bridges." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select the [b]Path Drawing Mode[/b]." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Restore the Select mode" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "As we are currently in the [b]Move Mode[/b], we cannot draw the bridges. To draw, we need to be in the [b]Select Mode[/b]." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Click the [b]Select Mode[/b] button to activate it." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select Mode" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Draw The Bridges" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgctxt "[b]Right-click[/b] to erase bridges." +msgid "[b]Left Click and drag[/b] on the map to draw bridges between rooms." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Try to connect the openings in the rooms. The openings are located where there are red crosses around the perimeter of the room." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "You are free to draw the bridges however you like." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Reconnecting bridges" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "If you lift the mouse button when drawing bridges, you may see gaps like this:" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "To correct that and get clean corners, click and drag over the already drawn tiles." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "This allows the tilemap's terrain to apply its rules and clean up the bridge for you. That's the power of terrains!" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Excellent! Time to play!" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Let's see if everything works as expected." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "The [b]Play[/b] button we used earlier is for running the [b]%s[/b] scene." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "To play the [b]current[/b] scene, click the [b]Play Edited Scene[/b] button to run the scene." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Alternatively, you can press press [b]%s[/b] on your keyboard." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Then, press [b]%s[/b] or close the game window to stop the game." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "The missing \"walls\"" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "While playing, did you notice something strange? The player can move outside of the bridges!" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "This is because the bridges lack [b]collision shapes[/b]. They are invisible geometric shapes that control where characters can move." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "What you see on screen and the physical limits of the world are two separate layers." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Our bridges currently lack this invisible layer. We'll add it next." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select the InvisibleWalls node" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Did you notice the red crosses around the rooms? They are collision shapes we pre-added to the rooms to give them \"walls\", or limits." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "We can draw them using the [b]InvisibleWalls[/b] tilemap." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Let's add \"walls\" to prevent players from walking outside of the bridges." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select the Tiles tab" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "In the [b]TileMap[/b] bottom panel, we need to find and select the red cross." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Since we were previously looking at the [b]Terrains[/b] tab, we need to switch back to the [b]Tiles[/b] tab first, where the red cross is." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Draw the invisible walls" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Select the big [b]red cross[/b] in the [b]TileMap[/b] bottom panel." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Then, [b]Left Click and drag[/b] around bridges in the viewport to draw red cross tiles. They will prevent the player from moving off the bridges." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "If you make a mistake, you can use the [b]Right Click[/b] to remove tiles." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Take your time and draw the invisible walls around all bridges. Once you're done, click the [b]Next[/b] button" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Let's try this!" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "If you run the scene, you should see the player can't walk anywhere you drew a red cross." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Click the [b]Play Edited Scene[/b] button in the top-right or press [b]%s[/b] to run the scene." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Press [b]%s[/b] to close the game window once you're done." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Play Edited Scene" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "Excellent!" +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "You learned to use tilemaps to draw bridges and add collision shapes that prevent the player from walking outside of the bridges." +msgstr "" + +#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd +msgid "In the next part, you'll make the level feel fuller by adding a sky and a health bar." +msgstr "" diff --git a/pickups/pickup.gd b/pickups/pickup.gd index 52217f9..62389e9 100644 --- a/pickups/pickup.gd +++ b/pickups/pickup.gd @@ -1,6 +1,7 @@ class_name Pickup extends Area2D +@warning_ignore("unused_private_class_variable") @onready var _audio := $AudioStreamPlayer2D as AudioStreamPlayer2D @onready var _animation_player := $AnimationPlayer as AnimationPlayer diff --git a/player/godot_armor.gd b/player/godot_armor.gd index c43812c..73ce167 100644 --- a/player/godot_armor.gd +++ b/player/godot_armor.gd @@ -16,8 +16,8 @@ var look_direction := Vector2.RIGHT func _process(_delta: float) -> void: var input_vector := Vector2( - float(Input.is_action_pressed("ui_right")) - float(Input.is_action_pressed("ui_left")), - float(Input.is_action_pressed("ui_down")) - float(Input.is_action_pressed("ui_up")) + float(Input.is_action_pressed("move_right")) - float(Input.is_action_pressed("move_left")), + float(Input.is_action_pressed("move_down")) - float(Input.is_action_pressed("move_up")) ) if input_vector.length() > 0.0 and input_vector != look_direction: diff --git a/player/player.gd b/player/player.gd index 9af05ef..1586adb 100644 --- a/player/player.gd +++ b/player/player.gd @@ -46,7 +46,6 @@ func _physics_process(_delta: float) -> void: velocity += steering / drag_factor set_velocity(velocity) move_and_slide() - velocity = velocity func take_damage(amount: int) -> void: diff --git a/plug.gd b/plug.gd old mode 100755 new mode 100644 index fbf894a..b52290a --- a/plug.gd +++ b/plug.gd @@ -3,7 +3,4 @@ extends "res://addons/gd-plug/plug.gd" func _plugging() -> void: - plug( - "git@github.com:GDQuest/godot-tours.git", - {include = ["addons/godot_tours"]} - ) + plug("git@github.com:GDQuest/godot-tours.git", {include = ["addons/godot_tours"]}) diff --git a/project.godot b/project.godot index 387129e..f403437 100644 --- a/project.godot +++ b/project.godot @@ -10,9 +10,9 @@ config_version=5 [application] -config/name="Godot Tour 101: The Godot Editor (GDQuest)" +config/name="M2. Get to Know Godot (Interactive Tours)" run/main_scene="res://completed_project.tscn" -config/features=PackedStringArray("4.2") +config/features=PackedStringArray("4.3") config/icon="res://icon.png" [autoload] @@ -43,67 +43,67 @@ import/blender/enabled=false ui_select={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":32,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":32,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":3,"pressure":0.0,"pressed":false,"script":null) , Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":1,"canceled":false,"pressed":false,"double_click":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":90,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":88,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194326,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":90,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":88,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194326,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) ] } ui_left={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194319,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194319,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":13,"pressure":0.0,"pressed":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":65,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":65,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) ] } ui_right={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194321,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194321,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":14,"pressure":0.0,"pressed":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":68,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":68,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) ] } ui_up={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194320,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194320,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":11,"pressure":0.0,"pressed":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":87,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":87,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) ] } ui_down={ "deadzone": 0.5, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194322,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194322,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":12,"pressure":0.0,"pressed":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":83,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":83,"physical_keycode":0,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) ] } move_left={ "deadzone": 0.2, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":65,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194319,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"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":0,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194319,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) , Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":0,"axis_value":-1.0,"script":null) ] } move_right={ "deadzone": 0.2, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":68,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194321,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"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":0,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194321,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) , Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":0,"axis_value":1.0,"script":null) ] } move_up={ "deadzone": 0.2, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":87,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194320,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"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":0,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194320,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) , Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":1,"axis_value":-1.0,"script":null) ] } move_down={ "deadzone": 0.2, -"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":83,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194322,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"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":0,"location":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194322,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) , Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":1,"axis_value":1.0,"script":null) ] } @@ -111,7 +111,7 @@ shoot={ "deadzone": 0.5, "events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":0,"axis":5,"axis_value":1.0,"script":null) , Object(InputEventMouseButton,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"button_mask":0,"position":Vector2(0, 0),"global_position":Vector2(0, 0),"factor":1.0,"button_index":1,"canceled":false,"pressed":false,"double_click":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":4194326,"physical_keycode":0,"key_label":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194326,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) ] } cycle_weapon_up={ @@ -147,6 +147,10 @@ aim_down={ ] } +[internationalization] + +locale/translations_pot_files=PackedStringArray("res://addons/godot_tours/tour.gd", "res://tours/godot-first-tour/godot_first_tour.gd", "res://tours/learn-gamedev-from-zero/assemble_path_of_sorcerers.gd") + [layer_names] 2d_physics/layer_1="Player" diff --git a/spells/bullets/fireball.gd b/spells/bullets/fireball.gd index 182ca9a..9c0eb51 100644 --- a/spells/bullets/fireball.gd +++ b/spells/bullets/fireball.gd @@ -1,6 +1,7 @@ extends Bullet @onready var _animation_player := $AnimationPlayer as AnimationPlayer +@warning_ignore("unused_private_class_variable") @onready var _particles := $GPUParticles2D as GPUParticles2D diff --git a/spells/spell.gd b/spells/spell.gd index e87ec5a..eccd5a6 100644 --- a/spells/spell.gd +++ b/spells/spell.gd @@ -12,6 +12,7 @@ extends Node2D var _audio := AudioStreamPlayer2D.new() +@warning_ignore("unused_private_class_variable") @onready var _random_angle := deg_to_rad(random_angle_degrees) diff --git a/start.tscn b/start.tscn index 93e0139..a52c430 100644 --- a/start.tscn +++ b/start.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=4 format=3 uid="uid://dfrp0km2xjcr6"] [ext_resource type="Script" path="res://game.gd" id="2"] -[ext_resource type="TileSet" path="res://levels/rooms/tileset_bridges.tres" id="2_vnf5n"] +[ext_resource type="TileSet" uid="uid://crkgfdw1y80hc" path="res://levels/rooms/tileset_bridges.tres" id="2_vnf5n"] [ext_resource type="TileSet" uid="uid://cqb2wtrubw0n6" path="res://levels/rooms/tileset_invisible_walls.tres" id="3"] [node name="Start" type="Node2D"] @@ -11,8 +11,10 @@ script = ExtResource("2") tile_set = ExtResource("2_vnf5n") format = 2 layer_0/name = "Bridges" +metadata/_edit_lock_ = true [node name="InvisibleWalls" type="TileMap" parent="."] tile_set = ExtResource("3") format = 2 layer_0/name = "Invisible walls" +metadata/_edit_lock_ = true diff --git a/tours/godot-first-tour/assets/bubble-background.png b/tours/godot-first-tour/assets/bubble-background.png deleted file mode 100644 index e4e9f88..0000000 Binary files a/tours/godot-first-tour/assets/bubble-background.png and /dev/null differ diff --git a/tours/godot-first-tour/assets/gdquest-logo.png b/tours/godot-first-tour/assets/gdquest-logo.png deleted file mode 100644 index a9409e8..0000000 Binary files a/tours/godot-first-tour/assets/gdquest-logo.png and /dev/null differ diff --git a/tours/godot-first-tour/godot_first_tour.gd b/tours/godot-first-tour/godot_first_tour.gd index f7e88a0..8595e22 100644 --- a/tours/godot-first-tour/godot_first_tour.gd +++ b/tours/godot-first-tour/godot_first_tour.gd @@ -75,7 +75,7 @@ func steps_010_intro() -> void: bubble_set_background(TEXTURE_BUBBLE_BACKGROUND) bubble_add_texture(TEXTURE_GDQUEST_LOGO) bubble_set_title("") - bubble_add_text([bbcode_wrap_font_size("[center][b]Welcome to Godot[/b][/center]", 32)]) + bubble_add_text([bbcode_wrap_font_size(gtr("[center][b]Welcome to Godot[/b][/center]"), 32)]) bubble_add_text( [gtr("[center]In this tour, you take your first steps in the [b]Godot editor[/b].[/center]"), gtr("[center]You get an overview of the engine's four pillars: [b]Scenes[/b], [b]Nodes[/b], [b]Scripts[/b], and [b]Signals[/b].[/center]"), @@ -96,7 +96,7 @@ func steps_010_intro() -> void: bubble_add_text( [gtr("When a project is first opened in Godot, we land on the [b]Main Scene[/b]. It is the entry point of a Godot game."), gtr("Click the play icon in the top right of the editor to run the Godot project."), - gtr("Then, press [b]F8[/b] on your keyboard or close the game window to stop the game."),] + gtr("Then, press [b]%s[/b] on your keyboard or close the game window to stop the game.") % shortcuts.stop] ) complete_step() @@ -121,7 +121,7 @@ func steps_020_first_look() -> void: bubble_set_avatar_at(Bubble.AvatarAt.LEFT) bubble_set_title(gtr("The viewport")) bubble_add_text( - [gtr("The central part of the editor outlined in blue is the viewport. It's a view of the currently open [b]scene[/b]."),] + [gtr("The central part of the editor outlined in purple is the viewport. It's a view of the currently open [b]scene[/b]."),] ) complete_step() diff --git a/tours/godot-first-tour/locale/ja.po b/tours/godot-first-tour/locale/ja.po index 00eb137..3f1e70d 100644 --- a/tours/godot-first-tour/locale/ja.po +++ b/tours/godot-first-tour/locale/ja.po @@ -1,21 +1,6 @@ # LANGUAGE translation for M2. Getting to Know Godot (Interactive Tours) for the following files: -# res://addons/gdquest_welcome_tour/tours/learn-gamedev-from-zero/tour.gd -# res://addons/gdquest_welcome_tour/tours/welcome/welcome.gd -# res://addons/gdquest_welcome_tour/tours/godot-first-tour/godot_first_tour.gd -# res://addons/gdquest_welcome_tour/tours/learn-gamedev-from-zero/assemble_path_of_sorcerers.gd -# res://addons/gdquest_welcome_tour/tours/test/debug_and_tests.gd -# res://addons/godot_tours/tours/godot-first-tour/godot_first_tour.gd -# res://addons/godot_tours/tours/learn-gamedev-from-zero/assemble_path_of_sorcerers.gd -# res://addons/godot_tours/tours/test/debug_and_tests.gd -# res://tours/learn-gamedev-from-zero/assemble_path_of_sorcerers_1.gd -# res://tours/learn-gamedev-from-zero/assemble_path_of_sorcerers_2.gd # res://addons/godot_tours/tour.gd # res://tours/godot-first-tour/godot_first_tour.gd -# res://tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -# res://tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -# res://tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -# res://tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -# res://tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd # # FIRST AUTHOR , YEAR. # @@ -31,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.4.4\n" #: addons/godot_tours/tour.gd msgid "Press the [b]%s[/b] button." @@ -39,18 +24,50 @@ msgstr "[b]%s[/b]ボタンを押してください。" #: addons/godot_tours/tour.gd msgid "Turn the [b]%s[/b] button %s." -msgstr "[b]%s[/b]ボタンを押してください。" +msgstr "[b]%s[/b]ボタンを%sしてください。" #: addons/godot_tours/tour.gd msgid "Change to the [b]%s[/b] tab." -msgstr "tabを[b]%s[/b]に変更します。" +msgstr "タブを[b]%s[/b]に変更してください。" + +#: addons/godot_tours/tour.gd +msgid "Select the %s %s in the [b]Scene Dock[/b]." +msgstr "[b]シーンドック[/b]で%s %sを選択してください。" + +#: addons/godot_tours/tour.gd +msgid "Set [b]%s[/b] to [code]%s[/code]" +msgstr "[b]%s[/b]を[code]%s[/code]に設定してください。" + +#: addons/godot_tours/tour.gd +msgid "Set [b]%s[/b]'s [b]%s[/b] property to [b]%s[/b]" +msgstr "[b]%s[/b]の[b]%s[/b]プロパティを[b]%s[/b] に設定してください" + +#: addons/godot_tours/tour.gd +msgid "Open the scene [b]%s[/b]" +msgstr "[b]%s[/b]シーンを開いてください" + +#: addons/godot_tours/tour.gd +msgid "Expand the property [b]%s[/b] in the [b]Inspector[/b]" +msgstr "[b]Inspector[/b]のプロパティ[b]%s[/b]を展開してください" + +#: addons/godot_tours/tour.gd +msgid "Move [b]%s[/b] inside the guide box" +msgstr "ガイドボックスの内側に[b]%s[/b]を移動してください" + +#: addons/godot_tours/tour.gd +msgid "Instantiate the [b]%s[/b] scene as a child of [b]%s[/b]" +msgstr "[b]%s[/b] シーンを [b]%s[/b] の子としてインスタンス化してください" + +#: tours/godot-first-tour/godot_first_tour.gd +msgid "[center][b]Welcome to Godot[/b][/center]" +msgstr "[center][b]Godot へようこそ![/b][/center]" #: tours/godot-first-tour/godot_first_tour.gd msgid "" "[center]In this tour, you take your first steps in the [b]Godot editor[/b].[/" "center]" msgstr "" -"[center]このツアーでは、[b]Godot editor[/b]の初めの一歩を踏み出します。[/" +"[center]このツアーでは[b]Godot editor[/b]の初めの一歩を踏み出します。[/" "center]" #: tours/godot-first-tour/godot_first_tour.gd @@ -94,11 +111,11 @@ msgstr "" #: tours/godot-first-tour/godot_first_tour.gd msgid "" -"Then, press [b]F8[/b] on your keyboard or close the game window to stop the " +"Then, press [b]%s[/b] on your keyboard or close the game window to stop the " "game." msgstr "" -"その後はキーボードの[b]F8[/b]を押すか、ゲームウィンドウを閉じるとゲームを終了" -"できます。" +"次に、キーボードの[b]%s[/b]を押すか、ゲームウィンドウを閉じてゲームを停止しま" +"す。" #: tours/godot-first-tour/godot_first_tour.gd msgid "Editor tour" @@ -114,10 +131,10 @@ msgstr "viewport" #: tours/godot-first-tour/godot_first_tour.gd msgid "" -"The central part of the editor outlined in blue is the viewport. It's a view " +"The central part of the editor outlined in purple is the viewport. It's a view " "of the currently open [b]scene[/b]." msgstr "" -"青く塗られたエディターの中心部分がviewportです。これは現在開いている[b]シーン" +"紫色で塗られたエディターの中心部分がviewportです。これは現在開いている[b]シーン" "[/b]の眺めになります。" #: tours/godot-first-tour/godot_first_tour.gd @@ -129,8 +146,8 @@ msgid "" "In Godot, a scene is a template that can represent anything: A character, a " "chest, an entire level, a menu, or even a complete game!" msgstr "" -"Godotではシーンはテンプレートであり、キャラクター・チェスト・レベル全体・メ" -"ニュー・ゲーム全体など、あらゆるものを表すことができます!" +"Godotでは、シーンはテンプレートであり、キャラクター・チェスト・レベル全体・メ" +"ニュー・あるいはゲーム全体など、あらゆるものを表すことができます!" #: tours/godot-first-tour/godot_first_tour.gd msgid "" @@ -460,7 +477,7 @@ msgid "" "viewport." msgstr "" "完成したプロジェクトシーンに戻りましょう。まずエディター上部の2Dワークスペー" -"スをクリックして、センタービューをビューポートに戻します。" +"スをクリックして、中央の画面をviewportに戻します。" #: tours/godot-first-tour/godot_first_tour.gd msgid "This will show you the player character once again." @@ -476,15 +493,15 @@ msgstr "アクティブシーンの変更" #: tours/godot-first-tour/godot_first_tour.gd msgid "Let's change the active scene to the completed project scene." -msgstr "アクティブシーン完成したプロジェクトのシーンに変更してみましょう。" +msgstr "アクティブシーンをcompleted_projectシーンに変更してみましょう。" #: tours/godot-first-tour/godot_first_tour.gd msgid "" "Click on the [b]completed_project[/b] tab above the central viewport to " "change the scene." msgstr "" -"中央のビューポートの上にある[b]completed_project[/b]タブをクリックして、シー" -"ンを変更します。" +"中央画面の上にある[b]completed_project[/b]タブをクリックして、シーンを変更し" +"ます。" #: tours/godot-first-tour/godot_first_tour.gd msgid "Navigate to the Completed Project scene." @@ -546,7 +563,6 @@ msgstr "" "ドック[/b]を開きましょう。" #: tours/godot-first-tour/godot_first_tour.gd -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd msgid "The Node Dock" msgstr "ノードドック" @@ -586,7 +602,7 @@ msgstr "" #: tours/godot-first-tour/godot_first_tour.gd msgid "The signal connection" -msgstr "シグナル接続" +msgstr "シグナルを接続する" #: tours/godot-first-tour/godot_first_tour.gd msgid "" @@ -600,8 +616,7 @@ msgid "" "It means that each time the player health changes, Godot will run the " "connected piece of code." msgstr "" -"これはプレイヤーの体力が変化するたびに、ゴドーは接続されたコードを実行しま" -"す。" +"これはプレイヤーの体力が変化するたびに、Godotは接続されたコードを実行します。" #: tours/godot-first-tour/godot_first_tour.gd msgid "" @@ -678,16 +693,13 @@ msgid "" "Move the player character to an enemy and touch them to lose health. You " "will see the health bar lose one point." msgstr "" -"Playerを敵に近づけ、触れるとダメージを受けます。その時HPバーが1ポイント減るで" -"しょう。" +"プレイヤーキャラクターが敵に当たるとHPが減ります。HPバーが1ポイント減ること。" #: tours/godot-first-tour/godot_first_tour.gd msgid "This happens thanks to the [b]health_changed[/b] signal connection." msgstr "これは[b]health_changed[/b]シグナル接続のおかげで起きています。" #: tours/godot-first-tour/godot_first_tour.gd -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd msgid "In summary" msgstr "まとめ" @@ -696,7 +708,7 @@ msgid "" "Godot has four essential concepts on which your games rely: scenes, nodes, " "scripts, and signals." msgstr "" -"Godotには、シーン、ノード、スクリプト、シグナルという、ゲームが依存する4つの" +"Godotには、シーン・ノード・スクリプト・シグナルという・ゲームが依存する4つの" "基本概念があります。" #: tours/godot-first-tour/godot_first_tour.gd @@ -738,1738 +750,4 @@ msgstr "初のGodot Tourおめでとう!" #: tours/godot-first-tour/godot_first_tour.gd msgid "" "[center]Next, we'll practice and learn more by assembling a game[/center]" -msgstr "[center]次はゲームを実際に組み立てて、さらに学んでいきます。[/center]" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -#, fuzzy -msgid "Assemble your first game" -msgstr "初めてのゲーム組み立て" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "In this tour, you get to assemble your first game from premade parts." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "You will put what you learned in the previous tour into practice." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"You'll select and move nodes, create scene instances, use Godot's tilemap " -"editor, and more." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -#, fuzzy -msgid "Let's get started!" -msgstr "早速はじめましょう!" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Let's make a little game" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"By the end of this tutorial, you'll have a little playable game like this " -"one." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"In this first part, you'll learn how to instantiate scenes, move entities, " -"and draw bridges between rooms using a tilemap." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"You can try it right now: click the play icon in the top right of the editor " -"to run the Godot project." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Then, press [b]F8[/b] or close the game window to stop the game." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Let's head to the starter scene and assemble the game." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Open the start scene" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"In the [b]FileSystem Dock[/b] at the bottom-left, find and [b]double-click[/" -"b] on the scene we will be working with: [b]\" + SCENE_START.get_file() + " -"\"[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Open the scene [b]%s[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -#, fuzzy -msgid "Start" -msgstr "はじめる" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add Player Scene" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Now let's add a playable character to the scene! Drag and drop the player " -"from the [b]FileSystem Dock[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add the [b]Player Scene[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Great job!" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Remember [b]a scene is a template[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"By dragging the [b]Player Scene[/b] into the viewport in the center, you " -"created a copy of the player template in the start scene." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"You can see in the [b]Scene Dock[/b] that there is now an [b]instance[/b] of " -"the player scene in the start scene." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Flesh out the environment" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"We're lacking an environment for players to explore. Let's add a couple of " -"rooms next." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "We've prepared rooms for you to place in the level." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Snap to grid" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "To place the rooms accurately, we will use grid snapping." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"You can toggle the grid on and off by clicking the [b]Grid[/b] button at the " -"top (but keep it on!)." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Change grid size" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "The grid is too small. Let's make it bigger." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Click the the three vertical dots in the toolbar to access the grid settings." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Then, click [b]Configure Snap...[/b], and change [b]Grid Step[/b] to " -"[b]128px[/b] by [b]128px[/b]. Then, click [b]Ok[/b] to confirm." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "How to zoom in and out" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Before adding rooms, let's learn to zoom and pan the view. You'll likely " -"need to zoom out to place the rooms comfortably." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "To zoom in and out, use your [b]Mouse Wheel[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "On touch displays and supported touchpads, you can pinch two fingers." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Give it a try!" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Using the zoom buttons" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Alternatively, you can click the [b]Zoom In[/b] button " -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid " and [b]Zoom Out[/b] " -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid " button in the top-left of the viewport to zoom in and out." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "How to pan the view" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "To pan the view, click and drag using the [b]Middle Mouse Button[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"If you don't have a mouse wheel, press the [b]Spacebar[/b] and click and " -"drag with the [b]Left Mouse Button[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"And if you're using a touchpad, you can keep the [b]Ctrl[/b] key down and " -"slide two fingers over your touchpad." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add Rooms" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Now, you can start placing rooms!" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Drag and drop one of each room type (a, b, and c) from the [b]FileSystem " -"Dock[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Place them so that the rooms do not overlap, and keep some space between " -"them, as we'll connect the rooms with bridges later." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Use the [b]Middle Mouse Button[/b] to pan the view if you need to." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Use the [b]Mouse Wheel[/b] to zoom in and out." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Don't worry if their position isn't perfect: we'll learn to move the rooms " -"next." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add [b]RoomA[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add [b]RoomB[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add [b]RoomC[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Your game now has 3 rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Did you notice how rooms snap to the grid?" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Next, let's learn to select and move the rooms directly in the viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Move the rooms" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"To move a node, like the rooms, you first need to [b]select[/b] it. You can " -"use the [b]Select Mode[/b] for that." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Ensure that the [b]Select Mode[/b] is active in the toolbar at the top." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Its icon looks like a mouse cursor. If it's active, the icon will be blue." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"The select tool is active by default when you create a new project in Godot." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Select a room" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "With the [b]Select Mode[/b] active, you can now select the rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"To select a room, in the viewport, click on the room's little grey cross \" " -"+ bbcode_generate_icon_image_string(ICONS_MAP.node_position_unselected) + " -"gtr(\" with the [b]Left Mouse Button[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Once you've selected a room, the cross will turn orange \" + " -"bbcode_generate_icon_image_string(ICONS_MAP.node_position_selected) + " -"gtr(\"." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "You can visually select any node that has a cross in the viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Select one of the [b]Room[/b] nodes." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Move with the select mode" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Click and drag [b]on the cross[/b] to move the node. Try to move the rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"If you need to pan the view, move the mouse while pressing the [b]Middle " -"Mouse Button[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Alternatively, you can press down the [b]Spacebar[/b] and click and drag on " -"the view with the [b]Left Mouse Button[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Excellent!" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Take a moment to move the rooms around and arrange them to your liking." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Try to make the openings between rooms align a bit. It will make it easier " -"to add bridges between them later." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Also, try to keep some space between the rooms so you can add bridges " -"between them later." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Once you're happy with the layout, move on to the next step." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Moving the player to the first room" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Next, we'll move the player inside [b]RoomA[/b] so that when running the " -"game, the player starts in the room." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"We'll take this opportunity to learn another useful way of selecting and " -"moving nodes." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Find RoomA" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"To find [b]RoomA[/b], we'll use the [b]Scene Dock[/b] and the viewport in " -"the center." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Click each of the room nodes and pay attention to the crosses in the " -"viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Each cross \" + bbcode_generate_icon_image_string(ICONS_MAP." -"node_position_unselected) + \" represents the position of one room. When " -"you select a room, its cross turns orange: \" + " -"bbcode_generate_icon_image_string(ICONS_MAP.node_position_selected) + \"." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Click on [b]RoomA[/b] to select it and find the room's location." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Select the Player" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"Let's select the player node to move it next. Click on [b]Player[/b] node in " -"the [b]Scene Dock[/b] to select it." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Move the Player" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "To move a node, you can use the [b]Move Mode[/b] " -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid " in the toolbar. Click the move tool to activate it." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"With the move tool selected, click and drag anywhere on the viewport until " -"the player is inside of [b]RoomA[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Move the [b]Player[/b] inside of [b]RoomA[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"You created several scene instances and learned to select and move them in " -"the viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "" -"In the next part, you'll learn how to use the TileMap editor and Terrains to " -"draw bridges that connect the rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -#, fuzzy -msgid "Add Bridges" -msgstr "橋を追加する" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Let's draw bridges to connect the rooms using a [b]TileMap[/b] next." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Tilesets and Tilemaps" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"As soon as you selected [b]Bridges[/b], a bottom panel expanded and two tabs " -"appeared: [b]TileSet[/b] and [b]TileMap[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "It's because [b]Bridges[/b] is a [b]TileMap[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Godot will automatically show you the relevant tabs for the selected node." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"That's why we say the [b]Bottom Panels[/b] are \\\"[b]contextual[/b]\\\". " -"They appear in the right context." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The TileMap Tab" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "For drawing bridges, we will use the [b]TileMap[/b] tab." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Tilemaps are an efficient way to draw game levels using a grid and [b]tiling " -"images[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Most of your childhood 2D games used tilemaps (like Final Fantasy 6 and " -"Zelda: Link's Awakening)!" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Tile Selection" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"To the right of the panel, you can see the different tile images we have at " -"our disposal." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"You can select them one at a time and draw on the map, but there is a faster " -"way: using [b]Terrains[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The Terrains Tab" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Terrains are a set of rules to create compositions for auto-tiling. They " -"help us draw faster." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "You'll learn more about creating terrains later in the course." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Click on the [b]Terrains[/b] tab to find the terrain we've set up for the " -"bridges." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The Bridge Terrain" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Next, click the terrain named [b]Bridge[/b] in the tree on the left to " -"select it." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Select the [b]Bridge[/b] terrain." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The Path Drawing Mode" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Now, click on the Path-like icon to select the [b]Path Drawing Mode[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "With this tool active, you can draw your bridges." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Select the [b]Path Drawing Mode[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Restore the Select mode" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"As we are currently in the [b]Move Mode[/b], we cannot draw the bridges. To " -"draw, we need to be in the [b]Select Mode[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Click the [b]Select Mode[/b] button to activate it." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Draw The Bridges" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgctxt "[b]Right-click[/b] to erase bridges." -msgid "[b]Left Click and drag[/b] on the map to draw bridges between rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Try to connect the openings in the rooms. The openings are located where " -"there are red crosses around the perimeter of the room." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "You are free to draw the bridges however you like." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Reconnecting bridges" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"If you lift the mouse button when drawing bridges, you may see gaps like " -"this:" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"To correct that and get clean corners, click and drag over the already drawn " -"tiles." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"This allows the tilemap's terrain to apply its rules and clean up the bridge " -"for you. That's the power of terrains!" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Excellent! Time to play!" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Let's see if everything works as expected." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The [b]Play[/b] button we used earlier is for running the [b]" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"To play the [b]current[/b] scene, click the [b]Play Edited Scene[/b] button " -"to run the scene." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Alternatively, you can press press [b]F6[/b] on your keyboard." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The missing \\\"walls\\" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"While playing, did you notice something strange? The player can move outside " -"of the bridges!" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"This is because the bridges lack [b]collision shapes[/b]. They are invisible " -"geometric shapes that control where characters can move." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"What you see on screen and the physical limits of the world are two separate " -"layers." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Our bridges currently lack this invisible layer. We'll add it next." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Select the InvisibleWalls node" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Did you notice the red crosses around the rooms? They are collision shapes " -"we pre-added to the rooms to give them \\\"walls\\\", or limits." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "We can draw them using the [b]InvisibleWalls[/b] tilemap." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Let's add \\\"walls\\\" to prevent players from walking outside of the " -"bridges." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Select the Tiles tab" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"In the [b]TileMap[/b] bottom panel, we need to find and select the red cross." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Since we were previously looking at the [b]Terrains[/b] tab, we need to " -"switch back to the [b]Tiles[/b] tab first, where the red cross is." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Draw the invisible walls" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Select the big [b]red cross[/b] in the [b]TileMap[/b] bottom panel." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Then, [b]Left Click and drag[/b] around bridges in the viewport to draw red " -"cross tiles. They will prevent the player from moving off the bridges." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"If you make a mistake, you can use the [b]Right Click[/b] to remove tiles." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Take your time and draw the invisible walls around all bridges. Once you're " -"done, click the [b]Next[/b] button" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Let's try this!" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"If you run the scene, you should see the player can't walk anywhere you drew " -"a red cross." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"Click the [b]Play Edited Scene[/b] button in the top-right or press [b]F6[/" -"b] to run the scene." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Press [b]F8[/b] to close the game window once you're done." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"You learned to use tilemaps to draw bridges and add collision shapes that " -"prevent the player from walking outside of the bridges." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "" -"In the next part, you'll make the level feel fuller by adding a sky and a " -"health bar." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Fleshing out the game" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"You will usually start creating a game with the character and level " -"structure, then flesh out the background and add user interface." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"We have the playable character and level, so we'll add a sky and health bar " -"next." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The background is a dull flat color. Let's start with the sky." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Re-select the Start node" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"We usually add background elements as children of the scene root node to " -"keep the scene organized." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "In this case, the scene root node is the [b]Start[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Click on the [b]Start[/b] node in the [b]Scene Dock[/b] to re-select it." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Add the sky scene" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Drag and drop the [b]\" + SCENE_BACKGROUND_SKY.get_file() + \"[/b] file onto " -"the viewport to create an instance of it." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"This will add the sky to the game as a child of the selected [b]Start[/b] " -"node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Add the [b]Background Blue Sky Scene[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Perfect!" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Run the game to see how the sky always fills up the background and improves " -"the experience." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"A game's feel improves with all the little things you add: background, " -"animations, sounds, special effects..." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Click the [b]Play Edited Scene[/b] button to run the scene." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Adding user interface" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Our next task is to add a health bar to see when the character takes damage." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Until now, we've only created scene instances. This time, we will also " -"create a node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The CanvasLayer node" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"When we add visual elements to the game, by default, they don't move with " -"the player." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"For the user interface, we want it to move with the player so it always " -"stays on screen." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"We can use a [b]CanvasLayer node[/b] for this. By default, it keeps visuals " -"we add as a child of it on screen at all times." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Let's add a CanvasLayer node to the scene so that our user interface moves " -"with the player." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Select the Start node" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"We want to add the [b]CanvasLayer[/b] node as a child of the [b]Start[/b] " -"node, [b]not[/b] as a child of the currently selected [b]BackgroundBlueSky[/" -"b], to keep our scene hierarchy organized." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Click on the [b]Start[/b] node in the [b]Scene Dock[/b] to select it." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The Create Node dialog" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"To add a node, click on the plus icon in the top-left of the [b]Scene Dock[/" -"b], or press [b]Ctrl A[/b] on your keyboard (Cmd A on macOS)." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"This will open a popup window listing all the types of nodes built into " -"Godot." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Godot's built-in nodes" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "This popup window is the [b]Create Node[/b] dialog." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "It lists over 100 node types Godot provides out of the box!" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Each has a specific purpose, like displaying an image, playing a sound, or " -"letting you draw with a tilemap." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Add the CanvasLayer node" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "We need to add a [b]CanvasLayer node[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Click the search bar at the top to select it and search the node list. It's " -"the fastest way to find nodes." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"In the central panel of the popup window, click on the [b]CanvasLayer[/b] " -"node to select it." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Then, click the [b]Create[/b] button at the bottom of the window to add the " -"node (or press the [b]Enter[/b] key on your keyboard)." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Create the [b]CanvasLayer[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"You just created your first node. Godot automatically selects a newly " -"created node for you, so that you can immediately change its properties in " -"the Inspector on the right." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Let's add the health bar next." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Add the health bar" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"To stay on screen at all times, the health bar must be a child of the " -"[b]CanvasLayer[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Drag and drop the [b]\" + SCENE_HEALTH_BAR.get_file() + \"[/b] scene onto " -"the [b]CanvasLayer[/b] node in the [b]Scene Dock[/b] to create an instance " -"of it." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Dragging the scene onto a node in the [b]Scene Dock[/b] creates the instance " -"as a child of the node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Add the [b]Health Bar Scene[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The screen area" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"We need to ensure that the health bar is positioned correctly to be visible " -"on-screen." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"In the viewport, four thin lines are forming a rectangle. They represent the " -"extent of the game window, the window that opens when you run the game." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"The four lines can be difficult to spot as they're thin. Look at the " -"flashing area in the viewport. It highlights this window extent area." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Any user interface you want to keep on-screen in the game should be placed " -"inside this rectangle." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Place the health bar on-screen" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Let's learn a third way to move an element: using the [b]Inspector[/b] and " -"typing coordinates manually." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"We currently have the [b]UIHealthBar[/b] node selected in the [b]Scene[/b] " -"dock." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"On the right, in the [b]Inspector Dock[/b], in the section [b]Layout -> " -"Transform[/b], you can find the [b]Position[/b] property." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Earlier, when you moved and placed rooms around the viewport with the select " -"and move modes, you changed the [b]Position[/b] property of individual rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The position property" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"The Position property has two coordinates: the [b]x[/b] coordinate controls " -"the [b]horizontal[/b] position of the health bar, and the [b]y[/b] " -"coordinate controls its [b]vertical[/b] position." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Click the number of each coordinate to edit it. Type a new number and press " -"[b]Enter[/b] on your keyboard to confirm the new value." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Change the x coordinate to 60, and the y coordinate to 60 as well. This will " -"place the health bar in the top-left corner of the game window when playing." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Set the [b]x Position[/b] property of the [b]UIHealthBar[/b] to [b]60px[/b] " -"(pixels)." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Set the [b]y Position[/b] property of the [b]UIHealthBar[/b] to [b]60px[/b] " -"(pixels)." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "You know what time it is? Yes, let's run the scene!" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Click the [b]Play Current Scene[/b] button and pay attention to how the " -"health bar stays on screen as your progress through the level." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"Also, try to go touch an enemy and pay attention to what happens to the " -"health bar." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"You added a background and a health bar to the game. Most importantly, you " -"learned to create a node and add the health bar as a child of it to make the " -"user interface stay on screen." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "" -"In the next part, you'll use signals to connect the health bar to the " -"player's health." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Updating the health bar" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"We have a problem. When we hit an enemy, the character loses one health " -"point, but this is not reflected in the health bar." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"This is because the [b]UIHealthBar[/b] node is [b]not connected[/b] to " -"changes in the [b]Player[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"Godot comes with a handy feature to react to changes in a node, like the " -"player's health changing: [b]signals[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"In this project, when the player takes damage, the [b]Player[/b] node " -"[b]emits[/b] a signal called [b]health_changed[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"We need to [b]connect[/b] this signal to the [b]UIHealthBar[/b] node to " -"update the health bar." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Select the player node" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"To see and connect the signals of a node, we first need to select that node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "So once again, select the [b]Player[/b] node in the [b]Scene Dock[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"Next to the [b]Inspector[/b] dock on the right lives the [b]Node dock[/b]. " -"The node dock lists the selected node's signals." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"The node dock is located in its own tab next to the tab of the [b]Inspector[/" -"b] dock." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Click on the [b]Node[/b] tab in the top-right to select the Node dock." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -#, fuzzy -msgid "All the signals" -msgstr "" -"右側には[b]ノードドック[/b]があります。選択されたノードのすべてのシグナルが表" -"示されます。この場合、[b]Player[/b]ノードです。" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"As you can see, the player node has many signals. Most of them come built " -"into Godot." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Throughout the course, you will learn to use the most useful ones." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "At the top of the list, notice the [b]health_changed[/b] signal." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Connect the health_changed signal" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Let's connect the signal." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"Double-click the [b]health_changed[/b] signal to open the window [b]Connect " -"a Signal to a Method[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Double-click the [b]health_changed[/b] signal " -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "The connect signal window" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"This window on the left is the [b]Connect a Signal to a Method[/b] window. " -"It lists all the nodes in your scene." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"Many nodes are greyed out. This is because we can only connect signals to a " -"node that has a code file \" + bbcode_generate_icon_image_string(ICONS_MAP." -"script) + \" attached to it, like the [b]UIHealthBar[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "The called function" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"At the bottom of the window, Godot lets us pick a \\\"Receiver Method\\\"." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"This is a piece of code that Godot will run when the player node emits the " -"[b]health_changed[/b] signal." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "We can keep the default value." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"You will learn more about what a [b]method[/b] (also called a function) is " -"in the next module, where we'll learn to write code." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Connect the signal" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "To connect the signal, double-click on the [b]UIHealthBar[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"You may need to scroll down the list to find it. You can do so using the " -"[b]Mouse Wheel[/b] or by clicking and dragging on the scrollbar on the right." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"This will immediately take you to the code file attached to the UI health " -"bar node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Double-click on the [b]UIHealthBar[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"You are now looking at the code file attached to the [b]UIHealthBar[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"Don't worry if the code doesn't make sense yet. You will learn to read and " -"write code throughout the course." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "The connected function" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"Your signal is now connected to the function named " -"[b]_on_player_health_changed[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"Godot indicates the connection with the green icon \" + " -"bbcode_generate_icon_image_string(ICONS_MAP.script_signal_connected) + \" " -"in the margin on the left." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Time to play!" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Click the [b]Play Current Scene[/b] button and go fight some baddies." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"When you touch an enemy and lose health, the health bar should now update " -"accordingly." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"In this part, you learned where to find the list of signals a node emits and " -"how to connect a signal to a function. Thanks to this, the player can now " -"see their health decreasing when they take damage." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "" -"In the next and last part, you will add a chest to one of the room scenes " -"and write your first line of code to complete the game." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Changing RoomA" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"We added several scene instances to the [b]Start[/b] scene: the [b]Player[/" -"b], the [b]UIHealthBar[/b], the [b]BackgroundBlueSky[/b], and the rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"We can open and modify any of those scenes. Any changes we make to the scene " -"source files in the [b]FileSystem[/b] dock will be reflected in their " -"instances." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"The opposite is not true: Changes we make to a specific instance of a scene " -"applies to that instance only." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Open the RoomA scene" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Let's give this a try. Open the [b]RoomA[/b] scene." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Double-click the file [b]\" + room_a_filename + \"[/b] in the [b]FileSystem " -"dock[/b] in the bottom-left to open the scene." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The RoomA scene" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "We're now inside the room's scene." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Anything we add here will be reflected in the [b]Start[/b] scene when we " -"play the game." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -#, fuzzy -msgid "The chest" -msgstr "102.e: 拾えるジェムを生成する宝箱を追加する" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"In the project, we prepared a chest scene for you: [b]\" + " -"scene_chest_filename + \"[/b]. You can see it in the [b]FileSystem Dock[/b] " -"in the bottom-left." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Drag and drop the [b]\" + scene_chest_filename + \"[/b] file onto the " -"viewport to create an instance of it, and place it inside of the room." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Add the [b]Chest Scene[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Place the [b]Chest Scene[/b] inside of the room." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Save the scene" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Press [b]Ctrl+S[/b] on your keyboard (Cmd+S on macOS) to save the [b]RoomA[/" -"b] scene." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "This will save your change and update the [b]Start[/b] scene." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Head back to the start scene" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Let's now head back to the [b]Start[/b] scene where you can see the chest." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Click on the scene tab that says \" + SCENE_START.get_file() + \" above the " -"viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Click the [b]Start[/b] scene tab." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Click the [b]Play Current Scene[/b] button to run the scene and move the " -"player near the chest." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "What do you observe?" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Press [b]F8[/b] on your keyboard or close the game window to return to the " -"editor." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Your first line of code" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Currently, when we approach the chest, it opens, and nothing comes out of " -"it. That's because we're missing the code that spawns pickups when the chest " -"opens." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Nodes and scenes can fill up the game world but without [b]code[/b], they " -"don't make a complete game." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "To add life and interaction to your game, you need to write code." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Open the chest scene" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Let's make something come out of the chest by adding a line of code to it." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "First, open the [b]Chest[/b] scene by double-clicking on it." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Open the scene [b]chest.tscn[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -#, fuzzy -msgid "Open the script" -msgstr "[b]Player[/b]ノードにアタッチされているスクリプトを開きます。" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"To make nodes interactive, we need to tell the computer how they interact. " -"We do that using code." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "In Godot, we write code in a text file that we attach to a node." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"You can see that the chest node has a code file attached to it thanks to the " -"script icon \" + bbcode_generate_icon_image_string(ICONS_MAP.script) + \". " -"We call a code file a [b]script[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Click the script icon \" + bbcode_generate_icon_image_string(ICONS_MAP." -"script) + \" to open this file in the script view." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Open the script attached to the [b]Chest[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The chest script" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "This file already contains a bunch of GDScript code." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"GDScript is a language made by gamedevs for gamedevs. It's designed to code " -"games fast." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Again, don't worry if you can't understand the code yet: that's what the " -"next modules are for." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"For now, we'll just add one missing line to get familiar with the script " -"editor." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The loot function" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"In the highlighted lines of code, we define a [b]function[/b] named [b]loot[/" -"b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"A function is a group of instructions you can run by [b]calling[/b] the " -"function's name, like so: [b]loot()[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Connected signal" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"The loot function is [b]called[/b] from the [b]_on_body_entered[/b] function." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Notice the green icon \" + bbcode_generate_icon_image_string(ICONS_MAP." -"script_signal_connected) + \" in the margin on the left. It tells us that " -"[b]_on_body_entered[/b] is connected to a signal." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "This is why the chest opens when the player approaches it." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The open animation" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Inside the loot function, we play the [b]open[/b] animation, which makes the " -"chest open." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "And currently, that's all! This is why nothing comes out of the chest." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The create_pickup function" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Below the [b]loot[/b] function, in the highlighted lines, there's a function " -"defined to create pickups. We named it [b]create_pickup[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Don't worry about how it's coded yet. For now, just notice that while this " -"function is defined, it's not called anywhere in the script file, which " -"means it's not used by the [b]loot[/b] function." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"We need to call it in the [b]loot[/b] function so that the loot function can " -"do two things:" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "1. Play the chest open animation." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "2. Create pickups." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Write the code" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"On line 14, type [b]create_pickup()[/b] to call the function. Be careful to " -"type exactly what you see here, including the parentheses." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"The name \\\"create_pickup\\\" tells the computer which function we want to " -"refer to, and the parentheses () run the function's lines of code." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Also, make sure that there's a [b]tab character[/b] at the start of the " -"line, just like on line 13: \" + bbcode_generate_icon_image_string(ICONS_MAP." -"script_indent) + \". That's how Godot knows that the line belongs to the " -"[b]loot[/b] function." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Press the [b]Tab[/b] key on your keyboard to write a tab character." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Call the function [b]create_pickup[/b] on line 14." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Let's now head back to the [b]Start[/b] scene so we can test the result." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Click on the scene tab that says [b]start[/b] above the viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The game is now complete and ready to play!" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Click the [b]Play Current Scene[/b] button and move near a chest to test " -"your code." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Feel free to explore the rest of the game and appreciate all you just " -"learned." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "" -"Once you're done, press [b]F8[/b] on your keyboard or close the game window " -"to return to the editor." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Congratulations on assembling your first game in Godot!" -msgstr "" +msgstr "[center]次はゲームを実際に組み立て、さらに学んでいきます。[/center]" diff --git a/tours/godot-first-tour/locale/locale.pot b/tours/godot-first-tour/locale/locale.pot index 0b233f5..278fe8f 100644 --- a/tours/godot-first-tour/locale/locale.pot +++ b/tours/godot-first-tour/locale/locale.pot @@ -1,21 +1,6 @@ # LANGUAGE translation for M2. Getting to Know Godot (Interactive Tours) for the following files: -# res://addons/gdquest_welcome_tour/tours/learn-gamedev-from-zero/tour.gd -# res://addons/gdquest_welcome_tour/tours/welcome/welcome.gd -# res://addons/gdquest_welcome_tour/tours/godot-first-tour/godot_first_tour.gd -# res://addons/gdquest_welcome_tour/tours/learn-gamedev-from-zero/assemble_path_of_sorcerers.gd -# res://addons/gdquest_welcome_tour/tours/test/debug_and_tests.gd -# res://addons/godot_tours/tours/godot-first-tour/godot_first_tour.gd -# res://addons/godot_tours/tours/learn-gamedev-from-zero/assemble_path_of_sorcerers.gd -# res://addons/godot_tours/tours/test/debug_and_tests.gd -# res://tours/learn-gamedev-from-zero/assemble_path_of_sorcerers_1.gd -# res://tours/learn-gamedev-from-zero/assemble_path_of_sorcerers_2.gd # res://addons/godot_tours/tour.gd # res://tours/godot-first-tour/godot_first_tour.gd -# res://tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -# res://tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -# res://tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -# res://tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -# res://tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd # # FIRST AUTHOR , YEAR. # @@ -39,20 +24,52 @@ msgstr "" msgid "Change to the [b]%s[/b] tab." msgstr "" +#: addons/godot_tours/tour.gd +msgid "Select the %s %s in the [b]Scene Dock[/b]." +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Set [b]%s[/b] to [code]%s[/code]" +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Set [b]%s[/b]'s [b]%s[/b] property to [b]%s[/b]" +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Open the scene [b]%s[/b]" +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Expand the property [b]%s[/b] in the [b]Inspector[/b]" +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Move [b]%s[/b] inside the guide box" +msgstr "" + +#: addons/godot_tours/tour.gd +msgid "Instantiate the [b]%s[/b] scene as a child of [b]%s[/b]" +msgstr "" + +#: tours/godot-first-tour/godot_first_tour.gd +msgid "[center][b]Welcome to Godot[/b][/center]" +msgstr "" + #: tours/godot-first-tour/godot_first_tour.gd msgid "[center]In this tour, you take your first steps in the [b]Godot editor[/b].[/center]" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "[center]You get an overview of the engine\'s four pillars: [b]Scenes[/b], [b]Nodes[/b], [b]Scripts[/b], and [b]Signals[/b].[/center]" +msgid "[center]You get an overview of the engine's four pillars: [b]Scenes[/b], [b]Nodes[/b], [b]Scripts[/b], and [b]Signals[/b].[/center]" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "[center]In the next tour, you\'ll get to assemble your first game from premade parts and put all this into practice.[/center]" +msgid "[center]In the next tour, you'll get to assemble your first game from premade parts and put all this into practice.[/center]" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "[center][b]Let\'s get started![/b][/center]" +msgid "[center][b]Let's get started![/b][/center]" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -68,7 +85,7 @@ msgid "Click the play icon in the top right of the editor to run the Godot proje msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "Then, press [b]F8[/b] on your keyboard or close the game window to stop the game." +msgid "Then, press [b]%s[/b] on your keyboard or close the game window to stop the game." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -76,7 +93,7 @@ msgid "Editor tour" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "Great! Now let\'s take a quick tour of the editor." +msgid "Great! Now let's take a quick tour of the editor." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -84,7 +101,7 @@ msgid "The viewport" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "The central part of the editor outlined in blue is the viewport. It\'s a view of the currently open [b]scene[/b]." +msgid "The central part of the editor outlined in purple is the viewport. It's a view of the currently open [b]scene[/b]." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -100,11 +117,11 @@ msgid "We are currently looking at a scene file called [b]%s[/b]. This scene con msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "Let\'s look around" +msgid "Let's look around" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "We\'re going to explore the interface next, so you get a good feel for it." +msgid "We're going to explore the interface next, so you get a good feel for it." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -176,19 +193,19 @@ msgid "The Bottom Panels" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "At the bottom, you\'ll find editors like the [b]Output[/b] and [b]Debugger[/b] panels." +msgid "At the bottom, you'll find editors like the [b]Output[/b] and [b]Debugger[/b] panels." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "That\'s where you\'ll edit animations, write visual effects code (shaders), and more." +msgid "That's where you'll edit animations, write visual effects code (shaders), and more." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "These editors are contextual. We\'ll see what that means in the next tour." +msgid "These editors are contextual. We'll see what that means in the next tour." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "The complete scene\'s nodes" +msgid "The complete scene's nodes" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -208,7 +225,7 @@ msgid "Other elements, like the [b]Player[/b], have an [b]Open In Editor[/b] %s msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "When you see this icon, you are looking at a [b]scene instance[/b]. It\'s a copy of another scene. You can think of it as a scene that uses another scene as its template. In Godot, we nest scene instances to create complete games." +msgid "When you see this icon, you are looking at a [b]scene instance[/b]. It's a copy of another scene. You can think of it as a scene that uses another scene as its template. In Godot, we nest scene instances to create complete games." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -224,11 +241,11 @@ msgid "The Player scene" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "When opening a scene, the [b]Scene Dock[/b] and the viewport update to display the scene\'s contents." +msgid "When opening a scene, the [b]Scene Dock[/b] and the viewport update to display the scene's contents." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "In the Scene Dock at the top-left, you can see all the nodes that form the player\'s character." +msgid "In the Scene Dock at the top-left, you can see all the nodes that form the player's character." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -236,7 +253,7 @@ msgid "Scripts bring nodes to life" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "By themselves, nodes and scenes don\'t interact." +msgid "By themselves, nodes and scenes don't interact." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -244,7 +261,7 @@ msgid "To bring them to life, you need to give them instructions by writing code msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "Let\'s have a look at an example of a script." +msgid "Let's have a look at an example of a script." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -268,7 +285,7 @@ msgid "The scripting context" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "We\'re now in the scripting context, which displays all the code in the open script file." +msgid "We're now in the scripting context, which displays all the code in the open script file." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -276,7 +293,7 @@ msgid "This code gives instructions to the computer about how to move the charac msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "Don\'t worry if you can\'t read the code yet: We made a FREE app to help you [color=#ffd500][b][url=https://gdquest.com/tutorial/godot/learning-paths/learn-gdscript-from-zero/]Learn GDScript from Zero[/url][/b][/color]. It\'s a free part of our complete course Learn Gamedev From Zero." +msgid "Don't worry if you can't read the code yet: We made a FREE app to help you [color=#ffd500][b][url=https://gdquest.com/tutorial/godot/learning-paths/learn-gdscript-from-zero/]Learn GDScript from Zero[/url][/b][/color]. It's a free part of our complete course Learn Gamedev From Zero." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -304,7 +321,7 @@ msgid "We have one more essential pillar of Godot to look at: [b]Signals[/b]." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "Let\'s head back to the completed project scene. First, click the 2D workspace at the top of the editor to change the center view back to the viewport." +msgid "Let's head back to the completed project scene. First, click the 2D workspace at the top of the editor to change the center view back to the viewport." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -320,7 +337,7 @@ msgid "Change the active scene" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "Let\'s change the active scene to the completed project scene." +msgid "Let's change the active scene to the completed project scene." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -368,12 +385,11 @@ msgid "Click the signal emission icon next to the [b]Player[/b] node and open th msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd msgid "The Node Dock" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "On the right, you can see the [b]Node Dock[/b]. It lists all the signals of the selected node. In this case, it\'s the [b]Player[/b] node." +msgid "On the right, you can see the [b]Node Dock[/b]. It lists all the signals of the selected node. In this case, it's the [b]Player[/b] node." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -457,8 +473,6 @@ msgid "This happens thanks to the [b]health_changed[/b] signal connection." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd msgid "In summary" msgstr "" @@ -479,7 +493,7 @@ msgid "[b]Scripts[/b] are text files that give instructions to the computer. You msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "And [b]Signals[/b] are events that nodes emit to report what\'s happening in the game. You can connect signals to scripts to run code when an event occurs." +msgid "And [b]Signals[/b] are events that nodes emit to report what's happening in the game. You can connect signals to scripts to run code when an event occurs." msgstr "" #: tours/godot-first-tour/godot_first_tour.gd @@ -487,1385 +501,5 @@ msgid "Congratulations on your first Godot Tour!" msgstr "" #: tours/godot-first-tour/godot_first_tour.gd -msgid "[center]Next, we\'ll practice and learn more by assembling a game[/center]" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Assemble your first game" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "In this tour, you get to assemble your first game from premade parts." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "You will put what you learned in the previous tour into practice." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "You\'ll select and move nodes, create scene instances, use Godot\'s tilemap editor, and more." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Let\'s get started!" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Let\'s make a little game" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "By the end of this tutorial, you\'ll have a little playable game like this one." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "In this first part, you\'ll learn how to instantiate scenes, move entities, and draw bridges between rooms using a tilemap." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "You can try it right now: click the play icon in the top right of the editor to run the Godot project." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Then, press [b]F8[/b] or close the game window to stop the game." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Let\'s head to the starter scene and assemble the game." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Open the start scene" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "In the [b]FileSystem Dock[/b] at the bottom-left, find and [b]double-click[/b] on the scene we will be working with: [b]\" + SCENE_START.get_file() + \"[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Open the scene [b]%s[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Start" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add Player Scene" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Now let\'s add a playable character to the scene! Drag and drop the player from the [b]FileSystem Dock[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add the [b]Player Scene[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Great job!" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Remember [b]a scene is a template[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "By dragging the [b]Player Scene[/b] into the viewport in the center, you created a copy of the player template in the start scene." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "You can see in the [b]Scene Dock[/b] that there is now an [b]instance[/b] of the player scene in the start scene." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Flesh out the environment" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "We\'re lacking an environment for players to explore. Let\'s add a couple of rooms next." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "We\'ve prepared rooms for you to place in the level." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Snap to grid" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "To place the rooms accurately, we will use grid snapping." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "You can toggle the grid on and off by clicking the [b]Grid[/b] button at the top (but keep it on!)." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Change grid size" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "The grid is too small. Let\'s make it bigger." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Click the the three vertical dots in the toolbar to access the grid settings." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Then, click [b]Configure Snap...[/b], and change [b]Grid Step[/b] to [b]128px[/b] by [b]128px[/b]. Then, click [b]Ok[/b] to confirm." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "How to zoom in and out" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Before adding rooms, let\'s learn to zoom and pan the view. You\'ll likely need to zoom out to place the rooms comfortably." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "To zoom in and out, use your [b]Mouse Wheel[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "On touch displays and supported touchpads, you can pinch two fingers." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Give it a try!" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Using the zoom buttons" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Alternatively, you can click the [b]Zoom In[/b] button " -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid " and [b]Zoom Out[/b] " -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid " button in the top-left of the viewport to zoom in and out." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "How to pan the view" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "To pan the view, click and drag using the [b]Middle Mouse Button[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "If you don\'t have a mouse wheel, press the [b]Spacebar[/b] and click and drag with the [b]Left Mouse Button[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "And if you\'re using a touchpad, you can keep the [b]Ctrl[/b] key down and slide two fingers over your touchpad." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add Rooms" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Now, you can start placing rooms!" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Drag and drop one of each room type (a, b, and c) from the [b]FileSystem Dock[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Place them so that the rooms do not overlap, and keep some space between them, as we\'ll connect the rooms with bridges later." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Use the [b]Middle Mouse Button[/b] to pan the view if you need to." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Use the [b]Mouse Wheel[/b] to zoom in and out." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Don\'t worry if their position isn\'t perfect: we\'ll learn to move the rooms next." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add [b]RoomA[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add [b]RoomB[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Add [b]RoomC[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Your game now has 3 rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Did you notice how rooms snap to the grid?" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Next, let\'s learn to select and move the rooms directly in the viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Move the rooms" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "To move a node, like the rooms, you first need to [b]select[/b] it. You can use the [b]Select Mode[/b] for that." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Ensure that the [b]Select Mode[/b] is active in the toolbar at the top." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Its icon looks like a mouse cursor. If it\'s active, the icon will be blue." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "The select tool is active by default when you create a new project in Godot." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Select a room" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "With the [b]Select Mode[/b] active, you can now select the rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "To select a room, in the viewport, click on the room\'s little grey cross \" + bbcode_generate_icon_image_string(ICONS_MAP.node_position_unselected) + gtr(\" with the [b]Left Mouse Button[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Once you\'ve selected a room, the cross will turn orange \" + bbcode_generate_icon_image_string(ICONS_MAP.node_position_selected) + gtr(\"." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "You can visually select any node that has a cross in the viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Select one of the [b]Room[/b] nodes." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Move with the select mode" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Click and drag [b]on the cross[/b] to move the node. Try to move the rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "If you need to pan the view, move the mouse while pressing the [b]Middle Mouse Button[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Alternatively, you can press down the [b]Spacebar[/b] and click and drag on the view with the [b]Left Mouse Button[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Excellent!" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Take a moment to move the rooms around and arrange them to your liking." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Try to make the openings between rooms align a bit. It will make it easier to add bridges between them later." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Also, try to keep some space between the rooms so you can add bridges between them later." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Once you\'re happy with the layout, move on to the next step." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Moving the player to the first room" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Next, we\'ll move the player inside [b]RoomA[/b] so that when running the game, the player starts in the room." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "We\'ll take this opportunity to learn another useful way of selecting and moving nodes." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Find RoomA" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "To find [b]RoomA[/b], we\'ll use the [b]Scene Dock[/b] and the viewport in the center." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Click each of the room nodes and pay attention to the crosses in the viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Each cross \" + bbcode_generate_icon_image_string(ICONS_MAP.node_position_unselected) + \" represents the position of one room. When you select a room, its cross turns orange: \" + bbcode_generate_icon_image_string(ICONS_MAP.node_position_selected) + \"." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Click on [b]RoomA[/b] to select it and find the room\'s location." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Select the Player" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Let\'s select the player node to move it next. Click on [b]Player[/b] node in the [b]Scene Dock[/b] to select it." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Move the Player" -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "To move a node, you can use the [b]Move Mode[/b] " -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid " in the toolbar. Click the move tool to activate it." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "With the move tool selected, click and drag anywhere on the viewport until the player is inside of [b]RoomA[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "Move the [b]Player[/b] inside of [b]RoomA[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "You created several scene instances and learned to select and move them in the viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/01_add_player_and_rooms/01_add_player_and_rooms.gd -msgid "In the next part, you\'ll learn how to use the TileMap editor and Terrains to draw bridges that connect the rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Add Bridges" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Let\'s draw bridges to connect the rooms using a [b]TileMap[/b] next." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Tilesets and Tilemaps" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "As soon as you selected [b]Bridges[/b], a bottom panel expanded and two tabs appeared: [b]TileSet[/b] and [b]TileMap[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "It\'s because [b]Bridges[/b] is a [b]TileMap[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Godot will automatically show you the relevant tabs for the selected node." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "That\'s why we say the [b]Bottom Panels[/b] are \\\"[b]contextual[/b]\\\". They appear in the right context." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The TileMap Tab" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "For drawing bridges, we will use the [b]TileMap[/b] tab." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Tilemaps are an efficient way to draw game levels using a grid and [b]tiling images[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Most of your childhood 2D games used tilemaps (like Final Fantasy 6 and Zelda: Link\'s Awakening)!" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Tile Selection" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "To the right of the panel, you can see the different tile images we have at our disposal." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "You can select them one at a time and draw on the map, but there is a faster way: using [b]Terrains[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The Terrains Tab" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Terrains are a set of rules to create compositions for auto-tiling. They help us draw faster." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "You\'ll learn more about creating terrains later in the course." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Click on the [b]Terrains[/b] tab to find the terrain we\'ve set up for the bridges." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The Bridge Terrain" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Next, click the terrain named [b]Bridge[/b] in the tree on the left to select it." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Select the [b]Bridge[/b] terrain." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The Path Drawing Mode" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Now, click on the Path-like icon to select the [b]Path Drawing Mode[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "With this tool active, you can draw your bridges." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Select the [b]Path Drawing Mode[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Restore the Select mode" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "As we are currently in the [b]Move Mode[/b], we cannot draw the bridges. To draw, we need to be in the [b]Select Mode[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Click the [b]Select Mode[/b] button to activate it." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Draw The Bridges" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgctxt "[b]Right-click[/b] to erase bridges." -msgid "[b]Left Click and drag[/b] on the map to draw bridges between rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Try to connect the openings in the rooms. The openings are located where there are red crosses around the perimeter of the room." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "You are free to draw the bridges however you like." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Reconnecting bridges" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "If you lift the mouse button when drawing bridges, you may see gaps like this:" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "To correct that and get clean corners, click and drag over the already drawn tiles." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "This allows the tilemap\'s terrain to apply its rules and clean up the bridge for you. That\'s the power of terrains!" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Excellent! Time to play!" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Let\'s see if everything works as expected." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The [b]Play[/b] button we used earlier is for running the [b]" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "To play the [b]current[/b] scene, click the [b]Play Edited Scene[/b] button to run the scene." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Alternatively, you can press press [b]F6[/b] on your keyboard." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "The missing \\\"walls\\" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "While playing, did you notice something strange? The player can move outside of the bridges!" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "This is because the bridges lack [b]collision shapes[/b]. They are invisible geometric shapes that control where characters can move." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "What you see on screen and the physical limits of the world are two separate layers." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Our bridges currently lack this invisible layer. We\'ll add it next." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Select the InvisibleWalls node" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Did you notice the red crosses around the rooms? They are collision shapes we pre-added to the rooms to give them \\\"walls\\\", or limits." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "We can draw them using the [b]InvisibleWalls[/b] tilemap." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Let\'s add \\\"walls\\\" to prevent players from walking outside of the bridges." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Select the Tiles tab" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "In the [b]TileMap[/b] bottom panel, we need to find and select the red cross." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Since we were previously looking at the [b]Terrains[/b] tab, we need to switch back to the [b]Tiles[/b] tab first, where the red cross is." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Draw the invisible walls" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Select the big [b]red cross[/b] in the [b]TileMap[/b] bottom panel." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Then, [b]Left Click and drag[/b] around bridges in the viewport to draw red cross tiles. They will prevent the player from moving off the bridges." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "If you make a mistake, you can use the [b]Right Click[/b] to remove tiles." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Take your time and draw the invisible walls around all bridges. Once you\'re done, click the [b]Next[/b] button" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Let\'s try this!" -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "If you run the scene, you should see the player can\'t walk anywhere you drew a red cross." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Click the [b]Play Edited Scene[/b] button in the top-right or press [b]F6[/b] to run the scene." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "Press [b]F8[/b] to close the game window once you\'re done." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "You learned to use tilemaps to draw bridges and add collision shapes that prevent the player from walking outside of the bridges." -msgstr "" - -#: tours/102_assemble_your_first_game/02_add_bridges/02_add_bridges.gd -msgid "In the next part, you\'ll make the level feel fuller by adding a sky and a health bar." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Fleshing out the game" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "You will usually start creating a game with the character and level structure, then flesh out the background and add user interface." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "We have the playable character and level, so we\'ll add a sky and health bar next." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The background is a dull flat color. Let\'s start with the sky." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Re-select the Start node" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "We usually add background elements as children of the scene root node to keep the scene organized." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "In this case, the scene root node is the [b]Start[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Click on the [b]Start[/b] node in the [b]Scene Dock[/b] to re-select it." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Add the sky scene" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Drag and drop the [b]\" + SCENE_BACKGROUND_SKY.get_file() + \"[/b] file onto the viewport to create an instance of it." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "This will add the sky to the game as a child of the selected [b]Start[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Add the [b]Background Blue Sky Scene[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Perfect!" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Run the game to see how the sky always fills up the background and improves the experience." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "A game\'s feel improves with all the little things you add: background, animations, sounds, special effects..." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Click the [b]Play Edited Scene[/b] button to run the scene." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Adding user interface" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Our next task is to add a health bar to see when the character takes damage." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Until now, we\'ve only created scene instances. This time, we will also create a node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The CanvasLayer node" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "When we add visual elements to the game, by default, they don\'t move with the player." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "For the user interface, we want it to move with the player so it always stays on screen." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "We can use a [b]CanvasLayer node[/b] for this. By default, it keeps visuals we add as a child of it on screen at all times." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Let\'s add a CanvasLayer node to the scene so that our user interface moves with the player." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Select the Start node" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "We want to add the [b]CanvasLayer[/b] node as a child of the [b]Start[/b] node, [b]not[/b] as a child of the currently selected [b]BackgroundBlueSky[/b], to keep our scene hierarchy organized." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Click on the [b]Start[/b] node in the [b]Scene Dock[/b] to select it." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The Create Node dialog" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "To add a node, click on the plus icon in the top-left of the [b]Scene Dock[/b], or press [b]Ctrl A[/b] on your keyboard (Cmd A on macOS)." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "This will open a popup window listing all the types of nodes built into Godot." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Godot\'s built-in nodes" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "This popup window is the [b]Create Node[/b] dialog." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "It lists over 100 node types Godot provides out of the box!" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Each has a specific purpose, like displaying an image, playing a sound, or letting you draw with a tilemap." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Add the CanvasLayer node" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "We need to add a [b]CanvasLayer node[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Click the search bar at the top to select it and search the node list. It\'s the fastest way to find nodes." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "In the central panel of the popup window, click on the [b]CanvasLayer[/b] node to select it." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Then, click the [b]Create[/b] button at the bottom of the window to add the node (or press the [b]Enter[/b] key on your keyboard)." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Create the [b]CanvasLayer[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "You just created your first node. Godot automatically selects a newly created node for you, so that you can immediately change its properties in the Inspector on the right." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Let\'s add the health bar next." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Add the health bar" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "To stay on screen at all times, the health bar must be a child of the [b]CanvasLayer[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Drag and drop the [b]\" + SCENE_HEALTH_BAR.get_file() + \"[/b] scene onto the [b]CanvasLayer[/b] node in the [b]Scene Dock[/b] to create an instance of it." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Dragging the scene onto a node in the [b]Scene Dock[/b] creates the instance as a child of the node." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Add the [b]Health Bar Scene[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The screen area" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "We need to ensure that the health bar is positioned correctly to be visible on-screen." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "In the viewport, four thin lines are forming a rectangle. They represent the extent of the game window, the window that opens when you run the game." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The four lines can be difficult to spot as they\'re thin. Look at the flashing area in the viewport. It highlights this window extent area." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Any user interface you want to keep on-screen in the game should be placed inside this rectangle." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Place the health bar on-screen" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Let\'s learn a third way to move an element: using the [b]Inspector[/b] and typing coordinates manually." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "We currently have the [b]UIHealthBar[/b] node selected in the [b]Scene[/b] dock." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "On the right, in the [b]Inspector Dock[/b], in the section [b]Layout -> Transform[/b], you can find the [b]Position[/b] property." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Earlier, when you moved and placed rooms around the viewport with the select and move modes, you changed the [b]Position[/b] property of individual rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The position property" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "The Position property has two coordinates: the [b]x[/b] coordinate controls the [b]horizontal[/b] position of the health bar, and the [b]y[/b] coordinate controls its [b]vertical[/b] position." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Click the number of each coordinate to edit it. Type a new number and press [b]Enter[/b] on your keyboard to confirm the new value." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Change the x coordinate to 60, and the y coordinate to 60 as well. This will place the health bar in the top-left corner of the game window when playing." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Set the [b]x Position[/b] property of the [b]UIHealthBar[/b] to [b]60px[/b] (pixels)." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Set the [b]y Position[/b] property of the [b]UIHealthBar[/b] to [b]60px[/b] (pixels)." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "You know what time it is? Yes, let\'s run the scene!" -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Click the [b]Play Current Scene[/b] button and pay attention to how the health bar stays on screen as your progress through the level." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "Also, try to go touch an enemy and pay attention to what happens to the health bar." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "You added a background and a health bar to the game. Most importantly, you learned to create a node and add the health bar as a child of it to make the user interface stay on screen." -msgstr "" - -#: tours/102_assemble_your_first_game/03_add_sky_and_healthbar/03_add_sky_and_healthbar.gd -msgid "In the next part, you\'ll use signals to connect the health bar to the player\'s health." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Updating the health bar" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "We have a problem. When we hit an enemy, the character loses one health point, but this is not reflected in the health bar." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "This is because the [b]UIHealthBar[/b] node is [b]not connected[/b] to changes in the [b]Player[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Godot comes with a handy feature to react to changes in a node, like the player\'s health changing: [b]signals[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "In this project, when the player takes damage, the [b]Player[/b] node [b]emits[/b] a signal called [b]health_changed[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "We need to [b]connect[/b] this signal to the [b]UIHealthBar[/b] node to update the health bar." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Select the player node" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "To see and connect the signals of a node, we first need to select that node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "So once again, select the [b]Player[/b] node in the [b]Scene Dock[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Next to the [b]Inspector[/b] dock on the right lives the [b]Node dock[/b]. The node dock lists the selected node\'s signals." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "The node dock is located in its own tab next to the tab of the [b]Inspector[/b] dock." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Click on the [b]Node[/b] tab in the top-right to select the Node dock." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "All the signals" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "As you can see, the player node has many signals. Most of them come built into Godot." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Throughout the course, you will learn to use the most useful ones." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "At the top of the list, notice the [b]health_changed[/b] signal." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Connect the health_changed signal" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Let\'s connect the signal." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Double-click the [b]health_changed[/b] signal to open the window [b]Connect a Signal to a Method[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Double-click the [b]health_changed[/b] signal " -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "The connect signal window" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "This window on the left is the [b]Connect a Signal to a Method[/b] window. It lists all the nodes in your scene." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Many nodes are greyed out. This is because we can only connect signals to a node that has a code file \" + bbcode_generate_icon_image_string(ICONS_MAP.script) + \" attached to it, like the [b]UIHealthBar[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "The called function" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "At the bottom of the window, Godot lets us pick a \\\"Receiver Method\\\"." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "This is a piece of code that Godot will run when the player node emits the [b]health_changed[/b] signal." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "We can keep the default value." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "You will learn more about what a [b]method[/b] (also called a function) is in the next module, where we\'ll learn to write code." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Connect the signal" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "To connect the signal, double-click on the [b]UIHealthBar[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "You may need to scroll down the list to find it. You can do so using the [b]Mouse Wheel[/b] or by clicking and dragging on the scrollbar on the right." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "This will immediately take you to the code file attached to the UI health bar node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Double-click on the [b]UIHealthBar[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "You are now looking at the code file attached to the [b]UIHealthBar[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Don\'t worry if the code doesn\'t make sense yet. You will learn to read and write code throughout the course." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "The connected function" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Your signal is now connected to the function named [b]_on_player_health_changed[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Godot indicates the connection with the green icon \" + bbcode_generate_icon_image_string(ICONS_MAP.script_signal_connected) + \" in the margin on the left." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Time to play!" -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "Click the [b]Play Current Scene[/b] button and go fight some baddies." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "When you touch an enemy and lose health, the health bar should now update accordingly." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "In this part, you learned where to find the list of signals a node emits and how to connect a signal to a function. Thanks to this, the player can now see their health decreasing when they take damage." -msgstr "" - -#: tours/102_assemble_your_first_game/04_connect_healthbar_to_player/04_connect_healthbar_to_player.gd -msgid "In the next and last part, you will add a chest to one of the room scenes and write your first line of code to complete the game." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Changing RoomA" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "We added several scene instances to the [b]Start[/b] scene: the [b]Player[/b], the [b]UIHealthBar[/b], the [b]BackgroundBlueSky[/b], and the rooms." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "We can open and modify any of those scenes. Any changes we make to the scene source files in the [b]FileSystem[/b] dock will be reflected in their instances." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The opposite is not true: Changes we make to a specific instance of a scene applies to that instance only." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Open the RoomA scene" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Let\'s give this a try. Open the [b]RoomA[/b] scene." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Double-click the file [b]\" + room_a_filename + \"[/b] in the [b]FileSystem dock[/b] in the bottom-left to open the scene." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The RoomA scene" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "We\'re now inside the room\'s scene." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Anything we add here will be reflected in the [b]Start[/b] scene when we play the game." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The chest" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "In the project, we prepared a chest scene for you: [b]\" + scene_chest_filename + \"[/b]. You can see it in the [b]FileSystem Dock[/b] in the bottom-left." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Drag and drop the [b]\" + scene_chest_filename + \"[/b] file onto the viewport to create an instance of it, and place it inside of the room." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Add the [b]Chest Scene[/b] to the [b]Scene[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Place the [b]Chest Scene[/b] inside of the room." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Save the scene" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Press [b]Ctrl+S[/b] on your keyboard (Cmd+S on macOS) to save the [b]RoomA[/b] scene." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "This will save your change and update the [b]Start[/b] scene." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Head back to the start scene" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Let\'s now head back to the [b]Start[/b] scene where you can see the chest." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Click on the scene tab that says \" + SCENE_START.get_file() + \" above the viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Click the [b]Start[/b] scene tab." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Click the [b]Play Current Scene[/b] button to run the scene and move the player near the chest." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "What do you observe?" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Press [b]F8[/b] on your keyboard or close the game window to return to the editor." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Your first line of code" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Currently, when we approach the chest, it opens, and nothing comes out of it. That\'s because we\'re missing the code that spawns pickups when the chest opens." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Nodes and scenes can fill up the game world but without [b]code[/b], they don\'t make a complete game." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "To add life and interaction to your game, you need to write code." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Open the chest scene" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Let\'s make something come out of the chest by adding a line of code to it." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "First, open the [b]Chest[/b] scene by double-clicking on it." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Open the scene [b]chest.tscn[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Open the script" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "To make nodes interactive, we need to tell the computer how they interact. We do that using code." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "In Godot, we write code in a text file that we attach to a node." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "You can see that the chest node has a code file attached to it thanks to the script icon \" + bbcode_generate_icon_image_string(ICONS_MAP.script) + \". We call a code file a [b]script[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Click the script icon \" + bbcode_generate_icon_image_string(ICONS_MAP.script) + \" to open this file in the script view." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Open the script attached to the [b]Chest[/b] node." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The chest script" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "This file already contains a bunch of GDScript code." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "GDScript is a language made by gamedevs for gamedevs. It\'s designed to code games fast." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Again, don\'t worry if you can\'t understand the code yet: that\'s what the next modules are for." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "For now, we\'ll just add one missing line to get familiar with the script editor." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The loot function" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "In the highlighted lines of code, we define a [b]function[/b] named [b]loot[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "A function is a group of instructions you can run by [b]calling[/b] the function\'s name, like so: [b]loot()[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Connected signal" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The loot function is [b]called[/b] from the [b]_on_body_entered[/b] function." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Notice the green icon \" + bbcode_generate_icon_image_string(ICONS_MAP.script_signal_connected) + \" in the margin on the left. It tells us that [b]_on_body_entered[/b] is connected to a signal." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "This is why the chest opens when the player approaches it." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The open animation" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Inside the loot function, we play the [b]open[/b] animation, which makes the chest open." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "And currently, that\'s all! This is why nothing comes out of the chest." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The create_pickup function" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Below the [b]loot[/b] function, in the highlighted lines, there\'s a function defined to create pickups. We named it [b]create_pickup[/b]." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Don\'t worry about how it\'s coded yet. For now, just notice that while this function is defined, it\'s not called anywhere in the script file, which means it\'s not used by the [b]loot[/b] function." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "We need to call it in the [b]loot[/b] function so that the loot function can do two things:" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "1. Play the chest open animation." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "2. Create pickups." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Write the code" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "On line 14, type [b]create_pickup()[/b] to call the function. Be careful to type exactly what you see here, including the parentheses." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The name \\\"create_pickup\\\" tells the computer which function we want to refer to, and the parentheses () run the function\'s lines of code." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Also, make sure that there\'s a [b]tab character[/b] at the start of the line, just like on line 13: \" + bbcode_generate_icon_image_string(ICONS_MAP.script_indent) + \". That\'s how Godot knows that the line belongs to the [b]loot[/b] function." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Press the [b]Tab[/b] key on your keyboard to write a tab character." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Call the function [b]create_pickup[/b] on line 14." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Let\'s now head back to the [b]Start[/b] scene so we can test the result." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Click on the scene tab that says [b]start[/b] above the viewport." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "The game is now complete and ready to play!" -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Click the [b]Play Current Scene[/b] button and move near a chest to test your code." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Feel free to explore the rest of the game and appreciate all you just learned." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Once you\'re done, press [b]F8[/b] on your keyboard or close the game window to return to the editor." -msgstr "" - -#: tours/102_assemble_your_first_game/05_add_chest_that_spawns_pickups/05_add_chest_that_spawns_pickups.gd -msgid "Congratulations on assembling your first game in Godot!" +msgid "[center]Next, we'll practice and learn more by assembling a game[/center]" msgstr ""