diff --git a/.github/actions/import-assets/action.yml b/.github/actions/import-assets/action.yml new file mode 100644 index 000000000..05bc160cd --- /dev/null +++ b/.github/actions/import-assets/action.yml @@ -0,0 +1,24 @@ +name: Import assets +description: Import assets + +runs: + using: composite + steps: + # Step 1: Restore cache + - name: Restore Godot assets cache + uses: actions/cache@v3 + with: + path: godot/.godot + key: ${{ runner.os }}-godot-assets-cache + + # Step 2: Run the command that generates/uses the assets + - name: Import assets + shell: bash + run: cargo run -- import-assets + + # Step 3: Save cache + - name: Cache Godot assets + uses: actions/cache@v3 + with: + path: godot/.godot + key: ${{ runner.os }}-godot-assets-cache \ No newline at end of file diff --git a/.github/actions/install-deps/action.yml b/.github/actions/install-deps/action.yml index 2aab58545..f3e037059 100644 --- a/.github/actions/install-deps/action.yml +++ b/.github/actions/install-deps/action.yml @@ -32,4 +32,4 @@ runs: mkdir ffmpeg mv ffmpeg-*/* ffmpeg/ Add-Content $env:GITHUB_ENV "FFMPEG_DIR=${pwd}\ffmpeg`n" - Add-Content $env:GITHUB_PATH "${pwd}\ffmpeg\bin`n" + Add-Content $env:GITHUB_PATH "${pwd}\ffmpeg\bin`n" \ No newline at end of file diff --git a/.github/actions/set-up-cache/action.yml b/.github/actions/set-up-cache/action.yml index 5963e18f3..3a877147d 100644 --- a/.github/actions/set-up-cache/action.yml +++ b/.github/actions/set-up-cache/action.yml @@ -8,17 +8,8 @@ inputs: runs: using: composite steps: - - name: Set up cargo cache - uses: actions/cache@v3 + - uses: Swatinem/rust-cache@v2 with: - path: | - ~/.cargo/bin/ - ~/.cargo/registry/index/ - ~/.cargo/registry/cache/ - ~/.cargo/git/db/ - lib/target/ - lib/Cargo.lock - target/ - Cargo.lock - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - restore-keys: ${{ runner.os }}-cargo- + workspaces: | + . + lib/ \ No newline at end of file diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 1b6b905c5..49dce629b 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -71,6 +71,15 @@ jobs: curl -sL https://github.com/mozilla/grcov/releases/download/v0.8.10/grcov-x86_64-unknown-linux-gnu.tar.bz2 | tar jxf - -C "${HOME}/.local/bin" echo "$HOME/.local/bin" >> $GITHUB_PATH + - name: Build + working-directory: lib + run: cargo build + - name: Copy library + run: cp lib/target/debug/libdclgodot.so godot/lib/ + + - name: Import Assets + uses: ./.github/actions/import-assets + - name: Run xtask coverage run: | export DISPLAY=:99 diff --git a/.github/workflows/linux_builds.yml b/.github/workflows/linux_builds.yml index 68652c8f2..1921e6e05 100644 --- a/.github/workflows/linux_builds.yml +++ b/.github/workflows/linux_builds.yml @@ -28,10 +28,11 @@ jobs: - name: Install dependencies uses: ./.github/actions/install-deps - # Build section - name: Install run: cargo run -- install + + # Build section - name: Build working-directory: lib run: cargo build --release @@ -44,6 +45,9 @@ jobs: - name: Copy library run: cp lib/target/release/libdclgodot.so godot/lib/ + - name: Import Assets + uses: ./.github/actions/import-assets + - name: Export run: cargo run -- export diff --git a/.github/workflows/macos_builds.yml b/.github/workflows/macos_builds.yml index 771fa11af..32851ff3a 100644 --- a/.github/workflows/macos_builds.yml +++ b/.github/workflows/macos_builds.yml @@ -26,10 +26,10 @@ jobs: - name: Install dependencies uses: ./.github/actions/install-deps - # Build section - name: Install run: cargo run -- install + # Build section - name: Build working-directory: lib run: cargo build --release @@ -42,6 +42,9 @@ jobs: - name: Copy library run: cp lib/target/release/libdclgodot.dylib godot/lib/ + - name: Import Assets + uses: ./.github/actions/import-assets + - name: Export run: cargo run -- export diff --git a/.github/workflows/static_checks.yml b/.github/workflows/static_checks.yml index 1b5bf97db..4e80259ce 100644 --- a/.github/workflows/static_checks.yml +++ b/.github/workflows/static_checks.yml @@ -23,17 +23,23 @@ jobs: - run: rustup component add rustfmt - name: Set up Python uses: actions/setup-python@v4 + - name: Install gdtoolkit 4 run: pip3 install git+https://github.com/kuruk-mm/godot-gdscript-toolkit.git + - name: Check format GDScript run: gdformat -d godot/ + - name: GDScript Linter run: gdlint godot/ + - name: Set up cache + uses: ./.github/actions/set-up-cache + - name: Install dependencies uses: ./.github/actions/install-deps - - name: cargo xtask install + - name: cargo install run: cargo run -- install --no-templates - name: cargo check diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml index e0055bdeb..2d049f935 100644 --- a/.github/workflows/windows_builds.yml +++ b/.github/workflows/windows_builds.yml @@ -29,10 +29,11 @@ jobs: - name: Install dependencies uses: ./.github/actions/install-deps - # Build section - name: Install run: cargo run -- install + + # Build section - name: Build working-directory: lib run: cargo build --release @@ -47,6 +48,9 @@ jobs: cp lib/target/release/dclgodot.dll godot/lib/ cp .bin/ffmpeg/ffmpeg-6.0-full_build-shared/bin/*.dll godot/lib/ + - name: Import Assets + uses: ./.github/actions/import-assets + - name: Export run: cargo run -- export diff --git a/godot/.gitignore b/godot/.gitignore index 3040962ef..df0bd420f 100644 --- a/godot/.gitignore +++ b/godot/.gitignore @@ -1,9 +1,5 @@ # Godot 4+ specific ignores -.godot/editor -.godot/export_credentials.cfg -.godot/shader_cache -.godot/exported -.godot/uid_cache.bin +/.godot/ android/ diff --git a/godot/.godot/.gdignore b/godot/.godot/.gdignore deleted file mode 100644 index 8b1378917..000000000 --- a/godot/.godot/.gdignore +++ /dev/null @@ -1 +0,0 @@ - diff --git a/godot/.godot/global_script_class_cache.cfg b/godot/.godot/global_script_class_cache.cfg deleted file mode 100644 index 7d8d251ea..000000000 --- a/godot/.godot/global_script_class_cache.cfg +++ /dev/null @@ -1,847 +0,0 @@ -list=Array[Dictionary]([{ -"base": &"RefCounted", -"class": &"AudioSettings", -"icon": "", -"language": &"GDScript", -"path": "res://src/config/audio_settings.gd" -}, { -"base": &"DclAvatar", -"class": &"Avatar", -"icon": "", -"language": &"GDScript", -"path": "res://src/decentraland_components/avatar/avatar.gd" -}, { -"base": &"RefCounted", -"class": &"AvatarEmoteController", -"icon": "", -"language": &"GDScript", -"path": "res://src/decentraland_components/avatar/avatar_emote_controller.gd" -}, { -"base": &"SubViewportContainer", -"class": &"AvatarPreview", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/backpack/avatar_preview.gd" -}, { -"base": &"RefCounted", -"class": &"AvatarRendererHelper", -"icon": "", -"language": &"GDScript", -"path": "res://src/tool/avatar_renderer/avatar_renderer_helper.gd" -}, { -"base": &"Control", -"class": &"Backpack", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/backpack/backpack.gd" -}, { -"base": &"Node", -"class": &"CarrouselGenerator", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/discover/carrousel/carrousel_generator.gd" -}, { -"base": &"Node", -"class": &"CarrouselRequester", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/discover/carrousel/carrousel_requester.gd" -}, { -"base": &"DclConfig", -"class": &"ConfigData", -"icon": "", -"language": &"GDScript", -"path": "res://src/config/config_data.gd" -}, { -"base": &"CarrouselGenerator", -"class": &"CustomPlacesGenerator", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/discover/places/custom_places_generator.gd" -}, { -"base": &"Button", -"class": &"CustomTouchButton", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/custom_touch_button/custom_touch_button.gd" -}, { -"base": &"EditorPlugin", -"class": &"DclBuildEditorPlugin", -"icon": "", -"language": &"GDScript", -"path": "res://addons/dcl_build_plugin/build.gd" -}, { -"base": &"MeshInstance3D", -"class": &"DclMeshRenderer", -"icon": "", -"language": &"GDScript", -"path": "res://src/decentraland_components/mesh_renderer.gd" -}, { -"base": &"RefCounted", -"class": &"DclUrn", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/content/dcl_urn.gd" -}, { -"base": &"Control", -"class": &"Discover", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/discover/discover.gd" -}, { -"base": &"BaseButton", -"class": &"EmoteEditorItem", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/emote_editor/emote_editor_item.gd" -}, { -"base": &"BaseButton", -"class": &"EmoteItemUi", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/emotes/emote_item_ui.gd" -}, { -"base": &"RefCounted", -"class": &"Emotes", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/emotes/emotes.gd" -}, { -"base": &"Node", -"class": &"EnvironmentSelector", -"icon": "", -"language": &"GDScript", -"path": "res://assets/environment/environment_selector.gd" -}, { -"base": &"RefCounted", -"class": &"Erc20", -"icon": "", -"language": &"GDScript", -"path": "res://src/utils/erc20.gd" -}, { -"base": &"Node", -"class": &"Explorer", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/explorer.gd" -}, { -"base": &"Camera3D", -"class": &"FreeLookCamera", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/camera.gd" -}, { -"base": &"RefCounted", -"class": &"GeneralSettings", -"icon": "", -"language": &"GDScript", -"path": "res://src/config/general_settings.gd" -}, { -"base": &"Grabber", -"class": &"Grab", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/grab_points/grab.gd" -}, { -"base": &"RefCounted", -"class": &"Grabber", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/grab_points/grabber.gd" -}, { -"base": &"RefCounted", -"class": &"GraphicSettings", -"icon": "", -"language": &"GDScript", -"path": "res://src/config/graphic_settings.gd" -}, { -"base": &"Control", -"class": &"Lobby", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/auth/lobby.gd" -}, { -"base": &"RefCounted", -"class": &"MagicLinkPluginInterface", -"icon": "", -"language": &"GDScript", -"path": "res://addons/GodotAndroidPluginMagicLink/MagicLinkPluginInterface.gd" -}, { -"base": &"Node", -"class": &"MusicPlayer", -"icon": "", -"language": &"GDScript", -"path": "res://src/helpers_components/music_player.gd" -}, { -"base": &"RefCounted", -"class": &"NamesRequest", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/profile_settings/lambda_names_request.gd" -}, { -"base": &"RefCounted", -"class": &"NftFrameStyleLoader", -"icon": "", -"language": &"GDScript", -"path": "res://src/decentraland_components/nft_frame_style_loader.gd" -}, { -"base": &"Node3D", -"class": &"NftShape", -"icon": "", -"language": &"GDScript", -"path": "res://src/decentraland_components/nft_shape.gd" -}, { -"base": &"RefCounted", -"class": &"OpenSeaFetcher", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/content/opensea_nft_fetcher.gd" -}, { -"base": &"Control", -"class": &"PlaceItem", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/discover/carrousel/discover_carrousel_item.gd" -}, { -"base": &"CharacterBody3D", -"class": &"Player", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/player/player.gd" -}, { -"base": &"Node", -"class": &"PlayerColliderFilter", -"icon": "", -"language": &"GDScript", -"path": "res://src/decentraland_components/player_collider_filter.gd" -}, { -"base": &"Node", -"class": &"PlayerDesktopInput", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/player/player_desktop_input.gd" -}, { -"base": &"DclPlayerIdentity", -"class": &"PlayerIdentity", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/player/player_identity.gd" -}, { -"base": &"Node", -"class": &"PlayerMobileInput", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/player/player_mobile_input.gd" -}, { -"base": &"PanelContainer", -"class": &"PopupWarning", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/popup_warning/popup_warning.gd" -}, { -"base": &"DclPortableExperienceController", -"class": &"PortableExperienceController", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/portable_experience_controller.gd" -}, { -"base": &"Control", -"class": &"ProfileSettings", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/profile_settings/profile_settings.gd" -}, { -"base": &"RefCounted", -"class": &"PromiseUtils", -"icon": "", -"language": &"GDScript", -"path": "res://src/utils/promise.gd" -}, { -"base": &"Node", -"class": &"RandomGeneratorUtil", -"icon": "", -"language": &"GDScript", -"path": "res://src/helpers_components/random_generator.gd" -}, { -"base": &"Node", -"class": &"RaycastDebugger", -"icon": "", -"language": &"GDScript", -"path": "res://src/tool/raycast_debugger/raycast_debugger.gd" -}, { -"base": &"DclRealm", -"class": &"Realm", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/realm.gd" -}, { -"base": &"RefCounted", -"class": &"ResourceTrackerDebugger", -"icon": "", -"language": &"GDScript", -"path": "res://addons/resource_tracker/resource_tracker_debugger.gd" -}, { -"base": &"RefCounted", -"class": &"RustHttpRequesterWrapper", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/rust_http_requester_wrapper.gd" -}, { -"base": &"MarginContainer", -"class": &"SafeMarginContainer", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/safe_margin_container/safe_margin_container.gd" -}, { -"base": &"Node", -"class": &"SceneFetcher", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/scene_fetcher.gd" -}, { -"base": &"RefCounted", -"class": &"SceneHelper", -"icon": "", -"language": &"GDScript", -"path": "res://src/helpers_components/scene_helper.gd" -}, { -"base": &"Node", -"class": &"SkyBase", -"icon": "", -"language": &"GDScript", -"path": "res://assets/environment/sky_base.gd" -}, { -"base": &"Node", -"class": &"TestSpawnAndMoveAvatars", -"icon": "", -"language": &"GDScript", -"path": "res://src/test/avatar/spawn_and_move.gd" -}, { -"base": &"DclTestingTools", -"class": &"TestingTools", -"icon": "", -"language": &"GDScript", -"path": "res://src/test/testing_api.gd" -}, { -"base": &"Node", -"class": &"UISounds", -"icon": "", -"language": &"GDScript", -"path": "res://src/helpers_components/ui_sounds.gd" -}, { -"base": &"Control", -"class": &"VirtualJoystick", -"icon": "", -"language": &"GDScript", -"path": "res://src/mobile/joystick/virtual_joystick.gd" -}, { -"base": &"Button", -"class": &"WearableFilterButton", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/wearable_button/wearable_filter_button.gd" -}, { -"base": &"CustomTouchButton", -"class": &"WearableItem", -"icon": "", -"language": &"GDScript", -"path": "res://src/ui/components/wearable_item/wearable_item.gd" -}, { -"base": &"RefCounted", -"class": &"WearableRequest", -"icon": "", -"language": &"GDScript", -"path": "res://src/decentraland_components/avatar/wearables/lambda_wearable_request.gd" -}, { -"base": &"Node", -"class": &"Wearables", -"icon": "", -"language": &"GDScript", -"path": "res://src/decentraland_components/avatar/wearables/wearables.gd" -}, { -"base": &"RefCounted", -"class": &"XRHelpers", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/misc/xr_helpers.gd" -}, { -"base": &"XROrigin3D", -"class": &"XRPlayer", -"icon": "", -"language": &"GDScript", -"path": "res://src/logic/player/xr_player.gd" -}, { -"base": &"Node", -"class": &"XRTools", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/xr_tools.gd" -}, { -"base": &"AudioStreamPlayer3D", -"class": &"XRToolsAreaAudio", -"icon": "res://addons/godot-xr-tools/editor/icons/audio.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/audio/area_audio.gd" -}, { -"base": &"Resource", -"class": &"XRToolsAreaAudioType", -"icon": "res://addons/godot-xr-tools/editor/icons/audio.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/audio/area_audio_type.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsClimbable", -"icon": "res://addons/godot-xr-tools/editor/icons/hand.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/climbable.gd" -}, { -"base": &"XRToolsForceBody", -"class": &"XRToolsCollisionHand", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/hands/collision_hand.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsFade", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/effects/fade.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsFadeCollision", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/player/fade/fade_collision.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsFallDamage", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/examples/fall_damage.gd" -}, { -"base": &"AnimatableBody3D", -"class": &"XRToolsForceBody", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/force_body/force_body.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsFunctionPickup", -"icon": "res://addons/godot-xr-tools/editor/icons/function.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/function_pickup.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsFunctionPointer", -"icon": "res://addons/godot-xr-tools/editor/icons/function.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/function_pointer.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsFunctionPoseDetector", -"icon": "res://addons/godot-xr-tools/editor/icons/hand.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/function_pose_detector.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsFunctionTeleport", -"icon": "res://addons/godot-xr-tools/editor/icons/function.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/function_teleport.gd" -}, { -"base": &"RemoteTransform3D", -"class": &"XRToolsGrabDriver", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/grab_points/grab_driver.gd" -}, { -"base": &"Marker3D", -"class": &"XRToolsGrabPoint", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/grab_points/grab_point.gd" -}, { -"base": &"XRToolsGrabPoint", -"class": &"XRToolsGrabPointHand", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/grab_points/grab_point_hand.gd" -}, { -"base": &"XRToolsGrabPoint", -"class": &"XRToolsGrabPointRedirect", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/grab_points/grab_point_redirect.gd" -}, { -"base": &"XRToolsGrabPoint", -"class": &"XRToolsGrabPointSnap", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/grab_points/grab_point_snap.gd" -}, { -"base": &"Node", -"class": &"XRToolsGroundPhysics", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/overrides/ground_physics.gd" -}, { -"base": &"Resource", -"class": &"XRToolsGroundPhysicsSettings", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/overrides/ground_physics_settings.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsHand", -"icon": "res://addons/godot-xr-tools/editor/icons/hand.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/hands/hand.gd" -}, { -"base": &"BoneAttachment3D", -"class": &"XRToolsHandPhysicsBone", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/hands/hand_physics_bone.gd" -}, { -"base": &"Area3D", -"class": &"XRToolsHandPoseArea", -"icon": "res://addons/godot-xr-tools/editor/icons/hand.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/hand_pose_area.gd" -}, { -"base": &"Resource", -"class": &"XRToolsHandPoseSettings", -"icon": "res://addons/godot-xr-tools/editor/icons/hand.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/hands/poses/hand_pose_settings.gd" -}, { -"base": &"Node", -"class": &"XRToolsHighlightMaterial", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/highlight/highlight_material.gd" -}, { -"base": &"MeshInstance3D", -"class": &"XRToolsHighlightRing", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/highlight/highlight_ring.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsHighlightVisible", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/highlight/highlight_visible.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsHoldButton", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/misc/hold_button.gd" -}, { -"base": &"Area3D", -"class": &"XRToolsInteractableArea", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/interactable_area.gd" -}, { -"base": &"Area3D", -"class": &"XRToolsInteractableAreaButton", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/interactables/interactable_area_button.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsInteractableBody", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/interactable_body.gd" -}, { -"base": &"XRToolsPickable", -"class": &"XRToolsInteractableHandle", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/interactables/interactable_handle.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsInteractableHandleDriven", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/interactables/interactable_handle_driven.gd" -}, { -"base": &"XRToolsInteractableHandleDriven", -"class": &"XRToolsInteractableHinge", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/interactables/interactable_hinge.gd" -}, { -"base": &"XRToolsInteractableHandleDriven", -"class": &"XRToolsInteractableJoystick", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/interactables/interactable_joystick.gd" -}, { -"base": &"XRToolsInteractableHandleDriven", -"class": &"XRToolsInteractableSlider", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/interactables/interactable_slider.gd" -}, { -"base": &"Node", -"class": &"XRToolsMoveTo", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/misc/move_to.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementClimb", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_climb.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementCrouch", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_crouch.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementDirect", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_direct.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementFlight", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_flight.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementFootstep", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_footstep.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementGlide", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_glide.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementGrapple", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_grapple.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementJog", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_jog.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementJump", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_jump.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementPhysicalJump", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_physical_jump.gd" -}, { -"base": &"Node", -"class": &"XRToolsMovementProvider", -"icon": "res://addons/godot-xr-tools/editor/icons/movement_provider.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_provider.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementSprint", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_sprint.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementTurn", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_turn.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementWallWalk", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_wall_walk.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementWind", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_wind.gd" -}, { -"base": &"XRToolsMovementProvider", -"class": &"XRToolsMovementWorldGrab", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/functions/movement_world_grab.gd" -}, { -"base": &"XRToolsHand", -"class": &"XRToolsPhysicsHand", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/hands/physics_hand.gd" -}, { -"base": &"RigidBody3D", -"class": &"XRToolsPickable", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/pickable.gd" -}, { -"base": &"AudioStreamPlayer3D", -"class": &"XRToolsPickableAudio", -"icon": "res://addons/godot-xr-tools/editor/icons/audio.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/audio/pickable_audio.gd" -}, { -"base": &"Resource", -"class": &"XRToolsPickableAudioType", -"icon": "res://addons/godot-xr-tools/editor/icons/audio.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/audio/pickable_audio_type.gd" -}, { -"base": &"CharacterBody3D", -"class": &"XRToolsPlayerBody", -"icon": "res://addons/godot-xr-tools/editor/icons/body.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/player/player_body.gd" -}, { -"base": &"RefCounted", -"class": &"XRToolsPointerEvent", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/events/pointer_event.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsPoke", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/player/poke/poke.gd" -}, { -"base": &"Node", -"class": &"XRToolsReturnToSnapZone", -"icon": "res://addons/godot-xr-tools/editor/icons/hand.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/return_to_snap_zone.gd" -}, { -"base": &"Resource", -"class": &"XRToolsRumbleEvent", -"icon": "res://addons/godot-xr-tools/editor/icons/rumble.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/rumble/rumble_event.gd" -}, { -"base": &"Resource", -"class": &"XRToolsRumbleManagerQueue", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/rumble/rumble_manager_queue.gd" -}, { -"base": &"Node", -"class": &"XRToolsRumbler", -"icon": "res://addons/godot-xr-tools/editor/icons/rumble.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/rumble/rumbler.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsSceneBase", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/staging/scene_base.gd" -}, { -"base": &"Area3D", -"class": &"XRToolsSnapZone", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/snap_zone.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsStaging", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/staging/staging.gd" -}, { -"base": &"Node", -"class": &"XRToolsStartXR", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/xr/start_xr.gd" -}, { -"base": &"Node", -"class": &"XRToolsSurfaceAudio", -"icon": "res://addons/godot-xr-tools/editor/icons/foot.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/audio/surface_audio.gd" -}, { -"base": &"Resource", -"class": &"XRToolsSurfaceAudioType", -"icon": "res://addons/godot-xr-tools/editor/icons/body.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/audio/surface_audio_type.gd" -}, { -"base": &"Area3D", -"class": &"XRToolsTeleportArea", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/teleport_area.gd" -}, { -"base": &"RefCounted", -"class": &"XRToolsVelocityAverager", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/misc/velocity_averager.gd" -}, { -"base": &"RefCounted", -"class": &"XRToolsVelocityAveragerLinear", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/misc/velocity_averager_linear.gd" -}, { -"base": &"Node3D", -"class": &"XRToolsVignette", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/effects/vignette.gd" -}, { -"base": &"Node2D", -"class": &"XRToolsVirtualKey", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/keyboard/virtual_key.gd" -}, { -"base": &"XRToolsVirtualKey", -"class": &"XRToolsVirtualKeyChar", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/keyboard/virtual_key_char.gd" -}, { -"base": &"CanvasLayer", -"class": &"XRToolsVirtualKeyboard2D", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/keyboard/virtual_keyboard_2d.gd" -}, { -"base": &"Area3D", -"class": &"XRToolsWindArea", -"icon": "", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/wind_area.gd" -}, { -"base": &"Area3D", -"class": &"XRToolsWorldGrabArea", -"icon": "res://addons/godot-xr-tools/editor/icons/hand.svg", -"language": &"GDScript", -"path": "res://addons/godot-xr-tools/objects/world_grab_area.gd" -}]) diff --git a/godot/.godot/imported/Account.png-92c24424e359bbb110146d1ed0ee9721.ctex b/godot/.godot/imported/Account.png-92c24424e359bbb110146d1ed0ee9721.ctex deleted file mode 100644 index 0d5edd251..000000000 Binary files a/godot/.godot/imported/Account.png-92c24424e359bbb110146d1ed0ee9721.ctex and /dev/null differ diff --git a/godot/.godot/imported/Account.png-92c24424e359bbb110146d1ed0ee9721.md5 b/godot/.godot/imported/Account.png-92c24424e359bbb110146d1ed0ee9721.md5 deleted file mode 100644 index 34ea4ec19..000000000 --- a/godot/.godot/imported/Account.png-92c24424e359bbb110146d1ed0ee9721.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="6c826e5477cf4dd6419f63e0f5415715" -dest_md5="f4ac46cafcd5976c031413f11d131964" - diff --git a/godot/.godot/imported/ActionCopy.svg-fedc477cb1f8297c2fcd1aab0a5d7f62.ctex b/godot/.godot/imported/ActionCopy.svg-fedc477cb1f8297c2fcd1aab0a5d7f62.ctex deleted file mode 100644 index cbf76c061..000000000 Binary files a/godot/.godot/imported/ActionCopy.svg-fedc477cb1f8297c2fcd1aab0a5d7f62.ctex and /dev/null differ diff --git a/godot/.godot/imported/ActionCopy.svg-fedc477cb1f8297c2fcd1aab0a5d7f62.md5 b/godot/.godot/imported/ActionCopy.svg-fedc477cb1f8297c2fcd1aab0a5d7f62.md5 deleted file mode 100644 index d63edafd2..000000000 --- a/godot/.godot/imported/ActionCopy.svg-fedc477cb1f8297c2fcd1aab0a5d7f62.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="66f5094c07a7adf640dd3d1bc683edc1" -dest_md5="dddcd734ec45e9d09e8bd98e4815a94a" - diff --git a/godot/.godot/imported/AllIcon.png-c1e31ab97a9ab3b1d4554717f23fc3a3.ctex b/godot/.godot/imported/AllIcon.png-c1e31ab97a9ab3b1d4554717f23fc3a3.ctex deleted file mode 100644 index 6cebac6c9..000000000 Binary files a/godot/.godot/imported/AllIcon.png-c1e31ab97a9ab3b1d4554717f23fc3a3.ctex and /dev/null differ diff --git a/godot/.godot/imported/AllIcon.png-c1e31ab97a9ab3b1d4554717f23fc3a3.md5 b/godot/.godot/imported/AllIcon.png-c1e31ab97a9ab3b1d4554717f23fc3a3.md5 deleted file mode 100644 index 537b07844..000000000 --- a/godot/.godot/imported/AllIcon.png-c1e31ab97a9ab3b1d4554717f23fc3a3.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ffb1d3da65ab157e5d4652abe16a7e3a" -dest_md5="41a93dd3a7feaaa9bf1ec76e51c015e1" - diff --git a/godot/.godot/imported/AllSkyFree_Sky_ClearBlueSky_Equirect.png-eaaadba1f07dd1353883fbcd026fb59e.ctex b/godot/.godot/imported/AllSkyFree_Sky_ClearBlueSky_Equirect.png-eaaadba1f07dd1353883fbcd026fb59e.ctex deleted file mode 100644 index dbbb5af39..000000000 Binary files a/godot/.godot/imported/AllSkyFree_Sky_ClearBlueSky_Equirect.png-eaaadba1f07dd1353883fbcd026fb59e.ctex and /dev/null differ diff --git a/godot/.godot/imported/AllSkyFree_Sky_ClearBlueSky_Equirect.png-eaaadba1f07dd1353883fbcd026fb59e.md5 b/godot/.godot/imported/AllSkyFree_Sky_ClearBlueSky_Equirect.png-eaaadba1f07dd1353883fbcd026fb59e.md5 deleted file mode 100644 index 1d8dc73a8..000000000 --- a/godot/.godot/imported/AllSkyFree_Sky_ClearBlueSky_Equirect.png-eaaadba1f07dd1353883fbcd026fb59e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="6a1517968c33eaa8fe13dece7ae57909" -dest_md5="04078689b342e31d1237b3ea92739582" - diff --git a/godot/.godot/imported/AllSkyFree_Sky_EpicBlueSunset_Equirect.png-8fcacdfd548d4280c245ec63a28420aa.ctex b/godot/.godot/imported/AllSkyFree_Sky_EpicBlueSunset_Equirect.png-8fcacdfd548d4280c245ec63a28420aa.ctex deleted file mode 100644 index 1fb3d552b..000000000 Binary files a/godot/.godot/imported/AllSkyFree_Sky_EpicBlueSunset_Equirect.png-8fcacdfd548d4280c245ec63a28420aa.ctex and /dev/null differ diff --git a/godot/.godot/imported/AllSkyFree_Sky_EpicBlueSunset_Equirect.png-8fcacdfd548d4280c245ec63a28420aa.md5 b/godot/.godot/imported/AllSkyFree_Sky_EpicBlueSunset_Equirect.png-8fcacdfd548d4280c245ec63a28420aa.md5 deleted file mode 100644 index 75732e567..000000000 --- a/godot/.godot/imported/AllSkyFree_Sky_EpicBlueSunset_Equirect.png-8fcacdfd548d4280c245ec63a28420aa.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="4fc84181deebb0987818f1ed3931e0ad" -dest_md5="692a173c2dba767c42e51a29fe1238ad" - diff --git a/godot/.godot/imported/ArrowRight.png-5b97bd514d73f013b5ee1743f26cf72b.ctex b/godot/.godot/imported/ArrowRight.png-5b97bd514d73f013b5ee1743f26cf72b.ctex deleted file mode 100644 index 887cc8643..000000000 Binary files a/godot/.godot/imported/ArrowRight.png-5b97bd514d73f013b5ee1743f26cf72b.ctex and /dev/null differ diff --git a/godot/.godot/imported/ArrowRight.png-5b97bd514d73f013b5ee1743f26cf72b.md5 b/godot/.godot/imported/ArrowRight.png-5b97bd514d73f013b5ee1743f26cf72b.md5 deleted file mode 100644 index ac9a72f55..000000000 --- a/godot/.godot/imported/ArrowRight.png-5b97bd514d73f013b5ee1743f26cf72b.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="5048254b57067ec8257de2e7622d7ef7" -dest_md5="1190eb87cc81db0ea40e6757bb31e3ce" - diff --git a/godot/.godot/imported/BackgroundHUE.png-7efbf5c93bed631d4a0e67e51d40073b.ctex b/godot/.godot/imported/BackgroundHUE.png-7efbf5c93bed631d4a0e67e51d40073b.ctex deleted file mode 100644 index 6b450340c..000000000 Binary files a/godot/.godot/imported/BackgroundHUE.png-7efbf5c93bed631d4a0e67e51d40073b.ctex and /dev/null differ diff --git a/godot/.godot/imported/BackgroundHUE.png-7efbf5c93bed631d4a0e67e51d40073b.md5 b/godot/.godot/imported/BackgroundHUE.png-7efbf5c93bed631d4a0e67e51d40073b.md5 deleted file mode 100644 index e7946e1dd..000000000 --- a/godot/.godot/imported/BackgroundHUE.png-7efbf5c93bed631d4a0e67e51d40073b.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ecbb83aca5bdf926fe82df331e21d1d7" -dest_md5="bc8a260b2ee371136f0c092211b7a161" - diff --git a/godot/.godot/imported/BackgroundSaturation.png-b7886adaf630ea0401caebbb6aaaee2b.ctex b/godot/.godot/imported/BackgroundSaturation.png-b7886adaf630ea0401caebbb6aaaee2b.ctex deleted file mode 100644 index 792ecb734..000000000 Binary files a/godot/.godot/imported/BackgroundSaturation.png-b7886adaf630ea0401caebbb6aaaee2b.ctex and /dev/null differ diff --git a/godot/.godot/imported/BackgroundSaturation.png-b7886adaf630ea0401caebbb6aaaee2b.md5 b/godot/.godot/imported/BackgroundSaturation.png-b7886adaf630ea0401caebbb6aaaee2b.md5 deleted file mode 100644 index 794ac2de5..000000000 --- a/godot/.godot/imported/BackgroundSaturation.png-b7886adaf630ea0401caebbb6aaaee2b.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ade9c02454fbcc838f09d3727dfe5759" -dest_md5="2527b00b2ee136ce12d557ba54806ffc" - diff --git a/godot/.godot/imported/BackgroundValue.png-8a4919dae8d46bf2e6a92cf89b5759f0.ctex b/godot/.godot/imported/BackgroundValue.png-8a4919dae8d46bf2e6a92cf89b5759f0.ctex deleted file mode 100644 index e166e342a..000000000 Binary files a/godot/.godot/imported/BackgroundValue.png-8a4919dae8d46bf2e6a92cf89b5759f0.ctex and /dev/null differ diff --git a/godot/.godot/imported/BackgroundValue.png-8a4919dae8d46bf2e6a92cf89b5759f0.md5 b/godot/.godot/imported/BackgroundValue.png-8a4919dae8d46bf2e6a92cf89b5759f0.md5 deleted file mode 100644 index f0c659069..000000000 --- a/godot/.godot/imported/BackgroundValue.png-8a4919dae8d46bf2e6a92cf89b5759f0.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="43ca5cbce039fa172c517ebabbc8ffd6" -dest_md5="3ac7f8097294b325364299f83e95c124" - diff --git a/godot/.godot/imported/BackpackOff.png-fb1d462461a08f212ba484c0ce712f2e.ctex b/godot/.godot/imported/BackpackOff.png-fb1d462461a08f212ba484c0ce712f2e.ctex deleted file mode 100644 index f36234612..000000000 Binary files a/godot/.godot/imported/BackpackOff.png-fb1d462461a08f212ba484c0ce712f2e.ctex and /dev/null differ diff --git a/godot/.godot/imported/BackpackOff.png-fb1d462461a08f212ba484c0ce712f2e.md5 b/godot/.godot/imported/BackpackOff.png-fb1d462461a08f212ba484c0ce712f2e.md5 deleted file mode 100644 index 205010a03..000000000 --- a/godot/.godot/imported/BackpackOff.png-fb1d462461a08f212ba484c0ce712f2e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="d148af3b574e2a075ef5176258e0e8a7" -dest_md5="367e98e7ff1025a06d110d959e0b44c5" - diff --git a/godot/.godot/imported/BackpackOn.png-ce1a40ecd0fb48e6132fe46860d42ec7.ctex b/godot/.godot/imported/BackpackOn.png-ce1a40ecd0fb48e6132fe46860d42ec7.ctex deleted file mode 100644 index eb27ff9ff..000000000 Binary files a/godot/.godot/imported/BackpackOn.png-ce1a40ecd0fb48e6132fe46860d42ec7.ctex and /dev/null differ diff --git a/godot/.godot/imported/BackpackOn.png-ce1a40ecd0fb48e6132fe46860d42ec7.md5 b/godot/.godot/imported/BackpackOn.png-ce1a40ecd0fb48e6132fe46860d42ec7.md5 deleted file mode 100644 index 244dd1c68..000000000 --- a/godot/.godot/imported/BackpackOn.png-ce1a40ecd0fb48e6132fe46860d42ec7.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="d538fd54ea0582e46640ed0dfd9154ef" -dest_md5="ec57f59cb1ab0245011278673d95dc3c" - diff --git a/godot/.godot/imported/Baroque_Ornament_Genesis_TX.png-98fabe811602cb5bf83fd74cfc60bc53.s3tc.ctex b/godot/.godot/imported/Baroque_Ornament_Genesis_TX.png-98fabe811602cb5bf83fd74cfc60bc53.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Baroque_Ornament_Genesis_TX.png-98fabe811602cb5bf83fd74cfc60bc53.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/BaseThumbnail.png-dd9344b07d9c40e23608326ca68a19fb.ctex b/godot/.godot/imported/BaseThumbnail.png-dd9344b07d9c40e23608326ca68a19fb.ctex deleted file mode 100644 index 11c586e9c..000000000 Binary files a/godot/.godot/imported/BaseThumbnail.png-dd9344b07d9c40e23608326ca68a19fb.ctex and /dev/null differ diff --git a/godot/.godot/imported/BaseThumbnail.png-dd9344b07d9c40e23608326ca68a19fb.md5 b/godot/.godot/imported/BaseThumbnail.png-dd9344b07d9c40e23608326ca68a19fb.md5 deleted file mode 100644 index 20ef187f0..000000000 --- a/godot/.godot/imported/BaseThumbnail.png-dd9344b07d9c40e23608326ca68a19fb.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="3db1a613044affc38f8ec8281d332ba7" -dest_md5="575d4517cccb81d9e5e1d512b4ff5f0e" - diff --git a/godot/.godot/imported/CheckedBox.png-dd1e5570f8a53be19f2d18b352057d32.ctex b/godot/.godot/imported/CheckedBox.png-dd1e5570f8a53be19f2d18b352057d32.ctex deleted file mode 100644 index 9c6ca5bf0..000000000 Binary files a/godot/.godot/imported/CheckedBox.png-dd1e5570f8a53be19f2d18b352057d32.ctex and /dev/null differ diff --git a/godot/.godot/imported/CheckedBox.png-dd1e5570f8a53be19f2d18b352057d32.md5 b/godot/.godot/imported/CheckedBox.png-dd1e5570f8a53be19f2d18b352057d32.md5 deleted file mode 100644 index 026171398..000000000 --- a/godot/.godot/imported/CheckedBox.png-dd1e5570f8a53be19f2d18b352057d32.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ff64f80093c851681274ccaaab1aefff" -dest_md5="2d9c0c8cdb3c691c23a36d052e6d9c4a" - diff --git a/godot/.godot/imported/CheckedButton.png-cc59cf407ada71a031eeab8371d8c9e5.ctex b/godot/.godot/imported/CheckedButton.png-cc59cf407ada71a031eeab8371d8c9e5.ctex deleted file mode 100644 index 1004ed0e2..000000000 Binary files a/godot/.godot/imported/CheckedButton.png-cc59cf407ada71a031eeab8371d8c9e5.ctex and /dev/null differ diff --git a/godot/.godot/imported/CheckedButton.png-cc59cf407ada71a031eeab8371d8c9e5.md5 b/godot/.godot/imported/CheckedButton.png-cc59cf407ada71a031eeab8371d8c9e5.md5 deleted file mode 100644 index 03cbc59c3..000000000 --- a/godot/.godot/imported/CheckedButton.png-cc59cf407ada71a031eeab8371d8c9e5.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="c2d73e0a7a31758af2c79237dee73012" -dest_md5="7419999a924fe2890d46e705dc92fa96" - diff --git a/godot/.godot/imported/CheckedButtonDis.png-18b4ff0dd49fcd87ec8a9b71f70645d7.ctex b/godot/.godot/imported/CheckedButtonDis.png-18b4ff0dd49fcd87ec8a9b71f70645d7.ctex deleted file mode 100644 index 2643f3133..000000000 Binary files a/godot/.godot/imported/CheckedButtonDis.png-18b4ff0dd49fcd87ec8a9b71f70645d7.ctex and /dev/null differ diff --git a/godot/.godot/imported/CheckedButtonDis.png-18b4ff0dd49fcd87ec8a9b71f70645d7.md5 b/godot/.godot/imported/CheckedButtonDis.png-18b4ff0dd49fcd87ec8a9b71f70645d7.md5 deleted file mode 100644 index a812618bc..000000000 --- a/godot/.godot/imported/CheckedButtonDis.png-18b4ff0dd49fcd87ec8a9b71f70645d7.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="501055c42266d83ab2ae636a12af375f" -dest_md5="7439345d58e198bb1d64b79caeb34b69" - diff --git a/godot/.godot/imported/ClaimNameBanner.png-19b37119aa575b59311418d7975d53a8.ctex b/godot/.godot/imported/ClaimNameBanner.png-19b37119aa575b59311418d7975d53a8.ctex deleted file mode 100644 index 0adacda43..000000000 Binary files a/godot/.godot/imported/ClaimNameBanner.png-19b37119aa575b59311418d7975d53a8.ctex and /dev/null differ diff --git a/godot/.godot/imported/ClaimNameBanner.png-19b37119aa575b59311418d7975d53a8.md5 b/godot/.godot/imported/ClaimNameBanner.png-19b37119aa575b59311418d7975d53a8.md5 deleted file mode 100644 index 411ffad30..000000000 --- a/godot/.godot/imported/ClaimNameBanner.png-19b37119aa575b59311418d7975d53a8.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="b7dd3b9784d9fbffbb716d9e9a2f6afa" -dest_md5="cb3fc5d4f1d4a79fe98457a2b2bc370d" - diff --git a/godot/.godot/imported/Clear.svg-dd1206223b1ecf4dd3ed7dda7518717f.ctex b/godot/.godot/imported/Clear.svg-dd1206223b1ecf4dd3ed7dda7518717f.ctex deleted file mode 100644 index 212a901e2..000000000 Binary files a/godot/.godot/imported/Clear.svg-dd1206223b1ecf4dd3ed7dda7518717f.ctex and /dev/null differ diff --git a/godot/.godot/imported/Clear.svg-dd1206223b1ecf4dd3ed7dda7518717f.md5 b/godot/.godot/imported/Clear.svg-dd1206223b1ecf4dd3ed7dda7518717f.md5 deleted file mode 100644 index cd9eefdc0..000000000 --- a/godot/.godot/imported/Clear.svg-dd1206223b1ecf4dd3ed7dda7518717f.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="fcba03e97cdb1aba18e8bec1b53f33a6" -dest_md5="d1db4788204697d502570142bb777a0f" - diff --git a/godot/.godot/imported/CommonThumbnail.png-94e899f3a787452c522cc1f6b113c70a.ctex b/godot/.godot/imported/CommonThumbnail.png-94e899f3a787452c522cc1f6b113c70a.ctex deleted file mode 100644 index 3bdd1b1fd..000000000 Binary files a/godot/.godot/imported/CommonThumbnail.png-94e899f3a787452c522cc1f6b113c70a.ctex and /dev/null differ diff --git a/godot/.godot/imported/CommonThumbnail.png-94e899f3a787452c522cc1f6b113c70a.md5 b/godot/.godot/imported/CommonThumbnail.png-94e899f3a787452c522cc1f6b113c70a.md5 deleted file mode 100644 index f8b5b35f5..000000000 --- a/godot/.godot/imported/CommonThumbnail.png-94e899f3a787452c522cc1f6b113c70a.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="99b23fb9e337ecf7c8d1266b655a68b4" -dest_md5="7b5f89bad082914b6531c1ebae313d8d" - diff --git a/godot/.godot/imported/Delay.svg-565f8a34689101ad4cd2dedc4a91d794.ctex b/godot/.godot/imported/Delay.svg-565f8a34689101ad4cd2dedc4a91d794.ctex deleted file mode 100644 index 87cdee1a7..000000000 Binary files a/godot/.godot/imported/Delay.svg-565f8a34689101ad4cd2dedc4a91d794.ctex and /dev/null differ diff --git a/godot/.godot/imported/Delay.svg-565f8a34689101ad4cd2dedc4a91d794.md5 b/godot/.godot/imported/Delay.svg-565f8a34689101ad4cd2dedc4a91d794.md5 deleted file mode 100644 index 742d9695a..000000000 --- a/godot/.godot/imported/Delay.svg-565f8a34689101ad4cd2dedc4a91d794.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="d723fb0e4814b0096f6035ff3ccc61cc" -dest_md5="bba0e4da5685e89893c6e172cc6df42d" - diff --git a/godot/.godot/imported/Diamond_Ornament_Genesis_TX.png-31a25101775da3e601c7b09008f5f83b.s3tc.ctex b/godot/.godot/imported/Diamond_Ornament_Genesis_TX.png-31a25101775da3e601c7b09008f5f83b.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Diamond_Ornament_Genesis_TX.png-31a25101775da3e601c7b09008f5f83b.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/EmotesIcon.png-8943902eb68f82b0765bacf771c0ff6c.ctex b/godot/.godot/imported/EmotesIcon.png-8943902eb68f82b0765bacf771c0ff6c.ctex deleted file mode 100644 index a3cde1961..000000000 Binary files a/godot/.godot/imported/EmotesIcon.png-8943902eb68f82b0765bacf771c0ff6c.ctex and /dev/null differ diff --git a/godot/.godot/imported/EmotesIcon.png-8943902eb68f82b0765bacf771c0ff6c.md5 b/godot/.godot/imported/EmotesIcon.png-8943902eb68f82b0765bacf771c0ff6c.md5 deleted file mode 100644 index df2eb000f..000000000 --- a/godot/.godot/imported/EmotesIcon.png-8943902eb68f82b0765bacf771c0ff6c.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="3594fb63f2be428f1e56f3fabd4e658f" -dest_md5="9152fff7d6c183a35c54916b91a77cb8" - diff --git a/godot/.godot/imported/EmptyCloset.png-5821dd84e435ab1e04a0f86470941174.ctex b/godot/.godot/imported/EmptyCloset.png-5821dd84e435ab1e04a0f86470941174.ctex deleted file mode 100644 index 0ca609549..000000000 Binary files a/godot/.godot/imported/EmptyCloset.png-5821dd84e435ab1e04a0f86470941174.ctex and /dev/null differ diff --git a/godot/.godot/imported/EmptyCloset.png-5821dd84e435ab1e04a0f86470941174.md5 b/godot/.godot/imported/EmptyCloset.png-5821dd84e435ab1e04a0f86470941174.md5 deleted file mode 100644 index 817bcf155..000000000 --- a/godot/.godot/imported/EmptyCloset.png-5821dd84e435ab1e04a0f86470941174.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="218636f8f5c5b5533cb99c3b705fda28" -dest_md5="b948e70b6dcee1b0d2f3369e0fc66db2" - diff --git a/godot/.godot/imported/EmptyIcon.png-4eed180c10a37087fc09a130bafc9f37.ctex b/godot/.godot/imported/EmptyIcon.png-4eed180c10a37087fc09a130bafc9f37.ctex deleted file mode 100644 index c923789a7..000000000 Binary files a/godot/.godot/imported/EmptyIcon.png-4eed180c10a37087fc09a130bafc9f37.ctex and /dev/null differ diff --git a/godot/.godot/imported/EmptyIcon.png-4eed180c10a37087fc09a130bafc9f37.md5 b/godot/.godot/imported/EmptyIcon.png-4eed180c10a37087fc09a130bafc9f37.md5 deleted file mode 100644 index affde7934..000000000 --- a/godot/.godot/imported/EmptyIcon.png-4eed180c10a37087fc09a130bafc9f37.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="49c329061aa8d6cdaf823c58eae78250" -dest_md5="5214013b8fd62303902b329bd2dc6b18" - diff --git a/godot/.godot/imported/EmptyParcels-TX.png-14bfaad7b7912dc4a72b4e1ff5267c87.s3tc.ctex b/godot/.godot/imported/EmptyParcels-TX.png-14bfaad7b7912dc4a72b4e1ff5267c87.s3tc.ctex deleted file mode 100644 index 12bc0737b..000000000 Binary files a/godot/.godot/imported/EmptyParcels-TX.png-14bfaad7b7912dc4a72b4e1ff5267c87.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/EpicThumbnail.png-0cdf92e8979009e8565297839b0cca14.ctex b/godot/.godot/imported/EpicThumbnail.png-0cdf92e8979009e8565297839b0cca14.ctex deleted file mode 100644 index 3e10ccf30..000000000 Binary files a/godot/.godot/imported/EpicThumbnail.png-0cdf92e8979009e8565297839b0cca14.ctex and /dev/null differ diff --git a/godot/.godot/imported/EpicThumbnail.png-0cdf92e8979009e8565297839b0cca14.md5 b/godot/.godot/imported/EpicThumbnail.png-0cdf92e8979009e8565297839b0cca14.md5 deleted file mode 100644 index a254fff63..000000000 --- a/godot/.godot/imported/EpicThumbnail.png-0cdf92e8979009e8565297839b0cca14.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="eb133b6e8dd7a5c171db4ca859414246" -dest_md5="26fa5ef0aa8f4b04ca1cc6005bfb4578" - diff --git a/godot/.godot/imported/Error.svg-1c1fefc5b8b6fc30c0e440c5dd3da1c1.ctex b/godot/.godot/imported/Error.svg-1c1fefc5b8b6fc30c0e440c5dd3da1c1.ctex deleted file mode 100644 index 5ffa22219..000000000 Binary files a/godot/.godot/imported/Error.svg-1c1fefc5b8b6fc30c0e440c5dd3da1c1.ctex and /dev/null differ diff --git a/godot/.godot/imported/Error.svg-1c1fefc5b8b6fc30c0e440c5dd3da1c1.md5 b/godot/.godot/imported/Error.svg-1c1fefc5b8b6fc30c0e440c5dd3da1c1.md5 deleted file mode 100644 index fd0fc8028..000000000 --- a/godot/.godot/imported/Error.svg-1c1fefc5b8b6fc30c0e440c5dd3da1c1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="18c8ce22c03da359e12b5f2501f12659" -dest_md5="184f3120ed5612866707a6f3b00ec133" - diff --git a/godot/.godot/imported/EventsIcn.png-e87a4f7a92796b97c7acd863f65502d7.ctex b/godot/.godot/imported/EventsIcn.png-e87a4f7a92796b97c7acd863f65502d7.ctex deleted file mode 100644 index e7b70643d..000000000 Binary files a/godot/.godot/imported/EventsIcn.png-e87a4f7a92796b97c7acd863f65502d7.ctex and /dev/null differ diff --git a/godot/.godot/imported/EventsIcn.png-e87a4f7a92796b97c7acd863f65502d7.md5 b/godot/.godot/imported/EventsIcn.png-e87a4f7a92796b97c7acd863f65502d7.md5 deleted file mode 100644 index e7aaf9ccc..000000000 --- a/godot/.godot/imported/EventsIcn.png-e87a4f7a92796b97c7acd863f65502d7.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="55dd16bf713d70631207d1296a5669a9" -dest_md5="e019919bc7801f81fed9861c57631ece" - diff --git a/godot/.godot/imported/ExploreOff.png-eacc43099c8825c1f250ab11d1809037.ctex b/godot/.godot/imported/ExploreOff.png-eacc43099c8825c1f250ab11d1809037.ctex deleted file mode 100644 index 890d774c9..000000000 Binary files a/godot/.godot/imported/ExploreOff.png-eacc43099c8825c1f250ab11d1809037.ctex and /dev/null differ diff --git a/godot/.godot/imported/ExploreOff.png-eacc43099c8825c1f250ab11d1809037.md5 b/godot/.godot/imported/ExploreOff.png-eacc43099c8825c1f250ab11d1809037.md5 deleted file mode 100644 index 00b2e5c6b..000000000 --- a/godot/.godot/imported/ExploreOff.png-eacc43099c8825c1f250ab11d1809037.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="5333db3c0361366bac88ee739d510ab8" -dest_md5="d8e314f81d4beea21ad6f102b183f9e2" - diff --git a/godot/.godot/imported/ExploreOn.png-7382eb2becce93025716f9733e5a6b3f.ctex b/godot/.godot/imported/ExploreOn.png-7382eb2becce93025716f9733e5a6b3f.ctex deleted file mode 100644 index c4eac87c4..000000000 Binary files a/godot/.godot/imported/ExploreOn.png-7382eb2becce93025716f9733e5a6b3f.ctex and /dev/null differ diff --git a/godot/.godot/imported/ExploreOn.png-7382eb2becce93025716f9733e5a6b3f.md5 b/godot/.godot/imported/ExploreOn.png-7382eb2becce93025716f9733e5a6b3f.md5 deleted file mode 100644 index 81f2778df..000000000 --- a/godot/.godot/imported/ExploreOn.png-7382eb2becce93025716f9733e5a6b3f.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ad22eae2a48f60ad99d0c7d7f289e393" -dest_md5="5ddd853679a3a630472cbc7cb2b57d09" - diff --git a/godot/.godot/imported/FavoritesIcn.png-b8153d245790eb56ae699a9a3fdfd5cb.ctex b/godot/.godot/imported/FavoritesIcn.png-b8153d245790eb56ae699a9a3fdfd5cb.ctex deleted file mode 100644 index 4dd8ed65b..000000000 Binary files a/godot/.godot/imported/FavoritesIcn.png-b8153d245790eb56ae699a9a3fdfd5cb.ctex and /dev/null differ diff --git a/godot/.godot/imported/FavoritesIcn.png-b8153d245790eb56ae699a9a3fdfd5cb.md5 b/godot/.godot/imported/FavoritesIcn.png-b8153d245790eb56ae699a9a3fdfd5cb.md5 deleted file mode 100644 index 119b7608d..000000000 --- a/godot/.godot/imported/FavoritesIcn.png-b8153d245790eb56ae699a9a3fdfd5cb.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="820156262bf0465e369ffff4d0a4c2ac" -dest_md5="e303bf1e9c28caf120948568563ee383" - diff --git a/godot/.godot/imported/FemaleIcon.png-46983fad4ce9216983babb96819d7f04.ctex b/godot/.godot/imported/FemaleIcon.png-46983fad4ce9216983babb96819d7f04.ctex deleted file mode 100644 index 6e9aeb0e3..000000000 Binary files a/godot/.godot/imported/FemaleIcon.png-46983fad4ce9216983babb96819d7f04.ctex and /dev/null differ diff --git a/godot/.godot/imported/FemaleIcon.png-46983fad4ce9216983babb96819d7f04.md5 b/godot/.godot/imported/FemaleIcon.png-46983fad4ce9216983babb96819d7f04.md5 deleted file mode 100644 index ee07f24df..000000000 --- a/godot/.godot/imported/FemaleIcon.png-46983fad4ce9216983babb96819d7f04.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="349d74198e4372a49d8e1bfeccc84df9" -dest_md5="399c6fa02b56ca8b06e66d3cd8b8279a" - diff --git a/godot/.godot/imported/FemaleIcon.png-fb5ac77930de213a369abf8f24cd9e44.ctex b/godot/.godot/imported/FemaleIcon.png-fb5ac77930de213a369abf8f24cd9e44.ctex deleted file mode 100644 index 6e9aeb0e3..000000000 Binary files a/godot/.godot/imported/FemaleIcon.png-fb5ac77930de213a369abf8f24cd9e44.ctex and /dev/null differ diff --git a/godot/.godot/imported/FemaleIcon.png-fb5ac77930de213a369abf8f24cd9e44.md5 b/godot/.godot/imported/FemaleIcon.png-fb5ac77930de213a369abf8f24cd9e44.md5 deleted file mode 100644 index ee07f24df..000000000 --- a/godot/.godot/imported/FemaleIcon.png-fb5ac77930de213a369abf8f24cd9e44.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="349d74198e4372a49d8e1bfeccc84df9" -dest_md5="399c6fa02b56ca8b06e66d3cd8b8279a" - diff --git a/godot/.godot/imported/FillEllipse.svg-11c1fe2253e313af19eacf665ea23c82.ctex b/godot/.godot/imported/FillEllipse.svg-11c1fe2253e313af19eacf665ea23c82.ctex deleted file mode 100644 index 6590be80c..000000000 Binary files a/godot/.godot/imported/FillEllipse.svg-11c1fe2253e313af19eacf665ea23c82.ctex and /dev/null differ diff --git a/godot/.godot/imported/FillEllipse.svg-11c1fe2253e313af19eacf665ea23c82.md5 b/godot/.godot/imported/FillEllipse.svg-11c1fe2253e313af19eacf665ea23c82.md5 deleted file mode 100644 index 568c4a7fe..000000000 --- a/godot/.godot/imported/FillEllipse.svg-11c1fe2253e313af19eacf665ea23c82.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="f4d8ed36e7ed8a583b6a4bdceca8fec5" -dest_md5="67f3242dde6ec2aad3bd56567c3c4bc4" - diff --git a/godot/.godot/imported/Filter.svg-4bd7d8946af013d7f963205076b283dd.ctex b/godot/.godot/imported/Filter.svg-4bd7d8946af013d7f963205076b283dd.ctex deleted file mode 100644 index 0a735fd2e..000000000 Binary files a/godot/.godot/imported/Filter.svg-4bd7d8946af013d7f963205076b283dd.ctex and /dev/null differ diff --git a/godot/.godot/imported/Filter.svg-4bd7d8946af013d7f963205076b283dd.md5 b/godot/.godot/imported/Filter.svg-4bd7d8946af013d7f963205076b283dd.md5 deleted file mode 100644 index a447270b2..000000000 --- a/godot/.godot/imported/Filter.svg-4bd7d8946af013d7f963205076b283dd.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="411ee4118cadfd0c41adb3441fdaf2bb" -dest_md5="e3f4a4c3e53b2961c367f3256ce1cbfd" - diff --git a/godot/.godot/imported/Floor_Grass.png-660e164afd83e5b9069f6cdea9f79b9b.s3tc.ctex b/godot/.godot/imported/Floor_Grass.png-660e164afd83e5b9069f6cdea9f79b9b.s3tc.ctex deleted file mode 100644 index d2954c9c6..000000000 Binary files a/godot/.godot/imported/Floor_Grass.png-660e164afd83e5b9069f6cdea9f79b9b.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Floor_Wood01.png-ddcf70896c9c87e8621b8e56d3f5b412.ctex b/godot/.godot/imported/Floor_Wood01.png-ddcf70896c9c87e8621b8e56d3f5b412.ctex deleted file mode 100644 index 7598d40c0..000000000 Binary files a/godot/.godot/imported/Floor_Wood01.png-ddcf70896c9c87e8621b8e56d3f5b412.ctex and /dev/null differ diff --git a/godot/.godot/imported/Floor_Wood01.png-ddcf70896c9c87e8621b8e56d3f5b412.md5 b/godot/.godot/imported/Floor_Wood01.png-ddcf70896c9c87e8621b8e56d3f5b412.md5 deleted file mode 100644 index 3aa36f67b..000000000 --- a/godot/.godot/imported/Floor_Wood01.png-ddcf70896c9c87e8621b8e56d3f5b412.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="e4b333aee6fec831e7fc41f2759c3aa7" -dest_md5="f0d6a9d1e09651bd69d7d948d4a63f77" - diff --git a/godot/.godot/imported/Genesis_TX.png-88cd7f8fc06e25199303c67a18516b61.ctex b/godot/.godot/imported/Genesis_TX.png-88cd7f8fc06e25199303c67a18516b61.ctex deleted file mode 100644 index a3023cccd..000000000 Binary files a/godot/.godot/imported/Genesis_TX.png-88cd7f8fc06e25199303c67a18516b61.ctex and /dev/null differ diff --git a/godot/.godot/imported/Genesis_TX.png-88cd7f8fc06e25199303c67a18516b61.md5 b/godot/.godot/imported/Genesis_TX.png-88cd7f8fc06e25199303c67a18516b61.md5 deleted file mode 100644 index 1718e61fe..000000000 --- a/godot/.godot/imported/Genesis_TX.png-88cd7f8fc06e25199303c67a18516b61.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="29a6e9c67c912f45d068b229c6ef3fdd" -dest_md5="61c726e1f31dbea0b368bee255bd1436" - diff --git a/godot/.godot/imported/Gold_Carved_Genesis_TX.png-4356225392fe777f0e4165e58db045a8.s3tc.ctex b/godot/.godot/imported/Gold_Carved_Genesis_TX.png-4356225392fe777f0e4165e58db045a8.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Gold_Carved_Genesis_TX.png-4356225392fe777f0e4165e58db045a8.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Gold_Edges_Genesis_TX.png-3d7d28d1fc1bafeb2ce9a1d8c8f4a3c9.s3tc.ctex b/godot/.godot/imported/Gold_Edges_Genesis_TX.png-3d7d28d1fc1bafeb2ce9a1d8c8f4a3c9.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Gold_Edges_Genesis_TX.png-3d7d28d1fc1bafeb2ce9a1d8c8f4a3c9.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Gold_Rounded_Genesis_TX.png-f8c72b8455fa9d2ff29232859de00b68.s3tc.ctex b/godot/.godot/imported/Gold_Rounded_Genesis_TX.png-f8c72b8455fa9d2ff29232859de00b68.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Gold_Rounded_Genesis_TX.png-f8c72b8455fa9d2ff29232859de00b68.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Gold_Wide_Genesis_TX.png-4604009137492feab5c40419765a1cc7.s3tc.ctex b/godot/.godot/imported/Gold_Wide_Genesis_TX.png-4604009137492feab5c40419765a1cc7.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Gold_Wide_Genesis_TX.png-4604009137492feab5c40419765a1cc7.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Grapper.png-2fa32bb070e62b7310e41f75038efda9.ctex b/godot/.godot/imported/Grapper.png-2fa32bb070e62b7310e41f75038efda9.ctex deleted file mode 100644 index 806a1f9aa..000000000 Binary files a/godot/.godot/imported/Grapper.png-2fa32bb070e62b7310e41f75038efda9.ctex and /dev/null differ diff --git a/godot/.godot/imported/Grapper.png-2fa32bb070e62b7310e41f75038efda9.md5 b/godot/.godot/imported/Grapper.png-2fa32bb070e62b7310e41f75038efda9.md5 deleted file mode 100644 index 8eeeff78a..000000000 --- a/godot/.godot/imported/Grapper.png-2fa32bb070e62b7310e41f75038efda9.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="8719a3ee53fde1c94a1f528778b0ce49" -dest_md5="c4f70b698db9b2b420af14d31212b9fb" - diff --git a/godot/.godot/imported/GrapperHighlight.png-c99ba451f437784bce181cb7fb232127.ctex b/godot/.godot/imported/GrapperHighlight.png-c99ba451f437784bce181cb7fb232127.ctex deleted file mode 100644 index 79b8d60a1..000000000 Binary files a/godot/.godot/imported/GrapperHighlight.png-c99ba451f437784bce181cb7fb232127.ctex and /dev/null differ diff --git a/godot/.godot/imported/GrapperHighlight.png-c99ba451f437784bce181cb7fb232127.md5 b/godot/.godot/imported/GrapperHighlight.png-c99ba451f437784bce181cb7fb232127.md5 deleted file mode 100644 index dea2a88fb..000000000 --- a/godot/.godot/imported/GrapperHighlight.png-c99ba451f437784bce181cb7fb232127.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="39b4d69a92244b21bd2edb9f402e8aa6" -dest_md5="f9eac1acce88a54b1966ecbb134cc08b" - diff --git a/godot/.godot/imported/GuiVisibilityHidden.svg-df9b9b3bffe93db0e5cbff5daedbe513.ctex b/godot/.godot/imported/GuiVisibilityHidden.svg-df9b9b3bffe93db0e5cbff5daedbe513.ctex deleted file mode 100644 index 91e77388b..000000000 Binary files a/godot/.godot/imported/GuiVisibilityHidden.svg-df9b9b3bffe93db0e5cbff5daedbe513.ctex and /dev/null differ diff --git a/godot/.godot/imported/GuiVisibilityHidden.svg-df9b9b3bffe93db0e5cbff5daedbe513.md5 b/godot/.godot/imported/GuiVisibilityHidden.svg-df9b9b3bffe93db0e5cbff5daedbe513.md5 deleted file mode 100644 index 4f2255ccb..000000000 --- a/godot/.godot/imported/GuiVisibilityHidden.svg-df9b9b3bffe93db0e5cbff5daedbe513.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="29c07d0ec1641467db271184902bc9f2" -dest_md5="8e7a5c6ffcb61ac10d1787a1c7f5272c" - diff --git a/godot/.godot/imported/GuiVisibilityVisible.svg-f7d3c0503119d36666a35c5173a14b94.ctex b/godot/.godot/imported/GuiVisibilityVisible.svg-f7d3c0503119d36666a35c5173a14b94.ctex deleted file mode 100644 index 881e19ce3..000000000 Binary files a/godot/.godot/imported/GuiVisibilityVisible.svg-f7d3c0503119d36666a35c5173a14b94.ctex and /dev/null differ diff --git a/godot/.godot/imported/GuiVisibilityVisible.svg-f7d3c0503119d36666a35c5173a14b94.md5 b/godot/.godot/imported/GuiVisibilityVisible.svg-f7d3c0503119d36666a35c5173a14b94.md5 deleted file mode 100644 index ecee6a08e..000000000 --- a/godot/.godot/imported/GuiVisibilityVisible.svg-f7d3c0503119d36666a35c5173a14b94.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="c6f8489a24c5909c11924f2e44888793" -dest_md5="d1d32cf982d02313ca6ce997b46eecdf" - diff --git a/godot/.godot/imported/HideUIIcon.png-29abfa5bb04b06ab16a45c06a60c6a73.ctex b/godot/.godot/imported/HideUIIcon.png-29abfa5bb04b06ab16a45c06a60c6a73.ctex deleted file mode 100644 index f3ef24873..000000000 Binary files a/godot/.godot/imported/HideUIIcon.png-29abfa5bb04b06ab16a45c06a60c6a73.ctex and /dev/null differ diff --git a/godot/.godot/imported/HideUIIcon.png-29abfa5bb04b06ab16a45c06a60c6a73.md5 b/godot/.godot/imported/HideUIIcon.png-29abfa5bb04b06ab16a45c06a60c6a73.md5 deleted file mode 100644 index 5338e1a21..000000000 --- a/godot/.godot/imported/HideUIIcon.png-29abfa5bb04b06ab16a45c06a60c6a73.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="a2b22e523f6d26d3ea139648f2921f22" -dest_md5="e8e2f8465e3cac68bbd4a4d50b03e826" - diff --git a/godot/.godot/imported/HideUIIcon.png-92cf02bc1e971f59600ff12b719b0530.ctex b/godot/.godot/imported/HideUIIcon.png-92cf02bc1e971f59600ff12b719b0530.ctex deleted file mode 100644 index f3ef24873..000000000 Binary files a/godot/.godot/imported/HideUIIcon.png-92cf02bc1e971f59600ff12b719b0530.ctex and /dev/null differ diff --git a/godot/.godot/imported/HideUIIcon.png-92cf02bc1e971f59600ff12b719b0530.md5 b/godot/.godot/imported/HideUIIcon.png-92cf02bc1e971f59600ff12b719b0530.md5 deleted file mode 100644 index 5338e1a21..000000000 --- a/godot/.godot/imported/HideUIIcon.png-92cf02bc1e971f59600ff12b719b0530.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="a2b22e523f6d26d3ea139648f2921f22" -dest_md5="e8e2f8465e3cac68bbd4a4d50b03e826" - diff --git a/godot/.godot/imported/HighlightsIcn.png-54465b6e3c6d228c5f237710e785412c.ctex b/godot/.godot/imported/HighlightsIcn.png-54465b6e3c6d228c5f237710e785412c.ctex deleted file mode 100644 index b83d471a6..000000000 Binary files a/godot/.godot/imported/HighlightsIcn.png-54465b6e3c6d228c5f237710e785412c.ctex and /dev/null differ diff --git a/godot/.godot/imported/HighlightsIcn.png-54465b6e3c6d228c5f237710e785412c.md5 b/godot/.godot/imported/HighlightsIcn.png-54465b6e3c6d228c5f237710e785412c.md5 deleted file mode 100644 index 36ab3648f..000000000 --- a/godot/.godot/imported/HighlightsIcn.png-54465b6e3c6d228c5f237710e785412c.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="7ef079a3607639e8e147097dc92cf6a3" -dest_md5="0ef69e7a5772cd2f18d55874752d1576" - diff --git a/godot/.godot/imported/Hold trigger to continue.png-ce0a3a4de13c262f7015326bad2cb09d.etc2.ctex b/godot/.godot/imported/Hold trigger to continue.png-ce0a3a4de13c262f7015326bad2cb09d.etc2.ctex deleted file mode 100644 index bafb7292c..000000000 Binary files a/godot/.godot/imported/Hold trigger to continue.png-ce0a3a4de13c262f7015326bad2cb09d.etc2.ctex and /dev/null differ diff --git a/godot/.godot/imported/Hold trigger to continue.png-ce0a3a4de13c262f7015326bad2cb09d.md5 b/godot/.godot/imported/Hold trigger to continue.png-ce0a3a4de13c262f7015326bad2cb09d.md5 deleted file mode 100644 index 69607de27..000000000 --- a/godot/.godot/imported/Hold trigger to continue.png-ce0a3a4de13c262f7015326bad2cb09d.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="e28eae63576724acb582fb9152a87431" -dest_md5="a8da1841cd5e1e42cd5051812fe4d185" - diff --git a/godot/.godot/imported/Hold trigger to continue.png-ce0a3a4de13c262f7015326bad2cb09d.s3tc.ctex b/godot/.godot/imported/Hold trigger to continue.png-ce0a3a4de13c262f7015326bad2cb09d.s3tc.ctex deleted file mode 100644 index 5d58caccb..000000000 Binary files a/godot/.godot/imported/Hold trigger to continue.png-ce0a3a4de13c262f7015326bad2cb09d.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/InfoCardBase.png-d3e9881cd3f28bc7448d250529309fe8.ctex b/godot/.godot/imported/InfoCardBase.png-d3e9881cd3f28bc7448d250529309fe8.ctex deleted file mode 100644 index 9b0a6d499..000000000 Binary files a/godot/.godot/imported/InfoCardBase.png-d3e9881cd3f28bc7448d250529309fe8.ctex and /dev/null differ diff --git a/godot/.godot/imported/InfoCardBase.png-d3e9881cd3f28bc7448d250529309fe8.md5 b/godot/.godot/imported/InfoCardBase.png-d3e9881cd3f28bc7448d250529309fe8.md5 deleted file mode 100644 index 3ddcb6ed2..000000000 --- a/godot/.godot/imported/InfoCardBase.png-d3e9881cd3f28bc7448d250529309fe8.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="4d9ab5ec27815004ad582ed541e67a15" -dest_md5="ff5080365089881f5d61831bfdac21dc" - diff --git a/godot/.godot/imported/InfoCardCommon.png-30187a4e0ce3ece08a6b51b5b04ad083.ctex b/godot/.godot/imported/InfoCardCommon.png-30187a4e0ce3ece08a6b51b5b04ad083.ctex deleted file mode 100644 index d864f726c..000000000 Binary files a/godot/.godot/imported/InfoCardCommon.png-30187a4e0ce3ece08a6b51b5b04ad083.ctex and /dev/null differ diff --git a/godot/.godot/imported/InfoCardCommon.png-30187a4e0ce3ece08a6b51b5b04ad083.md5 b/godot/.godot/imported/InfoCardCommon.png-30187a4e0ce3ece08a6b51b5b04ad083.md5 deleted file mode 100644 index 382833583..000000000 --- a/godot/.godot/imported/InfoCardCommon.png-30187a4e0ce3ece08a6b51b5b04ad083.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="4ec9a691ffed306e55b3db1639065f4e" -dest_md5="2d9eb9bc66000a74d91d80d11e0d086b" - diff --git a/godot/.godot/imported/InfoCardEpic.png-189f4298f9826a900d69d43f4bdb485b.ctex b/godot/.godot/imported/InfoCardEpic.png-189f4298f9826a900d69d43f4bdb485b.ctex deleted file mode 100644 index 81e46694e..000000000 Binary files a/godot/.godot/imported/InfoCardEpic.png-189f4298f9826a900d69d43f4bdb485b.ctex and /dev/null differ diff --git a/godot/.godot/imported/InfoCardEpic.png-189f4298f9826a900d69d43f4bdb485b.md5 b/godot/.godot/imported/InfoCardEpic.png-189f4298f9826a900d69d43f4bdb485b.md5 deleted file mode 100644 index b860f9fbf..000000000 --- a/godot/.godot/imported/InfoCardEpic.png-189f4298f9826a900d69d43f4bdb485b.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="1b6a104ed64ad3ee8a42a6276af1032c" -dest_md5="fbe38f7c16afdc0aee60207007df9662" - diff --git a/godot/.godot/imported/InfoCardLegendary.png-f53f4a7af5d526b7297d53da42c3b28c.ctex b/godot/.godot/imported/InfoCardLegendary.png-f53f4a7af5d526b7297d53da42c3b28c.ctex deleted file mode 100644 index 0dd2e8189..000000000 Binary files a/godot/.godot/imported/InfoCardLegendary.png-f53f4a7af5d526b7297d53da42c3b28c.ctex and /dev/null differ diff --git a/godot/.godot/imported/InfoCardLegendary.png-f53f4a7af5d526b7297d53da42c3b28c.md5 b/godot/.godot/imported/InfoCardLegendary.png-f53f4a7af5d526b7297d53da42c3b28c.md5 deleted file mode 100644 index eb1cfccf1..000000000 --- a/godot/.godot/imported/InfoCardLegendary.png-f53f4a7af5d526b7297d53da42c3b28c.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="89889caf53b278bc284ff90a09a1a205" -dest_md5="7b8e795bfb12aca70247c02a391f7617" - diff --git a/godot/.godot/imported/InfoCardMythic.png-4f1f04ea176b3525d6201ef77a99f890.ctex b/godot/.godot/imported/InfoCardMythic.png-4f1f04ea176b3525d6201ef77a99f890.ctex deleted file mode 100644 index 7d1a7ee59..000000000 Binary files a/godot/.godot/imported/InfoCardMythic.png-4f1f04ea176b3525d6201ef77a99f890.ctex and /dev/null differ diff --git a/godot/.godot/imported/InfoCardMythic.png-4f1f04ea176b3525d6201ef77a99f890.md5 b/godot/.godot/imported/InfoCardMythic.png-4f1f04ea176b3525d6201ef77a99f890.md5 deleted file mode 100644 index 75a219ece..000000000 --- a/godot/.godot/imported/InfoCardMythic.png-4f1f04ea176b3525d6201ef77a99f890.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="2bf0197df52b16f10b0473bafe7970a4" -dest_md5="7603829661e3368fe3a93f2ef2b87a45" - diff --git a/godot/.godot/imported/InfoCardRare.png-0da3ad8bf053ba8dd8840b0f393a86a6.ctex b/godot/.godot/imported/InfoCardRare.png-0da3ad8bf053ba8dd8840b0f393a86a6.ctex deleted file mode 100644 index 7079618e3..000000000 Binary files a/godot/.godot/imported/InfoCardRare.png-0da3ad8bf053ba8dd8840b0f393a86a6.ctex and /dev/null differ diff --git a/godot/.godot/imported/InfoCardRare.png-0da3ad8bf053ba8dd8840b0f393a86a6.md5 b/godot/.godot/imported/InfoCardRare.png-0da3ad8bf053ba8dd8840b0f393a86a6.md5 deleted file mode 100644 index 3f5995c38..000000000 --- a/godot/.godot/imported/InfoCardRare.png-0da3ad8bf053ba8dd8840b0f393a86a6.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="c527878874cf3de8840c3077ff5df17f" -dest_md5="644fe6663b1644229982386c337f2ede" - diff --git a/godot/.godot/imported/InfoCardUncommon.png-c0989e42f77a1b0bd5bc7b144d9ca706.ctex b/godot/.godot/imported/InfoCardUncommon.png-c0989e42f77a1b0bd5bc7b144d9ca706.ctex deleted file mode 100644 index 9e5c04e4f..000000000 Binary files a/godot/.godot/imported/InfoCardUncommon.png-c0989e42f77a1b0bd5bc7b144d9ca706.ctex and /dev/null differ diff --git a/godot/.godot/imported/InfoCardUncommon.png-c0989e42f77a1b0bd5bc7b144d9ca706.md5 b/godot/.godot/imported/InfoCardUncommon.png-c0989e42f77a1b0bd5bc7b144d9ca706.md5 deleted file mode 100644 index 8ec68eec3..000000000 --- a/godot/.godot/imported/InfoCardUncommon.png-c0989e42f77a1b0bd5bc7b144d9ca706.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="c7a8b7be0cfb116a31bacc310d9e31cc" -dest_md5="6a0e9033f94f3f4400a783922884269b" - diff --git a/godot/.godot/imported/InfoCardUnique.png-20882f13124ec6268785e950e0d70325.ctex b/godot/.godot/imported/InfoCardUnique.png-20882f13124ec6268785e950e0d70325.ctex deleted file mode 100644 index 19be1dc6c..000000000 Binary files a/godot/.godot/imported/InfoCardUnique.png-20882f13124ec6268785e950e0d70325.ctex and /dev/null differ diff --git a/godot/.godot/imported/InfoCardUnique.png-20882f13124ec6268785e950e0d70325.md5 b/godot/.godot/imported/InfoCardUnique.png-20882f13124ec6268785e950e0d70325.md5 deleted file mode 100644 index 79552b92c..000000000 --- a/godot/.godot/imported/InfoCardUnique.png-20882f13124ec6268785e950e0d70325.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="3a8255c43ed36bb9ba5125c35835dd52" -dest_md5="dd970a39017339fc9347ee5daf04bd44" - diff --git a/godot/.godot/imported/InteractiveIcon.svg-611c41dc3e36c5573498421a2e82e8b1.ctex b/godot/.godot/imported/InteractiveIcon.svg-611c41dc3e36c5573498421a2e82e8b1.ctex deleted file mode 100644 index 7d2462af9..000000000 Binary files a/godot/.godot/imported/InteractiveIcon.svg-611c41dc3e36c5573498421a2e82e8b1.ctex and /dev/null differ diff --git a/godot/.godot/imported/InteractiveIcon.svg-611c41dc3e36c5573498421a2e82e8b1.md5 b/godot/.godot/imported/InteractiveIcon.svg-611c41dc3e36c5573498421a2e82e8b1.md5 deleted file mode 100644 index 30f2a5a65..000000000 --- a/godot/.godot/imported/InteractiveIcon.svg-611c41dc3e36c5573498421a2e82e8b1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="d1c113904bb780b7527db4ed071e7af9" -dest_md5="95be8e38c1c1ced2c6edb51cd37ecd96" - diff --git a/godot/.godot/imported/JumpInIcn.png-bfe17e97fb8bd69e668f84d6fd7b55e4.ctex b/godot/.godot/imported/JumpInIcn.png-bfe17e97fb8bd69e668f84d6fd7b55e4.ctex deleted file mode 100644 index 4e9009987..000000000 Binary files a/godot/.godot/imported/JumpInIcn.png-bfe17e97fb8bd69e668f84d6fd7b55e4.ctex and /dev/null differ diff --git a/godot/.godot/imported/JumpInIcn.png-bfe17e97fb8bd69e668f84d6fd7b55e4.md5 b/godot/.godot/imported/JumpInIcn.png-bfe17e97fb8bd69e668f84d6fd7b55e4.md5 deleted file mode 100644 index 19bb3341f..000000000 --- a/godot/.godot/imported/JumpInIcn.png-bfe17e97fb8bd69e668f84d6fd7b55e4.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="17bb2853b4638a9321e360170d77e5c3" -dest_md5="12c463d590db588608b4b9075d4467ae" - diff --git a/godot/.godot/imported/LeftArrow.png-a7fe114ca7e0ef2a781795f2437a0fcf.ctex b/godot/.godot/imported/LeftArrow.png-a7fe114ca7e0ef2a781795f2437a0fcf.ctex deleted file mode 100644 index 56f9b4889..000000000 Binary files a/godot/.godot/imported/LeftArrow.png-a7fe114ca7e0ef2a781795f2437a0fcf.ctex and /dev/null differ diff --git a/godot/.godot/imported/LeftArrow.png-a7fe114ca7e0ef2a781795f2437a0fcf.md5 b/godot/.godot/imported/LeftArrow.png-a7fe114ca7e0ef2a781795f2437a0fcf.md5 deleted file mode 100644 index a2b67c14b..000000000 --- a/godot/.godot/imported/LeftArrow.png-a7fe114ca7e0ef2a781795f2437a0fcf.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="cca1d0f5ffefcb4c521710277957d06c" -dest_md5="6337261553bfe750b5fbd60d58f74f47" - diff --git a/godot/.godot/imported/LeftClickIcn.png-c1141e875d004abf256fcd32f9da7f73.ctex b/godot/.godot/imported/LeftClickIcn.png-c1141e875d004abf256fcd32f9da7f73.ctex deleted file mode 100644 index 1a8260883..000000000 Binary files a/godot/.godot/imported/LeftClickIcn.png-c1141e875d004abf256fcd32f9da7f73.ctex and /dev/null differ diff --git a/godot/.godot/imported/LeftClickIcn.png-c1141e875d004abf256fcd32f9da7f73.md5 b/godot/.godot/imported/LeftClickIcn.png-c1141e875d004abf256fcd32f9da7f73.md5 deleted file mode 100644 index 353c69f28..000000000 --- a/godot/.godot/imported/LeftClickIcn.png-c1141e875d004abf256fcd32f9da7f73.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="f24d4a13a091df9159ec9de1f179bc99" -dest_md5="ce4a646a08e13209ab6605d1c6940c3f" - diff --git a/godot/.godot/imported/LeftClickIcn.png-c3c102c8cbd00cdc2ac1583042da92dd.ctex b/godot/.godot/imported/LeftClickIcn.png-c3c102c8cbd00cdc2ac1583042da92dd.ctex deleted file mode 100644 index 1a8260883..000000000 Binary files a/godot/.godot/imported/LeftClickIcn.png-c3c102c8cbd00cdc2ac1583042da92dd.ctex and /dev/null differ diff --git a/godot/.godot/imported/LeftClickIcn.png-c3c102c8cbd00cdc2ac1583042da92dd.md5 b/godot/.godot/imported/LeftClickIcn.png-c3c102c8cbd00cdc2ac1583042da92dd.md5 deleted file mode 100644 index 353c69f28..000000000 --- a/godot/.godot/imported/LeftClickIcn.png-c3c102c8cbd00cdc2ac1583042da92dd.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="f24d4a13a091df9159ec9de1f179bc99" -dest_md5="ce4a646a08e13209ab6605d1c6940c3f" - diff --git a/godot/.godot/imported/LegendaryThumbnail.png-18238d8573797c7c45a2877741d07a84.ctex b/godot/.godot/imported/LegendaryThumbnail.png-18238d8573797c7c45a2877741d07a84.ctex deleted file mode 100644 index e8c757347..000000000 Binary files a/godot/.godot/imported/LegendaryThumbnail.png-18238d8573797c7c45a2877741d07a84.ctex and /dev/null differ diff --git a/godot/.godot/imported/LegendaryThumbnail.png-18238d8573797c7c45a2877741d07a84.md5 b/godot/.godot/imported/LegendaryThumbnail.png-18238d8573797c7c45a2877741d07a84.md5 deleted file mode 100644 index 7f937d1a9..000000000 --- a/godot/.godot/imported/LegendaryThumbnail.png-18238d8573797c7c45a2877741d07a84.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="c85b7abc86f3b8a510787b81ef099d7a" -dest_md5="20c0c4c64824db77a132fed7c31a5b58" - diff --git a/godot/.godot/imported/Log.svg-5d6d5abeecb540795b1134fdd129e664.ctex b/godot/.godot/imported/Log.svg-5d6d5abeecb540795b1134fdd129e664.ctex deleted file mode 100644 index 4c5fbeb90..000000000 Binary files a/godot/.godot/imported/Log.svg-5d6d5abeecb540795b1134fdd129e664.ctex and /dev/null differ diff --git a/godot/.godot/imported/Log.svg-5d6d5abeecb540795b1134fdd129e664.md5 b/godot/.godot/imported/Log.svg-5d6d5abeecb540795b1134fdd129e664.md5 deleted file mode 100644 index 08e12f682..000000000 --- a/godot/.godot/imported/Log.svg-5d6d5abeecb540795b1134fdd129e664.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="dca4552d04c206a40983aa998f535f85" -dest_md5="29e68655b9b9cc7e858504c5716d2372" - diff --git a/godot/.godot/imported/MaleIcon.png-5f23a7f8b89d05f6925105a5d9ce693d.ctex b/godot/.godot/imported/MaleIcon.png-5f23a7f8b89d05f6925105a5d9ce693d.ctex deleted file mode 100644 index f8a7c2881..000000000 Binary files a/godot/.godot/imported/MaleIcon.png-5f23a7f8b89d05f6925105a5d9ce693d.ctex and /dev/null differ diff --git a/godot/.godot/imported/MaleIcon.png-5f23a7f8b89d05f6925105a5d9ce693d.md5 b/godot/.godot/imported/MaleIcon.png-5f23a7f8b89d05f6925105a5d9ce693d.md5 deleted file mode 100644 index c4aec7c4a..000000000 --- a/godot/.godot/imported/MaleIcon.png-5f23a7f8b89d05f6925105a5d9ce693d.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ff0acd10bd64880c1beef92eb8491b96" -dest_md5="bee8347c8d19ad1c6dd7ee48bb9c75a2" - diff --git a/godot/.godot/imported/MaleIcon.png-7979ce80faec194c34acc481151c6a1f.ctex b/godot/.godot/imported/MaleIcon.png-7979ce80faec194c34acc481151c6a1f.ctex deleted file mode 100644 index f8a7c2881..000000000 Binary files a/godot/.godot/imported/MaleIcon.png-7979ce80faec194c34acc481151c6a1f.ctex and /dev/null differ diff --git a/godot/.godot/imported/MaleIcon.png-7979ce80faec194c34acc481151c6a1f.md5 b/godot/.godot/imported/MaleIcon.png-7979ce80faec194c34acc481151c6a1f.md5 deleted file mode 100644 index c4aec7c4a..000000000 --- a/godot/.godot/imported/MaleIcon.png-7979ce80faec194c34acc481151c6a1f.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ff0acd10bd64880c1beef92eb8491b96" -dest_md5="bee8347c8d19ad1c6dd7ee48bb9c75a2" - diff --git a/godot/.godot/imported/MapOff.png-fa30045031e5ab48d6ab829fded9323e.ctex b/godot/.godot/imported/MapOff.png-fa30045031e5ab48d6ab829fded9323e.ctex deleted file mode 100644 index 0fe031727..000000000 Binary files a/godot/.godot/imported/MapOff.png-fa30045031e5ab48d6ab829fded9323e.ctex and /dev/null differ diff --git a/godot/.godot/imported/MapOff.png-fa30045031e5ab48d6ab829fded9323e.md5 b/godot/.godot/imported/MapOff.png-fa30045031e5ab48d6ab829fded9323e.md5 deleted file mode 100644 index 77e78b1ae..000000000 --- a/godot/.godot/imported/MapOff.png-fa30045031e5ab48d6ab829fded9323e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="a6d8256562eb205a2aabce6e1608c27e" -dest_md5="97a6c9ff416424d79076de5a705f97f0" - diff --git a/godot/.godot/imported/MapOn.png-cb571bff5dd2fad8b2570d5561c4288c.ctex b/godot/.godot/imported/MapOn.png-cb571bff5dd2fad8b2570d5561c4288c.ctex deleted file mode 100644 index c63e2e6a3..000000000 Binary files a/godot/.godot/imported/MapOn.png-cb571bff5dd2fad8b2570d5561c4288c.ctex and /dev/null differ diff --git a/godot/.godot/imported/MapOn.png-cb571bff5dd2fad8b2570d5561c4288c.md5 b/godot/.godot/imported/MapOn.png-cb571bff5dd2fad8b2570d5561c4288c.md5 deleted file mode 100644 index 6a226d763..000000000 --- a/godot/.godot/imported/MapOn.png-cb571bff5dd2fad8b2570d5561c4288c.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ea538ef2fe1e639acdb660caa01fa51b" -dest_md5="508f8064092ade704f2b0a3c0502905e" - diff --git a/godot/.godot/imported/Members.svg-8a1ad25a36f3d4455869fa22c05caada.ctex b/godot/.godot/imported/Members.svg-8a1ad25a36f3d4455869fa22c05caada.ctex deleted file mode 100644 index a112ce958..000000000 Binary files a/godot/.godot/imported/Members.svg-8a1ad25a36f3d4455869fa22c05caada.ctex and /dev/null differ diff --git a/godot/.godot/imported/Members.svg-8a1ad25a36f3d4455869fa22c05caada.md5 b/godot/.godot/imported/Members.svg-8a1ad25a36f3d4455869fa22c05caada.md5 deleted file mode 100644 index 5c9c4ecfb..000000000 --- a/godot/.godot/imported/Members.svg-8a1ad25a36f3d4455869fa22c05caada.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="49ad155a15313d3a430182746ac4048f" -dest_md5="681e4c26dc0ea9671b334c43b2b71522" - diff --git a/godot/.godot/imported/Metal_Medium_Genesis_TX.png-f53605dc5a2276358c655ba8b7e3d141.s3tc.ctex b/godot/.godot/imported/Metal_Medium_Genesis_TX.png-f53605dc5a2276358c655ba8b7e3d141.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Metal_Medium_Genesis_TX.png-f53605dc5a2276358c655ba8b7e3d141.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Metal_Rounded_Genesis_TX.png-0d5b8cc5140ddbeae2df4efa11ab3180.s3tc.ctex b/godot/.godot/imported/Metal_Rounded_Genesis_TX.png-0d5b8cc5140ddbeae2df4efa11ab3180.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Metal_Rounded_Genesis_TX.png-0d5b8cc5140ddbeae2df4efa11ab3180.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Metal_Slim_Genesis_TX.png-2108a9acc8e9e99a103571fe6f888f2a.s3tc.ctex b/godot/.godot/imported/Metal_Slim_Genesis_TX.png-2108a9acc8e9e99a103571fe6f888f2a.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Metal_Slim_Genesis_TX.png-2108a9acc8e9e99a103571fe6f888f2a.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Metal_Wide_Genesis_TX.png-65334a8d2f1a69fabe31654750d60b15.s3tc.ctex b/godot/.godot/imported/Metal_Wide_Genesis_TX.png-65334a8d2f1a69fabe31654750d60b15.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Metal_Wide_Genesis_TX.png-65334a8d2f1a69fabe31654750d60b15.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Minimal_Black_Genesis_TX.png-1096c034bfac043c372991cc0da08108.s3tc.ctex b/godot/.godot/imported/Minimal_Black_Genesis_TX.png-1096c034bfac043c372991cc0da08108.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Minimal_Black_Genesis_TX.png-1096c034bfac043c372991cc0da08108.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Minimal_Grey_Genesis_TX.png-7a21468230fe2e001ef25e07e15deb63.s3tc.ctex b/godot/.godot/imported/Minimal_Grey_Genesis_TX.png-7a21468230fe2e001ef25e07e15deb63.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Minimal_Grey_Genesis_TX.png-7a21468230fe2e001ef25e07e15deb63.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Minimal_White_Genesis_TX.png-14ae388a1385a0743a173775db720ac2.s3tc.ctex b/godot/.godot/imported/Minimal_White_Genesis_TX.png-14ae388a1385a0743a173775db720ac2.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Minimal_White_Genesis_TX.png-14ae388a1385a0743a173775db720ac2.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Minimal_Wide_Genesis_TX.png-f38871aac6f22d81d2034d08699775b8.s3tc.ctex b/godot/.godot/imported/Minimal_Wide_Genesis_TX.png-f38871aac6f22d81d2034d08699775b8.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Minimal_Wide_Genesis_TX.png-f38871aac6f22d81d2034d08699775b8.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/MulticolorDotsLoading.png-bef4fe277351a75fc4139a00dafe7573.s3tc.ctex b/godot/.godot/imported/MulticolorDotsLoading.png-bef4fe277351a75fc4139a00dafe7573.s3tc.ctex deleted file mode 100644 index bd1cfde15..000000000 Binary files a/godot/.godot/imported/MulticolorDotsLoading.png-bef4fe277351a75fc4139a00dafe7573.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/MythicThumbnail.png-6225442ae407ea584002cd681d656084.ctex b/godot/.godot/imported/MythicThumbnail.png-6225442ae407ea584002cd681d656084.ctex deleted file mode 100644 index 34aba647f..000000000 Binary files a/godot/.godot/imported/MythicThumbnail.png-6225442ae407ea584002cd681d656084.ctex and /dev/null differ diff --git a/godot/.godot/imported/MythicThumbnail.png-6225442ae407ea584002cd681d656084.md5 b/godot/.godot/imported/MythicThumbnail.png-6225442ae407ea584002cd681d656084.md5 deleted file mode 100644 index ea48615e7..000000000 --- a/godot/.godot/imported/MythicThumbnail.png-6225442ae407ea584002cd681d656084.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="fff95402d6bc4b8a490b25824961fa86" -dest_md5="c5ecb66ec0fc034a32abd4b8ddc334bb" - diff --git a/godot/.godot/imported/NFTIcon.png-bb4805a41f3334e4b61b60845ef9ae1d.ctex b/godot/.godot/imported/NFTIcon.png-bb4805a41f3334e4b61b60845ef9ae1d.ctex deleted file mode 100644 index 8c7ae5286..000000000 Binary files a/godot/.godot/imported/NFTIcon.png-bb4805a41f3334e4b61b60845ef9ae1d.ctex and /dev/null differ diff --git a/godot/.godot/imported/NFTIcon.png-bb4805a41f3334e4b61b60845ef9ae1d.md5 b/godot/.godot/imported/NFTIcon.png-bb4805a41f3334e4b61b60845ef9ae1d.md5 deleted file mode 100644 index c9f82354c..000000000 --- a/godot/.godot/imported/NFTIcon.png-bb4805a41f3334e4b61b60845ef9ae1d.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="c43a0e054885e55e6c5721e85df9b6fc" -dest_md5="7de485e5cd222c4761f2654826ed0ee1" - diff --git a/godot/.godot/imported/NPCs_Aisha.png-c89a9ef41d66b2e75c3725100c5537cd.ctex b/godot/.godot/imported/NPCs_Aisha.png-c89a9ef41d66b2e75c3725100c5537cd.ctex deleted file mode 100644 index 3710f2de4..000000000 Binary files a/godot/.godot/imported/NPCs_Aisha.png-c89a9ef41d66b2e75c3725100c5537cd.ctex and /dev/null differ diff --git a/godot/.godot/imported/NPCs_Aisha.png-c89a9ef41d66b2e75c3725100c5537cd.md5 b/godot/.godot/imported/NPCs_Aisha.png-c89a9ef41d66b2e75c3725100c5537cd.md5 deleted file mode 100644 index 686df67b7..000000000 --- a/godot/.godot/imported/NPCs_Aisha.png-c89a9ef41d66b2e75c3725100c5537cd.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="282e88fe2a2dc462e23727b0a9b9212e" -dest_md5="e74aa7fd8a29bd72bda21fa6e5b55cb0" - diff --git a/godot/.godot/imported/NPCs_Robot.png-2c2304bcbe502bf2256d0a149d313fd1.ctex b/godot/.godot/imported/NPCs_Robot.png-2c2304bcbe502bf2256d0a149d313fd1.ctex deleted file mode 100644 index 4f13c4d52..000000000 Binary files a/godot/.godot/imported/NPCs_Robot.png-2c2304bcbe502bf2256d0a149d313fd1.ctex and /dev/null differ diff --git a/godot/.godot/imported/NPCs_Robot.png-2c2304bcbe502bf2256d0a149d313fd1.md5 b/godot/.godot/imported/NPCs_Robot.png-2c2304bcbe502bf2256d0a149d313fd1.md5 deleted file mode 100644 index 4d51bca0e..000000000 --- a/godot/.godot/imported/NPCs_Robot.png-2c2304bcbe502bf2256d0a149d313fd1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="fcf85ae00ff1d63ab1a4eda911f3371a" -dest_md5="206988d8940eb01205d28d636ec43df1" - diff --git a/godot/.godot/imported/NoneIcon.png-4950ad9447a67721bf05f5161d54459b.ctex b/godot/.godot/imported/NoneIcon.png-4950ad9447a67721bf05f5161d54459b.ctex deleted file mode 100644 index 3e5898b8a..000000000 Binary files a/godot/.godot/imported/NoneIcon.png-4950ad9447a67721bf05f5161d54459b.ctex and /dev/null differ diff --git a/godot/.godot/imported/NoneIcon.png-4950ad9447a67721bf05f5161d54459b.md5 b/godot/.godot/imported/NoneIcon.png-4950ad9447a67721bf05f5161d54459b.md5 deleted file mode 100644 index 08b7033c6..000000000 --- a/godot/.godot/imported/NoneIcon.png-4950ad9447a67721bf05f5161d54459b.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="fe0cdf1ea515680083732824fd0621d7" -dest_md5="41e744f450e9e9d1dfc05fa37162bb41" - diff --git a/godot/.godot/imported/OutfitIcon.png-29f24422321cb8e62b82abfcc424f42c.ctex b/godot/.godot/imported/OutfitIcon.png-29f24422321cb8e62b82abfcc424f42c.ctex deleted file mode 100644 index 3987a4c6b..000000000 Binary files a/godot/.godot/imported/OutfitIcon.png-29f24422321cb8e62b82abfcc424f42c.ctex and /dev/null differ diff --git a/godot/.godot/imported/OutfitIcon.png-29f24422321cb8e62b82abfcc424f42c.md5 b/godot/.godot/imported/OutfitIcon.png-29f24422321cb8e62b82abfcc424f42c.md5 deleted file mode 100644 index 127f2d90d..000000000 --- a/godot/.godot/imported/OutfitIcon.png-29f24422321cb8e62b82abfcc424f42c.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="cef750a6d64801e6d9e301322f16fce4" -dest_md5="93f8f3adb39ed10bc4a88852657ebdc5" - diff --git a/godot/.godot/imported/PinOutline.svg-5043dae38befc9b5128ad7b3ee7d0929.ctex b/godot/.godot/imported/PinOutline.svg-5043dae38befc9b5128ad7b3ee7d0929.ctex deleted file mode 100644 index 0d8690cef..000000000 Binary files a/godot/.godot/imported/PinOutline.svg-5043dae38befc9b5128ad7b3ee7d0929.ctex and /dev/null differ diff --git a/godot/.godot/imported/PinOutline.svg-5043dae38befc9b5128ad7b3ee7d0929.md5 b/godot/.godot/imported/PinOutline.svg-5043dae38befc9b5128ad7b3ee7d0929.md5 deleted file mode 100644 index a4f1aa631..000000000 --- a/godot/.godot/imported/PinOutline.svg-5043dae38befc9b5128ad7b3ee7d0929.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="433f85d29bb0276e9e1aca6197657f74" -dest_md5="21d805619be2f1cbf4f6314bb5405e1b" - diff --git a/godot/.godot/imported/Pins_Genesis_TX.png-57d6cca73ac18dbc626fee8a9e61ff71.s3tc.ctex b/godot/.godot/imported/Pins_Genesis_TX.png-57d6cca73ac18dbc626fee8a9e61ff71.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Pins_Genesis_TX.png-57d6cca73ac18dbc626fee8a9e61ff71.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/Places.png-98cbce36beddd3d883ff69e67a7b5622.ctex b/godot/.godot/imported/Places.png-98cbce36beddd3d883ff69e67a7b5622.ctex deleted file mode 100644 index 386127966..000000000 Binary files a/godot/.godot/imported/Places.png-98cbce36beddd3d883ff69e67a7b5622.ctex and /dev/null differ diff --git a/godot/.godot/imported/Places.png-98cbce36beddd3d883ff69e67a7b5622.md5 b/godot/.godot/imported/Places.png-98cbce36beddd3d883ff69e67a7b5622.md5 deleted file mode 100644 index b1b29b023..000000000 --- a/godot/.godot/imported/Places.png-98cbce36beddd3d883ff69e67a7b5622.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="e8283921943289019c02e308309102c1" -dest_md5="23ade6ac466a15418a355eb05ee5853d" - diff --git a/godot/.godot/imported/Profile.svg-1bda05f8636d2018348a39dba19a59a6.ctex b/godot/.godot/imported/Profile.svg-1bda05f8636d2018348a39dba19a59a6.ctex deleted file mode 100644 index 9ebe27ef1..000000000 Binary files a/godot/.godot/imported/Profile.svg-1bda05f8636d2018348a39dba19a59a6.ctex and /dev/null differ diff --git a/godot/.godot/imported/Profile.svg-1bda05f8636d2018348a39dba19a59a6.md5 b/godot/.godot/imported/Profile.svg-1bda05f8636d2018348a39dba19a59a6.md5 deleted file mode 100644 index 554ab7a8f..000000000 --- a/godot/.godot/imported/Profile.svg-1bda05f8636d2018348a39dba19a59a6.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="9aa87cb9e8fdbe905b625bd9b3b6dc29" -dest_md5="226c55a60988da0309f19799c99cacdb" - diff --git a/godot/.godot/imported/ProfileExample.png-7203dfc2b57f1868a70af8f860c1c999.ctex b/godot/.godot/imported/ProfileExample.png-7203dfc2b57f1868a70af8f860c1c999.ctex deleted file mode 100644 index 6e0c8bcae..000000000 Binary files a/godot/.godot/imported/ProfileExample.png-7203dfc2b57f1868a70af8f860c1c999.ctex and /dev/null differ diff --git a/godot/.godot/imported/ProfileExample.png-7203dfc2b57f1868a70af8f860c1c999.md5 b/godot/.godot/imported/ProfileExample.png-7203dfc2b57f1868a70af8f860c1c999.md5 deleted file mode 100644 index a119c93d0..000000000 --- a/godot/.godot/imported/ProfileExample.png-7203dfc2b57f1868a70af8f860c1c999.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="f14b57ac919d172ab26730958f577dbb" -dest_md5="aa751f970462e912d57ecd371f9019fc" - diff --git a/godot/.godot/imported/RareThumbnail.png-2f908f78989bddbef1e3638f05fa846c.ctex b/godot/.godot/imported/RareThumbnail.png-2f908f78989bddbef1e3638f05fa846c.ctex deleted file mode 100644 index 59857fdc1..000000000 Binary files a/godot/.godot/imported/RareThumbnail.png-2f908f78989bddbef1e3638f05fa846c.ctex and /dev/null differ diff --git a/godot/.godot/imported/RareThumbnail.png-2f908f78989bddbef1e3638f05fa846c.md5 b/godot/.godot/imported/RareThumbnail.png-2f908f78989bddbef1e3638f05fa846c.md5 deleted file mode 100644 index 244de581c..000000000 --- a/godot/.godot/imported/RareThumbnail.png-2f908f78989bddbef1e3638f05fa846c.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="8aca04196a29ef3d89f503b78eaf175e" -dest_md5="e151dfc1cefdf679239b88c6d12a854b" - diff --git a/godot/.godot/imported/Rarity.png-53a2e9368d2d59b1cd989d6701411c62.ctex b/godot/.godot/imported/Rarity.png-53a2e9368d2d59b1cd989d6701411c62.ctex deleted file mode 100644 index d278855a2..000000000 Binary files a/godot/.godot/imported/Rarity.png-53a2e9368d2d59b1cd989d6701411c62.ctex and /dev/null differ diff --git a/godot/.godot/imported/Rarity.png-53a2e9368d2d59b1cd989d6701411c62.md5 b/godot/.godot/imported/Rarity.png-53a2e9368d2d59b1cd989d6701411c62.md5 deleted file mode 100644 index dd3717288..000000000 --- a/godot/.godot/imported/Rarity.png-53a2e9368d2d59b1cd989d6701411c62.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="8c74b656f4126d20a50cbb8ff3474d18" -dest_md5="61923c0eda7d30731b3dba912415e838" - diff --git a/godot/.godot/imported/Rarity.png-ecc126b0574cf3c9ed7fd6721db4c4ed.ctex b/godot/.godot/imported/Rarity.png-ecc126b0574cf3c9ed7fd6721db4c4ed.ctex deleted file mode 100644 index d278855a2..000000000 Binary files a/godot/.godot/imported/Rarity.png-ecc126b0574cf3c9ed7fd6721db4c4ed.ctex and /dev/null differ diff --git a/godot/.godot/imported/Rarity.png-ecc126b0574cf3c9ed7fd6721db4c4ed.md5 b/godot/.godot/imported/Rarity.png-ecc126b0574cf3c9ed7fd6721db4c4ed.md5 deleted file mode 100644 index dd3717288..000000000 --- a/godot/.godot/imported/Rarity.png-ecc126b0574cf3c9ed7fd6721db4c4ed.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="8c74b656f4126d20a50cbb8ff3474d18" -dest_md5="61923c0eda7d30731b3dba912415e838" - diff --git a/godot/.godot/imported/RightArrow.png-b06ec80372f8cd04dd1bd7813de1198c.ctex b/godot/.godot/imported/RightArrow.png-b06ec80372f8cd04dd1bd7813de1198c.ctex deleted file mode 100644 index 4ce65a223..000000000 Binary files a/godot/.godot/imported/RightArrow.png-b06ec80372f8cd04dd1bd7813de1198c.ctex and /dev/null differ diff --git a/godot/.godot/imported/RightArrow.png-b06ec80372f8cd04dd1bd7813de1198c.md5 b/godot/.godot/imported/RightArrow.png-b06ec80372f8cd04dd1bd7813de1198c.md5 deleted file mode 100644 index 244e2d7fd..000000000 --- a/godot/.godot/imported/RightArrow.png-b06ec80372f8cd04dd1bd7813de1198c.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="75aab4440bf1476083d3e18890f84bb8" -dest_md5="697219681853dafd68f486657e9262c1" - diff --git a/godot/.godot/imported/RightClickIcn.png-68a397a8ee26d8caa9e43311c0c151f8.ctex b/godot/.godot/imported/RightClickIcn.png-68a397a8ee26d8caa9e43311c0c151f8.ctex deleted file mode 100644 index e576c75aa..000000000 Binary files a/godot/.godot/imported/RightClickIcn.png-68a397a8ee26d8caa9e43311c0c151f8.ctex and /dev/null differ diff --git a/godot/.godot/imported/RightClickIcn.png-68a397a8ee26d8caa9e43311c0c151f8.md5 b/godot/.godot/imported/RightClickIcn.png-68a397a8ee26d8caa9e43311c0c151f8.md5 deleted file mode 100644 index d11ef2b76..000000000 --- a/godot/.godot/imported/RightClickIcn.png-68a397a8ee26d8caa9e43311c0c151f8.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="93e40c36c02ce4ed95665d58ece6f91a" -dest_md5="961e258b905f0ebde05c388910acbac2" - diff --git a/godot/.godot/imported/RightClickIcn.png-d5f87c4aa54899246fcbcb230ad7c34e.ctex b/godot/.godot/imported/RightClickIcn.png-d5f87c4aa54899246fcbcb230ad7c34e.ctex deleted file mode 100644 index e576c75aa..000000000 Binary files a/godot/.godot/imported/RightClickIcn.png-d5f87c4aa54899246fcbcb230ad7c34e.ctex and /dev/null differ diff --git a/godot/.godot/imported/RightClickIcn.png-d5f87c4aa54899246fcbcb230ad7c34e.md5 b/godot/.godot/imported/RightClickIcn.png-d5f87c4aa54899246fcbcb230ad7c34e.md5 deleted file mode 100644 index d11ef2b76..000000000 --- a/godot/.godot/imported/RightClickIcn.png-d5f87c4aa54899246fcbcb230ad7c34e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="93e40c36c02ce4ed95665d58ece6f91a" -dest_md5="961e258b905f0ebde05c388910acbac2" - diff --git a/godot/.godot/imported/RotateIcn.png-21b2ecd9e91b4cfc0e3a4008e953efc5.ctex b/godot/.godot/imported/RotateIcn.png-21b2ecd9e91b4cfc0e3a4008e953efc5.ctex deleted file mode 100644 index 8a6af1c14..000000000 Binary files a/godot/.godot/imported/RotateIcn.png-21b2ecd9e91b4cfc0e3a4008e953efc5.ctex and /dev/null differ diff --git a/godot/.godot/imported/RotateIcn.png-21b2ecd9e91b4cfc0e3a4008e953efc5.md5 b/godot/.godot/imported/RotateIcn.png-21b2ecd9e91b4cfc0e3a4008e953efc5.md5 deleted file mode 100644 index 4dfcf2622..000000000 --- a/godot/.godot/imported/RotateIcn.png-21b2ecd9e91b4cfc0e3a4008e953efc5.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="faecbe9605c2436ff77cbc91766575cb" -dest_md5="e665e04f604d5054198f1d626d86b173" - diff --git a/godot/.godot/imported/Search.svg-96afe69ec515a1622b7eb28fc5ba496e.ctex b/godot/.godot/imported/Search.svg-96afe69ec515a1622b7eb28fc5ba496e.ctex deleted file mode 100644 index b0aefba4b..000000000 Binary files a/godot/.godot/imported/Search.svg-96afe69ec515a1622b7eb28fc5ba496e.ctex and /dev/null differ diff --git a/godot/.godot/imported/Search.svg-96afe69ec515a1622b7eb28fc5ba496e.md5 b/godot/.godot/imported/Search.svg-96afe69ec515a1622b7eb28fc5ba496e.md5 deleted file mode 100644 index 5ba586b8a..000000000 --- a/godot/.godot/imported/Search.svg-96afe69ec515a1622b7eb28fc5ba496e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="1463ac6d8449e754f32415b9aa098a0b" -dest_md5="48bb1b34e6c274dfe4ebe69059e51ae0" - diff --git a/godot/.godot/imported/SettingsOff.png-ecad34758dcebcaa2dd3e59cafa9b4ae.ctex b/godot/.godot/imported/SettingsOff.png-ecad34758dcebcaa2dd3e59cafa9b4ae.ctex deleted file mode 100644 index 4be46faaf..000000000 Binary files a/godot/.godot/imported/SettingsOff.png-ecad34758dcebcaa2dd3e59cafa9b4ae.ctex and /dev/null differ diff --git a/godot/.godot/imported/SettingsOff.png-ecad34758dcebcaa2dd3e59cafa9b4ae.md5 b/godot/.godot/imported/SettingsOff.png-ecad34758dcebcaa2dd3e59cafa9b4ae.md5 deleted file mode 100644 index 2d24795ea..000000000 --- a/godot/.godot/imported/SettingsOff.png-ecad34758dcebcaa2dd3e59cafa9b4ae.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="4d3a96f7f6c0140e20d6e3960f00ac04" -dest_md5="d732d366c6a1f05ad7795809464a14b8" - diff --git a/godot/.godot/imported/SettingsOn.png-1690fac4091b0fee056b0c29269877a7.ctex b/godot/.godot/imported/SettingsOn.png-1690fac4091b0fee056b0c29269877a7.ctex deleted file mode 100644 index 783eb31e7..000000000 Binary files a/godot/.godot/imported/SettingsOn.png-1690fac4091b0fee056b0c29269877a7.ctex and /dev/null differ diff --git a/godot/.godot/imported/SettingsOn.png-1690fac4091b0fee056b0c29269877a7.md5 b/godot/.godot/imported/SettingsOn.png-1690fac4091b0fee056b0c29269877a7.md5 deleted file mode 100644 index c5ca694f1..000000000 --- a/godot/.godot/imported/SettingsOn.png-1690fac4091b0fee056b0c29269877a7.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="cbe520b90ac4efd4b7d973fb7b99cbb8" -dest_md5="6bcaa13d396a5cb6557ab4e4394b50b3" - diff --git a/godot/.godot/imported/SliderHandle.png-43e9b7273b7ec24b4a91fb8d4c0ee2bb.ctex b/godot/.godot/imported/SliderHandle.png-43e9b7273b7ec24b4a91fb8d4c0ee2bb.ctex deleted file mode 100644 index 662632de8..000000000 Binary files a/godot/.godot/imported/SliderHandle.png-43e9b7273b7ec24b4a91fb8d4c0ee2bb.ctex and /dev/null differ diff --git a/godot/.godot/imported/SliderHandle.png-43e9b7273b7ec24b4a91fb8d4c0ee2bb.md5 b/godot/.godot/imported/SliderHandle.png-43e9b7273b7ec24b4a91fb8d4c0ee2bb.md5 deleted file mode 100644 index eba6153cf..000000000 --- a/godot/.godot/imported/SliderHandle.png-43e9b7273b7ec24b4a91fb8d4c0ee2bb.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="8117fc6f30f5547ba5ecf84f4124f62b" -dest_md5="bc14084693de98edc86373725f6c7b36" - diff --git a/godot/.godot/imported/Tape_Genesis_TX.png-68f6b56cd4af45db4f890da61c58f5e2.s3tc.ctex b/godot/.godot/imported/Tape_Genesis_TX.png-68f6b56cd4af45db4f890da61c58f5e2.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Tape_Genesis_TX.png-68f6b56cd4af45db4f890da61c58f5e2.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/UnCheckButton.png-0c55c352e2d0a1e44c5e14942c46d5cc.ctex b/godot/.godot/imported/UnCheckButton.png-0c55c352e2d0a1e44c5e14942c46d5cc.ctex deleted file mode 100644 index 15a097f66..000000000 Binary files a/godot/.godot/imported/UnCheckButton.png-0c55c352e2d0a1e44c5e14942c46d5cc.ctex and /dev/null differ diff --git a/godot/.godot/imported/UnCheckButton.png-0c55c352e2d0a1e44c5e14942c46d5cc.md5 b/godot/.godot/imported/UnCheckButton.png-0c55c352e2d0a1e44c5e14942c46d5cc.md5 deleted file mode 100644 index 2739e29a1..000000000 --- a/godot/.godot/imported/UnCheckButton.png-0c55c352e2d0a1e44c5e14942c46d5cc.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="8fe9bb7990d719209970c79f6725ad2c" -dest_md5="6ec2e3639ea70fef74df0c8c8c347ba5" - diff --git a/godot/.godot/imported/UnCheckButtonDis.png-b5f955875949a51b6aaff2fd03f6c542.ctex b/godot/.godot/imported/UnCheckButtonDis.png-b5f955875949a51b6aaff2fd03f6c542.ctex deleted file mode 100644 index 3c5fec844..000000000 Binary files a/godot/.godot/imported/UnCheckButtonDis.png-b5f955875949a51b6aaff2fd03f6c542.ctex and /dev/null differ diff --git a/godot/.godot/imported/UnCheckButtonDis.png-b5f955875949a51b6aaff2fd03f6c542.md5 b/godot/.godot/imported/UnCheckButtonDis.png-b5f955875949a51b6aaff2fd03f6c542.md5 deleted file mode 100644 index 30904fd35..000000000 --- a/godot/.godot/imported/UnCheckButtonDis.png-b5f955875949a51b6aaff2fd03f6c542.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="7a6e0b9be23395043d950c8ac7805537" -dest_md5="5c6a76ac80f5a079c58dee0527e89637" - diff --git a/godot/.godot/imported/UnCheckedBox.png-c5ba55f46ddf793a743cff910372664a.ctex b/godot/.godot/imported/UnCheckedBox.png-c5ba55f46ddf793a743cff910372664a.ctex deleted file mode 100644 index 5815f289c..000000000 Binary files a/godot/.godot/imported/UnCheckedBox.png-c5ba55f46ddf793a743cff910372664a.ctex and /dev/null differ diff --git a/godot/.godot/imported/UnCheckedBox.png-c5ba55f46ddf793a743cff910372664a.md5 b/godot/.godot/imported/UnCheckedBox.png-c5ba55f46ddf793a743cff910372664a.md5 deleted file mode 100644 index a58ed0666..000000000 --- a/godot/.godot/imported/UnCheckedBox.png-c5ba55f46ddf793a743cff910372664a.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="3e80281f6eb759ba2aced5f67861b238" -dest_md5="7919803d7d9b7c6d96a2d5c50095e71b" - diff --git a/godot/.godot/imported/UncommonThumbnail.png-c5d8f372311ee96d0fdd056976eb39c4.ctex b/godot/.godot/imported/UncommonThumbnail.png-c5d8f372311ee96d0fdd056976eb39c4.ctex deleted file mode 100644 index 9a7bad6ec..000000000 Binary files a/godot/.godot/imported/UncommonThumbnail.png-c5d8f372311ee96d0fdd056976eb39c4.ctex and /dev/null differ diff --git a/godot/.godot/imported/UncommonThumbnail.png-c5d8f372311ee96d0fdd056976eb39c4.md5 b/godot/.godot/imported/UncommonThumbnail.png-c5d8f372311ee96d0fdd056976eb39c4.md5 deleted file mode 100644 index e2d30513e..000000000 --- a/godot/.godot/imported/UncommonThumbnail.png-c5d8f372311ee96d0fdd056976eb39c4.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="926c3749bacd39b7eaa3a866dab4a59c" -dest_md5="4f7a7bf4acd3e30cd1a987a8c450f0fb" - diff --git a/godot/.godot/imported/UniqueThumbnail.png-072337e9395159191af9e4e369ad29d3.ctex b/godot/.godot/imported/UniqueThumbnail.png-072337e9395159191af9e4e369ad29d3.ctex deleted file mode 100644 index 70f62518f..000000000 Binary files a/godot/.godot/imported/UniqueThumbnail.png-072337e9395159191af9e4e369ad29d3.ctex and /dev/null differ diff --git a/godot/.godot/imported/UniqueThumbnail.png-072337e9395159191af9e4e369ad29d3.md5 b/godot/.godot/imported/UniqueThumbnail.png-072337e9395159191af9e4e369ad29d3.md5 deleted file mode 100644 index beb69d6e6..000000000 --- a/godot/.godot/imported/UniqueThumbnail.png-072337e9395159191af9e4e369ad29d3.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="71fe767e4c6966ed6d8950688f4c2060" -dest_md5="e4ff29389d3d3574f919c34824726951" - diff --git a/godot/.godot/imported/VisibleIcon.png-2f49fd6b76a1eeb707be1bcd31a21433.ctex b/godot/.godot/imported/VisibleIcon.png-2f49fd6b76a1eeb707be1bcd31a21433.ctex deleted file mode 100644 index 0484464a3..000000000 Binary files a/godot/.godot/imported/VisibleIcon.png-2f49fd6b76a1eeb707be1bcd31a21433.ctex and /dev/null differ diff --git a/godot/.godot/imported/VisibleIcon.png-2f49fd6b76a1eeb707be1bcd31a21433.md5 b/godot/.godot/imported/VisibleIcon.png-2f49fd6b76a1eeb707be1bcd31a21433.md5 deleted file mode 100644 index 0beae1b8f..000000000 --- a/godot/.godot/imported/VisibleIcon.png-2f49fd6b76a1eeb707be1bcd31a21433.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="716bb90daa6d936a4e92bf1c1c857b56" -dest_md5="21faaf9a02416f35515850bc32f3eb6c" - diff --git a/godot/.godot/imported/VisibleIcon.png-62cc636c130c0e139b78f4d376d68e3d.ctex b/godot/.godot/imported/VisibleIcon.png-62cc636c130c0e139b78f4d376d68e3d.ctex deleted file mode 100644 index 0484464a3..000000000 Binary files a/godot/.godot/imported/VisibleIcon.png-62cc636c130c0e139b78f4d376d68e3d.ctex and /dev/null differ diff --git a/godot/.godot/imported/VisibleIcon.png-62cc636c130c0e139b78f4d376d68e3d.md5 b/godot/.godot/imported/VisibleIcon.png-62cc636c130c0e139b78f4d376d68e3d.md5 deleted file mode 100644 index 0beae1b8f..000000000 --- a/godot/.godot/imported/VisibleIcon.png-62cc636c130c0e139b78f4d376d68e3d.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="716bb90daa6d936a4e92bf1c1c857b56" -dest_md5="21faaf9a02416f35515850bc32f3eb6c" - diff --git a/godot/.godot/imported/Warning.svg-8a649598c0f374a2a480900778a7b85e.ctex b/godot/.godot/imported/Warning.svg-8a649598c0f374a2a480900778a7b85e.ctex deleted file mode 100644 index e3efea334..000000000 Binary files a/godot/.godot/imported/Warning.svg-8a649598c0f374a2a480900778a7b85e.ctex and /dev/null differ diff --git a/godot/.godot/imported/Warning.svg-8a649598c0f374a2a480900778a7b85e.md5 b/godot/.godot/imported/Warning.svg-8a649598c0f374a2a480900778a7b85e.md5 deleted file mode 100644 index 198b40a82..000000000 --- a/godot/.godot/imported/Warning.svg-8a649598c0f374a2a480900778a7b85e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="6182e1e355a7ef76eec827d91ad9af88" -dest_md5="bd1c4d7b364f981ec1acb593bf3af4c9" - diff --git a/godot/.godot/imported/Wood_Twigs_Genesis_TX.png-6ccbe19135a2a1556fd273627a499a4b.s3tc.ctex b/godot/.godot/imported/Wood_Twigs_Genesis_TX.png-6ccbe19135a2a1556fd273627a499a4b.s3tc.ctex deleted file mode 100644 index 3cc3de9a0..000000000 Binary files a/godot/.godot/imported/Wood_Twigs_Genesis_TX.png-6ccbe19135a2a1556fd273627a499a4b.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/accesories_icon.png-3def33a6094322b94386d7a3707568b1.ctex b/godot/.godot/imported/accesories_icon.png-3def33a6094322b94386d7a3707568b1.ctex deleted file mode 100644 index 211d6af51..000000000 Binary files a/godot/.godot/imported/accesories_icon.png-3def33a6094322b94386d7a3707568b1.ctex and /dev/null differ diff --git a/godot/.godot/imported/accesories_icon.png-3def33a6094322b94386d7a3707568b1.md5 b/godot/.godot/imported/accesories_icon.png-3def33a6094322b94386d7a3707568b1.md5 deleted file mode 100644 index cc3345c7b..000000000 --- a/godot/.godot/imported/accesories_icon.png-3def33a6094322b94386d7a3707568b1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="1258985cc0db6c980be54a588232f98f" -dest_md5="9b630627696e6675586511351c3a9e8e" - diff --git a/godot/.godot/imported/african_baseColor.png-c1a63b2c85973a5f7673482d994697e9.s3tc.ctex b/godot/.godot/imported/african_baseColor.png-c1a63b2c85973a5f7673482d994697e9.s3tc.ctex deleted file mode 100644 index f77f6704c..000000000 Binary files a/godot/.godot/imported/african_baseColor.png-c1a63b2c85973a5f7673482d994697e9.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/african_realistic_baseColor.png-67cf0f3230115c16edbeaf7b76430f7c.s3tc.ctex b/godot/.godot/imported/african_realistic_baseColor.png-67cf0f3230115c16edbeaf7b76430f7c.s3tc.ctex deleted file mode 100644 index 287b3d1be..000000000 Binary files a/godot/.godot/imported/african_realistic_baseColor.png-67cf0f3230115c16edbeaf7b76430f7c.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/all-icon.svg-dd4b7343b3bbb251d26845b276902a9b.ctex b/godot/.godot/imported/all-icon.svg-dd4b7343b3bbb251d26845b276902a9b.ctex deleted file mode 100644 index 4b24d2652..000000000 Binary files a/godot/.godot/imported/all-icon.svg-dd4b7343b3bbb251d26845b276902a9b.ctex and /dev/null differ diff --git a/godot/.godot/imported/all-icon.svg-dd4b7343b3bbb251d26845b276902a9b.md5 b/godot/.godot/imported/all-icon.svg-dd4b7343b3bbb251d26845b276902a9b.md5 deleted file mode 100644 index 601bd9445..000000000 --- a/godot/.godot/imported/all-icon.svg-dd4b7343b3bbb251d26845b276902a9b.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="74910fb8bca7e0177c8e65c4d4ddfc16" -dest_md5="cc08f6fe2f6f814e208e995a997983aa" - diff --git a/godot/.godot/imported/apple.svg-641aec9d79b14fbb47eb0d04902e71d2.ctex b/godot/.godot/imported/apple.svg-641aec9d79b14fbb47eb0d04902e71d2.ctex deleted file mode 100644 index 9f8645ebf..000000000 Binary files a/godot/.godot/imported/apple.svg-641aec9d79b14fbb47eb0d04902e71d2.ctex and /dev/null differ diff --git a/godot/.godot/imported/backpack-bg.png-41c903c3f42e70cafddee24788e175a6.ctex b/godot/.godot/imported/backpack-bg.png-41c903c3f42e70cafddee24788e175a6.ctex deleted file mode 100644 index 4747b3cf2..000000000 Binary files a/godot/.godot/imported/backpack-bg.png-41c903c3f42e70cafddee24788e175a6.ctex and /dev/null differ diff --git a/godot/.godot/imported/backpack-bg.png-41c903c3f42e70cafddee24788e175a6.md5 b/godot/.godot/imported/backpack-bg.png-41c903c3f42e70cafddee24788e175a6.md5 deleted file mode 100644 index a82a206ac..000000000 --- a/godot/.godot/imported/backpack-bg.png-41c903c3f42e70cafddee24788e175a6.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="6e0b3b41c861627c9043198e4277ad3b" -dest_md5="20c92bb9066d8acec644c9b5e4e643d1" - diff --git a/godot/.godot/imported/backpack-off.svg-4d9b86494a3d965c50558511f7e20bb4.ctex b/godot/.godot/imported/backpack-off.svg-4d9b86494a3d965c50558511f7e20bb4.ctex deleted file mode 100644 index 03598e691..000000000 Binary files a/godot/.godot/imported/backpack-off.svg-4d9b86494a3d965c50558511f7e20bb4.ctex and /dev/null differ diff --git a/godot/.godot/imported/backpack-off.svg-4d9b86494a3d965c50558511f7e20bb4.md5 b/godot/.godot/imported/backpack-off.svg-4d9b86494a3d965c50558511f7e20bb4.md5 deleted file mode 100644 index a55df8e1b..000000000 --- a/godot/.godot/imported/backpack-off.svg-4d9b86494a3d965c50558511f7e20bb4.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="29d492b0ab8f1570594c18e5f3369a9b" -dest_md5="9aa8a1308f5817382f7a05d4954f63ac" - diff --git a/godot/.godot/imported/body_shape_icon.png-75270a76f8a337ab482eefbf6be535d3.ctex b/godot/.godot/imported/body_shape_icon.png-75270a76f8a337ab482eefbf6be535d3.ctex deleted file mode 100644 index 31286c51e..000000000 Binary files a/godot/.godot/imported/body_shape_icon.png-75270a76f8a337ab482eefbf6be535d3.ctex and /dev/null differ diff --git a/godot/.godot/imported/body_shape_icon.png-75270a76f8a337ab482eefbf6be535d3.md5 b/godot/.godot/imported/body_shape_icon.png-75270a76f8a337ab482eefbf6be535d3.md5 deleted file mode 100644 index d04915e4e..000000000 --- a/godot/.godot/imported/body_shape_icon.png-75270a76f8a337ab482eefbf6be535d3.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="5bed4f328592e521c6f62487503d2de7" -dest_md5="94bf49b9d2c178d2136a489c88ee576b" - diff --git a/godot/.godot/imported/builder.png-cb34aed54b6c0b131bc7d052eda953d1.ctex b/godot/.godot/imported/builder.png-cb34aed54b6c0b131bc7d052eda953d1.ctex deleted file mode 100644 index fc0ab5544..000000000 Binary files a/godot/.godot/imported/builder.png-cb34aed54b6c0b131bc7d052eda953d1.ctex and /dev/null differ diff --git a/godot/.godot/imported/builder.png-cb34aed54b6c0b131bc7d052eda953d1.md5 b/godot/.godot/imported/builder.png-cb34aed54b6c0b131bc7d052eda953d1.md5 deleted file mode 100644 index fda8c8cc5..000000000 --- a/godot/.godot/imported/builder.png-cb34aed54b6c0b131bc7d052eda953d1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="91a6e35bc6275c58feb29be2dd4648ae" -dest_md5="6f189a3eed8b783d1e13544cde6af682" - diff --git a/godot/.godot/imported/carrousel_item.png-2b1601855751e89535c6e97d2b555bd1.ctex b/godot/.godot/imported/carrousel_item.png-2b1601855751e89535c6e97d2b555bd1.ctex deleted file mode 100644 index 7a1fd0f07..000000000 Binary files a/godot/.godot/imported/carrousel_item.png-2b1601855751e89535c6e97d2b555bd1.ctex and /dev/null differ diff --git a/godot/.godot/imported/carrousel_item.png-2b1601855751e89535c6e97d2b555bd1.md5 b/godot/.godot/imported/carrousel_item.png-2b1601855751e89535c6e97d2b555bd1.md5 deleted file mode 100644 index b1dec8a35..000000000 --- a/godot/.godot/imported/carrousel_item.png-2b1601855751e89535c6e97d2b555bd1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="83fef0bc8b3cfbddcee173ba14138c6b" -dest_md5="019a83897780e56d3329169129582335" - diff --git a/godot/.godot/imported/carrousel_item.svg-b33e0faa498492ef2c717db66243c823.ctex b/godot/.godot/imported/carrousel_item.svg-b33e0faa498492ef2c717db66243c823.ctex deleted file mode 100644 index 8fc3b1008..000000000 Binary files a/godot/.godot/imported/carrousel_item.svg-b33e0faa498492ef2c717db66243c823.ctex and /dev/null differ diff --git a/godot/.godot/imported/carrousel_item.svg-b33e0faa498492ef2c717db66243c823.md5 b/godot/.godot/imported/carrousel_item.svg-b33e0faa498492ef2c717db66243c823.md5 deleted file mode 100644 index 2efac045d..000000000 --- a/godot/.godot/imported/carrousel_item.svg-b33e0faa498492ef2c717db66243c823.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="9d03f748448e5254e5024723aa71a885" -dest_md5="f56e40da90c937d620d91e36b831d722" - diff --git a/godot/.godot/imported/caucasian_baseColor.png-2ffa4b91e9a1b3bcc11c22eccd941be7.s3tc.ctex b/godot/.godot/imported/caucasian_baseColor.png-2ffa4b91e9a1b3bcc11c22eccd941be7.s3tc.ctex deleted file mode 100644 index 0fa64c946..000000000 Binary files a/godot/.godot/imported/caucasian_baseColor.png-2ffa4b91e9a1b3bcc11c22eccd941be7.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/caucasian_realistic_baseColor.png-6d28d56c1e76917b749358861074492c.s3tc.ctex b/godot/.godot/imported/caucasian_realistic_baseColor.png-6d28d56c1e76917b749358861074492c.s3tc.ctex deleted file mode 100644 index 852ced2ef..000000000 Binary files a/godot/.godot/imported/caucasian_realistic_baseColor.png-6d28d56c1e76917b749358861074492c.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/checkbox_pressed.png-00cd3b3ebca67ac02ec98fd132df32a1.ctex b/godot/.godot/imported/checkbox_pressed.png-00cd3b3ebca67ac02ec98fd132df32a1.ctex deleted file mode 100644 index ae8a768f9..000000000 Binary files a/godot/.godot/imported/checkbox_pressed.png-00cd3b3ebca67ac02ec98fd132df32a1.ctex and /dev/null differ diff --git a/godot/.godot/imported/checkbox_pressed.png-00cd3b3ebca67ac02ec98fd132df32a1.md5 b/godot/.godot/imported/checkbox_pressed.png-00cd3b3ebca67ac02ec98fd132df32a1.md5 deleted file mode 100644 index f377eec85..000000000 --- a/godot/.godot/imported/checkbox_pressed.png-00cd3b3ebca67ac02ec98fd132df32a1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="c173fb9543e5e4ac13811c5cf03c2103" -dest_md5="f397513d3cc404bb4b2dff16ed5a693e" - diff --git a/godot/.godot/imported/checkbox_unpressed.png-15aa01bd1d4fbc2051c24c0f528de9c1.ctex b/godot/.godot/imported/checkbox_unpressed.png-15aa01bd1d4fbc2051c24c0f528de9c1.ctex deleted file mode 100644 index 550785c86..000000000 Binary files a/godot/.godot/imported/checkbox_unpressed.png-15aa01bd1d4fbc2051c24c0f528de9c1.ctex and /dev/null differ diff --git a/godot/.godot/imported/checkbox_unpressed.png-15aa01bd1d4fbc2051c24c0f528de9c1.md5 b/godot/.godot/imported/checkbox_unpressed.png-15aa01bd1d4fbc2051c24c0f528de9c1.md5 deleted file mode 100644 index 0802993c2..000000000 --- a/godot/.godot/imported/checkbox_unpressed.png-15aa01bd1d4fbc2051c24c0f528de9c1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="b37de925bd6bd11ca429fc16ed396bf3" -dest_md5="a1f530e5994076617668634573fd61a5" - diff --git a/godot/.godot/imported/checkbutton_pressed.png-1e84bf59dddf31e203c65d52de7447de.ctex b/godot/.godot/imported/checkbutton_pressed.png-1e84bf59dddf31e203c65d52de7447de.ctex deleted file mode 100644 index d34d61f7b..000000000 Binary files a/godot/.godot/imported/checkbutton_pressed.png-1e84bf59dddf31e203c65d52de7447de.ctex and /dev/null differ diff --git a/godot/.godot/imported/checkbutton_pressed.png-1e84bf59dddf31e203c65d52de7447de.md5 b/godot/.godot/imported/checkbutton_pressed.png-1e84bf59dddf31e203c65d52de7447de.md5 deleted file mode 100644 index fba44e4ce..000000000 --- a/godot/.godot/imported/checkbutton_pressed.png-1e84bf59dddf31e203c65d52de7447de.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="afce7e29bd50224d843f644e31954be0" -dest_md5="bbab83893e2895b760e2eb656ad8bb14" - diff --git a/godot/.godot/imported/checkbutton_unpressed.png-7c9db7067689642b0a28ad5ec424bab5.ctex b/godot/.godot/imported/checkbutton_unpressed.png-7c9db7067689642b0a28ad5ec424bab5.ctex deleted file mode 100644 index f919d5750..000000000 Binary files a/godot/.godot/imported/checkbutton_unpressed.png-7c9db7067689642b0a28ad5ec424bab5.ctex and /dev/null differ diff --git a/godot/.godot/imported/checkbutton_unpressed.png-7c9db7067689642b0a28ad5ec424bab5.md5 b/godot/.godot/imported/checkbutton_unpressed.png-7c9db7067689642b0a28ad5ec424bab5.md5 deleted file mode 100644 index e4273e99d..000000000 --- a/godot/.godot/imported/checkbutton_unpressed.png-7c9db7067689642b0a28ad5ec424bab5.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="f1130b5de20a257f9a1dcd23d1c1df11" -dest_md5="e98755509e713f2d385cdebe2c2fee41" - diff --git a/godot/.godot/imported/clap.png-d63fd070e8f5053508dec9dee2a163d0.ctex b/godot/.godot/imported/clap.png-d63fd070e8f5053508dec9dee2a163d0.ctex deleted file mode 100644 index c1379cdfb..000000000 Binary files a/godot/.godot/imported/clap.png-d63fd070e8f5053508dec9dee2a163d0.ctex and /dev/null differ diff --git a/godot/.godot/imported/clap.png-d63fd070e8f5053508dec9dee2a163d0.md5 b/godot/.godot/imported/clap.png-d63fd070e8f5053508dec9dee2a163d0.md5 deleted file mode 100644 index d2b13db99..000000000 --- a/godot/.godot/imported/clap.png-d63fd070e8f5053508dec9dee2a163d0.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="14f3c004f7783ca46d6cf37a0bc73ebe" -dest_md5="80b240ec5d97915ae2ac1ff8a4d1fcd6" - diff --git a/godot/.godot/imported/cleaning_glove_baseColor.png-775896445d04c5f9ecad1dcd0609e336.s3tc.ctex b/godot/.godot/imported/cleaning_glove_baseColor.png-775896445d04c5f9ecad1dcd0609e336.s3tc.ctex deleted file mode 100644 index 68ad253c3..000000000 Binary files a/godot/.godot/imported/cleaning_glove_baseColor.png-775896445d04c5f9ecad1dcd0609e336.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/dance.png-32a62f3c6826af85265d6133a95c57e8.ctex b/godot/.godot/imported/dance.png-32a62f3c6826af85265d6133a95c57e8.ctex deleted file mode 100644 index 019ece44f..000000000 Binary files a/godot/.godot/imported/dance.png-32a62f3c6826af85265d6133a95c57e8.ctex and /dev/null differ diff --git a/godot/.godot/imported/dance.png-32a62f3c6826af85265d6133a95c57e8.md5 b/godot/.godot/imported/dance.png-32a62f3c6826af85265d6133a95c57e8.md5 deleted file mode 100644 index cb4fe096c..000000000 --- a/godot/.godot/imported/dance.png-32a62f3c6826af85265d6133a95c57e8.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="199b8b6a6f88dcc460a5fa1a31c0145c" -dest_md5="0cf2e1830887af8af9c8c16c396ae606" - diff --git a/godot/.godot/imported/dance_figure.png-faa83129079d07848a9014be6cc2c44e.ctex b/godot/.godot/imported/dance_figure.png-faa83129079d07848a9014be6cc2c44e.ctex deleted file mode 100644 index 83e3454e2..000000000 Binary files a/godot/.godot/imported/dance_figure.png-faa83129079d07848a9014be6cc2c44e.ctex and /dev/null differ diff --git a/godot/.godot/imported/dance_figure.png-faa83129079d07848a9014be6cc2c44e.md5 b/godot/.godot/imported/dance_figure.png-faa83129079d07848a9014be6cc2c44e.md5 deleted file mode 100644 index f0278ae55..000000000 --- a/godot/.godot/imported/dance_figure.png-faa83129079d07848a9014be6cc2c44e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="883c0ee120107e8711848b10d4298dd4" -dest_md5="ed2ecdaa1a0646e2087469b347cbfa37" - diff --git a/godot/.godot/imported/dao.png-a6f5aab38c9844aa84a5729b61c0e2a1.ctex b/godot/.godot/imported/dao.png-a6f5aab38c9844aa84a5729b61c0e2a1.ctex deleted file mode 100644 index 3eac5cc19..000000000 Binary files a/godot/.godot/imported/dao.png-a6f5aab38c9844aa84a5729b61c0e2a1.ctex and /dev/null differ diff --git a/godot/.godot/imported/dao.png-a6f5aab38c9844aa84a5729b61c0e2a1.md5 b/godot/.godot/imported/dao.png-a6f5aab38c9844aa84a5729b61c0e2a1.md5 deleted file mode 100644 index b5e2c9996..000000000 --- a/godot/.godot/imported/dao.png-a6f5aab38c9844aa84a5729b61c0e2a1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="7afd5acb9a3a5e2a5107419fee042287" -dest_md5="6ce9767c84b55c389c2e176f169b2fc8" - diff --git a/godot/.godot/imported/dcl_arrow.png-3129cd0c369b87cfe0fcae32c8254bf3.ctex b/godot/.godot/imported/dcl_arrow.png-3129cd0c369b87cfe0fcae32c8254bf3.ctex deleted file mode 100644 index 684d1f8af..000000000 Binary files a/godot/.godot/imported/dcl_arrow.png-3129cd0c369b87cfe0fcae32c8254bf3.ctex and /dev/null differ diff --git a/godot/.godot/imported/dcl_arrow.png-3129cd0c369b87cfe0fcae32c8254bf3.md5 b/godot/.godot/imported/dcl_arrow.png-3129cd0c369b87cfe0fcae32c8254bf3.md5 deleted file mode 100644 index c24c7c83b..000000000 --- a/godot/.godot/imported/dcl_arrow.png-3129cd0c369b87cfe0fcae32c8254bf3.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="065ed189827b37db7345416e75f9480a" -dest_md5="9e2cc7390eff97d04d47e5704b291844" - diff --git a/godot/.godot/imported/dcl_checkbox_s.png-56a28d823045b06a49e4a3b5ae88e41a.ctex b/godot/.godot/imported/dcl_checkbox_s.png-56a28d823045b06a49e4a3b5ae88e41a.ctex deleted file mode 100644 index 442b58a99..000000000 Binary files a/godot/.godot/imported/dcl_checkbox_s.png-56a28d823045b06a49e4a3b5ae88e41a.ctex and /dev/null differ diff --git a/godot/.godot/imported/dcl_checkbox_s.png-56a28d823045b06a49e4a3b5ae88e41a.md5 b/godot/.godot/imported/dcl_checkbox_s.png-56a28d823045b06a49e4a3b5ae88e41a.md5 deleted file mode 100644 index 9f05dc4f7..000000000 --- a/godot/.godot/imported/dcl_checkbox_s.png-56a28d823045b06a49e4a3b5ae88e41a.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="09143ac9e41fa0cae9add83764a9cb62" -dest_md5="084cc4a598c725c54d37f7f905e85d08" - diff --git a/godot/.godot/imported/dcl_checkbox_unpressed_s.png-acf35c8c1dab473a4e416f187c79acfb.ctex b/godot/.godot/imported/dcl_checkbox_unpressed_s.png-acf35c8c1dab473a4e416f187c79acfb.ctex deleted file mode 100644 index 1f6c05550..000000000 Binary files a/godot/.godot/imported/dcl_checkbox_unpressed_s.png-acf35c8c1dab473a4e416f187c79acfb.ctex and /dev/null differ diff --git a/godot/.godot/imported/dcl_checkbox_unpressed_s.png-acf35c8c1dab473a4e416f187c79acfb.md5 b/godot/.godot/imported/dcl_checkbox_unpressed_s.png-acf35c8c1dab473a4e416f187c79acfb.md5 deleted file mode 100644 index c918152e7..000000000 --- a/godot/.godot/imported/dcl_checkbox_unpressed_s.png-acf35c8c1dab473a4e416f187c79acfb.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="4b455c000f06d6041567aac4d14c5488" -dest_md5="170a3632836c9a559740fbbd120ff55e" - diff --git a/godot/.godot/imported/dcl_collapsed_arrow.png-a99a022a35aa3a3aed28fb5b7d9b3974.ctex b/godot/.godot/imported/dcl_collapsed_arrow.png-a99a022a35aa3a3aed28fb5b7d9b3974.ctex deleted file mode 100644 index 63f4591b6..000000000 Binary files a/godot/.godot/imported/dcl_collapsed_arrow.png-a99a022a35aa3a3aed28fb5b7d9b3974.ctex and /dev/null differ diff --git a/godot/.godot/imported/dcl_collapsed_arrow.png-a99a022a35aa3a3aed28fb5b7d9b3974.md5 b/godot/.godot/imported/dcl_collapsed_arrow.png-a99a022a35aa3a3aed28fb5b7d9b3974.md5 deleted file mode 100644 index ddd5d8071..000000000 --- a/godot/.godot/imported/dcl_collapsed_arrow.png-a99a022a35aa3a3aed28fb5b7d9b3974.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="0ad2ddc059b8f78ba503071e74ac711a" -dest_md5="be3b93ef526c7246c6f85885d4571187" - diff --git a/godot/.godot/imported/dcl_collapsed_arrow_mirrored.png-bfd92e4f84fb9be7768d989ae1509260.ctex b/godot/.godot/imported/dcl_collapsed_arrow_mirrored.png-bfd92e4f84fb9be7768d989ae1509260.ctex deleted file mode 100644 index 3d12dba6c..000000000 Binary files a/godot/.godot/imported/dcl_collapsed_arrow_mirrored.png-bfd92e4f84fb9be7768d989ae1509260.ctex and /dev/null differ diff --git a/godot/.godot/imported/dcl_collapsed_arrow_mirrored.png-bfd92e4f84fb9be7768d989ae1509260.md5 b/godot/.godot/imported/dcl_collapsed_arrow_mirrored.png-bfd92e4f84fb9be7768d989ae1509260.md5 deleted file mode 100644 index 7a27080cf..000000000 --- a/godot/.godot/imported/dcl_collapsed_arrow_mirrored.png-bfd92e4f84fb9be7768d989ae1509260.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ad958cd3ce06df056f2361c437656acf" -dest_md5="f1983136dc3806e1a699d9892f813598" - diff --git a/godot/.godot/imported/dcl_radiobutton_checked.png-ff1ec86ccb477886977193041343daee.ctex b/godot/.godot/imported/dcl_radiobutton_checked.png-ff1ec86ccb477886977193041343daee.ctex deleted file mode 100644 index 30ca2c405..000000000 Binary files a/godot/.godot/imported/dcl_radiobutton_checked.png-ff1ec86ccb477886977193041343daee.ctex and /dev/null differ diff --git a/godot/.godot/imported/dcl_radiobutton_checked.png-ff1ec86ccb477886977193041343daee.md5 b/godot/.godot/imported/dcl_radiobutton_checked.png-ff1ec86ccb477886977193041343daee.md5 deleted file mode 100644 index 8ae409bf8..000000000 --- a/godot/.godot/imported/dcl_radiobutton_checked.png-ff1ec86ccb477886977193041343daee.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="290c66a954a377f1631fb0fa419d5127" -dest_md5="c2b4f34bb3cc61aa84e981a0b05449e3" - diff --git a/godot/.godot/imported/dcl_radiobutton_unchecked.png-c650466508ba718ca90b14748ab474f8.ctex b/godot/.godot/imported/dcl_radiobutton_unchecked.png-c650466508ba718ca90b14748ab474f8.ctex deleted file mode 100644 index 1751539cf..000000000 Binary files a/godot/.godot/imported/dcl_radiobutton_unchecked.png-c650466508ba718ca90b14748ab474f8.ctex and /dev/null differ diff --git a/godot/.godot/imported/dcl_radiobutton_unchecked.png-c650466508ba718ca90b14748ab474f8.md5 b/godot/.godot/imported/dcl_radiobutton_unchecked.png-c650466508ba718ca90b14748ab474f8.md5 deleted file mode 100644 index 4b8b081fa..000000000 --- a/godot/.godot/imported/dcl_radiobutton_unchecked.png-c650466508ba718ca90b14748ab474f8.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="1e23e592c2fd3894fec4faa98dcfbdf7" -dest_md5="5f885925df1eb553e20719f75f44d20f" - diff --git a/godot/.godot/imported/decentraland_logo.png-d7d9de9a4dc33fd936910b4adc3ba560.ctex b/godot/.godot/imported/decentraland_logo.png-d7d9de9a4dc33fd936910b4adc3ba560.ctex deleted file mode 100644 index a5f73739c..000000000 Binary files a/godot/.godot/imported/decentraland_logo.png-d7d9de9a4dc33fd936910b4adc3ba560.ctex and /dev/null differ diff --git a/godot/.godot/imported/decentraland_logo.png-d7d9de9a4dc33fd936910b4adc3ba560.md5 b/godot/.godot/imported/decentraland_logo.png-d7d9de9a4dc33fd936910b4adc3ba560.md5 deleted file mode 100644 index b5085cbb4..000000000 --- a/godot/.godot/imported/decentraland_logo.png-d7d9de9a4dc33fd936910b4adc3ba560.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="e60045b7d0d816dca3f0941c7747ee5c" -dest_md5="39f79f3330791e099a0edb2bce5760a9" - diff --git a/godot/.godot/imported/decentraland_logo_squared.png-a398cd349d74331ac8e512de564183cd.ctex b/godot/.godot/imported/decentraland_logo_squared.png-a398cd349d74331ac8e512de564183cd.ctex deleted file mode 100644 index a284ee67e..000000000 Binary files a/godot/.godot/imported/decentraland_logo_squared.png-a398cd349d74331ac8e512de564183cd.ctex and /dev/null differ diff --git a/godot/.godot/imported/decentraland_logo_squared.png-a398cd349d74331ac8e512de564183cd.md5 b/godot/.godot/imported/decentraland_logo_squared.png-a398cd349d74331ac8e512de564183cd.md5 deleted file mode 100644 index cd6fa7059..000000000 --- a/godot/.godot/imported/decentraland_logo_squared.png-a398cd349d74331ac8e512de564183cd.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="a39a044dffd0fcde491625ecfb6907df" -dest_md5="8846d8bef049f233ef559bf64705b378" - diff --git a/godot/.godot/imported/discord.svg-38d7f38535cf2c0881bf32441b4ccc7f.ctex b/godot/.godot/imported/discord.svg-38d7f38535cf2c0881bf32441b4ccc7f.ctex deleted file mode 100644 index aa97d2432..000000000 Binary files a/godot/.godot/imported/discord.svg-38d7f38535cf2c0881bf32441b4ccc7f.ctex and /dev/null differ diff --git a/godot/.godot/imported/discover_banner.png-d3fdd2e9221b60d65375184a8ad4b8b9.ctex b/godot/.godot/imported/discover_banner.png-d3fdd2e9221b60d65375184a8ad4b8b9.ctex deleted file mode 100644 index 67fc59303..000000000 Binary files a/godot/.godot/imported/discover_banner.png-d3fdd2e9221b60d65375184a8ad4b8b9.ctex and /dev/null differ diff --git a/godot/.godot/imported/discover_banner.png-d3fdd2e9221b60d65375184a8ad4b8b9.md5 b/godot/.godot/imported/discover_banner.png-d3fdd2e9221b60d65375184a8ad4b8b9.md5 deleted file mode 100644 index 864294ba2..000000000 --- a/godot/.godot/imported/discover_banner.png-d3fdd2e9221b60d65375184a8ad4b8b9.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="d43b68583faffabdf4e8eab67a1f6e7a" -dest_md5="167c78480588cd155626efdbe53ac775" - diff --git a/godot/.godot/imported/dots.png-2c155bdf915bc4bc2f66abeb123aeb9c.ctex b/godot/.godot/imported/dots.png-2c155bdf915bc4bc2f66abeb123aeb9c.ctex deleted file mode 100644 index bf37fceda..000000000 Binary files a/godot/.godot/imported/dots.png-2c155bdf915bc4bc2f66abeb123aeb9c.ctex and /dev/null differ diff --git a/godot/.godot/imported/dots.png-2c155bdf915bc4bc2f66abeb123aeb9c.md5 b/godot/.godot/imported/dots.png-2c155bdf915bc4bc2f66abeb123aeb9c.md5 deleted file mode 100644 index 42b985add..000000000 --- a/godot/.godot/imported/dots.png-2c155bdf915bc4bc2f66abeb123aeb9c.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="4bf03b50148e8c9f699ee1ec43d10cce" -dest_md5="1c6adf7d1aab14f36a6f0e5583fe73dd" - diff --git a/godot/.godot/imported/earring_icon.png-3c5035443c1f288f4189b8149514b1b1.ctex b/godot/.godot/imported/earring_icon.png-3c5035443c1f288f4189b8149514b1b1.ctex deleted file mode 100644 index 7239c3490..000000000 Binary files a/godot/.godot/imported/earring_icon.png-3c5035443c1f288f4189b8149514b1b1.ctex and /dev/null differ diff --git a/godot/.godot/imported/earring_icon.png-3c5035443c1f288f4189b8149514b1b1.md5 b/godot/.godot/imported/earring_icon.png-3c5035443c1f288f4189b8149514b1b1.md5 deleted file mode 100644 index 8c3968506..000000000 --- a/godot/.godot/imported/earring_icon.png-3c5035443c1f288f4189b8149514b1b1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="0bfe7a04a5746bcfc247261993d0d1f0" -dest_md5="db01e59c4e168e17e825881ff09b6e45" - diff --git a/godot/.godot/imported/editor.png-ab2213786df661d789af4f2ec4064c74.ctex b/godot/.godot/imported/editor.png-ab2213786df661d789af4f2ec4064c74.ctex deleted file mode 100644 index ebf811929..000000000 Binary files a/godot/.godot/imported/editor.png-ab2213786df661d789af4f2ec4064c74.ctex and /dev/null differ diff --git a/godot/.godot/imported/editor.png-ab2213786df661d789af4f2ec4064c74.md5 b/godot/.godot/imported/editor.png-ab2213786df661d789af4f2ec4064c74.md5 deleted file mode 100644 index ccd2ecafe..000000000 --- a/godot/.godot/imported/editor.png-ab2213786df661d789af4f2ec4064c74.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ec15dc4844617d1934733d7d3ca58fb2" -dest_md5="ce8ae8a392febbe31962521ee3742b17" - diff --git a/godot/.godot/imported/eyebrows_icon.png-f475245869cbac4b9adcb43f39b3e135.ctex b/godot/.godot/imported/eyebrows_icon.png-f475245869cbac4b9adcb43f39b3e135.ctex deleted file mode 100644 index 92fe8321b..000000000 Binary files a/godot/.godot/imported/eyebrows_icon.png-f475245869cbac4b9adcb43f39b3e135.ctex and /dev/null differ diff --git a/godot/.godot/imported/eyebrows_icon.png-f475245869cbac4b9adcb43f39b3e135.md5 b/godot/.godot/imported/eyebrows_icon.png-f475245869cbac4b9adcb43f39b3e135.md5 deleted file mode 100644 index 4b3c2f5f6..000000000 --- a/godot/.godot/imported/eyebrows_icon.png-f475245869cbac4b9adcb43f39b3e135.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="40b913479ba8ea71fca901153e21dec5" -dest_md5="52a56c88096ea2696e6b28340fd74bf9" - diff --git a/godot/.godot/imported/eyes_icon.png-4b3012cf3274b81f0536dd69d97c6016.ctex b/godot/.godot/imported/eyes_icon.png-4b3012cf3274b81f0536dd69d97c6016.ctex deleted file mode 100644 index 620fd3386..000000000 Binary files a/godot/.godot/imported/eyes_icon.png-4b3012cf3274b81f0536dd69d97c6016.ctex and /dev/null differ diff --git a/godot/.godot/imported/eyes_icon.png-4b3012cf3274b81f0536dd69d97c6016.md5 b/godot/.godot/imported/eyes_icon.png-4b3012cf3274b81f0536dd69d97c6016.md5 deleted file mode 100644 index 97f858178..000000000 --- a/godot/.godot/imported/eyes_icon.png-4b3012cf3274b81f0536dd69d97c6016.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="bddb53dc97a48ebb493994b5f62f767a" -dest_md5="1d19da75b6317d2a2e6ac78fc20d6ce9" - diff --git a/godot/.godot/imported/eyewear_icon.png-7a57dd650babda6020ca502bf1f47f21.ctex b/godot/.godot/imported/eyewear_icon.png-7a57dd650babda6020ca502bf1f47f21.ctex deleted file mode 100644 index 8366bab33..000000000 Binary files a/godot/.godot/imported/eyewear_icon.png-7a57dd650babda6020ca502bf1f47f21.ctex and /dev/null differ diff --git a/godot/.godot/imported/eyewear_icon.png-7a57dd650babda6020ca502bf1f47f21.md5 b/godot/.godot/imported/eyewear_icon.png-7a57dd650babda6020ca502bf1f47f21.md5 deleted file mode 100644 index 496d86056..000000000 --- a/godot/.godot/imported/eyewear_icon.png-7a57dd650babda6020ca502bf1f47f21.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ae6c8509b2dab3d0c8b781de34a1c25e" -dest_md5="5417634d2bb9326901de28d50a54c248" - diff --git a/godot/.godot/imported/facial_hair_icon.png-60625ce3926b337d7d2607939d64dc13.ctex b/godot/.godot/imported/facial_hair_icon.png-60625ce3926b337d7d2607939d64dc13.ctex deleted file mode 100644 index 74c6bfcbb..000000000 Binary files a/godot/.godot/imported/facial_hair_icon.png-60625ce3926b337d7d2607939d64dc13.ctex and /dev/null differ diff --git a/godot/.godot/imported/facial_hair_icon.png-60625ce3926b337d7d2607939d64dc13.md5 b/godot/.godot/imported/facial_hair_icon.png-60625ce3926b337d7d2607939d64dc13.md5 deleted file mode 100644 index 6da0af357..000000000 --- a/godot/.godot/imported/facial_hair_icon.png-60625ce3926b337d7d2607939d64dc13.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="be436af31267040992e8f3ab4a8d66f7" -dest_md5="1f863f6c4cff77ae79dc9a02e6cf403f" - diff --git a/godot/.godot/imported/fav_icon.png-12d2084d95d688b5e12d116857038245.ctex b/godot/.godot/imported/fav_icon.png-12d2084d95d688b5e12d116857038245.ctex deleted file mode 100644 index b0e59fc71..000000000 Binary files a/godot/.godot/imported/fav_icon.png-12d2084d95d688b5e12d116857038245.ctex and /dev/null differ diff --git a/godot/.godot/imported/fav_icon.png-12d2084d95d688b5e12d116857038245.md5 b/godot/.godot/imported/fav_icon.png-12d2084d95d688b5e12d116857038245.md5 deleted file mode 100644 index 605361bb4..000000000 --- a/godot/.godot/imported/fav_icon.png-12d2084d95d688b5e12d116857038245.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="9397a7b47a316073770ee20954bb382f" -dest_md5="66c994a893d2431679ea547620c9979a" - diff --git a/godot/.godot/imported/feet_icon.png-5227677e30be9f63cfab697e5353d42f.ctex b/godot/.godot/imported/feet_icon.png-5227677e30be9f63cfab697e5353d42f.ctex deleted file mode 100644 index 067db0eeb..000000000 Binary files a/godot/.godot/imported/feet_icon.png-5227677e30be9f63cfab697e5353d42f.ctex and /dev/null differ diff --git a/godot/.godot/imported/feet_icon.png-5227677e30be9f63cfab697e5353d42f.md5 b/godot/.godot/imported/feet_icon.png-5227677e30be9f63cfab697e5353d42f.md5 deleted file mode 100644 index 53517113e..000000000 --- a/godot/.godot/imported/feet_icon.png-5227677e30be9f63cfab697e5353d42f.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="2beaf7af3ae2e87c8f798e25516bec52" -dest_md5="9a506c001c097ed123164d6056ab6611" - diff --git a/godot/.godot/imported/female_icon.png-8a72c9dc96ff197a2cf13b389125c65e.ctex b/godot/.godot/imported/female_icon.png-8a72c9dc96ff197a2cf13b389125c65e.ctex deleted file mode 100644 index 6e9aeb0e3..000000000 Binary files a/godot/.godot/imported/female_icon.png-8a72c9dc96ff197a2cf13b389125c65e.ctex and /dev/null differ diff --git a/godot/.godot/imported/female_icon.png-8a72c9dc96ff197a2cf13b389125c65e.md5 b/godot/.godot/imported/female_icon.png-8a72c9dc96ff197a2cf13b389125c65e.md5 deleted file mode 100644 index ee07f24df..000000000 --- a/godot/.godot/imported/female_icon.png-8a72c9dc96ff197a2cf13b389125c65e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="349d74198e4372a49d8e1bfeccc84df9" -dest_md5="399c6fa02b56ca8b06e66d3cd8b8279a" - diff --git a/godot/.godot/imported/fistpump.png-15a8ca37396157515e5d43990d6fc958.ctex b/godot/.godot/imported/fistpump.png-15a8ca37396157515e5d43990d6fc958.ctex deleted file mode 100644 index 98d91f8ce..000000000 Binary files a/godot/.godot/imported/fistpump.png-15a8ca37396157515e5d43990d6fc958.ctex and /dev/null differ diff --git a/godot/.godot/imported/fistpump.png-15a8ca37396157515e5d43990d6fc958.md5 b/godot/.godot/imported/fistpump.png-15a8ca37396157515e5d43990d6fc958.md5 deleted file mode 100644 index 65f287479..000000000 --- a/godot/.godot/imported/fistpump.png-15a8ca37396157515e5d43990d6fc958.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="fb029e3c21c4072e13b513588564ab76" -dest_md5="59d23886588a900dcc59d9b5de59ffee" - diff --git a/godot/.godot/imported/foot.svg-9e361563e010aa07be49bfb25fdb6639.ctex b/godot/.godot/imported/foot.svg-9e361563e010aa07be49bfb25fdb6639.ctex deleted file mode 100644 index 4a2ef83d5..000000000 Binary files a/godot/.godot/imported/foot.svg-9e361563e010aa07be49bfb25fdb6639.ctex and /dev/null differ diff --git a/godot/.godot/imported/fortmatic.png-3b8fd439ecd97fe87b18c5ffd32c9a4a.ctex b/godot/.godot/imported/fortmatic.png-3b8fd439ecd97fe87b18c5ffd32c9a4a.ctex deleted file mode 100644 index bb9b5da47..000000000 Binary files a/godot/.godot/imported/fortmatic.png-3b8fd439ecd97fe87b18c5ffd32c9a4a.ctex and /dev/null differ diff --git a/godot/.godot/imported/fortmatic.png-3b8fd439ecd97fe87b18c5ffd32c9a4a.md5 b/godot/.godot/imported/fortmatic.png-3b8fd439ecd97fe87b18c5ffd32c9a4a.md5 deleted file mode 100644 index eda9757f8..000000000 --- a/godot/.godot/imported/fortmatic.png-3b8fd439ecd97fe87b18c5ffd32c9a4a.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="29905828089fc22f91298a053b83eed5" -dest_md5="971d6f319c0be1800eaabfd5f37353c6" - diff --git a/godot/.godot/imported/function.svg-52c5f936037e0f38a4da2b1e16ae67fe.ctex b/godot/.godot/imported/function.svg-52c5f936037e0f38a4da2b1e16ae67fe.ctex deleted file mode 100644 index b5d4e331a..000000000 Binary files a/godot/.godot/imported/function.svg-52c5f936037e0f38a4da2b1e16ae67fe.ctex and /dev/null differ diff --git a/godot/.godot/imported/function.svg-52c5f936037e0f38a4da2b1e16ae67fe.md5 b/godot/.godot/imported/function.svg-52c5f936037e0f38a4da2b1e16ae67fe.md5 deleted file mode 100644 index 61c618b7d..000000000 --- a/godot/.godot/imported/function.svg-52c5f936037e0f38a4da2b1e16ae67fe.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="950e20fad29c6a35cc1d41242572e502" -dest_md5="84bb5a406b3626472e48fbdd6008e801" - diff --git a/godot/.godot/imported/glove_african_dark_camo.png-3a526d8d251e73995f6fd3ba5cdd0b4e.s3tc.ctex b/godot/.godot/imported/glove_african_dark_camo.png-3a526d8d251e73995f6fd3ba5cdd0b4e.s3tc.ctex deleted file mode 100644 index 7afd1023f..000000000 Binary files a/godot/.godot/imported/glove_african_dark_camo.png-3a526d8d251e73995f6fd3ba5cdd0b4e.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/glove_african_green_camo.png-b4a9e045aac0313108230034e03317fd.s3tc.ctex b/godot/.godot/imported/glove_african_green_camo.png-b4a9e045aac0313108230034e03317fd.s3tc.ctex deleted file mode 100644 index b7dab9682..000000000 Binary files a/godot/.godot/imported/glove_african_green_camo.png-b4a9e045aac0313108230034e03317fd.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/glove_caucasian_dark_camo.png-338e35680a2de0f7c6ad596eba6a3d5f.s3tc.ctex b/godot/.godot/imported/glove_caucasian_dark_camo.png-338e35680a2de0f7c6ad596eba6a3d5f.s3tc.ctex deleted file mode 100644 index 63224e446..000000000 Binary files a/godot/.godot/imported/glove_caucasian_dark_camo.png-338e35680a2de0f7c6ad596eba6a3d5f.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/glove_caucasian_green_camo.png-009f6b98bc0f9d73ac78a6b6900a0d00.s3tc.ctex b/godot/.godot/imported/glove_caucasian_green_camo.png-009f6b98bc0f9d73ac78a6b6900a0d00.s3tc.ctex deleted file mode 100644 index 685bd36c0..000000000 Binary files a/godot/.godot/imported/glove_caucasian_green_camo.png-009f6b98bc0f9d73ac78a6b6900a0d00.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/glove_fingerless_occlusionRoughnessMetallic.png-441bf1f84442c3cd6ae3834c9c982565.s3tc.ctex b/godot/.godot/imported/glove_fingerless_occlusionRoughnessMetallic.png-441bf1f84442c3cd6ae3834c9c982565.s3tc.ctex deleted file mode 100644 index 2f37644f7..000000000 Binary files a/godot/.godot/imported/glove_fingerless_occlusionRoughnessMetallic.png-441bf1f84442c3cd6ae3834c9c982565.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/glove_occlusionRoughnessMetallic.png-1a61c4638e30c81daa59d92c8681eb2c.s3tc.ctex b/godot/.godot/imported/glove_occlusionRoughnessMetallic.png-1a61c4638e30c81daa59d92c8681eb2c.s3tc.ctex deleted file mode 100644 index 6d9a70b65..000000000 Binary files a/godot/.godot/imported/glove_occlusionRoughnessMetallic.png-1a61c4638e30c81daa59d92c8681eb2c.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/google.svg-d81bea1d73b14bdb66d2c96be88fd22a.ctex b/godot/.godot/imported/google.svg-d81bea1d73b14bdb66d2c96be88fd22a.ctex deleted file mode 100644 index 52e78e3b3..000000000 Binary files a/godot/.godot/imported/google.svg-d81bea1d73b14bdb66d2c96be88fd22a.ctex and /dev/null differ diff --git a/godot/.godot/imported/grid.png-0e5acf495abafdc7f64f9b213a44aa0e.etc2.ctex b/godot/.godot/imported/grid.png-0e5acf495abafdc7f64f9b213a44aa0e.etc2.ctex deleted file mode 100644 index 1f133923e..000000000 Binary files a/godot/.godot/imported/grid.png-0e5acf495abafdc7f64f9b213a44aa0e.etc2.ctex and /dev/null differ diff --git a/godot/.godot/imported/grid.png-0e5acf495abafdc7f64f9b213a44aa0e.md5 b/godot/.godot/imported/grid.png-0e5acf495abafdc7f64f9b213a44aa0e.md5 deleted file mode 100644 index 917e31ca5..000000000 --- a/godot/.godot/imported/grid.png-0e5acf495abafdc7f64f9b213a44aa0e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="fd848d0189117bb1ce3465f0286c6d1c" -dest_md5="eb0aa49fd183153d6a51d50e6276660f" - diff --git a/godot/.godot/imported/grid.png-0e5acf495abafdc7f64f9b213a44aa0e.s3tc.ctex b/godot/.godot/imported/grid.png-0e5acf495abafdc7f64f9b213a44aa0e.s3tc.ctex deleted file mode 100644 index 0bbd02cdf..000000000 Binary files a/godot/.godot/imported/grid.png-0e5acf495abafdc7f64f9b213a44aa0e.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/hair_icon.png-4a4151d629b9e6794b94ce4f05d20af5.ctex b/godot/.godot/imported/hair_icon.png-4a4151d629b9e6794b94ce4f05d20af5.ctex deleted file mode 100644 index 5a319ce30..000000000 Binary files a/godot/.godot/imported/hair_icon.png-4a4151d629b9e6794b94ce4f05d20af5.ctex and /dev/null differ diff --git a/godot/.godot/imported/hair_icon.png-4a4151d629b9e6794b94ce4f05d20af5.md5 b/godot/.godot/imported/hair_icon.png-4a4151d629b9e6794b94ce4f05d20af5.md5 deleted file mode 100644 index a24e038d7..000000000 --- a/godot/.godot/imported/hair_icon.png-4a4151d629b9e6794b94ce4f05d20af5.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="f7e5e0102c9a2715b003618094c4fdc1" -dest_md5="a1058e38ce0a374d504f1106e5335f6c" - diff --git a/godot/.godot/imported/hand.svg-a05486d804ef16320d6cf54e06292b8f.ctex b/godot/.godot/imported/hand.svg-a05486d804ef16320d6cf54e06292b8f.ctex deleted file mode 100644 index 1297694fa..000000000 Binary files a/godot/.godot/imported/hand.svg-a05486d804ef16320d6cf54e06292b8f.ctex and /dev/null differ diff --git a/godot/.godot/imported/hand.svg-a05486d804ef16320d6cf54e06292b8f.md5 b/godot/.godot/imported/hand.svg-a05486d804ef16320d6cf54e06292b8f.md5 deleted file mode 100644 index a2109a395..000000000 --- a/godot/.godot/imported/hand.svg-a05486d804ef16320d6cf54e06292b8f.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="d7420f4301a492800e1239c51b41ddca" -dest_md5="5ac0c71e8224ecb6ddc8829c1124220a" - diff --git a/godot/.godot/imported/hands_occlusionRoughnessMetallic.png-73229fc54301aa8833117ebde8abfd4e.s3tc.ctex b/godot/.godot/imported/hands_occlusionRoughnessMetallic.png-73229fc54301aa8833117ebde8abfd4e.s3tc.ctex deleted file mode 100644 index 79b4500c1..000000000 Binary files a/godot/.godot/imported/hands_occlusionRoughnessMetallic.png-73229fc54301aa8833117ebde8abfd4e.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/hands_wear-icon.svg-2389aef688eae314a3c6825a59846f31.ctex b/godot/.godot/imported/hands_wear-icon.svg-2389aef688eae314a3c6825a59846f31.ctex deleted file mode 100644 index 6acfbbab3..000000000 Binary files a/godot/.godot/imported/hands_wear-icon.svg-2389aef688eae314a3c6825a59846f31.ctex and /dev/null differ diff --git a/godot/.godot/imported/hands_wear-icon.svg-2389aef688eae314a3c6825a59846f31.md5 b/godot/.godot/imported/hands_wear-icon.svg-2389aef688eae314a3c6825a59846f31.md5 deleted file mode 100644 index 7a5b6fa7f..000000000 --- a/godot/.godot/imported/hands_wear-icon.svg-2389aef688eae314a3c6825a59846f31.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="77ebfc8e609604aaee39e9caf7068c78" -dest_md5="3ceefbd36d3394c9a14da95a6d08fc9f" - diff --git a/godot/.godot/imported/hands_wear_icon.png-e719481ffd78e287fde5eae9bfc68daa.ctex b/godot/.godot/imported/hands_wear_icon.png-e719481ffd78e287fde5eae9bfc68daa.ctex deleted file mode 100644 index 55af7bac2..000000000 Binary files a/godot/.godot/imported/hands_wear_icon.png-e719481ffd78e287fde5eae9bfc68daa.ctex and /dev/null differ diff --git a/godot/.godot/imported/hands_wear_icon.png-e719481ffd78e287fde5eae9bfc68daa.md5 b/godot/.godot/imported/hands_wear_icon.png-e719481ffd78e287fde5eae9bfc68daa.md5 deleted file mode 100644 index 045a27aa9..000000000 --- a/godot/.godot/imported/hands_wear_icon.png-e719481ffd78e287fde5eae9bfc68daa.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="715c8e25918803dee4934ffbcdd645a5" -dest_md5="a5edabb4945fcfb87c58a4f09dca8b16" - diff --git a/godot/.godot/imported/handsair.png-154cbefeff60d07150c4f7ce89fad086.ctex b/godot/.godot/imported/handsair.png-154cbefeff60d07150c4f7ce89fad086.ctex deleted file mode 100644 index 9a7e9623d..000000000 Binary files a/godot/.godot/imported/handsair.png-154cbefeff60d07150c4f7ce89fad086.ctex and /dev/null differ diff --git a/godot/.godot/imported/handsair.png-154cbefeff60d07150c4f7ce89fad086.md5 b/godot/.godot/imported/handsair.png-154cbefeff60d07150c4f7ce89fad086.md5 deleted file mode 100644 index b6f50b8c6..000000000 --- a/godot/.godot/imported/handsair.png-154cbefeff60d07150c4f7ce89fad086.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="09a599f8f1b2c417bb92d4c735ec0300" -dest_md5="c1870718881032275c522cc223b689a3" - diff --git a/godot/.godot/imported/hat_icon.png-e3dc96034b61d188d7b10cef30c13ed6.ctex b/godot/.godot/imported/hat_icon.png-e3dc96034b61d188d7b10cef30c13ed6.ctex deleted file mode 100644 index cf3116c16..000000000 Binary files a/godot/.godot/imported/hat_icon.png-e3dc96034b61d188d7b10cef30c13ed6.ctex and /dev/null differ diff --git a/godot/.godot/imported/hat_icon.png-e3dc96034b61d188d7b10cef30c13ed6.md5 b/godot/.godot/imported/hat_icon.png-e3dc96034b61d188d7b10cef30c13ed6.md5 deleted file mode 100644 index 80474915c..000000000 --- a/godot/.godot/imported/hat_icon.png-e3dc96034b61d188d7b10cef30c13ed6.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="e354022f1dbde7b2b4a24a19334e8421" -dest_md5="744a550e2495adeb8525d5e983c942bc" - diff --git a/godot/.godot/imported/headexplode.png-fcb1e697c19320add3711d49c9c030e8.ctex b/godot/.godot/imported/headexplode.png-fcb1e697c19320add3711d49c9c030e8.ctex deleted file mode 100644 index 6cfccf130..000000000 Binary files a/godot/.godot/imported/headexplode.png-fcb1e697c19320add3711d49c9c030e8.ctex and /dev/null differ diff --git a/godot/.godot/imported/headexplode.png-fcb1e697c19320add3711d49c9c030e8.md5 b/godot/.godot/imported/headexplode.png-fcb1e697c19320add3711d49c9c030e8.md5 deleted file mode 100644 index 6e0e9cc92..000000000 --- a/godot/.godot/imported/headexplode.png-fcb1e697c19320add3711d49c9c030e8.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="185d3b76aaa2fdf5454f1400a3d0d0aa" -dest_md5="42d1a4ea7cd56bd9f4975d5b0d938c2c" - diff --git a/godot/.godot/imported/helmet_icon.png-3f00adce71fb953374bbf3ebfa61435a.ctex b/godot/.godot/imported/helmet_icon.png-3f00adce71fb953374bbf3ebfa61435a.ctex deleted file mode 100644 index 6b8bc6de3..000000000 Binary files a/godot/.godot/imported/helmet_icon.png-3f00adce71fb953374bbf3ebfa61435a.ctex and /dev/null differ diff --git a/godot/.godot/imported/helmet_icon.png-3f00adce71fb953374bbf3ebfa61435a.md5 b/godot/.godot/imported/helmet_icon.png-3f00adce71fb953374bbf3ebfa61435a.md5 deleted file mode 100644 index 95278d2af..000000000 --- a/godot/.godot/imported/helmet_icon.png-3f00adce71fb953374bbf3ebfa61435a.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="d6c4442d4553c93a0f5830147f207b10" -dest_md5="8bb9c80e1569cbf8da76f687505a9211" - diff --git a/godot/.godot/imported/icon.png-1d8efcc4c33e64800e22ea3150ef148d.ctex b/godot/.godot/imported/icon.png-1d8efcc4c33e64800e22ea3150ef148d.ctex deleted file mode 100644 index 12acc008a..000000000 Binary files a/godot/.godot/imported/icon.png-1d8efcc4c33e64800e22ea3150ef148d.ctex and /dev/null differ diff --git a/godot/.godot/imported/icon.png-1d8efcc4c33e64800e22ea3150ef148d.md5 b/godot/.godot/imported/icon.png-1d8efcc4c33e64800e22ea3150ef148d.md5 deleted file mode 100644 index 58e0e33cc..000000000 --- a/godot/.godot/imported/icon.png-1d8efcc4c33e64800e22ea3150ef148d.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="eafe02953c96cfe709ce402d99f14cc0" -dest_md5="f23427c88e5fa1c217eb776916bce978" - diff --git a/godot/.godot/imported/joyknobpng.png-f5a4908e590734ca89edf544832e26c3.ctex b/godot/.godot/imported/joyknobpng.png-f5a4908e590734ca89edf544832e26c3.ctex deleted file mode 100644 index 9be5ed95e..000000000 Binary files a/godot/.godot/imported/joyknobpng.png-f5a4908e590734ca89edf544832e26c3.ctex and /dev/null differ diff --git a/godot/.godot/imported/joyknobpng.png-f5a4908e590734ca89edf544832e26c3.md5 b/godot/.godot/imported/joyknobpng.png-f5a4908e590734ca89edf544832e26c3.md5 deleted file mode 100644 index 6b5ecc881..000000000 --- a/godot/.godot/imported/joyknobpng.png-f5a4908e590734ca89edf544832e26c3.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="82ad97ef0ce94d51f42651947bc5757b" -dest_md5="94a1f7a16a103760492e7ed7c6985693" - diff --git a/godot/.godot/imported/joyring.png-17bf701cdb26e3fe7c8b3debd9cadaa8.ctex b/godot/.godot/imported/joyring.png-17bf701cdb26e3fe7c8b3debd9cadaa8.ctex deleted file mode 100644 index ea5195a8d..000000000 Binary files a/godot/.godot/imported/joyring.png-17bf701cdb26e3fe7c8b3debd9cadaa8.ctex and /dev/null differ diff --git a/godot/.godot/imported/joyring.png-17bf701cdb26e3fe7c8b3debd9cadaa8.md5 b/godot/.godot/imported/joyring.png-17bf701cdb26e3fe7c8b3debd9cadaa8.md5 deleted file mode 100644 index f2399426b..000000000 --- a/godot/.godot/imported/joyring.png-17bf701cdb26e3fe7c8b3debd9cadaa8.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="a8848bb7466dd34882c8e3c7969b3276" -dest_md5="54bcfeb500c76447d2e539a48d8c8952" - diff --git a/godot/.godot/imported/joystick_base_outline.png-1d826085920377783d0c6bd408adc053.ctex b/godot/.godot/imported/joystick_base_outline.png-1d826085920377783d0c6bd408adc053.ctex deleted file mode 100644 index fe01d3076..000000000 Binary files a/godot/.godot/imported/joystick_base_outline.png-1d826085920377783d0c6bd408adc053.ctex and /dev/null differ diff --git a/godot/.godot/imported/joystick_base_outline.png-1d826085920377783d0c6bd408adc053.md5 b/godot/.godot/imported/joystick_base_outline.png-1d826085920377783d0c6bd408adc053.md5 deleted file mode 100644 index d5bb93845..000000000 --- a/godot/.godot/imported/joystick_base_outline.png-1d826085920377783d0c6bd408adc053.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="1d01c160312d23a1d03aedf7f5ba8e58" -dest_md5="9fa32295a431402db015b6b316dbc4ef" - diff --git a/godot/.godot/imported/joystick_tip.png-79bbad4ca6f7bc0a0ce75d4bfe4f1ce4.ctex b/godot/.godot/imported/joystick_tip.png-79bbad4ca6f7bc0a0ce75d4bfe4f1ce4.ctex deleted file mode 100644 index ac29d5ada..000000000 Binary files a/godot/.godot/imported/joystick_tip.png-79bbad4ca6f7bc0a0ce75d4bfe4f1ce4.ctex and /dev/null differ diff --git a/godot/.godot/imported/joystick_tip.png-79bbad4ca6f7bc0a0ce75d4bfe4f1ce4.md5 b/godot/.godot/imported/joystick_tip.png-79bbad4ca6f7bc0a0ce75d4bfe4f1ce4.md5 deleted file mode 100644 index 0b1819e11..000000000 --- a/godot/.godot/imported/joystick_tip.png-79bbad4ca6f7bc0a0ce75d4bfe4f1ce4.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="5e67598bc43721cb723697bf2e9e2364" -dest_md5="cbe7e609d1c90d25d834955c64d020f5" - diff --git a/godot/.godot/imported/joystick_tip_arrows.png-778774c80dec16661c500a384107a3e3.ctex b/godot/.godot/imported/joystick_tip_arrows.png-778774c80dec16661c500a384107a3e3.ctex deleted file mode 100644 index b957d193b..000000000 Binary files a/godot/.godot/imported/joystick_tip_arrows.png-778774c80dec16661c500a384107a3e3.ctex and /dev/null differ diff --git a/godot/.godot/imported/joystick_tip_arrows.png-778774c80dec16661c500a384107a3e3.md5 b/godot/.godot/imported/joystick_tip_arrows.png-778774c80dec16661c500a384107a3e3.md5 deleted file mode 100644 index e4d14a96f..000000000 --- a/godot/.godot/imported/joystick_tip_arrows.png-778774c80dec16661c500a384107a3e3.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="86f50d43d8cb80e94bf061b3e60fcb04" -dest_md5="bae9ae4f4314c31e304e64af4aed0fe1" - diff --git a/godot/.godot/imported/kiss.png-955d1e7cedc34a022cc29eb9a23ea99f.ctex b/godot/.godot/imported/kiss.png-955d1e7cedc34a022cc29eb9a23ea99f.ctex deleted file mode 100644 index 86795334d..000000000 Binary files a/godot/.godot/imported/kiss.png-955d1e7cedc34a022cc29eb9a23ea99f.ctex and /dev/null differ diff --git a/godot/.godot/imported/kiss.png-955d1e7cedc34a022cc29eb9a23ea99f.md5 b/godot/.godot/imported/kiss.png-955d1e7cedc34a022cc29eb9a23ea99f.md5 deleted file mode 100644 index 02aed6338..000000000 --- a/godot/.godot/imported/kiss.png-955d1e7cedc34a022cc29eb9a23ea99f.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="db422a92df81016186d41c8f5fdf3520" -dest_md5="f4480ae3321e105cf5c82a0bb3be7737" - diff --git a/godot/.godot/imported/labglove_baseColor.png-2eb9fa4d9955a5755a96f0663ee3ceb2.s3tc.ctex b/godot/.godot/imported/labglove_baseColor.png-2eb9fa4d9955a5755a96f0663ee3ceb2.s3tc.ctex deleted file mode 100644 index 8377188a4..000000000 Binary files a/godot/.godot/imported/labglove_baseColor.png-2eb9fa4d9955a5755a96f0663ee3ceb2.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/land.png-eb9aefac459d4b60e62e097e73166c7b.ctex b/godot/.godot/imported/land.png-eb9aefac459d4b60e62e097e73166c7b.ctex deleted file mode 100644 index 187e0f129..000000000 Binary files a/godot/.godot/imported/land.png-eb9aefac459d4b60e62e097e73166c7b.ctex and /dev/null differ diff --git a/godot/.godot/imported/land.png-eb9aefac459d4b60e62e097e73166c7b.md5 b/godot/.godot/imported/land.png-eb9aefac459d4b60e62e097e73166c7b.md5 deleted file mode 100644 index 3f14c3827..000000000 --- a/godot/.godot/imported/land.png-eb9aefac459d4b60e62e097e73166c7b.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="5e472349b7c23bfcf118a54f00ec784c" -dest_md5="e41834448e4aed95c5bab7820f3d8143" - diff --git a/godot/.godot/imported/loading_spinner_progress.png-3ea5aed38f638dfa14d84f3c1b3212e3.ctex b/godot/.godot/imported/loading_spinner_progress.png-3ea5aed38f638dfa14d84f3c1b3212e3.ctex deleted file mode 100644 index 62a0a738c..000000000 Binary files a/godot/.godot/imported/loading_spinner_progress.png-3ea5aed38f638dfa14d84f3c1b3212e3.ctex and /dev/null differ diff --git a/godot/.godot/imported/loading_spinner_progress.png-3ea5aed38f638dfa14d84f3c1b3212e3.md5 b/godot/.godot/imported/loading_spinner_progress.png-3ea5aed38f638dfa14d84f3c1b3212e3.md5 deleted file mode 100644 index 2a241cce4..000000000 --- a/godot/.godot/imported/loading_spinner_progress.png-3ea5aed38f638dfa14d84f3c1b3212e3.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="6caca8e55efa98296ff88dc3f382a8ba" -dest_md5="de0ec92605f025c0aa6361707cd73742" - diff --git a/godot/.godot/imported/logged-bg.png-dd43668022daffeb389ce15879b6754c.ctex b/godot/.godot/imported/logged-bg.png-dd43668022daffeb389ce15879b6754c.ctex deleted file mode 100644 index 7af2930cd..000000000 Binary files a/godot/.godot/imported/logged-bg.png-dd43668022daffeb389ce15879b6754c.ctex and /dev/null differ diff --git a/godot/.godot/imported/logged-bg.png-dd43668022daffeb389ce15879b6754c.md5 b/godot/.godot/imported/logged-bg.png-dd43668022daffeb389ce15879b6754c.md5 deleted file mode 100644 index 7eea65a1c..000000000 --- a/godot/.godot/imported/logged-bg.png-dd43668022daffeb389ce15879b6754c.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="e49304e3af7b3f9809015c0450187851" -dest_md5="5be564f3864f3db85abeb500635a26f4" - diff --git a/godot/.godot/imported/lower_body_icon.png-d192b18643c3d0332965d10cbadb0661.ctex b/godot/.godot/imported/lower_body_icon.png-d192b18643c3d0332965d10cbadb0661.ctex deleted file mode 100644 index b3f1bed77..000000000 Binary files a/godot/.godot/imported/lower_body_icon.png-d192b18643c3d0332965d10cbadb0661.ctex and /dev/null differ diff --git a/godot/.godot/imported/lower_body_icon.png-d192b18643c3d0332965d10cbadb0661.md5 b/godot/.godot/imported/lower_body_icon.png-d192b18643c3d0332965d10cbadb0661.md5 deleted file mode 100644 index b15a14134..000000000 --- a/godot/.godot/imported/lower_body_icon.png-d192b18643c3d0332965d10cbadb0661.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="46a4cb605030d20bf7eaaedb0e835f6f" -dest_md5="f2dd2946f0eb3ea74df32e6449c4a141" - diff --git a/godot/.godot/imported/magic.svg-088cb34831e9e0bcc01490605434ad18.ctex b/godot/.godot/imported/magic.svg-088cb34831e9e0bcc01490605434ad18.ctex deleted file mode 100644 index 729c64e80..000000000 Binary files a/godot/.godot/imported/magic.svg-088cb34831e9e0bcc01490605434ad18.ctex and /dev/null differ diff --git a/godot/.godot/imported/male_icon.png-1fe87be384ace61569a4d608a32ca12b.ctex b/godot/.godot/imported/male_icon.png-1fe87be384ace61569a4d608a32ca12b.ctex deleted file mode 100644 index f8a7c2881..000000000 Binary files a/godot/.godot/imported/male_icon.png-1fe87be384ace61569a4d608a32ca12b.ctex and /dev/null differ diff --git a/godot/.godot/imported/male_icon.png-1fe87be384ace61569a4d608a32ca12b.md5 b/godot/.godot/imported/male_icon.png-1fe87be384ace61569a4d608a32ca12b.md5 deleted file mode 100644 index c4aec7c4a..000000000 --- a/godot/.godot/imported/male_icon.png-1fe87be384ace61569a4d608a32ca12b.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ff0acd10bd64880c1beef92eb8491b96" -dest_md5="bee8347c8d19ad1c6dd7ee48bb9c75a2" - diff --git a/godot/.godot/imported/mana.png-172f5d99c05399866578a583756e3d1f.ctex b/godot/.godot/imported/mana.png-172f5d99c05399866578a583756e3d1f.ctex deleted file mode 100644 index 555a5d3ff..000000000 Binary files a/godot/.godot/imported/mana.png-172f5d99c05399866578a583756e3d1f.ctex and /dev/null differ diff --git a/godot/.godot/imported/mana.png-172f5d99c05399866578a583756e3d1f.md5 b/godot/.godot/imported/mana.png-172f5d99c05399866578a583756e3d1f.md5 deleted file mode 100644 index 2d0726006..000000000 --- a/godot/.godot/imported/mana.png-172f5d99c05399866578a583756e3d1f.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="beac81831c45f8d5e2f3e69200d53314" -dest_md5="2774f20c6b06be7239deb14699a11aa0" - diff --git a/godot/.godot/imported/mask_icon.png-29992bf955a8be27e50cb805dde7230e.ctex b/godot/.godot/imported/mask_icon.png-29992bf955a8be27e50cb805dde7230e.ctex deleted file mode 100644 index 2f6e102f8..000000000 Binary files a/godot/.godot/imported/mask_icon.png-29992bf955a8be27e50cb805dde7230e.ctex and /dev/null differ diff --git a/godot/.godot/imported/mask_icon.png-29992bf955a8be27e50cb805dde7230e.md5 b/godot/.godot/imported/mask_icon.png-29992bf955a8be27e50cb805dde7230e.md5 deleted file mode 100644 index 0dc7df102..000000000 --- a/godot/.godot/imported/mask_icon.png-29992bf955a8be27e50cb805dde7230e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="e43780a4dbe9209263e09d90fd8e0b9e" -dest_md5="1be9c4d8d2b9d02caad74576cdb32fcf" - diff --git a/godot/.godot/imported/microphone_0.png-0c2df4c7ef68e54205225ec94afd3405.etc2.ctex b/godot/.godot/imported/microphone_0.png-0c2df4c7ef68e54205225ec94afd3405.etc2.ctex deleted file mode 100644 index fe530022c..000000000 Binary files a/godot/.godot/imported/microphone_0.png-0c2df4c7ef68e54205225ec94afd3405.etc2.ctex and /dev/null differ diff --git a/godot/.godot/imported/microphone_0.png-0c2df4c7ef68e54205225ec94afd3405.md5 b/godot/.godot/imported/microphone_0.png-0c2df4c7ef68e54205225ec94afd3405.md5 deleted file mode 100644 index 6e97a4fee..000000000 --- a/godot/.godot/imported/microphone_0.png-0c2df4c7ef68e54205225ec94afd3405.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="a351a951801cc9a96035e807be23cfce" -dest_md5="83cde743d3a507f33c12106863935393" - diff --git a/godot/.godot/imported/microphone_0.png-0c2df4c7ef68e54205225ec94afd3405.s3tc.ctex b/godot/.godot/imported/microphone_0.png-0c2df4c7ef68e54205225ec94afd3405.s3tc.ctex deleted file mode 100644 index 065ffeff6..000000000 Binary files a/godot/.godot/imported/microphone_0.png-0c2df4c7ef68e54205225ec94afd3405.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/microphone_1.png-8e0793667f270494ad7d70b897efa854.s3tc.ctex b/godot/.godot/imported/microphone_1.png-8e0793667f270494ad7d70b897efa854.s3tc.ctex deleted file mode 100644 index a3fe4df8c..000000000 Binary files a/godot/.godot/imported/microphone_1.png-8e0793667f270494ad7d70b897efa854.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/microphone_2.png-7cb02515e7cae85182a14adcccddb622.s3tc.ctex b/godot/.godot/imported/microphone_2.png-7cb02515e7cae85182a14adcccddb622.s3tc.ctex deleted file mode 100644 index b11aa9fed..000000000 Binary files a/godot/.godot/imported/microphone_2.png-7cb02515e7cae85182a14adcccddb622.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/minimap.png-5851dc4e85d30f78dd600c2cf442ded4.ctex b/godot/.godot/imported/minimap.png-5851dc4e85d30f78dd600c2cf442ded4.ctex deleted file mode 100644 index eb09b9914..000000000 Binary files a/godot/.godot/imported/minimap.png-5851dc4e85d30f78dd600c2cf442ded4.ctex and /dev/null differ diff --git a/godot/.godot/imported/minimap.png-5851dc4e85d30f78dd600c2cf442ded4.md5 b/godot/.godot/imported/minimap.png-5851dc4e85d30f78dd600c2cf442ded4.md5 deleted file mode 100644 index 590be4a2f..000000000 --- a/godot/.godot/imported/minimap.png-5851dc4e85d30f78dd600c2cf442ded4.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="55362133eef53c0b21a726f3c38483c5" -dest_md5="a36922393bb22f8574627112f78ad7f9" - diff --git a/godot/.godot/imported/money.png-b947c60ead92a137a1dff60e2ffe728e.ctex b/godot/.godot/imported/money.png-b947c60ead92a137a1dff60e2ffe728e.ctex deleted file mode 100644 index 1baf4b0fe..000000000 Binary files a/godot/.godot/imported/money.png-b947c60ead92a137a1dff60e2ffe728e.ctex and /dev/null differ diff --git a/godot/.godot/imported/money.png-b947c60ead92a137a1dff60e2ffe728e.md5 b/godot/.godot/imported/money.png-b947c60ead92a137a1dff60e2ffe728e.md5 deleted file mode 100644 index 5c52a2691..000000000 --- a/godot/.godot/imported/money.png-b947c60ead92a137a1dff60e2ffe728e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="fdc25eaa999a4ee1c12ee8c1ed44f1a9" -dest_md5="76f37e9f1f5364b7ed85f26d04e8383f" - diff --git a/godot/.godot/imported/mouth_icon.png-fb1d1ed09c95e8888c040bb3d8ee68b5.ctex b/godot/.godot/imported/mouth_icon.png-fb1d1ed09c95e8888c040bb3d8ee68b5.ctex deleted file mode 100644 index af1208046..000000000 Binary files a/godot/.godot/imported/mouth_icon.png-fb1d1ed09c95e8888c040bb3d8ee68b5.ctex and /dev/null differ diff --git a/godot/.godot/imported/mouth_icon.png-fb1d1ed09c95e8888c040bb3d8ee68b5.md5 b/godot/.godot/imported/mouth_icon.png-fb1d1ed09c95e8888c040bb3d8ee68b5.md5 deleted file mode 100644 index 22829494c..000000000 --- a/godot/.godot/imported/mouth_icon.png-fb1d1ed09c95e8888c040bb3d8ee68b5.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="0231d141015005c2d117d17d8a29bfa8" -dest_md5="91829ff5dcd7ccd0625b7d476eebb2ad" - diff --git a/godot/.godot/imported/movement_provider.svg-3c994cf0a3775c20f333be563d69fbf8.ctex b/godot/.godot/imported/movement_provider.svg-3c994cf0a3775c20f333be563d69fbf8.ctex deleted file mode 100644 index db9ddd702..000000000 Binary files a/godot/.godot/imported/movement_provider.svg-3c994cf0a3775c20f333be563d69fbf8.ctex and /dev/null differ diff --git a/godot/.godot/imported/movement_provider.svg-3c994cf0a3775c20f333be563d69fbf8.md5 b/godot/.godot/imported/movement_provider.svg-3c994cf0a3775c20f333be563d69fbf8.md5 deleted file mode 100644 index 967f4a4a5..000000000 --- a/godot/.godot/imported/movement_provider.svg-3c994cf0a3775c20f333be563d69fbf8.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="c15f15f461687f657eff462a5e626646" -dest_md5="051b0c8f72ad5b76e9962f97eb008c05" - diff --git a/godot/.godot/imported/node.svg-37d53571b4a4459efefcc791c5402b4f.ctex b/godot/.godot/imported/node.svg-37d53571b4a4459efefcc791c5402b4f.ctex deleted file mode 100644 index 2b2ad8724..000000000 Binary files a/godot/.godot/imported/node.svg-37d53571b4a4459efefcc791c5402b4f.ctex and /dev/null differ diff --git a/godot/.godot/imported/node.svg-37d53571b4a4459efefcc791c5402b4f.md5 b/godot/.godot/imported/node.svg-37d53571b4a4459efefcc791c5402b4f.md5 deleted file mode 100644 index 1f1744854..000000000 --- a/godot/.godot/imported/node.svg-37d53571b4a4459efefcc791c5402b4f.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="8a82d421f53d06543d59691b17e1f776" -dest_md5="471b48a8633b56ec87f26b310d2078da" - diff --git a/godot/.godot/imported/placeholder.png-21c26e805330e434a7b4a8811c35993e.ctex b/godot/.godot/imported/placeholder.png-21c26e805330e434a7b4a8811c35993e.ctex deleted file mode 100644 index 28ca04ded..000000000 Binary files a/godot/.godot/imported/placeholder.png-21c26e805330e434a7b4a8811c35993e.ctex and /dev/null differ diff --git a/godot/.godot/imported/placeholder.png-21c26e805330e434a7b4a8811c35993e.md5 b/godot/.godot/imported/placeholder.png-21c26e805330e434a7b4a8811c35993e.md5 deleted file mode 100644 index 943c7f7ce..000000000 --- a/godot/.godot/imported/placeholder.png-21c26e805330e434a7b4a8811c35993e.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="5aad2523f95798e31b0207d684f8e20f" -dest_md5="560db2d8257cb13937669e5615c63e31" - diff --git a/godot/.godot/imported/platform.png-b9c82ac805c1b4ff216ea175c5ac36ef.s3tc.ctex b/godot/.godot/imported/platform.png-b9c82ac805c1b4ff216ea175c5ac36ef.s3tc.ctex deleted file mode 100644 index 2e06901d6..000000000 Binary files a/godot/.godot/imported/platform.png-b9c82ac805c1b4ff216ea175c5ac36ef.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/platform_compressed_DefaultMaterial_arm.png-aea076363db48ce03913b988a8b7e43c.s3tc.ctex b/godot/.godot/imported/platform_compressed_DefaultMaterial_arm.png-aea076363db48ce03913b988a8b7e43c.s3tc.ctex deleted file mode 100644 index 76fb36e1e..000000000 Binary files a/godot/.godot/imported/platform_compressed_DefaultMaterial_arm.png-aea076363db48ce03913b988a8b7e43c.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/platform_compressed_DefaultMaterial_basecolor.png-345c030bf13b384851afa52c82930358.s3tc.ctex b/godot/.godot/imported/platform_compressed_DefaultMaterial_basecolor.png-345c030bf13b384851afa52c82930358.s3tc.ctex deleted file mode 100644 index d8c94290b..000000000 Binary files a/godot/.godot/imported/platform_compressed_DefaultMaterial_basecolor.png-345c030bf13b384851afa52c82930358.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/platform_compressed_DefaultMaterial_emissive.png-0b1a3468e821866d0a619d6c00f83584.etc2.ctex b/godot/.godot/imported/platform_compressed_DefaultMaterial_emissive.png-0b1a3468e821866d0a619d6c00f83584.etc2.ctex deleted file mode 100644 index f6882d44c..000000000 Binary files a/godot/.godot/imported/platform_compressed_DefaultMaterial_emissive.png-0b1a3468e821866d0a619d6c00f83584.etc2.ctex and /dev/null differ diff --git a/godot/.godot/imported/platform_compressed_DefaultMaterial_emissive.png-0b1a3468e821866d0a619d6c00f83584.md5 b/godot/.godot/imported/platform_compressed_DefaultMaterial_emissive.png-0b1a3468e821866d0a619d6c00f83584.md5 deleted file mode 100644 index 9a9919844..000000000 --- a/godot/.godot/imported/platform_compressed_DefaultMaterial_emissive.png-0b1a3468e821866d0a619d6c00f83584.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="e27eec29ea30a3e9021b55473e9d917a" -dest_md5="20867d467193a808244a14a3d0a45b62" - diff --git a/godot/.godot/imported/platform_compressed_DefaultMaterial_emissive.png-0b1a3468e821866d0a619d6c00f83584.s3tc.ctex b/godot/.godot/imported/platform_compressed_DefaultMaterial_emissive.png-0b1a3468e821866d0a619d6c00f83584.s3tc.ctex deleted file mode 100644 index 87532e308..000000000 Binary files a/godot/.godot/imported/platform_compressed_DefaultMaterial_emissive.png-0b1a3468e821866d0a619d6c00f83584.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/platform_compressed_Image.png-8fd24d250dc101d2e2be288847b72ff1.ctex b/godot/.godot/imported/platform_compressed_Image.png-8fd24d250dc101d2e2be288847b72ff1.ctex deleted file mode 100644 index f9acc062c..000000000 Binary files a/godot/.godot/imported/platform_compressed_Image.png-8fd24d250dc101d2e2be288847b72ff1.ctex and /dev/null differ diff --git a/godot/.godot/imported/platform_compressed_Image.png-8fd24d250dc101d2e2be288847b72ff1.md5 b/godot/.godot/imported/platform_compressed_Image.png-8fd24d250dc101d2e2be288847b72ff1.md5 deleted file mode 100644 index f4db2ea8e..000000000 --- a/godot/.godot/imported/platform_compressed_Image.png-8fd24d250dc101d2e2be288847b72ff1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="7615f988ad7ca7c5a23d4d0635b94baf" -dest_md5="fddbea0a1b12ec0b589d4bd8b6f39ea5" - diff --git a/godot/.godot/imported/progress_bar.png-2ef3cbffca173889900be004fdeb1700.etc2.ctex b/godot/.godot/imported/progress_bar.png-2ef3cbffca173889900be004fdeb1700.etc2.ctex deleted file mode 100644 index 05dcea2ce..000000000 Binary files a/godot/.godot/imported/progress_bar.png-2ef3cbffca173889900be004fdeb1700.etc2.ctex and /dev/null differ diff --git a/godot/.godot/imported/progress_bar.png-2ef3cbffca173889900be004fdeb1700.md5 b/godot/.godot/imported/progress_bar.png-2ef3cbffca173889900be004fdeb1700.md5 deleted file mode 100644 index 4af4a342f..000000000 --- a/godot/.godot/imported/progress_bar.png-2ef3cbffca173889900be004fdeb1700.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="b46e1e706b26ffa8a6fc54568de18fe5" -dest_md5="7d2a6ca9115b727e1a4f085c1b7591ca" - diff --git a/godot/.godot/imported/progress_bar.png-2ef3cbffca173889900be004fdeb1700.s3tc.ctex b/godot/.godot/imported/progress_bar.png-2ef3cbffca173889900be004fdeb1700.s3tc.ctex deleted file mode 100644 index ea060a46a..000000000 Binary files a/godot/.godot/imported/progress_bar.png-2ef3cbffca173889900be004fdeb1700.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/radiobutton_checked.svg-053e579fafbe673a159d3d22ecd1f197.ctex b/godot/.godot/imported/radiobutton_checked.svg-053e579fafbe673a159d3d22ecd1f197.ctex deleted file mode 100644 index 72ec2cc0c..000000000 Binary files a/godot/.godot/imported/radiobutton_checked.svg-053e579fafbe673a159d3d22ecd1f197.ctex and /dev/null differ diff --git a/godot/.godot/imported/radiobutton_checked.svg-053e579fafbe673a159d3d22ecd1f197.md5 b/godot/.godot/imported/radiobutton_checked.svg-053e579fafbe673a159d3d22ecd1f197.md5 deleted file mode 100644 index 8975abda1..000000000 --- a/godot/.godot/imported/radiobutton_checked.svg-053e579fafbe673a159d3d22ecd1f197.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="cd61742f5858ae16921661dbb1f87c9e" -dest_md5="1ce8a09ce170c26753ce944e9e172239" - diff --git a/godot/.godot/imported/radiobutton_unchecked.svg-283bc1c40564372fc1d8b376f2eb6bc1.ctex b/godot/.godot/imported/radiobutton_unchecked.svg-283bc1c40564372fc1d8b376f2eb6bc1.ctex deleted file mode 100644 index 50147d3f9..000000000 Binary files a/godot/.godot/imported/radiobutton_unchecked.svg-283bc1c40564372fc1d8b376f2eb6bc1.ctex and /dev/null differ diff --git a/godot/.godot/imported/radiobutton_unchecked.svg-283bc1c40564372fc1d8b376f2eb6bc1.md5 b/godot/.godot/imported/radiobutton_unchecked.svg-283bc1c40564372fc1d8b376f2eb6bc1.md5 deleted file mode 100644 index 2dc8f2350..000000000 --- a/godot/.godot/imported/radiobutton_unchecked.svg-283bc1c40564372fc1d8b376f2eb6bc1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="e0d6d6f6648eb6150d4d311df7779d36" -dest_md5="c0a6636046f4513b34273afaf7b66184" - diff --git a/godot/.godot/imported/raiseHand.png-90b480142fe67fe86db517b37e115270.ctex b/godot/.godot/imported/raiseHand.png-90b480142fe67fe86db517b37e115270.ctex deleted file mode 100644 index bba092731..000000000 Binary files a/godot/.godot/imported/raiseHand.png-90b480142fe67fe86db517b37e115270.ctex and /dev/null differ diff --git a/godot/.godot/imported/raiseHand.png-90b480142fe67fe86db517b37e115270.md5 b/godot/.godot/imported/raiseHand.png-90b480142fe67fe86db517b37e115270.md5 deleted file mode 100644 index 52c46e18b..000000000 --- a/godot/.godot/imported/raiseHand.png-90b480142fe67fe86db517b37e115270.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="d50f511dd6ffdfce59c30dd9d52211e4" -dest_md5="199e8d4d933998268200931c138daba8" - diff --git a/godot/.godot/imported/ring.png-34d9c9e9780f2732148a5b14fcac48dd.etc2.ctex b/godot/.godot/imported/ring.png-34d9c9e9780f2732148a5b14fcac48dd.etc2.ctex deleted file mode 100644 index c513c9d5a..000000000 Binary files a/godot/.godot/imported/ring.png-34d9c9e9780f2732148a5b14fcac48dd.etc2.ctex and /dev/null differ diff --git a/godot/.godot/imported/ring.png-34d9c9e9780f2732148a5b14fcac48dd.md5 b/godot/.godot/imported/ring.png-34d9c9e9780f2732148a5b14fcac48dd.md5 deleted file mode 100644 index dcc5a9dec..000000000 --- a/godot/.godot/imported/ring.png-34d9c9e9780f2732148a5b14fcac48dd.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="4b01e2ab7a65a3c514c911d1c77cdd66" -dest_md5="3bf48bd93b60d1c685960964c1ebd536" - diff --git a/godot/.godot/imported/ring.png-34d9c9e9780f2732148a5b14fcac48dd.s3tc.ctex b/godot/.godot/imported/ring.png-34d9c9e9780f2732148a5b14fcac48dd.s3tc.ctex deleted file mode 100644 index e92f2eea9..000000000 Binary files a/godot/.godot/imported/ring.png-34d9c9e9780f2732148a5b14fcac48dd.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/shrug.png-c7a525b5c89a724d821af28d37bd3006.ctex b/godot/.godot/imported/shrug.png-c7a525b5c89a724d821af28d37bd3006.ctex deleted file mode 100644 index 78380eeaa..000000000 Binary files a/godot/.godot/imported/shrug.png-c7a525b5c89a724d821af28d37bd3006.ctex and /dev/null differ diff --git a/godot/.godot/imported/shrug.png-c7a525b5c89a724d821af28d37bd3006.md5 b/godot/.godot/imported/shrug.png-c7a525b5c89a724d821af28d37bd3006.md5 deleted file mode 100644 index 5b3b0d60d..000000000 --- a/godot/.godot/imported/shrug.png-c7a525b5c89a724d821af28d37bd3006.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="d309aabdae80f2844fb4c1b825e75f1f" -dest_md5="f1c0d1fb27956e9c4f01624be9aa5407" - diff --git a/godot/.godot/imported/skin_icon.png-739ebaa5266878269c1a632427319274.ctex b/godot/.godot/imported/skin_icon.png-739ebaa5266878269c1a632427319274.ctex deleted file mode 100644 index cc403fa41..000000000 Binary files a/godot/.godot/imported/skin_icon.png-739ebaa5266878269c1a632427319274.ctex and /dev/null differ diff --git a/godot/.godot/imported/skin_icon.png-739ebaa5266878269c1a632427319274.md5 b/godot/.godot/imported/skin_icon.png-739ebaa5266878269c1a632427319274.md5 deleted file mode 100644 index c67d933f3..000000000 --- a/godot/.godot/imported/skin_icon.png-739ebaa5266878269c1a632427319274.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="2f1130bf686eea74db1033c3fa4ba00c" -dest_md5="e8aacc65406b2e2f0acb83655d3b154c" - diff --git a/godot/.godot/imported/slider.png-434f6229f5d1f1ec7370875085c492fc.ctex b/godot/.godot/imported/slider.png-434f6229f5d1f1ec7370875085c492fc.ctex deleted file mode 100644 index ff56e7d52..000000000 Binary files a/godot/.godot/imported/slider.png-434f6229f5d1f1ec7370875085c492fc.ctex and /dev/null differ diff --git a/godot/.godot/imported/slider.png-434f6229f5d1f1ec7370875085c492fc.md5 b/godot/.godot/imported/slider.png-434f6229f5d1f1ec7370875085c492fc.md5 deleted file mode 100644 index 69e2bda59..000000000 --- a/godot/.godot/imported/slider.png-434f6229f5d1f1ec7370875085c492fc.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="646d44db380ef4b8d040ea2ee5b9d835" -dest_md5="956684d6e91b792821cca45b027d9780" - diff --git a/godot/.godot/imported/slider.svg-b006b4fc9a35bbbb3ec8d97028f79ef3.ctex b/godot/.godot/imported/slider.svg-b006b4fc9a35bbbb3ec8d97028f79ef3.ctex deleted file mode 100644 index d7687ab25..000000000 Binary files a/godot/.godot/imported/slider.svg-b006b4fc9a35bbbb3ec8d97028f79ef3.ctex and /dev/null differ diff --git a/godot/.godot/imported/slider.svg-b006b4fc9a35bbbb3ec8d97028f79ef3.md5 b/godot/.godot/imported/slider.svg-b006b4fc9a35bbbb3ec8d97028f79ef3.md5 deleted file mode 100644 index 62586cc39..000000000 --- a/godot/.godot/imported/slider.svg-b006b4fc9a35bbbb3ec8d97028f79ef3.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="1cb00cf5cfd73dcf5121fa43099aa8a0" -dest_md5="7367ad5602b84f64af1e945ee529cc7e" - diff --git a/godot/.godot/imported/slider1.png-2590a51a3da78fe203ff0fcf192e9d02.ctex b/godot/.godot/imported/slider1.png-2590a51a3da78fe203ff0fcf192e9d02.ctex deleted file mode 100644 index 3a80c6d7c..000000000 Binary files a/godot/.godot/imported/slider1.png-2590a51a3da78fe203ff0fcf192e9d02.ctex and /dev/null differ diff --git a/godot/.godot/imported/slider1.png-2590a51a3da78fe203ff0fcf192e9d02.md5 b/godot/.godot/imported/slider1.png-2590a51a3da78fe203ff0fcf192e9d02.md5 deleted file mode 100644 index 0c2ed8ff7..000000000 --- a/godot/.godot/imported/slider1.png-2590a51a3da78fe203ff0fcf192e9d02.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="adc734331fda152bc86c688387bd0783" -dest_md5="0c86777af30cd7543b1f33393015d0d1" - diff --git a/godot/.godot/imported/spinbox.png-4fbfc5d9703ee6b0fd34f03475a7eb26.ctex b/godot/.godot/imported/spinbox.png-4fbfc5d9703ee6b0fd34f03475a7eb26.ctex deleted file mode 100644 index dc5f3d4f2..000000000 Binary files a/godot/.godot/imported/spinbox.png-4fbfc5d9703ee6b0fd34f03475a7eb26.ctex and /dev/null differ diff --git a/godot/.godot/imported/spinbox.png-4fbfc5d9703ee6b0fd34f03475a7eb26.md5 b/godot/.godot/imported/spinbox.png-4fbfc5d9703ee6b0fd34f03475a7eb26.md5 deleted file mode 100644 index 68a5ee307..000000000 --- a/godot/.godot/imported/spinbox.png-4fbfc5d9703ee6b0fd34f03475a7eb26.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="8f6d8c547f6106da2d880e1b8116f3ae" -dest_md5="2d4b50769665463a2a189c7a8e43edf5" - diff --git a/godot/.godot/imported/switch-off.svg-e316821026588a4d4b377742b0fe8697.ctex b/godot/.godot/imported/switch-off.svg-e316821026588a4d4b377742b0fe8697.ctex deleted file mode 100644 index 069ccb69c..000000000 Binary files a/godot/.godot/imported/switch-off.svg-e316821026588a4d4b377742b0fe8697.ctex and /dev/null differ diff --git a/godot/.godot/imported/switch-off.svg-e316821026588a4d4b377742b0fe8697.md5 b/godot/.godot/imported/switch-off.svg-e316821026588a4d4b377742b0fe8697.md5 deleted file mode 100644 index b8e043310..000000000 --- a/godot/.godot/imported/switch-off.svg-e316821026588a4d4b377742b0fe8697.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="2e461242100f90b03ddb844392efd40b" -dest_md5="37b0167aecebe79077276640b80b9824" - diff --git a/godot/.godot/imported/switch-on.svg-3f843a49e27aaa695c4fdbf27690c0ca.ctex b/godot/.godot/imported/switch-on.svg-3f843a49e27aaa695c4fdbf27690c0ca.ctex deleted file mode 100644 index e8694253f..000000000 Binary files a/godot/.godot/imported/switch-on.svg-3f843a49e27aaa695c4fdbf27690c0ca.ctex and /dev/null differ diff --git a/godot/.godot/imported/switch-on.svg-3f843a49e27aaa695c4fdbf27690c0ca.md5 b/godot/.godot/imported/switch-on.svg-3f843a49e27aaa695c4fdbf27690c0ca.md5 deleted file mode 100644 index 0924afe49..000000000 --- a/godot/.godot/imported/switch-on.svg-3f843a49e27aaa695c4fdbf27690c0ca.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="f8cda194e8450cc330bcc3ca8073ef22" -dest_md5="8c313d8be829f5387c6e91044b992ad4" - diff --git a/godot/.godot/imported/teleport_arrow.png-f1bd44b6f478277692b3fa29171b62d3.etc2.ctex b/godot/.godot/imported/teleport_arrow.png-f1bd44b6f478277692b3fa29171b62d3.etc2.ctex deleted file mode 100644 index b00901fbb..000000000 Binary files a/godot/.godot/imported/teleport_arrow.png-f1bd44b6f478277692b3fa29171b62d3.etc2.ctex and /dev/null differ diff --git a/godot/.godot/imported/teleport_arrow.png-f1bd44b6f478277692b3fa29171b62d3.md5 b/godot/.godot/imported/teleport_arrow.png-f1bd44b6f478277692b3fa29171b62d3.md5 deleted file mode 100644 index 590a31f5a..000000000 --- a/godot/.godot/imported/teleport_arrow.png-f1bd44b6f478277692b3fa29171b62d3.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="9ea03e433db9dad93d17c6eba7c1738c" -dest_md5="a0a3c634682958fdd1a44652a8e52c03" - diff --git a/godot/.godot/imported/teleport_arrow.png-f1bd44b6f478277692b3fa29171b62d3.s3tc.ctex b/godot/.godot/imported/teleport_arrow.png-f1bd44b6f478277692b3fa29171b62d3.s3tc.ctex deleted file mode 100644 index 57706c3ee..000000000 Binary files a/godot/.godot/imported/teleport_arrow.png-f1bd44b6f478277692b3fa29171b62d3.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/teleport_target.png-cd812f7d5692711ac91f6c8a4753ad73.etc2.ctex b/godot/.godot/imported/teleport_target.png-cd812f7d5692711ac91f6c8a4753ad73.etc2.ctex deleted file mode 100644 index ee5361cca..000000000 Binary files a/godot/.godot/imported/teleport_target.png-cd812f7d5692711ac91f6c8a4753ad73.etc2.ctex and /dev/null differ diff --git a/godot/.godot/imported/teleport_target.png-cd812f7d5692711ac91f6c8a4753ad73.md5 b/godot/.godot/imported/teleport_target.png-cd812f7d5692711ac91f6c8a4753ad73.md5 deleted file mode 100644 index 02f2c1cb4..000000000 --- a/godot/.godot/imported/teleport_target.png-cd812f7d5692711ac91f6c8a4753ad73.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="ddfe3a357d51b8ef8e98854462155f5e" -dest_md5="af6feb9d42429b037557ef0e8b2fc189" - diff --git a/godot/.godot/imported/teleport_target.png-cd812f7d5692711ac91f6c8a4753ad73.s3tc.ctex b/godot/.godot/imported/teleport_target.png-cd812f7d5692711ac91f6c8a4753ad73.s3tc.ctex deleted file mode 100644 index eb235b890..000000000 Binary files a/godot/.godot/imported/teleport_target.png-cd812f7d5692711ac91f6c8a4753ad73.s3tc.ctex and /dev/null differ diff --git a/godot/.godot/imported/tiara_icon.png-71c8e313ef4ec2fb6d1ad4804a452fbf.ctex b/godot/.godot/imported/tiara_icon.png-71c8e313ef4ec2fb6d1ad4804a452fbf.ctex deleted file mode 100644 index 1baae948c..000000000 Binary files a/godot/.godot/imported/tiara_icon.png-71c8e313ef4ec2fb6d1ad4804a452fbf.ctex and /dev/null differ diff --git a/godot/.godot/imported/tiara_icon.png-71c8e313ef4ec2fb6d1ad4804a452fbf.md5 b/godot/.godot/imported/tiara_icon.png-71c8e313ef4ec2fb6d1ad4804a452fbf.md5 deleted file mode 100644 index 206de96d6..000000000 --- a/godot/.godot/imported/tiara_icon.png-71c8e313ef4ec2fb6d1ad4804a452fbf.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="8070c4adc8b473f85a8c8fdee345ce2a" -dest_md5="43d035640e337e4f51a7a43ca1672d7c" - diff --git a/godot/.godot/imported/top_head_icon.png-58edf7fd4e295cb5583d16aa5a8c56e1.ctex b/godot/.godot/imported/top_head_icon.png-58edf7fd4e295cb5583d16aa5a8c56e1.ctex deleted file mode 100644 index 6e35fa061..000000000 Binary files a/godot/.godot/imported/top_head_icon.png-58edf7fd4e295cb5583d16aa5a8c56e1.ctex and /dev/null differ diff --git a/godot/.godot/imported/top_head_icon.png-58edf7fd4e295cb5583d16aa5a8c56e1.md5 b/godot/.godot/imported/top_head_icon.png-58edf7fd4e295cb5583d16aa5a8c56e1.md5 deleted file mode 100644 index 6479f1393..000000000 --- a/godot/.godot/imported/top_head_icon.png-58edf7fd4e295cb5583d16aa5a8c56e1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="eeff4116e41f40e7ebd2e11fa31b122f" -dest_md5="f0ed70d0700b354577c790b1641bdf3c" - diff --git a/godot/.godot/imported/unisex_icon.png-702b33e9ff0bf1bfbd74e7ede4d82a76.ctex b/godot/.godot/imported/unisex_icon.png-702b33e9ff0bf1bfbd74e7ede4d82a76.ctex deleted file mode 100644 index 9a7aef8c7..000000000 Binary files a/godot/.godot/imported/unisex_icon.png-702b33e9ff0bf1bfbd74e7ede4d82a76.ctex and /dev/null differ diff --git a/godot/.godot/imported/unisex_icon.png-702b33e9ff0bf1bfbd74e7ede4d82a76.md5 b/godot/.godot/imported/unisex_icon.png-702b33e9ff0bf1bfbd74e7ede4d82a76.md5 deleted file mode 100644 index 42c6b9d2f..000000000 --- a/godot/.godot/imported/unisex_icon.png-702b33e9ff0bf1bfbd74e7ede4d82a76.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="8e369343a310131065e9ee32edb15f0d" -dest_md5="07711fe2eed595cd300239d5f846920e" - diff --git a/godot/.godot/imported/upper_body_icon.png-00619b9a9915fcb00164f626b2044120.ctex b/godot/.godot/imported/upper_body_icon.png-00619b9a9915fcb00164f626b2044120.ctex deleted file mode 100644 index 30584d2be..000000000 Binary files a/godot/.godot/imported/upper_body_icon.png-00619b9a9915fcb00164f626b2044120.ctex and /dev/null differ diff --git a/godot/.godot/imported/upper_body_icon.png-00619b9a9915fcb00164f626b2044120.md5 b/godot/.godot/imported/upper_body_icon.png-00619b9a9915fcb00164f626b2044120.md5 deleted file mode 100644 index b9a7bc631..000000000 --- a/godot/.godot/imported/upper_body_icon.png-00619b9a9915fcb00164f626b2044120.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="f8f03790598c64342314d5200611c82d" -dest_md5="f001b62be85ecc1aa1af90c900205a07" - diff --git a/godot/.godot/imported/wallet-connect.png-220ad8719a0db3ee52993cdcb120adf4.ctex b/godot/.godot/imported/wallet-connect.png-220ad8719a0db3ee52993cdcb120adf4.ctex deleted file mode 100644 index 44e78c6e4..000000000 Binary files a/godot/.godot/imported/wallet-connect.png-220ad8719a0db3ee52993cdcb120adf4.ctex and /dev/null differ diff --git a/godot/.godot/imported/wallet-connect.png-220ad8719a0db3ee52993cdcb120adf4.md5 b/godot/.godot/imported/wallet-connect.png-220ad8719a0db3ee52993cdcb120adf4.md5 deleted file mode 100644 index dc2040ebc..000000000 --- a/godot/.godot/imported/wallet-connect.png-220ad8719a0db3ee52993cdcb120adf4.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="67b9c88b63853487c8aecf0786f775e8" -dest_md5="9b90704ac05c5c28f6846018b5ac48cc" - diff --git a/godot/.godot/imported/warning.svg-63c3e406cbc80aee9cec655e29ef7e60.ctex b/godot/.godot/imported/warning.svg-63c3e406cbc80aee9cec655e29ef7e60.ctex deleted file mode 100644 index d3e97d8ff..000000000 Binary files a/godot/.godot/imported/warning.svg-63c3e406cbc80aee9cec655e29ef7e60.ctex and /dev/null differ diff --git a/godot/.godot/imported/warning.svg-63c3e406cbc80aee9cec655e29ef7e60.md5 b/godot/.godot/imported/warning.svg-63c3e406cbc80aee9cec655e29ef7e60.md5 deleted file mode 100644 index fb745a419..000000000 --- a/godot/.godot/imported/warning.svg-63c3e406cbc80aee9cec655e29ef7e60.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="a1a275575cda27d46667fdb216dd08e8" -dest_md5="83ddbbb313f456d3f516241d91539721" - diff --git a/godot/.godot/imported/wave.png-ef70b2e97cc76ccabc79d33e5295a7f1.ctex b/godot/.godot/imported/wave.png-ef70b2e97cc76ccabc79d33e5295a7f1.ctex deleted file mode 100644 index 420ced541..000000000 Binary files a/godot/.godot/imported/wave.png-ef70b2e97cc76ccabc79d33e5295a7f1.ctex and /dev/null differ diff --git a/godot/.godot/imported/wave.png-ef70b2e97cc76ccabc79d33e5295a7f1.md5 b/godot/.godot/imported/wave.png-ef70b2e97cc76ccabc79d33e5295a7f1.md5 deleted file mode 100644 index 54ea7d9b6..000000000 --- a/godot/.godot/imported/wave.png-ef70b2e97cc76ccabc79d33e5295a7f1.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="3fd5b58c27a20d1567f48316937f420e" -dest_md5="c10b8d4bd8c531f061103705fd2856ac" - diff --git a/godot/.godot/imported/wearables-emotes.png-45678a8c30e3dd8fe908c2c16b7f6272.ctex b/godot/.godot/imported/wearables-emotes.png-45678a8c30e3dd8fe908c2c16b7f6272.ctex deleted file mode 100644 index 5bd11feb3..000000000 Binary files a/godot/.godot/imported/wearables-emotes.png-45678a8c30e3dd8fe908c2c16b7f6272.ctex and /dev/null differ diff --git a/godot/.godot/imported/wearables-emotes.png-45678a8c30e3dd8fe908c2c16b7f6272.md5 b/godot/.godot/imported/wearables-emotes.png-45678a8c30e3dd8fe908c2c16b7f6272.md5 deleted file mode 100644 index f7296006d..000000000 --- a/godot/.godot/imported/wearables-emotes.png-45678a8c30e3dd8fe908c2c16b7f6272.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="e063c376ee59efd7a16801b907b9dda9" -dest_md5="2e8cc229c95164b4bf1cb9e757064400" - diff --git a/godot/.godot/imported/white_pixel.png-a5396b338c5df4e4f81f132f53e92bf8.ctex b/godot/.godot/imported/white_pixel.png-a5396b338c5df4e4f81f132f53e92bf8.ctex deleted file mode 100644 index 8bd8266d0..000000000 Binary files a/godot/.godot/imported/white_pixel.png-a5396b338c5df4e4f81f132f53e92bf8.ctex and /dev/null differ diff --git a/godot/.godot/imported/white_pixel.png-a5396b338c5df4e4f81f132f53e92bf8.md5 b/godot/.godot/imported/white_pixel.png-a5396b338c5df4e4f81f132f53e92bf8.md5 deleted file mode 100644 index 8aea8cb8b..000000000 --- a/godot/.godot/imported/white_pixel.png-a5396b338c5df4e4f81f132f53e92bf8.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="dc792be7a6147a89995f4cb8f486adbd" -dest_md5="7ffaaa25e8ba17491c208f0c62a4fb29" - diff --git a/godot/.godot/imported/world_banner.png-16c36cb50a585efc0b9166f2f2196b70.ctex b/godot/.godot/imported/world_banner.png-16c36cb50a585efc0b9166f2f2196b70.ctex deleted file mode 100644 index f6c6383cd..000000000 Binary files a/godot/.godot/imported/world_banner.png-16c36cb50a585efc0b9166f2f2196b70.ctex and /dev/null differ diff --git a/godot/.godot/imported/world_banner.png-16c36cb50a585efc0b9166f2f2196b70.md5 b/godot/.godot/imported/world_banner.png-16c36cb50a585efc0b9166f2f2196b70.md5 deleted file mode 100644 index eaff047e1..000000000 --- a/godot/.godot/imported/world_banner.png-16c36cb50a585efc0b9166f2f2196b70.md5 +++ /dev/null @@ -1,3 +0,0 @@ -source_md5="b279ee52bd00531f1914c7c098ede95a" -dest_md5="b26db3073e037b5e0cf4ff5016caf199" - diff --git a/godot/.godot/imported/x.svg-9f33895c5ec2b09bfe96a45d04ac5390.ctex b/godot/.godot/imported/x.svg-9f33895c5ec2b09bfe96a45d04ac5390.ctex deleted file mode 100644 index 289860c3e..000000000 Binary files a/godot/.godot/imported/x.svg-9f33895c5ec2b09bfe96a45d04ac5390.ctex and /dev/null differ diff --git a/src/export.rs b/src/export.rs index 8597d6445..cca5d5286 100644 --- a/src/export.rs +++ b/src/export.rs @@ -1,4 +1,4 @@ -use std::{fs, io, path::Path}; +use std::{fs, io, path::Path, process::ExitStatus}; use crate::{ consts::{ @@ -6,8 +6,8 @@ use crate::{ GODOT_PROJECT_FOLDER, }, copy_files::copy_ffmpeg_libraries, - install_dependency::{self, download_and_extract_zip, set_executable_permission}, - path::adjust_canonicalization, + install_dependency::{download_and_extract_zip, set_executable_permission}, + path::{adjust_canonicalization, get_godot_path}, }; #[allow(dead_code)] @@ -25,40 +25,44 @@ fn copy_dir_all(src: impl AsRef, dst: impl AsRef) -> io::Result<()> Ok(()) } -pub fn export() -> Result<(), anyhow::Error> { - let program = adjust_canonicalization( - std::fs::canonicalize(format!( - "{}godot/{}", - BIN_FOLDER, - install_dependency::get_godot_executable_path().unwrap() - )) - .unwrap(), - ); - - // Make exports directory - if std::path::Path::new(EXPORTS_FOLDER).exists() { - fs::remove_dir_all(EXPORTS_FOLDER)?; - } - std::thread::sleep(std::time::Duration::from_secs(1)); - fs::create_dir(EXPORTS_FOLDER)?; - std::thread::sleep(std::time::Duration::from_secs(1)); +pub fn import_assets() -> ExitStatus +{ + let program = get_godot_path(); // Do imports and one project open let args = vec![ - "-e", + "--editor", + "--import", "--headless", "--rendering-driver", "opengl3", "--quit-after", "1000", ]; - let status1 = std::process::Command::new(program.as_str()) + + println!("execute ${program} {:?}", args); + std::process::Command::new(program.as_str()) .args(&args) .current_dir(adjust_canonicalization( std::fs::canonicalize(GODOT_PROJECT_FOLDER).unwrap(), )) .status() - .expect("Failed to run Godot"); + .expect("Failed to run Godot") +} + +pub fn export() -> Result<(), anyhow::Error> { + let program = get_godot_path(); + + // Make exports directory + if std::path::Path::new(EXPORTS_FOLDER).exists() { + fs::remove_dir_all(EXPORTS_FOLDER)?; + } + std::thread::sleep(std::time::Duration::from_secs(1)); + fs::create_dir(EXPORTS_FOLDER)?; + std::thread::sleep(std::time::Duration::from_secs(1)); + + // Do imports and one project open + let import_assets_status = import_assets(); let output_file_name = match std::env::consts::OS { "linux" => "decentraland.godot.client.x86_64", @@ -103,7 +107,7 @@ pub fn export() -> Result<(), anyhow::Error> { println!("Running the export build with command: {:?}", args); - let status2 = std::process::Command::new(program.as_str()) + let export_status = std::process::Command::new(program.as_str()) .args(&args) .current_dir(adjust_canonicalization( std::fs::canonicalize(GODOT_PROJECT_FOLDER).unwrap(), @@ -114,8 +118,8 @@ pub fn export() -> Result<(), anyhow::Error> { if !std::path::Path::new(output_rel_path.as_str()).exists() { return Err(anyhow::anyhow!( "Output file was not generated. pre-import godot status: {:?}, project-export godot status: {:?}", - status1, - status2 + import_assets_status, + export_status )); } diff --git a/src/main.rs b/src/main.rs index 755f72e56..0ea18be24 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,6 +2,7 @@ use std::{collections::HashMap, fs::create_dir_all, path::Path}; use anyhow::Context; use clap::{AppSettings, Arg, Command}; +use export::import_assets; use image_comparison::compare_images_folders; use tests::test_godot_tools; use xtaskops::ops::{clean_files, cmd, confirm, remove_dir}; @@ -84,6 +85,7 @@ fn main() -> Result<(), anyhow::Error> { ), ) .subcommand(Command::new("export")) + .subcommand(Command::new("import-assets")) .subcommand( Command::new("run") .arg( @@ -183,6 +185,16 @@ fn main() -> Result<(), anyhow::Error> { ) } ("export", _m) => export::export(), + ("import-assets", _m) => { + let status = import_assets(); + if !status.success() { + println!( + "WARN: cargo build exited with non-zero status: {}", + status + ); + } + Ok(()) + }, ("coverage", sm) => coverage_with_itest(sm.is_present("dev")), ("test-tools", _) => test_godot_tools(None), ("vars", _) => { diff --git a/src/path.rs b/src/path.rs index 9708d4be9..89ad8d1ba 100644 --- a/src/path.rs +++ b/src/path.rs @@ -1,3 +1,5 @@ +use crate::{consts::BIN_FOLDER, install_dependency}; + #[cfg(not(target_os = "windows"))] pub fn adjust_canonicalization>(p: P) -> String { p.as_ref().display().to_string() @@ -13,3 +15,15 @@ pub fn adjust_canonicalization>(p: P) -> String { p } } + +pub fn get_godot_path() -> String +{ + adjust_canonicalization( + std::fs::canonicalize(format!( + "{}godot/{}", + BIN_FOLDER, + install_dependency::get_godot_executable_path().unwrap() + )) + .expect("Did you executed `cargo run -- install`?") + ) +} \ No newline at end of file diff --git a/src/run.rs b/src/run.rs index 85a91141d..b07c871a2 100644 --- a/src/run.rs +++ b/src/run.rs @@ -4,10 +4,9 @@ use std::{ }; use crate::{ - consts::{BIN_FOLDER, GODOT_PROJECT_FOLDER, RUST_LIB_PROJECT_FOLDER}, + consts::{GODOT_PROJECT_FOLDER, RUST_LIB_PROJECT_FOLDER}, copy_files::copy_library, - install_dependency, - path::adjust_canonicalization, + path::{adjust_canonicalization, get_godot_path}, }; #[allow(clippy::too_many_arguments)] @@ -22,19 +21,8 @@ pub fn run( extras: Vec, with_build_envs: Option>, ) -> Result<(), anyhow::Error> { - let with_build_envs = match with_build_envs { - Some(vars) => vars, - None => HashMap::new(), - }; - - let program = adjust_canonicalization( - std::fs::canonicalize(format!( - "{}godot/{}", - BIN_FOLDER, - install_dependency::get_godot_executable_path().unwrap() - )) - .expect("Did you executed `cargo run -- install`?"), - ); + let with_build_envs = with_build_envs.unwrap_or_default(); + let program = get_godot_path(); println!("extras: {:?}", extras);