diff --git a/.github/workflows/build-godot.yml b/.github/workflows/build-godot.yml new file mode 100644 index 00000000..73971305 --- /dev/null +++ b/.github/workflows/build-godot.yml @@ -0,0 +1,102 @@ +name: GoDot Configurator Build Debug +run-name: Build Godot Configurator(DEBUG) for RetroDECK +on: + workflow_dispatch: + inputs: + job_target: + description: 'Select the platform' + required: true + default: 'linux' + type: choice + options: + - linux + - windows + - mac + - all + +env: + GODOT_VERSION: 4.3 + GODOT_PROJECT_LOCATION: tools/configurator/project.godot + EXPORT_FOLDER_LINUX: bin/Linux + EXPORT_FOLDER_WINDOWS: bin/Windows + EXPORT_FOLDER_MAC: bin/macOS + APPLICATION_NAME: godot_configurator + +jobs: + linux-build: + runs-on: ubuntu-latest + container: + image: archlinux:latest + steps: + - name: Set up variable + run: | + echo "DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV + echo "MAIN_FOLDER=$(pwd)" >> $GITHUB_ENV + + - name: Installing dependencies + run: pacman -Syu --noconfirm git bash yasm python python-pip scons gcc diffutils make wget unzip tar mingw-w64 + + - name: Checkout + uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Prepare Godot + run: | + wget -q -O godot_linux.zip https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-stable/Godot_v${GODOT_VERSION}-stable_linux.x86_64.zip + unzip godot_linux.zip + wget -q -O godot_export_templates.tpz https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-stable/Godot_v${GODOT_VERSION}-stable_export_templates.tpz + mkdir -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable + unzip godot_export_templates.tpz -d ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable + mv ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable/templates/* ~/.local/share/godot/export_templates/${GODOT_VERSION}.stable/ + sed -i 's/config\/version=\"[^"]\*"/config\/version=\"${{ env.DATE }}-debug\"/' ${{ env.GODOT_PROJECT_LOCATION }} + + # DEBUG BUILDS + # LINUX + - name: Building debug Linux + if: ${{ github.event.inputs.job_target == 'linux' || github.event.inputs.job_target == 'all' }} + run: | + mkdir -p ${{ env.EXPORT_FOLDER_LINUX }} + ./Godot_v${GODOT_VERSION}-stable_linux.x86_64 --import ${{ env.GODOT_PROJECT_LOCATION }} --quiet --headless --export-debug "Linux/X11 64-bit" ${{ env.MAIN_FOLDER }}/${{ env.EXPORT_FOLDER_LINUX }}/${{ env.APPLICATION_NAME}}.x86_64 + chmod +x ${{ env.EXPORT_FOLDER_LINUX }}/${{ env.APPLICATION_NAME }}.sh + chmod +x ${{ env.EXPORT_FOLDER_LINUX }}/${{ env.APPLICATION_NAME }}.x86_64 + + # TAR to keep permissions set above + - name: Tar File + if: ${{ github.event.inputs.job_target == 'linux' || github.event.inputs.job_target == 'all' }} + run: tar cvf ${{ env.APPLICATION_NAME}}_linux_debug_${{ env.DATE}}.tar ${{ env.EXPORT_FOLDER_LINUX}} + + - name: Uploading GDExtension artifact debug + if: ${{ github.event.inputs.job_target == 'linux' || github.event.inputs.job_target == 'all' }} + uses: actions/upload-artifact@v4 + with: + name: ${{ env.APPLICATION_NAME }}_linux_debug_${{ env.DATE }}.tar + path: ${{ env.APPLICATION_NAME }}_linux_debug_${{ env.DATE }}.tar + + # WINDOWS + - name: Building debug Windows + if: ${{ github.event.inputs.job_target == 'windows' || github.event.inputs.job_target == 'all' }} + run: | + mkdir -p ${{ env.EXPORT_FOLDER_WINDOWS }} + ./Godot_v${GODOT_VERSION}-stable_linux.x86_64 --import ${{ env.GODOT_PROJECT_LOCATION }} --quiet --headless --export-debug "windows" ${{ env.MAIN_FOLDER }}/${{ env.EXPORT_FOLDER_WINDOWS }}/${{ env.APPLICATION_NAME}}.exe + + - name: Uploading GDExtension artifact debug + if: ${{ github.event.inputs.job_target == 'windows' || github.event.inputs.job_target == 'all' }} + uses: actions/upload-artifact@v4 + with: + name: ${{ env.APPLICATION_NAME }}_windows_debug_${{ env.DATE }} + path: ${{ env.EXPORT_FOLDER_WINDOWS }}/ + + #MAC + - name: Building debug macOS + if: ${{ github.event.inputs.job_target == 'mac' || github.event.inputs.job_target == 'all' }} + run: | + mkdir -p ${{ env.EXPORT_FOLDER_MAC }} + ./Godot_v${GODOT_VERSION}-stable_linux.x86_64 --import ${{ env.GODOT_PROJECT_LOCATION }} --quiet --headless --export-debug "macOS" ${{ env.MAIN_FOLDER }}/${{ env.EXPORT_FOLDER_MAC}}/${{ env.APPLICATION_NAME}}.app + + - name: Uploading GDExtension artifact debug + if: ${{ github.event.inputs.job_target == 'mac' || github.event.inputs.job_target == 'all' }} + uses: actions/upload-artifact@v4 + with: + name: ${{ env.APPLICATION_NAME }}_mac_debug_${{ env.DATE }} + path: ${{ env.EXPORT_FOLDER_MAC }}/ \ No newline at end of file diff --git a/.github/workflows/cooker-selfhosted.yml b/.github/workflows/cooker-selfhosted.yml index ff93253d..95e05038 100644 --- a/.github/workflows/cooker-selfhosted.yml +++ b/.github/workflows/cooker-selfhosted.yml @@ -85,6 +85,11 @@ jobs: # Use GITHUB_HEAD_REF to get the source branch source_branch="${GITHUB_HEAD_REF}" + # Replace '/' with '-' in the branch name + source_branch=${source_branch//\//-} + # Use GITHUB_HEAD_REF to get the source branch + source_branch="${GITHUB_HEAD_REF}" + # Replace '/' with '-' in the branch name source_branch=${source_branch//\//-} echo "[DEBUG] source branch is: $source_branch" @@ -93,6 +98,7 @@ jobs: echo "TAG=PR-$source_branch-${{ env.buildid }}" >> $GITHUB_ENV echo "MAKE_LATEST=false" >> $GITHUB_ENV # Not marked as the latest cooker version if it's a feature branch else + # Generate the tag for non-pull request branches # Generate the tag for non-pull request branches TAG="$MANIFEST_VERSION-${{ env.buildid }}" echo "TAG=$TAG" >> $GITHUB_ENV diff --git a/config/retrodeck/reference_lists/features.json b/config/retrodeck/reference_lists/features.json index bcb471b2..5eaeeb9b 100644 --- a/config/retrodeck/reference_lists/features.json +++ b/config/retrodeck/reference_lists/features.json @@ -1,1074 +1,1095 @@ { - "about_links": { - "rd_changelog": { - "description": "Opens the RetroDECK change log in your default browser", - "name": "Changelog", - "url": "https://retrodeck.readthedocs.io/en/latest/wiki_rd_versions/version-history/", - "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" - }, - "rd_contactus": { - "description": "Opens the RetroDECK contact us section in your default browser", - "name": "Contact us", - "url": "https://github.com/XargonWan/RetroDECK", - "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" - }, - "rd_credits": { - "description": "Opens the RetroDECK Credits in your default browser", - "name": "Credits", - "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/", - "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" - }, - "rd_donate": { - "description": "Opens Donations page in your default browser", - "name": "Donate", - "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/", - "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" - }, - "rd_licenses": { - "description": "Opens the RetroDECK licenses in your default browser", - "name": "Licences", - "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/", - "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" - }, - "rd_web": { - "description": "Opens the RetroDECK Website in your default browser", - "name": "Website", - "url": "https://retrodeck.net/", - "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" - }, - "rd_wiki": { - "description": "Opens the RetroDECK Wiki in your default browser", - "name": "Wiki", - "url": "https://retrodeck.readthedocs.io/en/latest/", - "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" - } - }, - "finit_default_options": { - "rd_controller_profile": { - "name": "RetroDECK Steam Controller Profiles Install", - "description": "Install RetroDECK Steam Input profiles to Steam - Recommended", - "enabled": true - }, - "rpcs3_firmware": { - "name": "RPCS3 Firmware Install", - "description": "Install firmware needed for PS3 emulation", - "enabled": false - }, - "vita3k_firmware": { - "name": "Vita3K Firmware Install", - "description": "Install firmware needed for Vita3K emulation", - "enabled": false - } - }, - "splash_screens": { - "xmas": { - "start_date": "1201", - "end_date": "1231", - "start_time": "0000", - "end_time": "2359", - "filename": "rd-xmas-splash.svg" - }, - "lunar_dragon": { - "start_date": "0209", - "end_date": "0212", - "start_time": "0000", - "end_time": "2359", - "filename": "rd-lunar-dragon-splash.svg" - }, - "valentines_day": { - "start_date": "0214", - "end_date": "0214", - "start_time": "0001", - "end_time": "2359", - "filename": "rd-valentines-splash.svg" - }, - "retrodeck_birthday": { - "start_date": "0304", - "end_date": "0304", - "start_time": "0000", - "end_time": "2359", - "filename": "rd-gm-bday-splash.svg" - }, - "st_patricks_day": { - "start_date": "0317", - "end_date": "0317", - "start_time": "0000", - "end_time": "2359", - "filename": "rd-stpatricks-splash.svg" - }, - "kodomo_golden_week": { - "start_date": "0429", - "end_date": "0505", - "start_time": "0000", - "end_time": "2359", - "filename": "rd-kodomo-golden.svg" - }, - "tanabata": { - "start_date": "0707", - "end_date": "0707", - "start_time": "0000", - "end_time": "2359", - "filename": "tanabata.svg" - }, - "mountain_day": { - "start_date": "0811", - "end_date": "0811", - "start_time": "0000", - "end_time": "2359", - "filename": "placeholder.svg" - }, - "obon": { - "start_date": "0813", - "end_date": "0816", - "start_time": "0000", - "end_time": "2359", - "filename": "placeholder.svg" - } - }, - "incompatible_presets": { - "borders": "widescreen" - }, - "helper_files": { - "dolphin_mods": { - "filename": "how-to-install-dolphin-mods.txt", - "location": "$mods_folder/Dolphin" - }, - "primehack_mods": { - "filename": "how-to-install-primehack-mods.txt", - "location": "$mods_folder/Primehack" - }, - "mesen_textures": { - "filename": "how-to-install-Mesen-textures.txt", - "location": "$texture_packs_folder/RetroArch-Mesen" - }, - "ppsspp_textures": { - "filename": "how-to-install-PPSSPP-textures.txt", - "location": "$texture_packs_folder/PPSSPP" - }, - "pcsx2_textures": { - "filename": "how-to-install-PCSX2-textures.txt", - "location": "$texture_packs_folder/PCSX2" - }, - "mupen64plus_cache_textures": { - "filename": "how-to-install-Mupen64Plus-textures.txt", - "location": "$texture_packs_folder/RetroArch-Mupen64Plus/cache" - }, - "mupen64plus_hires_textures": { - "filename": "how-to-install-Mupen64Plus-textures.txt", - "location": "$texture_packs_folder/RetroArch-Mupen64Plus/hires_texture" - }, - "duckstation_textures": { - "filename": "how-to-install-Duckstation-textures.txt", - "location": "$texture_packs_folder/Duckstation" - }, - "psvita_games": { - "filename": "how-to-install-psvita-games.txt", - "location": "$roms_folder/psvita" - }, - "ryujinx_firmware": { - "filename": "Install-firmware-through-Ryujinx.txt", - "location": "$bios_folder/switch/firmware" - } - }, - "compression_targets": { - "chd": [ - "3do", - "amigacd32", - "dreamcast", - "megacd", - "neogeocd", - "pcenginecd", - "pcfx", - "psp", - "psx", - "ps2", - "saturn", - "saturnjp", - "segacd", - "tg-cd" - ], - "rvz": [ - "gc", - "wii" - ], - "zip": [ - "atari2600", - "atari5200", - "atari7800", - "atari800", - "atarijaguar", - "atarilynx", - "atarist", - "gamegear", - "gb", - "gba", - "gbc", - "genesis", - "mastersystem", - "n64", - "nds", - "nes", - "ngp", - "ngpc", - "sega32x", - "sega32xjp", - "sega32xna", - "snes", - "snesna", - "tg16" - ] - }, - "zip_compressable_extensions": [ - ".32x", - ".68k", - ".NDS", - ".a26", - ".a52", - ".a78", - ".abs", - ".agb", - ".atr", - ".atx", - ".bin", - ".bml", - ".bms", - ".bs", - ".bsx", - ".cas", - ".cdm", - ".cgb", - ".cof", - ".col", - ".dim", - ".dmg", - ".dx2", - ".fds", - ".fig", - ".gb", - ".gba", - ".gbc", - ".gd3", - ".gd7", - ".gen", - ".gg", - ".ipf", - ".j64", - ".jag", - ".lnx", - ".md", - ".mdx", - ".mgd", - ".msa", - ".nds", - ".nes", - ".ngc", - ".o", - ".pce", - ".prg", - ".rom", - ".sfc", - ".sg", - ".sgb", - ".sgd", - ".smc", - ".smd", - ".sms", - ".st", - ".st", - ".stx", - ".swc", - ".unf", - ".unif", - ".xex", - ".xfd", - ".z64" - ], - "system": { - "3do": { - "name": "3DO Interactive Multiplayer" - }, - "adam": { - "name": "Coleco Adam" - }, - "amiga": { - "name": "Commodore Amiga" - }, - "amiga1200": { - "name": "Commodore Amiga 1200" - }, - "amiga600": { - "name": "Commodore Amiga 600" - }, - "amigacd32": { - "name": "Commodore Amiga CD32" - }, - "amstradcpc": { - "name": "Amstrad CPC" - }, - "apple2": { - "name": "Apple II" - }, - "apple2gs": { - "name": "Apple IIGS" - }, - "arcade": { - "name": "Arcade" - }, - "arcadia": { - "name": "Emerson Arcadia 2001" - }, - "archimedes": { - "name": "Acorn Archimedes" - }, - "arduboy": { - "name": "Arduboy Miniature Game System" - }, - "astrocde": { - "name": "Bally Astrocade" - }, - "atari2600": { - "name": "Atari 2600" - }, - "atari5200": { - "name": "Atari 5200" - }, - "atari7800": { - "name": "Atari 7800 ProSystem" - }, - "atari800": { - "name": "Atari 800" - }, - "atarijaguar": { - "name": "Atari Jaguar" - }, - "atarilynx": { - "name": "Atari Lynx" - }, - "atarist": { - "name": "Atari ST" - }, - "atarixe": { - "name": "Atari XE" - }, - "atomiswave": { - "name": "Sammy Corporation Atomiswave" - }, - "bbcmicro": { - "name": "Acorn Computers BBC Micro" - }, - "c64": { - "name": "Commodore 64" - }, - "cdimono1": { - "name": "Philips CD-i" - }, - "cdtv": { - "name": "Commodore CDTV" - }, - "chailove": { - "name": "ChaiLove Game Engine" - }, - "channelf": { - "name": "Fairchild Channel F" - }, - "colecovision": { - "name": "Coleco ColecoVision" - }, - "consolearcade": { - "name": "Console Arcade Systems" - }, - "cps": { - "name": "Capcom Play System" - }, - "cps1": { - "name": "Capcom Play System I" - }, - "cps2": { - "name": "Capcom Play System II" - }, - "cps3": { - "name": "Capcom Play System III" - }, - "crvision": { - "name": "VTech CreatiVision" - }, - "daphne": { - "name": "Daphne Arcade LaserDisc Emulator" - }, - "desktop": { - "name": "Desktop Applications" - }, - "doom": { - "name": "Doom" - }, - "dos": { - "name": "DOS (PC)" - }, - "dreamcast": { - "name": "Sega Dreamcast" - }, - "dc": { - "name": "Sega Dreamcast" - }, - "easyrpg": { - "name": "EasyRPG Game Engine" - }, - "electron": { - "name": "Acorn Electron" - }, - "emulators": { - "name": "Emulators" - }, - "famicom": { - "name": "Nintendo Family Computer" - }, - "fba": { - "name": "FinalBurn Alpha" - }, - "fbneo": { - "name": "FinalBurn Neo" - }, - "fds": { - "name": "Nintendo Famicom Disk System" - }, - "fm7": { - "name": "Fujitsu FM-7" - }, - "fmtowns": { - "name": "Fujitsu FM Towns" - }, - "gamate": { - "name": "Bit Corporation Gamate" - }, - "gameandwatch": { - "name": "Nintendo Game and Watch" - }, - "gamecom": { - "name": "Tiger Electronics Game.com" - }, - "gamegear": { - "name": "Sega Game Gear" - }, - "gg": { - "name": "Sega Game Gear" - }, - "gb": { - "name": "Nintendo Game Boy" - }, - "gba": { - "name": "Nintendo Game Boy Advance" - }, - "gbc": { - "name": "Nintendo Game Boy Color" - }, - "gc": { - "name": "Nintendo GameCube" - }, - "genesis": { - "name": "Sega Genesis" - }, - "gmaster": { - "name": "Hartung Game Master" - }, - "gx4000": { - "name": "Amstrad GX4000" - }, - "intellivision": { - "name": "Mattel Electronics Intellivision" - }, - "j2me": { - "name": "Java 2 Micro Edition (J2ME)" - }, - "laserdisc": { - "name": "LaserDisc Games" - }, - "lcdgames": { - "name": "LCD Handheld Games" - }, - "lowresnx": { - "name": "LowRes NX Fantasy Console" - }, - "lutris": { - "name": "Lutris Open Gaming Platform" - }, - "lutro": { - "name": "Lutro Game Engine" - }, - "macintosh": { - "name": "Apple Macintosh" - }, - "mame": { - "name": "Multiple Arcade Machine Emulator" - }, - "mastersystem": { - "name": "Sega Master System" - }, - "megacd": { - "name": "Sega Mega-CD" - }, - "megacdjp": { - "name": "Sega Mega-CD (Japan)" - }, - "megadrive": { - "name": "Sega Mega Drive" - }, - "megaduck": { - "name": "Creatronic Mega Duck" - }, - "mess": { - "name": "Multi Emulator Super System" - }, - "model2": { - "name": "Sega Model 2" - }, - "moto": { - "name": "Thomson MO/TO Series" - }, - "msx": { - "name": "MSX" - }, - "msx1": { - "name": "MSX1" - }, - "msx2": { - "name": "MSX2" - }, - "msxturbor": { - "name": "MSX Turbo R" - }, - "mugen": { - "name": "M.U.G.E.N Game Engine" - }, - "multivision": { - "name": "Othello Multivision" - }, - "n3ds": { - "name": "Nintendo 3DS" - }, - "n64": { - "name": "Nintendo 64" - }, - "n64dd": { - "name": "Nintendo 64DD" - }, - "naomi": { - "name": "Sega NAOMI" - }, - "naomi2": { - "name": "Sega NAOMI 2" - }, - "naomigd": { - "name": "Sega NAOMI GD-ROM" - }, - "nds": { - "name": "Nintendo DS" - }, - "neogeo": { - "name": "SNK Neo Geo" - }, - "neogeocd": { - "name": "SNK Neo Geo CD" - }, - "neogeocdjp": { - "name": "SNK Neo Geo CD (Japan)" - }, - "nes": { - "name": "Nintendo Entertainment System" - }, - "ngp": { - "name": "SNK Neo Geo Pocket" - }, - "ngpc": { - "name": "SNK Neo Geo Pocket Color" - }, - "odyssey2": { - "name": "Magnavox Odyssey 2" - }, - "openbor": { - "name": "OpenBOR Game Engine" - }, - "palm": { - "name": "Palm OS" - }, - "pc": { - "name": "IBM PC" - }, - "pc88": { - "name": "NEC PC-8800 Series" - }, - "pc98": { - "name": "NEC PC-9800 Series" - }, - "pcarcade": { - "name": "PC Arcade Systems" - }, - "pcengine": { - "name": "NEC PC Engine" - }, - "pcenginecd": { - "name": "NEC PC Engine CD" - }, - "pcfx": { - "name": "NEC PC-FX" - }, - "pico8": { - "name": "PICO-8 Fantasy Console" - }, - "plus4": { - "name": "Commodore Plus/4" - }, - "pokemini": { - "name": "Nintendo Pokémon Mini" - }, - "ports": { - "name": "Ports" - }, - "ps2": { - "name": "Sony PlayStation 2" - }, - "ps3": { - "name": "Sony PlayStation 3" - }, - "psp": { - "name": "Sony PlayStation Portable" - }, - "psvita": { - "name": "Sony PlayStation Vita" - }, - "psx": { - "name": "Sony PlayStation" - }, - "pv1000": { - "name": "Casio PV-1000" - }, - "quake": { - "name": "Quake" - }, - "satellaview": { - "name": "Nintendo Satellaview" - }, - "saturn": { - "name": "Sega Saturn" - }, - "saturnjp": { - "name": "Sega Saturn (Japan)" - }, - "scummvm": { - "name": "ScummVM Game Engine" - }, - "scv": { - "name": "Epoch Super Cassette Vision" - }, - "sega32x": { - "name": "Sega Mega Drive 32X" - }, - "sega32xjp": { - "name": "Sega Super 32X (Japan)" - }, - "sega32xna": { - "name": "Sega Genesis 32X" - }, - "segacd": { - "name": "Sega CD" - }, - "sfc": { - "name": "Nintendo SFC (Super Famicom)" - }, - "sg-1000": { - "name": "Sega SG-1000" - }, - "sgb": { - "name": "Nintendo Super Game Boy" - }, - "snes": { - "name": "Nintendo SNES (Super Nintendo)" - }, - "snesna": { - "name": "Nintendo SNES (Super Nintendo)" - }, - "solarus": { - "name": "Solarus Game Engine" - }, - "spectravideo": { - "name": "Spectravideo" - }, - "stv": { - "name": "Sega Titan Video Game System" - }, - "sufami": { - "name": "Bandai SuFami Turbo" - }, - "supergrafx": { - "name": "NEC SuperGrafx" - }, - "supervision": { - "name": "Watara Supervision" - }, - "supracan": { - "name": "Funtech Super A'Can" - }, - "switch": { - "name": "Nintendo Switch" - }, - "tg-cd": { - "name": "NEC TurboGrafx-CD" - }, - "tg16": { - "name": "NEC TurboGrafx-16" - }, - "ti99": { - "name": "Texas Instruments TI-99" - }, - "tic80": { - "name": "TIC-80 Fantasy Computer" - }, - "to8": { - "name": "Thomson TO8" - }, - "uzebox": { - "name": "Uzebox Open Source Console" - }, - "vectrex": { - "name": "GCE Vectrex" - }, - "vic20": { - "name": "Commodore VIC-20" - }, - "videopac": { - "name": "Philips Videopac G7000" - }, - "virtualboy": { - "name": "Nintendo Virtual Boy" - }, - "vsmile": { - "name": "VTech V.Smile" - }, - "wasm4": { - "name": "WASM-4 Fantasy Console" - }, - "wii": { - "name": "Nintendo Wii" - }, - "wiiu": { - "name": "Nintendo Wii U" - }, - "windows": { - "name": "Microsoft Windows" - }, - "windows3x": { - "name": "Microsoft Windows 3.x" - }, - "windows9x": { - "name": "Microsoft Windows 9x" - }, - "wonderswan": { - "name": "Bandai WonderSwan" - }, - "wonderswancolor": { - "name": "Bandai WonderSwan Color" - }, - "x1": { - "name": "Sharp X1" - }, - "x68000": { - "name": "Sharp X68000" - }, - "xbox": { - "name": "Microsoft Xbox" - }, - "zx81": { - "name": "Sinclair ZX81" - }, - "zxspectrum": { - "name": "Sinclair ZX Spectrum" - } - }, - "emulator": { - "retroarch": { - "description": "RetroArch (Multi-emulator Frontend)", - "name": "RetroArch", - "launch": "retroarch", - "properties": [ - { - "cheevos": true, - "cheevos_hardcore": true, - "quick_resume": true - } - ], - "cores": { - "citra_libretro": { - "description": "Nintendo 3DS Libretro Core", - "name": "Citra", - "system": "n3ds", - "properties": [ - { - "abxy_button": true - } - ] - }, - "mame_libretro": { - "description": "MAME: Multiple Arcade Machine Libretro Core", - "name": "MAME", - "system": "arcade", - "properties": [ - { - "tate_mode": true - } - ] - }, - "desmume_libretro": { - "description": "DeSmuME Nintendo DS Libretro Core", - "name": "desmume", - "system": "nds", - "properties": [ - { - "abxy_button": true - } - ] - }, - "melonds_libretro": { - "description": "MelonDS Nintendo DS Libretro Core", - "name": "melonds", - "system": "nds", - "properties": [ - { - "abxy_button": true - } - ] - }, - "swanstation_libretro": { - "name": "SwanStation", - "description": "Swanstation Libretro Core", - "system": "psx", - "properties": [ - { - "widescreen": true, - "borders": true - } - ] - }, - "picodrive_libetro": { - "name": "PicoDrive", - "description": "SEGA MS/MD/CD/32X Libretro Core", - "system": [ - "ms", - "md", - "cd", - "32x" - ], - "properties": [ - { - "widescreen": true, - "borders": true, - "rewind": true - } - ] - }, - "genesisplusgx_libetro": { - "name": "Genesis Plus GX", - "description": "SEGA MS/GG/MD/CD Libretro Core", - "system": [ - "ms", - "gg", - "mc", - "cd" - ], - "properties": [ - { - "widescreen": true, - "borders": true, - "rewind": true - } - ] - }, - "genesisplusgxwide_libetro": { - "name": "Genesis Plus GX Wide", - "description": "SEGA MS/GG/MD/CD Libretro Core for Wide Screen", - "system": [ - "ms", - "gg", - "mc", - "cd" - ], - "properties": [ - { - "widescreen": true, - "rewind": true - } - ] - }, - "mupen64plus-next_libetro": { - "name": "Mupen64Plus-Next", - "description": "Nintendo 64 Libretro Core", - "system": "n64", - "properties": [ - { - "widescreen": true, - "borders": true, - "abxy_button": true - } - ] - }, - "snes9x-current_libetro": { - "name": "Snes9x - Current", - "description": "Super Nintendo Libretro Core", - "system": "snes", - "properties": [ - { - "widescreen": true, - "borders": true, - "rewind": true, - "abxy_button": true - } - ] - }, - "gambatte_libetro": { - "name": "Gambatte", - "description": "Game Boy/Color Libretro Core", - "system": [ - "gb", - "gbc" - ], - "properties": [ - { - "borders": true, - "rewind": true, - "abxy_button": true - } - ] - }, - "mgba_libetro": { - "name": "mGBA", - "description": "Game Boy Advance Libretro Core", - "system": "gba", - "properties": [ - { - "borders": true, - "rewind": true, - "abxy_button": true - } - ] - } - } - }, - "mame": { - "description": "MAME: Multiple Arcade Machine Emulator", - "name": "MAME", - "system": [ - "arcade" - ], - "launch": "mame" - }, - "citra": { - "description": "Citra Nintendo 3DS Emulator (via Ponzu)", - "name": "Citra (via Ponzu)", - "system": "n3ds", - "ponzu": true, - "launch": "citra-qt", - "properties": [ - { - "abxy_button": true, - "ask_to_exit": true - } - ] - }, - "ruffle": { - "description": "Flash Games emulator", - "name" : "Ruffle", - "system" : "flash", - "launch": "ruffle-rd-wrapper.sh" - }, - "melonds": { - "description": "MelonDS Nintendo DS Emulator", - "name": "melonds", - "system": "nds", - "launch": "MelonDS" - }, - "pcsx2": { - "name": "pcsx2", - "description": "PCSX2 Play Station 2 Emulator", - "system": "ps2", - "launch": "pcsx2-qt", - "properties": [ - { - "ask_to_exit": true, - "cheevos": true - } - ] - }, - "duckstation": { - "name": "Duckstation", - "description": "PlayStation Emulator", - "launch": "duckstation-qt", - "system": "psx", - "properties": [ - { - "ask_to_exit": true, - "cheevos": true - } - ] - }, - "ppsspp": { - "name": "PPSSPP", - "description": "PPSSPP: PlayStation Portable Emulator", - "launch": "PPSSPPSDL", - "system": "psp", - "properties": [ - { - "cheevos": true, - "cheevos_hardcore": true - } - ] - }, - "vita3k": { - "name": "Vita3k", - "description": "Vita3K PSVita Emulator", - "system": "psvita", - "launch": "Vita3K" - }, - "rpcs3": { - "name": "RPCS3", - "description": "RPCS3 PlayStation 3 Emulator", - "system": "ps3", - "launch": "rpcs3", - "properties": [ - { - "ask_to_exit": true - } - ] - }, - "ryujinx": { - "name": "Ryujinx", - "description": "Ryujinx Nintendo Switch Emulator", - "system": "switch", - "launch": "Ryujinx.sh" - }, - "yuzu": { - "name": "Yuzu (via Ponzu)", - "description": "Yuzu Nintendo Switch Emulator (via Ponzu)", - "launch": "Yuzu", - "system": "switch", - "ponzu": true, - "abxy_button": true - }, - "dolphin": { - "name": "Dolphin", - "description": "Dolphin Wii and GameCube Emulator", - "launch": "dolphin-emu-wrapper", - "system": [ - "gc", - "wii" - ], - "properties": [ - { - "abxy_button": true, - "ask_to_exit": true, - "cheevos": true, - "cheevos_hardcore": true, - "universal_dyn_input": true - } - ] - }, + "about_links": { + "rd_changelog": { + "description": "Opens the RetroDECK change log in your default browser", + "name": "Changelog", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_rd_versions/version-history/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_contactus": { + "description": "Opens the RetroDECK contact us section in your default browser", + "name": "Contact us", + "url": "https://github.com/XargonWan/RetroDECK", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_credits": { + "description": "Opens the RetroDECK Credits in your default browser", + "name": "Credits", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_donate": { + "description": "Opens Donations page in your default browser", + "name": "Donate", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_licenses": { + "description": "Opens the RetroDECK licenses in your default browser", + "name": "Licences", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_credits/donations-licenses/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_web": { + "description": "Opens the RetroDECK Website in your default browser", + "name": "Website", + "url": "https://retrodeck.net/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + }, + "rd_wiki": { + "description": "Opens the RetroDECK Wiki in your default browser", + "name": "Wiki", + "url": "https://retrodeck.readthedocs.io/en/latest/", + "icon": "res://assets/icons/pixelitos/128/internet-web-browser.png" + } + }, + "finit_default_options": { + "rd_controller_profile": { + "name": "RetroDECK Steam Controller Profiles Install", + "description": "Install RetroDECK Steam Input profiles to Steam - Recommended", + "enabled": true + }, + "rpcs3_firmware": { + "name": "RPCS3 Firmware Install", + "description": "Install firmware needed for PS3 emulation", + "enabled": false + }, + "vita3k_firmware": { + "name": "Vita3K Firmware Install", + "description": "Install firmware needed for Vita3K emulation", + "enabled": false + } + }, + "splash_screens": { + "xmas": { + "start_date": "1201", + "end_date": "1231", + "start_time": "0000", + "end_time": "2359", + "filename": "rd-xmas-splash.svg" + }, + "lunar_dragon": { + "start_date": "0209", + "end_date": "0212", + "start_time": "0000", + "end_time": "2359", + "filename": "rd-lunar-dragon-splash.svg" + }, + "valentines_day": { + "start_date": "0214", + "end_date": "0214", + "start_time": "0001", + "end_time": "2359", + "filename": "rd-valentines-splash.svg" + }, + "retrodeck_birthday": { + "start_date": "0304", + "end_date": "0304", + "start_time": "0000", + "end_time": "2359", + "filename": "rd-gm-bday-splash.svg" + }, + "st_patricks_day": { + "start_date": "0317", + "end_date": "0317", + "start_time": "0000", + "end_time": "2359", + "filename": "rd-stpatricks-splash.svg" + }, + "kodomo_golden_week": { + "start_date": "0429", + "end_date": "0505", + "start_time": "0000", + "end_time": "2359", + "filename": "rd-kodomo-golden.svg" + }, + "tanabata": { + "start_date": "0707", + "end_date": "0707", + "start_time": "0000", + "end_time": "2359", + "filename": "tanabata.svg" + }, + "mountain_day": { + "start_date": "0811", + "end_date": "0811", + "start_time": "0000", + "end_time": "2359", + "filename": "placeholder.svg" + }, + "obon": { + "start_date": "0813", + "end_date": "0816", + "start_time": "0000", + "end_time": "2359", + "filename": "placeholder.svg" + } + }, + "incompatible_presets": { + "borders": "widescreen" + }, + "helper_files": { + "dolphin_mods": { + "filename": "how-to-install-dolphin-mods.txt", + "location": "$mods_folder/Dolphin" + }, + "primehack_mods": { + "filename": "how-to-install-primehack-mods.txt", + "location": "$mods_folder/Primehack" + }, + "mesen_textures": { + "filename": "how-to-install-Mesen-textures.txt", + "location": "$texture_packs_folder/RetroArch-Mesen" + }, + "ppsspp_textures": { + "filename": "how-to-install-PPSSPP-textures.txt", + "location": "$texture_packs_folder/PPSSPP" + }, + "pcsx2_textures": { + "filename": "how-to-install-PCSX2-textures.txt", + "location": "$texture_packs_folder/PCSX2" + }, + "mupen64plus_cache_textures": { + "filename": "how-to-install-Mupen64Plus-textures.txt", + "location": "$texture_packs_folder/RetroArch-Mupen64Plus/cache" + }, + "mupen64plus_hires_textures": { + "filename": "how-to-install-Mupen64Plus-textures.txt", + "location": "$texture_packs_folder/RetroArch-Mupen64Plus/hires_texture" + }, + "duckstation_textures": { + "filename": "how-to-install-Duckstation-textures.txt", + "location": "$texture_packs_folder/Duckstation" + }, + "psvita_games": { + "filename": "how-to-install-psvita-games.txt", + "location": "$roms_folder/psvita" + }, + "ryujinx_firmware": { + "filename": "Install-firmware-through-Ryujinx.txt", + "location": "$bios_folder/switch/firmware" + } + }, + "compression_targets": { + "chd": [ + "3do", + "amigacd32", + "dreamcast", + "megacd", + "neogeocd", + "pcenginecd", + "pcfx", + "psp", + "psx", + "ps2", + "saturn", + "saturnjp", + "segacd", + "tg-cd" + ], + "rvz": [ + "gc", + "wii" + ], + "zip": [ + "atari2600", + "atari5200", + "atari7800", + "atari800", + "atarijaguar", + "atarilynx", + "atarist", + "gamegear", + "gb", + "gba", + "gbc", + "genesis", + "mastersystem", + "n64", + "nds", + "nes", + "ngp", + "ngpc", + "sega32x", + "sega32xjp", + "sega32xna", + "snes", + "snesna", + "tg16" + ] + }, + "zip_compressable_extensions": [ + ".32x", + ".68k", + ".NDS", + ".a26", + ".a52", + ".a78", + ".abs", + ".agb", + ".atr", + ".atx", + ".bin", + ".bml", + ".bms", + ".bs", + ".bsx", + ".cas", + ".cdm", + ".cgb", + ".cof", + ".col", + ".dim", + ".dmg", + ".dx2", + ".fds", + ".fig", + ".gb", + ".gba", + ".gbc", + ".gd3", + ".gd7", + ".gen", + ".gg", + ".ipf", + ".j64", + ".jag", + ".lnx", + ".md", + ".mdx", + ".mgd", + ".msa", + ".nds", + ".nes", + ".ngc", + ".o", + ".pce", + ".prg", + ".rom", + ".sfc", + ".sg", + ".sgb", + ".sgd", + ".smc", + ".smd", + ".sms", + ".st", + ".st", + ".stx", + ".swc", + ".unf", + ".unif", + ".xex", + ".xfd", + ".z64" + ], + "system": { + "3do": { + "name": "3DO Interactive Multiplayer" + }, + "adam": { + "name": "Coleco Adam" + }, + "amiga": { + "name": "Commodore Amiga" + }, + "amiga1200": { + "name": "Commodore Amiga 1200" + }, + "amiga600": { + "name": "Commodore Amiga 600" + }, + "amigacd32": { + "name": "Commodore Amiga CD32" + }, + "amstradcpc": { + "name": "Amstrad CPC" + }, + "apple2": { + "name": "Apple II" + }, + "apple2gs": { + "name": "Apple IIGS" + }, + "arcade": { + "name": "Arcade" + }, + "arcadia": { + "name": "Emerson Arcadia 2001" + }, + "archimedes": { + "name": "Acorn Archimedes" + }, + "arduboy": { + "name": "Arduboy Miniature Game System" + }, + "astrocde": { + "name": "Bally Astrocade" + }, + "atari2600": { + "name": "Atari 2600" + }, + "atari5200": { + "name": "Atari 5200" + }, + "atari7800": { + "name": "Atari 7800 ProSystem" + }, + "atari800": { + "name": "Atari 800" + }, + "atarijaguar": { + "name": "Atari Jaguar" + }, + "atarilynx": { + "name": "Atari Lynx" + }, + "atarist": { + "name": "Atari ST" + }, + "atarixe": { + "name": "Atari XE" + }, + "atomiswave": { + "name": "Sammy Corporation Atomiswave" + }, + "bbcmicro": { + "name": "Acorn Computers BBC Micro" + }, + "c64": { + "name": "Commodore 64" + }, + "cdimono1": { + "name": "Philips CD-i" + }, + "cdtv": { + "name": "Commodore CDTV" + }, + "chailove": { + "name": "ChaiLove Game Engine" + }, + "channelf": { + "name": "Fairchild Channel F" + }, + "colecovision": { + "name": "Coleco ColecoVision" + }, + "consolearcade": { + "name": "Console Arcade Systems" + }, + "cps": { + "name": "Capcom Play System" + }, + "cps1": { + "name": "Capcom Play System I" + }, + "cps2": { + "name": "Capcom Play System II" + }, + "cps3": { + "name": "Capcom Play System III" + }, + "crvision": { + "name": "VTech CreatiVision" + }, + "daphne": { + "name": "Daphne Arcade LaserDisc Emulator" + }, + "desktop": { + "name": "Desktop Applications" + }, + "doom": { + "name": "Doom" + }, + "dos": { + "name": "DOS (PC)" + }, + "dreamcast": { + "name": "Sega Dreamcast" + }, + "dc": { + "name": "Sega Dreamcast" + }, + "easyrpg": { + "name": "EasyRPG Game Engine" + }, + "electron": { + "name": "Acorn Electron" + }, + "emulators": { + "name": "Emulators" + }, + "famicom": { + "name": "Nintendo Family Computer" + }, + "fba": { + "name": "FinalBurn Alpha" + }, + "fbneo": { + "name": "FinalBurn Neo" + }, + "fds": { + "name": "Nintendo Famicom Disk System" + }, + "fm7": { + "name": "Fujitsu FM-7" + }, + "fmtowns": { + "name": "Fujitsu FM Towns" + }, + "gamate": { + "name": "Bit Corporation Gamate" + }, + "gameandwatch": { + "name": "Nintendo Game and Watch" + }, + "gamecom": { + "name": "Tiger Electronics Game.com" + }, + "gamegear": { + "name": "Sega Game Gear" + }, + "gg": { + "name": "Sega Game Gear" + }, + "gb": { + "name": "Nintendo Game Boy" + }, + "gba": { + "name": "Nintendo Game Boy Advance" + }, + "gbc": { + "name": "Nintendo Game Boy Color" + }, + "gc": { + "name": "Nintendo GameCube" + }, + "genesis": { + "name": "Sega Genesis" + }, + "gmaster": { + "name": "Hartung Game Master" + }, + "gx4000": { + "name": "Amstrad GX4000" + }, + "intellivision": { + "name": "Mattel Electronics Intellivision" + }, + "j2me": { + "name": "Java 2 Micro Edition (J2ME)" + }, + "laserdisc": { + "name": "LaserDisc Games" + }, + "lcdgames": { + "name": "LCD Handheld Games" + }, + "lowresnx": { + "name": "LowRes NX Fantasy Console" + }, + "lutris": { + "name": "Lutris Open Gaming Platform" + }, + "lutro": { + "name": "Lutro Game Engine" + }, + "macintosh": { + "name": "Apple Macintosh" + }, + "mame": { + "name": "Multiple Arcade Machine Emulator" + }, + "mastersystem": { + "name": "Sega Master System" + }, + "megacd": { + "name": "Sega Mega-CD" + }, + "megacdjp": { + "name": "Sega Mega-CD (Japan)" + }, + "megadrive": { + "name": "Sega Mega Drive" + }, + "megaduck": { + "name": "Creatronic Mega Duck" + }, + "mess": { + "name": "Multi Emulator Super System" + }, + "model2": { + "name": "Sega Model 2" + }, + "moto": { + "name": "Thomson MO/TO Series" + }, + "msx": { + "name": "MSX" + }, + "msx1": { + "name": "MSX1" + }, + "msx2": { + "name": "MSX2" + }, + "msxturbor": { + "name": "MSX Turbo R" + }, + "mugen": { + "name": "M.U.G.E.N Game Engine" + }, + "multivision": { + "name": "Othello Multivision" + }, + "n3ds": { + "name": "Nintendo 3DS" + }, + "n64": { + "name": "Nintendo 64" + }, + "n64dd": { + "name": "Nintendo 64DD" + }, + "naomi": { + "name": "Sega NAOMI" + }, + "naomi2": { + "name": "Sega NAOMI 2" + }, + "naomigd": { + "name": "Sega NAOMI GD-ROM" + }, + "nds": { + "name": "Nintendo DS" + }, + "neogeo": { + "name": "SNK Neo Geo" + }, + "neogeocd": { + "name": "SNK Neo Geo CD" + }, + "neogeocdjp": { + "name": "SNK Neo Geo CD (Japan)" + }, + "nes": { + "name": "Nintendo Entertainment System" + }, + "ngp": { + "name": "SNK Neo Geo Pocket" + }, + "ngpc": { + "name": "SNK Neo Geo Pocket Color" + }, + "odyssey2": { + "name": "Magnavox Odyssey 2" + }, + "openbor": { + "name": "OpenBOR Game Engine" + }, + "palm": { + "name": "Palm OS" + }, + "pc": { + "name": "IBM PC" + }, + "pc88": { + "name": "NEC PC-8800 Series" + }, + "pc98": { + "name": "NEC PC-9800 Series" + }, + "pcarcade": { + "name": "PC Arcade Systems" + }, + "pcengine": { + "name": "NEC PC Engine" + }, + "pcenginecd": { + "name": "NEC PC Engine CD" + }, + "pcfx": { + "name": "NEC PC-FX" + }, + "pico8": { + "name": "PICO-8 Fantasy Console" + }, + "plus4": { + "name": "Commodore Plus/4" + }, + "pokemini": { + "name": "Nintendo Pokémon Mini" + }, + "ports": { + "name": "Ports" + }, + "ps2": { + "name": "Sony PlayStation 2" + }, + "ps3": { + "name": "Sony PlayStation 3" + }, + "psp": { + "name": "Sony PlayStation Portable" + }, + "psvita": { + "name": "Sony PlayStation Vita" + }, + "psx": { + "name": "Sony PlayStation" + }, + "pv1000": { + "name": "Casio PV-1000" + }, + "quake": { + "name": "Quake" + }, + "satellaview": { + "name": "Nintendo Satellaview" + }, + "saturn": { + "name": "Sega Saturn" + }, + "saturnjp": { + "name": "Sega Saturn (Japan)" + }, + "scummvm": { + "name": "ScummVM Game Engine" + }, + "scv": { + "name": "Epoch Super Cassette Vision" + }, + "sega32x": { + "name": "Sega Mega Drive 32X" + }, + "sega32xjp": { + "name": "Sega Super 32X (Japan)" + }, + "sega32xna": { + "name": "Sega Genesis 32X" + }, + "segacd": { + "name": "Sega CD" + }, + "sfc": { + "name": "Nintendo SFC (Super Famicom)" + }, + "sg-1000": { + "name": "Sega SG-1000" + }, + "sgb": { + "name": "Nintendo Super Game Boy" + }, + "snes": { + "name": "Nintendo SNES (Super Nintendo)" + }, + "snesna": { + "name": "Nintendo SNES (Super Nintendo)" + }, + "solarus": { + "name": "Solarus Game Engine" + }, + "spectravideo": { + "name": "Spectravideo" + }, + "stv": { + "name": "Sega Titan Video Game System" + }, + "sufami": { + "name": "Bandai SuFami Turbo" + }, + "supergrafx": { + "name": "NEC SuperGrafx" + }, + "supervision": { + "name": "Watara Supervision" + }, + "supracan": { + "name": "Funtech Super A'Can" + }, + "switch": { + "name": "Nintendo Switch" + }, + "tg-cd": { + "name": "NEC TurboGrafx-CD" + }, + "tg16": { + "name": "NEC TurboGrafx-16" + }, + "ti99": { + "name": "Texas Instruments TI-99" + }, + "tic80": { + "name": "TIC-80 Fantasy Computer" + }, + "to8": { + "name": "Thomson TO8" + }, + "uzebox": { + "name": "Uzebox Open Source Console" + }, + "vectrex": { + "name": "GCE Vectrex" + }, + "vic20": { + "name": "Commodore VIC-20" + }, + "videopac": { + "name": "Philips Videopac G7000" + }, + "virtualboy": { + "name": "Nintendo Virtual Boy" + }, + "vsmile": { + "name": "VTech V.Smile" + }, + "wasm4": { + "name": "WASM-4 Fantasy Console" + }, + "wii": { + "name": "Nintendo Wii" + }, + "wiiu": { + "name": "Nintendo Wii U" + }, + "windows": { + "name": "Microsoft Windows" + }, + "windows3x": { + "name": "Microsoft Windows 3.x" + }, + "windows9x": { + "name": "Microsoft Windows 9x" + }, + "wonderswan": { + "name": "Bandai WonderSwan" + }, + "wonderswancolor": { + "name": "Bandai WonderSwan Color" + }, + "x1": { + "name": "Sharp X1" + }, + "x68000": { + "name": "Sharp X68000" + }, + "xbox": { + "name": "Microsoft Xbox" + }, + "zx81": { + "name": "Sinclair ZX81" + }, + "zxspectrum": { + "name": "Sinclair ZX Spectrum" + } + }, + "emulator": { + "retroarch": { + "description": "RetroArch (Multi-emulator Frontend)", + "name": "RetroArch", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/retroarch/retroarch-guide/", + "launch": "retroarch", + "system": "retroarch", + "properties": [ + { + "cheevos": true, + "cheevos_hardcore": true, + "quick_resume": true + } + ], + "cores": { + "citra_libretro": { + "description": "Nintendo 3DS Libretro Core", + "name": "Citra", + "system": "n3ds", + "properties": [ + { + "abxy_button": true + } + ] + }, + "mame_libretro": { + "description": "MAME: Multiple Arcade Machine Libretro Core", + "name": "MAME", + "system": "arcade", + "properties": [ + { + "tate_mode": true + } + ] + }, + "desmume_libretro": { + "description": "DeSmuME Nintendo DS Libretro Core", + "name": "desmume", + "system": "nds", + "properties": [ + { + "abxy_button": true + } + ] + }, + "melonds_libretro": { + "description": "MelonDS Nintendo DS Libretro Core", + "name": "melonds", + "system": "nds", + "properties": [ + { + "abxy_button": true + } + ] + }, + "swanstation_libretro": { + "name": "SwanStation", + "description": "Swanstation Libretro Core", + "system": "psx", + "properties": [ + { + "widescreen": true, + "borders": true + } + ] + }, + "picodrive_libretro": { + "name": "PicoDrive", + "description": "SEGA MS/MD/CD/32X Libretro Core", + "system": [ + "ms", + "md", + "cd", + "32x" + ], + "properties": [ + { + "widescreen": true, + "borders": true, + "rewind": true + } + ] + }, + "genesisplusgx_libretro": { + "name": "Genesis Plus GX", + "description": "SEGA MS/GG/MD/CD Libretro Core", + "system": [ + "ms", + "gg", + "mc", + "cd" + ], + "properties": [ + { + "widescreen": true, + "borders": true, + "rewind": true + } + ] + }, + "genesisplusgxwide_libretro": { + "name": "Genesis Plus GX Wide", + "description": "SEGA MS/GG/MD/CD Libretro Core for Wide Screen", + "system": [ + "ms", + "gg", + "mc", + "cd" + ], + "properties": [ + { + "widescreen": true, + "rewind": true + } + ] + }, + "mupen64plus-next_libretro": { + "name": "Mupen64Plus-Next", + "description": "Nintendo 64 Libretro Core", + "system": "n64", + "properties": [ + { + "widescreen": true, + "borders": true, + "abxy_button": true + } + ] + }, + "snes9x-current_libretro": { + "name": "Snes9x - Current", + "description": "Super Nintendo Libretro Core", + "system": "snes", + "properties": [ + { + "widescreen": true, + "borders": true, + "rewind": true, + "abxy_button": true + } + ] + }, + "gambatte_libretro": { + "name": "Gambatte", + "description": "Game Boy/Color Libretro Core", + "system": [ + "gb", + "gbc" + ], + "properties": [ + { + "borders": true, + "rewind": true, + "abxy_button": true + } + ] + }, + "mgba_libretro": { + "name": "mGBA", + "description": "Game Boy Advance Libretro Core", + "system": "gba", + "properties": [ + { + "borders": true, + "rewind": true, + "abxy_button": true + } + ] + } + } + }, + "mame": { + "description": "MAME: Multiple Arcade Machine Emulator", + "name": "MAME", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/mame/mame-guide/", + "system": [ + "arcade" + ], + "launch": "mame", + "launch-args": "-inipath /var/config/mame/ini -rompath $(dirname \"$game\") $game" + }, + "citra": { + "description": "Citra Nintendo 3DS Emulator (via Ponzu)", + "name": "Citra (via Ponzu)", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_about/what-is-retrodeck/", + "system": "n3ds", + "ponzu": true, + "launch": "citra-qt", + "properties": [ + { + "abxy_button": true, + "ask_to_exit": true + } + ] + }, + "ruffle": { + "description": "Flash Games emulator", + "name" : "Ruffle", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_about/what-is-retrodeck/", + "system" : "flash", + "launch": "ruffle-rd-wrapper.sh" + }, + "melonds": { + "description": "MelonDS Nintendo DS Emulator", + "name": "melonds", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/melonds/melonds-guide/", + "system": "nds", + "launch": "melonDS" + }, + "pcsx2": { + "name": "pcsx2", + "description": "PCSX2 Play Station 2 Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/pcsx2/pcsx2-guide/", + "system": "ps2", + "launch": "pcsx2-qt", + "launch-args": "-batch $game", + "properties": [ + { + "ask_to_exit": true, + "cheevos": true + } + ] + }, + "duckstation": { + "name": "Duckstation", + "description": "PlayStation Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/duckstation/duckstation-guide/", + "launch": "duckstation-qt", + "launch-args": "-batch $game", + "system": "psx", + "properties": [ + { + "ask_to_exit": true, + "cheevos": true + } + ] + }, + "ppsspp": { + "name": "PPSSPP", + "description": "PPSSPP: PlayStation Portable Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/ppsspp/ppsspp-guide/", + "launch": "PPSSPPSDL", + "system": "psp", + "properties": [ + { + "cheevos": true, + "cheevos_hardcore": true + } + ] + }, + "vita3k": { + "name": "Vita3k", + "description": "Vita3K PSVita Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/vita3k/vita3k-guide/", + "system": "psvita", + "launch": "Vita3K", + "launch-args": "-r $game.psvita" + }, + "rpcs3": { + "name": "RPCS3", + "description": "RPCS3 PlayStation 3 Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/rpcs3/rpcs3-guide/", + "system": "ps3", + "launch": "rpcs3", + "launch-override": "cd $(dirname $game) && rpcs3 $game", + "properties": [ + { + "ask_to_exit": true + } + ] + }, + "ryujinx": { + "name": "Ryujinx", + "description": "Ryujinx Nintendo Switch Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/ryujinx/ryujinx-guide/", + "system": "switch", + "launch": "Ryujinx.sh" + }, + "yuzu": { + "name": "Yuzu (via Ponzu)", + "description": "Yuzu Nintendo Switch Emulator (via Ponzu)", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_about/what-is-retrodeck/", + "launch": "Yuzu", + "system": "switch", + "launch-args": "-f -g $game", + "ponzu": true, + "abxy_button": true + }, + "dolphin": { + "name": "Dolphin", + "description": "Dolphin Wii and GameCube Emulator", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/dolphin-primehack/dolphin-primehack-guide/", + "launch": "dolphin-emu-wrapper", + "launch-args": "-e $game", + "system": [ + "gc", + "wii" + ], + "properties": [ + { + "abxy_button": true, + "ask_to_exit": true, + "cheevos": true, + "cheevos_hardcore": true, + "universal_dyn_input": true + } + ] + }, "zip_compressable_extensions": [ ".32x", ".68k", @@ -1917,49 +1938,56 @@ } ] }, - "primehack": { - "name": "PrimeHack", - "description": "A fork of Dolphiin to enhance Metroid Prime experience", - "launch": "primehack-wrapper", - "system": [ - "wii" - ], - "properties": [ - { - "ask_to_exit": true, - "universal_dyn_input": true - } - ] - }, - "cemu": { - "description": "Wii U emulator", - "name": "Cemu", - "system": "wiiu", - "launch": "Cemu-wrapper", - "properties": [ - { - "abxy_button": true, - "multi_user_config_dir": "Cemu" - } - ] - }, - "xemu": { - "description": "xemu Xbox Emulator", - "name": "xemu", - "system": "xbox", - "launch": "xemu" - }, - "shadps4": { + "primehack": { + "name": "PrimeHack", + "description": "A fork of Dolphiin to enhance Metroid Prime experience", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/dolphin-primehack/dolphin-primehack-guide/", + "launch": "primehack-wrapper", + "launch-args": "-e $game", + "system": [ + "wii" + ], + "properties": [ + { + "ask_to_exit": true, + "universal_dyn_input": true + } + ] + }, + "cemu": { + "description": "Wii U emulator", + "name": "Cemu", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/cemu/cemu-guide/", + "system": "wiiu", + "launch": "Cemu-wrapper", + "launch-args": "-g $game", + "properties": [ + { + "abxy_button": true, + "multi_user_config_dir": "Cemu" + } + ] + }, + "xemu": { + "description": "xemu Xbox Emulator", + "name": "xemu", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_emulator_guides/xemu/xemu-guide/", + "system": "xbox", + "launch": "xemu", + "launch-args": "-dvd_path $game" + }, + "shadps4": { "description": "PS4 Emulator for Linux", "name": "shadps4", "system": "ps4", "launch": "shadps4-qt" }, - "es-de": { - "description": "ES-DE Emulation Frontend", - "name": "ES-DE", - "launch": "es-de" - } + "es-de": { + "description": "ES-DE Emulation Frontend", + "name": "ES-DE", + "url": "https://retrodeck.readthedocs.io/en/latest/wiki_es_de/esde-guide/." +, "launch": "es-de" + } }, "primehack": { "name": "PrimeHack", @@ -1998,5 +2026,6 @@ "name": "ES-DE", "launch": "es-de" } - } + } } + \ No newline at end of file diff --git a/developer_toolbox/inject_framework.sh b/developer_toolbox/inject_framework.sh index fd3dedd7..ca05e638 100755 --- a/developer_toolbox/inject_framework.sh +++ b/developer_toolbox/inject_framework.sh @@ -5,12 +5,31 @@ # This script is used to inject framework and config files inside a RetroDECK cooker installation # To apply the injected config you have to reset the targeted component from the Configurator # Please know what you're doing, if you need to undo this you need to completely uninstall and reinstall RetroDECK flatpak -# Please not that this may create a dirty situation where older files are still in place as the action is add and overwrite +# Please note that this may create a dirty situation where older files are still in place as the action is add and overwrite flatpak_user_installation="$HOME/.local/share/flatpak/app/net.retrodeck.retrodeck/current/active/files" flatpak_system_installation="/var/lib/flatpak/app/net.retrodeck.retrodeck/current/active/files" +force_user=false +force_system=false -if [ -d "$flatpak_user_installation" ]; then +# Parse arguments +while [[ "$#" -gt 0 ]]; do + case $1 in + --force-user) force_user=true ;; + --force-system) force_system=true ;; + *) echo "Unknown parameter: $1"; exit 1 ;; + esac + shift +done + +# Determine installation path +if [ "$force_user" = true ]; then + echo "Forcing user mode installation." + app="$flatpak_user_installation" +elif [ "$force_system" = true ]; then + echo "Forcing system mode installation." + app="$flatpak_system_installation" +elif [ -d "$flatpak_user_installation" ]; then echo "RetroDECK is installed in user mode, proceeding." app="$flatpak_user_installation" elif [ -d "$flatpak_system_installation" ]; then @@ -21,6 +40,7 @@ else exit 1 fi +# Copying files to the installation sudo cp -vfr "res/binding_icons" "$app/retrodeck/binding_icons" sudo cp -vfr "config/"** "$app/retrodeck/config/" sudo cp -vfr "tools" "$app" diff --git a/functions/checks.sh b/functions/checks.sh index 55b24df3..415e538f 100644 --- a/functions/checks.sh +++ b/functions/checks.sh @@ -132,8 +132,9 @@ elif [[ "$new_version_major_rev" -eq "$current_version_major_rev" ]]; then fi fi -# Perform post_update commands for current version if it is a cooker -if grep -qF "cooker" <<< $hard_version; then # If newly-installed version is a "cooker" build, always perform post_update commands for current version +# Perform post_update commands for current version if it is a cooker or PR +if grep -qF "cooker" <<< "$hard_version" || grep -qF "PR" <<< "$hard_version"; then + # If newly-installed version is a "cooker" or "PR" build, always perform post_update commands for current version if [[ "$(echo $hard_version | cut -d'-' -f2)" == "$new_version" ]]; then is_newer_version="true" fi diff --git a/functions/other_functions.sh b/functions/other_functions.sh index b6a833ee..53ebf2d4 100644 --- a/functions/other_functions.sh +++ b/functions/other_functions.sh @@ -891,3 +891,125 @@ start_retrodeck() { log i "Starting RetroDECK v$version" es-de } + +run_game() { + + # Initialize variables + emulator="" + system="" + + # Parse options + while getopts ":e:s:" opt; do + case ${opt} in + e ) + emulator=$OPTARG + ;; + s ) + system=$OPTARG + ;; + \? ) + echo "Usage: $0 --run [-e emulator] [-s system] game" + exit 1 + ;; + esac + done + shift $((OPTIND -1)) + + # Check for game argument + if [[ -z "$1" ]]; then + echo "Error: Game file is required." + echo "Usage: $0 --run [-e emulator] [-s system] game" + exit 1 + fi + + game=$1 + + # If no system is provided, extract it from the game path + if [[ -z "$system" ]]; then + system=$(echo "$game" | grep -oP '(?<=roms/)[^/]+') + fi + + log d "Emulator: $emulator" + log d "System: $system" + log d "Game: $game" + + # Query the features JSON for emulators that support the system + local emulators=$(jq -r --arg system "$system" ' + .emulator | to_entries[] | + select( + (.value.system == $system) or + (.value.system[]? == $system) + ) | .key' "$features") + + # Check if the system is handled by RetroArch cores + local retroarch_cores=$(jq -r --arg system "$system" ' + .emulator.retroarch.cores | to_entries[] | + select( + .value.system == $system or + (.value.system[]? == $system) + ) | .key' "$features") + + # if the emulator is given and it's a retroarch core just execute it + if [[ "$emulator" == *"_libretro" ]]; then + local core_path="/var/config/retroarch/cores/$emulator.so" + log d "Running RetroArch core: $core_path" + log d "Command: retroarch -L $core_path \"$game\"" + eval "retroarch -L $core_path \"$game\"" + return 1 + fi + + # If the system is handled by RetroArch cores, add them to the list of emulators + if [[ -n "$retroarch_cores" ]]; then + emulators=$(echo -e "$emulators\n$retroarch_cores") + fi + + local pretty_system=$(jq -r --arg system "$system" '.system[$system].name' "$features") + + # Check if multiple emulators are found and prompt the user to select one with zenity + if [[ $(echo "$emulators" | wc -l) -gt 1 ]]; then + emulator=$(echo "$emulators" | zenity --list --title="Select Emulator" --text="Multiple emulators found for $pretty_system. Select one to run." --column="Emulator") + else + emulator="$emulators" + fi + + # If no emulator was selected, exit + if [[ -z "$emulator" ]]; then + log e "No emulator selected. Exiting." + return 1 + fi + + log d "Run game: selected emulator $emulator" + + # Handle RetroArch core separately + if [[ "$emulator" == *"_libretro" ]]; then + local core_path="/var/config/retroarch/cores/$emulator.so" + log d "Running RetroArch core: $core_path" + log d "Command: retroarch -L $core_path \"$game\"" + eval "retroarch -L $core_path \"$game\"" + else + # Check if launch-override exists + local launch_override=$(jq -r ".emulator.$emulator.\"launch-override\"" "$features") + if [[ "$launch_override" != "null" ]]; then + # Use launch-override + launch_override=${launch_override//\$game/\"$game\"} + log d "Using launch-override: $launch_override" + eval "$launch_override" + else + # Use standard launch and launch-args + local launch_command=$(jq -r ".emulator.$emulator.launch" "$features") + local launch_args=$(jq -r ".emulator.$emulator.\"launch-args\"" "$features") + log d "launch args: $launch_args" + + # Only add launch_args if they are not null + if [[ "$launch_args" != "null" ]]; then + # Replace $game in launch_args with the actual game path, quoting it to handle spaces + launch_args=${launch_args//\$game/\"$game\"} + log d "Command: \"$launch_command $launch_args\"" + eval "$launch_command $launch_args" + else + log d "Command: \"$launch_command\"" + eval "$launch_command \"$game\"" + fi + fi + fi +} \ No newline at end of file diff --git a/functions/post_update.sh b/functions/post_update.sh index 0d1975bd..4cc58b2c 100644 --- a/functions/post_update.sh +++ b/functions/post_update.sh @@ -435,6 +435,7 @@ post_update() { set_setting_value "$raconf" "libretro_info_path" "/var/config/retroarch/cores" "retroarch" prepare_component "reset" "shadps4" prepare_component "reset" "ruffle" + update_rd_conf # TODO: check this # rm /var/config/emulationstation/.emulationstation # remving the old symlink to .emulationstation as it might be not needed anymore diff --git a/retrodeck.sh b/retrodeck.sh index 018d9bc2..e76f8df0 100644 --- a/retrodeck.sh +++ b/retrodeck.sh @@ -18,19 +18,21 @@ for i in "$@"; do case $i in -h*|--help*) echo "RetroDECK v""$version" - echo " + echo -e " Usage: flatpak run [FLATPAK-RUN-OPTION] net.retrodeck-retrodeck [ARGUMENTS] Arguments: - -h, --help Print this help - -v, --version Print RetroDECK version - --info-msg Print paths and config informations - --configurator Starts the RetroDECK Configurator - --compress-one Compresses target file to a compatible format - --compress-all Compresses all supported games into a compatible format. Available formats are \"chd\", \"zip\", \"rvz\" and \"all\". - --reset-component Reset one or more component or emulator configs to the default values - --reset-retrodeck Starts the initial RetroDECK installer (backup your data first!) + -h, --help \t Print this help + -v, --version \t Print RetroDECK version + --info-msg \t Print paths and config informations + --configurator \t Starts the RetroDECK Configurator + --compress-one \t Compresses target file to a compatible format + --compress-all \t Compresses all supported games into a compatible format.\n\t\t\t\t\t\t Available formats are \"chd\", \"zip\", \"rvz\" and \"all\". + --reset-component \t Reset one or more component or emulator configs to the default values + --reset-retrodeck \t Starts the initial RetroDECK installer (backup your data first!) + + --run [-s ] [-e ] \t Run a game from cli, if no system is defined it will deducted from the path.\n\t\t\t\t\t\t For example --run ~/retrodeck/roms/system/game.ext will be run with the system "system".\n\t\t\t\t\t\t Optionally -e (emulator) and -s (system) can be passed as arguments. For flatpak run specific options please run: flatpak run -h @@ -42,6 +44,11 @@ https://retrodeck.net echo "RetroDECK v$version" exit ;; + --run*) + shift # Remove --run + run_game "$@" + exit + ;; --info-msg*) echo "RetroDECK v$version" echo "RetroDECK config file is in: $rd_conf" @@ -199,3 +206,4 @@ fi # Normal Startup start_retrodeck +quit_retrodeck diff --git a/tools/configurator/Rekku.gd b/tools/configurator/Rekku.gd index 03ea2fe2..d915a511 100644 --- a/tools/configurator/Rekku.gd +++ b/tools/configurator/Rekku.gd @@ -1,12 +1,15 @@ extends Control -func _input(event): - if event.is_action_pressed("rekku_hide"): - self.visible = !self.visible - %SplitContainer.split_offset=-300 +var rekku_state = false - if Input.is_action_pressed("back_button"): - %SplitContainer.split_offset=0 - $".".visible=false - - +func _input(event): + if event.is_action_released("rekku_hide"): + #self.visible = !self.visible + if rekku_state == false: + self.visible = true + rekku_state = true + %SplitContainer.split_offset=-300 + elif event.is_action_released("rekku_hide") and rekku_state == true: + rekku_state = false + self.visible = false + %SplitContainer.split_offset=0 diff --git a/tools/configurator/TabContainer.gd b/tools/configurator/TabContainer.gd index fcd98b61..06b734ac 100644 --- a/tools/configurator/TabContainer.gd +++ b/tools/configurator/TabContainer.gd @@ -1,6 +1,10 @@ extends TabContainer var icon_width: int = 32 +@onready var tcount: int = get_tab_count()-1 +var l1_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png") +var r1_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png") + func _ready(): focusFirstFocusableChild() #grab focus on first element to enable controller focusing @@ -8,31 +12,50 @@ func _ready(): %TabContainer.add_theme_icon_override("decrement_highlight",ResourceLoader.load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0763.png")) %TabContainer.add_theme_icon_override("increment",ResourceLoader.load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png")) %TabContainer.add_theme_icon_override("increment_highlight",ResourceLoader.load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0764.png")) - set_tab_icon(0, ResourceLoader.load("res://assets/icons/pixelitos/128/applications-graphics.png")) + set_tab_icon(0, ResourceLoader.load("res://assets/icons/pixelitos/128/map-globe.png")) set_tab_icon_max_width(0,icon_width) set_tab_icon(1, ResourceLoader.load("res://assets/icons/pixelitos/128/preferences-system-windows.png")) set_tab_icon_max_width(1,icon_width) - set_tab_icon(2, ResourceLoader.load("res://assets/icons/pixelitos/128/utilities-tweak-tool.png")) + set_tab_icon(2, ResourceLoader.load("res://assets/icons/pixelitos/128/utilities-system-monitor.png")) set_tab_icon_max_width(2,icon_width) - set_tab_icon(3, ResourceLoader.load("res://assets/icons/pixelitos/128/network-workgroup.png")) + set_tab_icon(3, ResourceLoader.load("res://assets/icons/pixelitos/128/preferences-system-session-services.png")) set_tab_icon_max_width(3,icon_width) - set_tab_icon(4, ResourceLoader.load("res://assets/icons/pixelitos/128/utilities-system-monitor.png")) + set_tab_icon(4, ResourceLoader.load("res://assets/icons/pixelitos/128/help-about.png")) set_tab_icon_max_width(4,icon_width) - set_tab_icon(5, ResourceLoader.load("res://assets/icons/pixelitos/128/preferences-system-session-services.png")) - set_tab_icon_max_width(5,icon_width) - set_tab_icon(6, ResourceLoader.load("res://assets/icons/pixelitos/128/help-about.png")) - set_tab_icon_max_width(6,icon_width) #%TK_GRAPHICS.name="BOB" -# + connect_focus_signals(self) + +func connect_focus_signals(node): + for child in node.get_children(): + if child is Button: + child.focus_entered.connect(_on_Button_focus_entered.bind(child)) + elif child is Control: + connect_focus_signals(child) + +func _on_Button_focus_entered(button: Button): + if button: + %AudioStreamPlayer2D.play() + func _input(event): if (event.is_action_pressed("next_tab")): - self.select_next_available() - focusFirstFocusableChild() - + %r1_button.texture_normal = %r1_button.texture_pressed + if current_tab == tcount: + current_tab = 0 + else: + self.select_next_available() + focusFirstFocusableChild() + else: + %r1_button.texture_normal = r1_button_texture if (event.is_action_pressed("previous_tab")): - self.select_previous_available() - focusFirstFocusableChild() - + %l1_button.texture_normal = %l1_button.texture_pressed + if current_tab == 0: + current_tab = tcount + else: + self.select_previous_available() + focusFirstFocusableChild() + else: + %l1_button.texture_normal = l1_button_texture + func focusFirstFocusableChild(): var children = findElements(get_current_tab_control(), "Control") for n: Control in children: diff --git a/tools/configurator/assets/graphics/rekku2/rekku_base.png b/tools/configurator/assets/graphics/rekku2/rekku_base.png new file mode 100644 index 00000000..84516647 Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_base.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_base.png.import b/tools/configurator/assets/graphics/rekku2/rekku_base.png.import new file mode 100644 index 00000000..45620203 --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_base.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l3bredurb11m" +path="res://.godot/imported/rekku_base.png-ba655e0b7ca5167750e3c33bad52b118.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_base.png" +dest_files=["res://.godot/imported/rekku_base.png-ba655e0b7ca5167750e3c33bad52b118.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png b/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png new file mode 100644 index 00000000..f25c0c3b Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png.import b/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png.import new file mode 100644 index 00000000..8ff14492 --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_eye_1.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvlncuql8igrm" +path="res://.godot/imported/rekku_eye_1.png-bdb05770012bbf8805a308be308f2f11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_eye_1.png" +dest_files=["res://.godot/imported/rekku_eye_1.png-bdb05770012bbf8805a308be308f2f11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png b/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png new file mode 100644 index 00000000..8a33ab5b Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png.import b/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png.import new file mode 100644 index 00000000..70f02035 --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_eye_2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdrdu4nddkqjn" +path="res://.godot/imported/rekku_eye_2.png-470f058d31522c2d3d622d57668ea739.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_eye_2.png" +dest_files=["res://.godot/imported/rekku_eye_2.png-470f058d31522c2d3d622d57668ea739.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png b/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png new file mode 100644 index 00000000..8433aa6f Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png.import b/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png.import new file mode 100644 index 00000000..5132aa9b --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_mouth_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb2hwhaq036mu" +path="res://.godot/imported/rekku_mouth_a.png-279dcb9a384b18dcc5f0e9b1fce89965.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_mouth_a.png" +dest_files=["res://.godot/imported/rekku_mouth_a.png-279dcb9a384b18dcc5f0e9b1fce89965.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png b/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png new file mode 100644 index 00000000..3e1b8cc3 Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png.import b/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png.import new file mode 100644 index 00000000..45651006 --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_mouth_i.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl2fd66fvn1an" +path="res://.godot/imported/rekku_mouth_i.png-66f20d9dcec19841a364e26d8f38c17a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_mouth_i.png" +dest_files=["res://.godot/imported/rekku_mouth_i.png-66f20d9dcec19841a364e26d8f38c17a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png b/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png new file mode 100644 index 00000000..4c8d44dc Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png.import b/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png.import new file mode 100644 index 00000000..b18f656f --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_mouth_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3ktnkmuecxea" +path="res://.godot/imported/rekku_mouth_m.png-f85c73bab4824d3102d50150c4e5375e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_mouth_m.png" +dest_files=["res://.godot/imported/rekku_mouth_m.png-f85c73bab4824d3102d50150c4e5375e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png b/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png new file mode 100644 index 00000000..8871b416 Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png.import b/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png.import new file mode 100644 index 00000000..96b42cb1 --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_mouth_o.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d08ngewjvxkmn" +path="res://.godot/imported/rekku_mouth_o.png-72bff84aecbb9047648fb98563492453.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_mouth_o.png" +dest_files=["res://.godot/imported/rekku_mouth_o.png-72bff84aecbb9047648fb98563492453.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png b/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png new file mode 100644 index 00000000..a5b8224f Binary files /dev/null and b/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png differ diff --git a/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png.import b/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png.import new file mode 100644 index 00000000..5156c7af --- /dev/null +++ b/tools/configurator/assets/graphics/rekku2/rekku_nomouth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dieva7tuxjrvy" +path="res://.godot/imported/rekku_nomouth.png-6aea5248544dd97243fc5c179e0e2d58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/graphics/rekku2/rekku_nomouth.png" +dest_files=["res://.godot/imported/rekku_nomouth.png-6aea5248544dd97243fc5c179e0e2d58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/es-de.png b/tools/configurator/assets/icons/pixelitos/128/es-de.png new file mode 100644 index 00000000..6575bb96 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/es-de.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/es-de.png.import b/tools/configurator/assets/icons/pixelitos/128/es-de.png.import new file mode 100644 index 00000000..f49c47ce --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/es-de.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhf620jyq75t1" +path="res://.godot/imported/es-de.png-7133c76b0fc370d6d2c311241df36cf6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/es-de.png" +dest_files=["res://.godot/imported/es-de.png-7133c76b0fc370d6d2c311241df36cf6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/flycast.png b/tools/configurator/assets/icons/pixelitos/128/flycast.png new file mode 100644 index 00000000..a98a8cee Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/flycast.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/flycast.png.import b/tools/configurator/assets/icons/pixelitos/128/flycast.png.import new file mode 100644 index 00000000..294b5552 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/flycast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctm3f56t7jhiw" +path="res://.godot/imported/flycast.png-454d63296971d85691881883d8c379e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/flycast.png" +dest_files=["res://.godot/imported/flycast.png-454d63296971d85691881883d8c379e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/fuse.png b/tools/configurator/assets/icons/pixelitos/128/fuse.png new file mode 100644 index 00000000..a4cbea7a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/fuse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/fuse.png.import b/tools/configurator/assets/icons/pixelitos/128/fuse.png.import new file mode 100644 index 00000000..eb520d80 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/fuse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t4bq3t2l0rja" +path="res://.godot/imported/fuse.png-798b47a8862532036e29b84ce0746e43.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/fuse.png" +dest_files=["res://.godot/imported/fuse.png-798b47a8862532036e29b84ce0746e43.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/lime3ds.png b/tools/configurator/assets/icons/pixelitos/128/lime3ds.png new file mode 100644 index 00000000..c0363111 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/lime3ds.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/lime3ds.png.import b/tools/configurator/assets/icons/pixelitos/128/lime3ds.png.import new file mode 100644 index 00000000..3f1489d4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/lime3ds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjxqyxpxb8h8q" +path="res://.godot/imported/lime3ds.png-46636e55aca4b1efb87cc2bb6ef805bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/lime3ds.png" +dest_files=["res://.godot/imported/lime3ds.png-46636e55aca4b1efb87cc2bb6ef805bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/nestopia.png b/tools/configurator/assets/icons/pixelitos/128/nestopia.png new file mode 100644 index 00000000..0499a7cf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/nestopia.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/nestopia.png.import b/tools/configurator/assets/icons/pixelitos/128/nestopia.png.import new file mode 100644 index 00000000..94a30a0b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/nestopia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de3s3tkxffqk0" +path="res://.godot/imported/nestopia.png-e3a5ed0832cb977733e851f186fe9167.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/nestopia.png" +dest_files=["res://.godot/imported/nestopia.png-e3a5ed0832cb977733e851f186fe9167.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/portal2.png b/tools/configurator/assets/icons/pixelitos/128/portal2.png new file mode 100644 index 00000000..9990ba37 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/portal2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/portal2.png.import b/tools/configurator/assets/icons/pixelitos/128/portal2.png.import new file mode 100644 index 00000000..1fbd7012 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/portal2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f8c6tobon13p" +path="res://.godot/imported/portal2.png-8c359b0df7fa9dc3dad992debc6f16c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/portal2.png" +dest_files=["res://.godot/imported/portal2.png-8c359b0df7fa9dc3dad992debc6f16c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/portal2.png2 b/tools/configurator/assets/icons/pixelitos/128/portal2.png2 new file mode 120000 index 00000000..69558735 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/portal2.png2 @@ -0,0 +1 @@ +portal2.png \ No newline at end of file diff --git a/tools/configurator/assets/icons/pixelitos/128/snes9x.png b/tools/configurator/assets/icons/pixelitos/128/snes9x.png new file mode 100644 index 00000000..d63bc0e5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/snes9x.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/snes9x.png.import b/tools/configurator/assets/icons/pixelitos/128/snes9x.png.import new file mode 100644 index 00000000..157f1b91 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/snes9x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyqdlugy5lts5" +path="res://.godot/imported/snes9x.png-985444d2225cee74be2bbfe4fd683dbe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/snes9x.png" +dest_files=["res://.godot/imported/snes9x.png-985444d2225cee74be2bbfe4fd683dbe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png b/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png new file mode 120000 index 00000000..69558735 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png @@ -0,0 +1 @@ +portal2.png \ No newline at end of file diff --git a/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png.import b/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png.import new file mode 100644 index 00000000..dd872006 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/steam_icon_620.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck226cpy48rw" +path="res://.godot/imported/steam_icon_620.png-7a9e73f3c8c9a5c04b15bb9b88f1fab3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/steam_icon_620.png" +dest_files=["res://.godot/imported/steam_icon_620.png-7a9e73f3c8c9a5c04b15bb9b88f1fab3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/stella.png b/tools/configurator/assets/icons/pixelitos/128/stella.png new file mode 100644 index 00000000..4953f902 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/stella.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/stella.png.import b/tools/configurator/assets/icons/pixelitos/128/stella.png.import new file mode 100644 index 00000000..712034f3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/stella.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2fp4cq1l0843" +path="res://.godot/imported/stella.png-e81484435d2c9330faaeb6dd19649c74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/stella.png" +dest_files=["res://.godot/imported/stella.png-e81484435d2c9330faaeb6dd19649c74.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/128/zsnes.png b/tools/configurator/assets/icons/pixelitos/128/zsnes.png new file mode 100644 index 00000000..824a41e7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/128/zsnes.png differ diff --git a/tools/configurator/assets/icons/pixelitos/128/zsnes.png.import b/tools/configurator/assets/icons/pixelitos/128/zsnes.png.import new file mode 100644 index 00000000..ecc2dc58 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/128/zsnes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsctvdrl5okkn" +path="res://.godot/imported/zsnes.png-8880495aee27e317a73877d10d9f27e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/128/zsnes.png" +dest_files=["res://.godot/imported/zsnes.png-8880495aee27e317a73877d10d9f27e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/Alacritty.png b/tools/configurator/assets/icons/pixelitos/16/Alacritty.png new file mode 100644 index 00000000..b49c4a7f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/Alacritty.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/Alacritty.png.import b/tools/configurator/assets/icons/pixelitos/16/Alacritty.png.import new file mode 100644 index 00000000..c881c286 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/Alacritty.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp7mte1plxnns" +path="res://.godot/imported/Alacritty.png-4f73319016fc7fff22cd6bbb95727a2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/Alacritty.png" +dest_files=["res://.godot/imported/Alacritty.png-4f73319016fc7fff22cd6bbb95727a2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png b/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png new file mode 100644 index 00000000..c242ed43 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png.import b/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png.import new file mode 100644 index 00000000..dc8624ff --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/CMakeSetup.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4m876fp86l7u" +path="res://.godot/imported/CMakeSetup.png-ca2e7d534d3754abdc6584a0e12d00a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/CMakeSetup.png" +dest_files=["res://.godot/imported/CMakeSetup.png-ca2e7d534d3754abdc6584a0e12d00a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png b/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png new file mode 100644 index 00000000..2fbd37aa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png.import b/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png.import new file mode 100644 index 00000000..675613fa --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/QtProject-qtcreator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dal18xkn0kplp" +path="res://.godot/imported/QtProject-qtcreator.png-23c831a40c505fde0c349b15be55ea27.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/QtProject-qtcreator.png" +dest_files=["res://.godot/imported/QtProject-qtcreator.png-23c831a40c505fde0c349b15be55ea27.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png new file mode 100644 index 00000000..cd86d42d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png.import b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png.import new file mode 100644 index 00000000..e0531885 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshoot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df4bk3fa337ig" +path="res://.godot/imported/accesories-screenshoot.png-374d457bc7561a8d6e5b662034b15730.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accesories-screenshoot.png" +dest_files=["res://.godot/imported/accesories-screenshoot.png-374d457bc7561a8d6e5b662034b15730.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png new file mode 100644 index 00000000..cd86d42d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png.import b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png.import new file mode 100644 index 00000000..b9421af9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accesories-screenshot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqkexg5kkpehj" +path="res://.godot/imported/accesories-screenshot.png-380a941577ff6c26d913fdd7f78ed615.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accesories-screenshot.png" +dest_files=["res://.godot/imported/accesories-screenshot.png-380a941577ff6c26d913fdd7f78ed615.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png b/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png new file mode 100644 index 00000000..981d1419 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png.import new file mode 100644 index 00000000..139c5859 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-calculator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qg2fv36wcd2c" +path="res://.godot/imported/accessories-calculator.png-d15cdc6a8c179b53a6ef9124dd0b9a8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-calculator.png" +dest_files=["res://.godot/imported/accessories-calculator.png-d15cdc6a8c179b53a6ef9124dd0b9a8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png b/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png new file mode 100644 index 00000000..22ee5f71 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png.import new file mode 100644 index 00000000..604a97f9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-clock.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhgc5m5hjjpge" +path="res://.godot/imported/accessories-clock.png-0b1e8af43b710d232fb1a15556ef19eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-clock.png" +dest_files=["res://.godot/imported/accessories-clock.png-0b1e8af43b710d232fb1a15556ef19eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png b/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png new file mode 100644 index 00000000..081c51d5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png.import new file mode 100644 index 00000000..a572c210 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-dictionary.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy4i0deapmyn8" +path="res://.godot/imported/accessories-dictionary.png-25017c298efba7f0e304eab6bd3fe71e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-dictionary.png" +dest_files=["res://.godot/imported/accessories-dictionary.png-25017c298efba7f0e304eab6bd3fe71e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png b/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png new file mode 100644 index 00000000..081c51d5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png.import new file mode 100644 index 00000000..db7849bf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-ebook-reader.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c70ppuy4beltg" +path="res://.godot/imported/accessories-ebook-reader.png-0f54fc49eec6426cbf1120611040fb32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-ebook-reader.png" +dest_files=["res://.godot/imported/accessories-ebook-reader.png-0f54fc49eec6426cbf1120611040fb32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png b/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png new file mode 100644 index 00000000..96629dea Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png.import new file mode 100644 index 00000000..8bee69be --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-notes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://taq6pykvnl76" +path="res://.godot/imported/accessories-notes.png-f233036a4c836cc7dc186338310e9fae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-notes.png" +dest_files=["res://.godot/imported/accessories-notes.png-f233036a4c836cc7dc186338310e9fae.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png b/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png new file mode 100644 index 00000000..d992a152 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png.import new file mode 100644 index 00000000..6ad9c32a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-safe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crc1a37v678n5" +path="res://.godot/imported/accessories-safe.png-be007724da9b72adae416ad27a714815.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-safe.png" +dest_files=["res://.godot/imported/accessories-safe.png-be007724da9b72adae416ad27a714815.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png b/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png new file mode 100644 index 00000000..cd86d42d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png.import new file mode 100644 index 00000000..27bcb515 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-screenshoot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7owhb6jau2r7" +path="res://.godot/imported/accessories-screenshoot.png-9c31584745a04aa11537232e52d0fd4a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-screenshoot.png" +dest_files=["res://.godot/imported/accessories-screenshoot.png-9c31584745a04aa11537232e52d0fd4a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png b/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png new file mode 100644 index 00000000..d5d5070d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png.import b/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png.import new file mode 100644 index 00000000..f991a62b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/accessories-text-editor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lklv1mtf0axh" +path="res://.godot/imported/accessories-text-editor.png-9d8479e48f94dc82089f933acd74fa99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/accessories-text-editor.png" +dest_files=["res://.godot/imported/accessories-text-editor.png-9d8479e48f94dc82089f933acd74fa99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/alacarte.png b/tools/configurator/assets/icons/pixelitos/16/alacarte.png new file mode 100644 index 00000000..b9c05361 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/alacarte.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/alacarte.png.import b/tools/configurator/assets/icons/pixelitos/16/alacarte.png.import new file mode 100644 index 00000000..d729400d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/alacarte.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq62f0iqbvfct" +path="res://.godot/imported/alacarte.png-1f1500dfc98c6beb4514f5a95f95a9ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/alacarte.png" +dest_files=["res://.godot/imported/alacarte.png-1f1500dfc98c6beb4514f5a95f95a9ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/anatine.png b/tools/configurator/assets/icons/pixelitos/16/anatine.png new file mode 100644 index 00000000..dbb99338 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/anatine.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/anatine.png.import b/tools/configurator/assets/icons/pixelitos/16/anatine.png.import new file mode 100644 index 00000000..881654c4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/anatine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqk2qqxx4340h" +path="res://.godot/imported/anatine.png-a45209bb5a56a70dfe74ec0c6321ab8a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/anatine.png" +dest_files=["res://.godot/imported/anatine.png-a45209bb5a56a70dfe74ec0c6321ab8a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png b/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png new file mode 100644 index 00000000..671edffd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png.import b/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png.import new file mode 100644 index 00000000..ecb1ed54 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/app.xemu.xemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cah8bhye14opr" +path="res://.godot/imported/app.xemu.xemu.png-13fcfb6536a11564d69d3e35a4541282.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/app.xemu.xemu.png" +dest_files=["res://.godot/imported/app.xemu.xemu.png-13fcfb6536a11564d69d3e35a4541282.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/apple.png b/tools/configurator/assets/icons/pixelitos/16/apple.png new file mode 100644 index 00000000..02c26df3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/apple.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/apple.png.import b/tools/configurator/assets/icons/pixelitos/16/apple.png.import new file mode 100644 index 00000000..9893b30c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/apple.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7wxfcyjnrjj" +path="res://.godot/imported/apple.png-268063cc94bfb7e198f59173c4edfcd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/apple.png" +dest_files=["res://.godot/imported/apple.png-268063cc94bfb7e198f59173c4edfcd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png b/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png new file mode 100644 index 00000000..cd86d42d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png.import b/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png.import new file mode 100644 index 00000000..2191265e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applets-screenshooter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fk4h3jnjjlv6" +path="res://.godot/imported/applets-screenshooter.png-b31d48502f03856dc8298a6c10b438c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applets-screenshooter.png" +dest_files=["res://.godot/imported/applets-screenshooter.png-b31d48502f03856dc8298a6c10b438c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png b/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png new file mode 100644 index 00000000..c6a7d143 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png.import b/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png.import new file mode 100644 index 00000000..881fc570 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/application-vnd.affinity-designer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxd7ka0qiyqen" +path="res://.godot/imported/application-vnd.affinity-designer.png-608cf9e7df43d44f5707c7dcfcdfaa42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/application-vnd.affinity-designer.png" +dest_files=["res://.godot/imported/application-vnd.affinity-designer.png-608cf9e7df43d44f5707c7dcfcdfaa42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png b/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png new file mode 100644 index 00000000..152475ed Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png.import new file mode 100644 index 00000000..4ce14992 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-accessories.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kbu42vp5e6yf" +path="res://.godot/imported/applications-accessories.png-e423b33993821ebfe2d5501dfae6b714.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-accessories.png" +dest_files=["res://.godot/imported/applications-accessories.png-e423b33993821ebfe2d5501dfae6b714.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-all.png b/tools/configurator/assets/icons/pixelitos/16/applications-all.png new file mode 100644 index 00000000..4929945d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-all.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-all.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-all.png.import new file mode 100644 index 00000000..6cad19f0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-all.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ndsdoqjs7m7w" +path="res://.godot/imported/applications-all.png-ab84c72eef4f625c339e15bbcb7fa88f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-all.png" +dest_files=["res://.godot/imported/applications-all.png-ab84c72eef4f625c339e15bbcb7fa88f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-development.png b/tools/configurator/assets/icons/pixelitos/16/applications-development.png new file mode 100644 index 00000000..7d4f2b9b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-development.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-development.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-development.png.import new file mode 100644 index 00000000..b1003d8c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-development.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfeloulb2wvvn" +path="res://.godot/imported/applications-development.png-9b0fdf3eb2d9033678e74d99f3073b76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-development.png" +dest_files=["res://.godot/imported/applications-development.png-9b0fdf3eb2d9033678e74d99f3073b76.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-education.png b/tools/configurator/assets/icons/pixelitos/16/applications-education.png new file mode 100644 index 00000000..360f0ac8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-education.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-education.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-education.png.import new file mode 100644 index 00000000..a2a556e6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-education.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o83hcgocw65q" +path="res://.godot/imported/applications-education.png-af8ff97e641a5d659a107254ca9bc81f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-education.png" +dest_files=["res://.godot/imported/applications-education.png-af8ff97e641a5d659a107254ca9bc81f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-games.png b/tools/configurator/assets/icons/pixelitos/16/applications-games.png new file mode 100644 index 00000000..e2a38b32 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-games.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-games.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-games.png.import new file mode 100644 index 00000000..a24cd9fe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-games.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw4ero0pfqb57" +path="res://.godot/imported/applications-games.png-6ef58e204fbc67e2e77c94965b7efd35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-games.png" +dest_files=["res://.godot/imported/applications-games.png-6ef58e204fbc67e2e77c94965b7efd35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png b/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png new file mode 100644 index 00000000..2847df1d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png.import new file mode 100644 index 00000000..1964bc68 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-graphics.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2nbn5e16g04t" +path="res://.godot/imported/applications-graphics.png-927f4758a56b7c23c64a0fb62536db3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-graphics.png" +dest_files=["res://.godot/imported/applications-graphics.png-927f4758a56b7c23c64a0fb62536db3d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-internet.png b/tools/configurator/assets/icons/pixelitos/16/applications-internet.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-internet.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-internet.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-internet.png.import new file mode 100644 index 00000000..5cdbb991 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-internet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceowi5vullhhc" +path="res://.godot/imported/applications-internet.png-1ae1e3221643b136ddd72c43cc9759c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-internet.png" +dest_files=["res://.godot/imported/applications-internet.png-1ae1e3221643b136ddd72c43cc9759c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png b/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png new file mode 100644 index 00000000..ebce336a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png.import new file mode 100644 index 00000000..afafe803 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-multimedia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj471sjmw24g1" +path="res://.godot/imported/applications-multimedia.png-973d3374cd06bfb4a4e417a3ad5c68a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-multimedia.png" +dest_files=["res://.godot/imported/applications-multimedia.png-973d3374cd06bfb4a4e417a3ad5c68a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-office.png b/tools/configurator/assets/icons/pixelitos/16/applications-office.png new file mode 100644 index 00000000..1dc57b9d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-office.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-office.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-office.png.import new file mode 100644 index 00000000..15fc6280 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-office.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2r2ggkeiippk" +path="res://.godot/imported/applications-office.png-782c993c03b7dbe06aad8f8d655ffb6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-office.png" +dest_files=["res://.godot/imported/applications-office.png-782c993c03b7dbe06aad8f8d655ffb6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-other.png b/tools/configurator/assets/icons/pixelitos/16/applications-other.png new file mode 100644 index 00000000..840d6027 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-other.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-other.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-other.png.import new file mode 100644 index 00000000..56ee6f04 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-other.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3byj4jy8psjo" +path="res://.godot/imported/applications-other.png-f970e4ce495a40f34c5a7d23e2db84bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-other.png" +dest_files=["res://.godot/imported/applications-other.png-f970e4ce495a40f34c5a7d23e2db84bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-science.png b/tools/configurator/assets/icons/pixelitos/16/applications-science.png new file mode 100644 index 00000000..360f0ac8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-science.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-science.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-science.png.import new file mode 100644 index 00000000..8032701f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-science.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7gsi6t7335yx" +path="res://.godot/imported/applications-science.png-2f04cd597c68410e2aae561bbded5585.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-science.png" +dest_files=["res://.godot/imported/applications-science.png-2f04cd597c68410e2aae561bbded5585.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-system.png b/tools/configurator/assets/icons/pixelitos/16/applications-system.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-system.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-system.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-system.png.import new file mode 100644 index 00000000..5b7ce19f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-system.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpff7sbgy1wuu" +path="res://.godot/imported/applications-system.png-36ae6cc3fc0327af3fb24616b60b3003.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-system.png" +dest_files=["res://.godot/imported/applications-system.png-36ae6cc3fc0327af3fb24616b60b3003.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png b/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png.import b/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png.import new file mode 100644 index 00000000..b304cc7d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/applications-webbrowsers.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fmyai7stuwfv" +path="res://.godot/imported/applications-webbrowsers.png-1326c9464e925db56f2469158fb594bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/applications-webbrowsers.png" +dest_files=["res://.godot/imported/applications-webbrowsers.png-1326c9464e925db56f2469158fb594bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ares.png b/tools/configurator/assets/icons/pixelitos/16/ares.png new file mode 100644 index 00000000..8fd6e1ad Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ares.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ares.png.import b/tools/configurator/assets/icons/pixelitos/16/ares.png.import new file mode 100644 index 00000000..570a0b01 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ares.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpvdyvuk5yhfo" +path="res://.godot/imported/ares.png-3d6b991c978717c3b4cfbd6da2613bd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ares.png" +dest_files=["res://.godot/imported/ares.png-3d6b991c978717c3b4cfbd6da2613bd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ark.png b/tools/configurator/assets/icons/pixelitos/16/ark.png new file mode 100644 index 00000000..f94f6e1e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ark.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ark.png.import b/tools/configurator/assets/icons/pixelitos/16/ark.png.import new file mode 100644 index 00000000..e14186f9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ark.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm0vcd00yrlec" +path="res://.godot/imported/ark.png-5ca1741b0780302b74fda901eb23e213.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ark.png" +dest_files=["res://.godot/imported/ark.png-5ca1741b0780302b74fda901eb23e213.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/arronax.png b/tools/configurator/assets/icons/pixelitos/16/arronax.png new file mode 100644 index 00000000..948e900e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/arronax.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/arronax.png.import b/tools/configurator/assets/icons/pixelitos/16/arronax.png.import new file mode 100644 index 00000000..50201c0f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/arronax.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5dkf0j28a1b3" +path="res://.godot/imported/arronax.png-240edb739428e77b63e80d35b977d0ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/arronax.png" +dest_files=["res://.godot/imported/arronax.png-240edb739428e77b63e80d35b977d0ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/assaultcube.png b/tools/configurator/assets/icons/pixelitos/16/assaultcube.png new file mode 100644 index 00000000..5d13aea8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/assaultcube.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/assaultcube.png.import b/tools/configurator/assets/icons/pixelitos/16/assaultcube.png.import new file mode 100644 index 00000000..65ed8c9b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/assaultcube.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpm8rk33us5fc" +path="res://.godot/imported/assaultcube.png-ca8f2be15ab4eab580c1bdb1c2c4fb37.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/assaultcube.png" +dest_files=["res://.godot/imported/assaultcube.png-ca8f2be15ab4eab580c1bdb1c2c4fb37.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/atril.png b/tools/configurator/assets/icons/pixelitos/16/atril.png new file mode 100644 index 00000000..a355d7cc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/atril.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/atril.png.import b/tools/configurator/assets/icons/pixelitos/16/atril.png.import new file mode 100644 index 00000000..5c9b5b8a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/atril.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4hihvbg07mp2" +path="res://.godot/imported/atril.png-dc035a595aadd877eff547971b8cfd47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/atril.png" +dest_files=["res://.godot/imported/atril.png-dc035a595aadd877eff547971b8cfd47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/audacity.png b/tools/configurator/assets/icons/pixelitos/16/audacity.png new file mode 100644 index 00000000..74b109b1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/audacity.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/audacity.png.import b/tools/configurator/assets/icons/pixelitos/16/audacity.png.import new file mode 100644 index 00000000..9ef04b0d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/audacity.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgdfqpsge47xl" +path="res://.godot/imported/audacity.png-985f018e44635e855e01aba656ba2401.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/audacity.png" +dest_files=["res://.godot/imported/audacity.png-985f018e44635e855e01aba656ba2401.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png b/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png new file mode 100644 index 00000000..0157197b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png.import b/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png.import new file mode 100644 index 00000000..08e0e6ed --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/audio-mp3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c614erv18bffc" +path="res://.godot/imported/audio-mp3.png-a189f8de1c969c0f242d2924003c1033.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/audio-mp3.png" +dest_files=["res://.godot/imported/audio-mp3.png-a189f8de1c969c0f242d2924003c1033.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/avatar-default.png b/tools/configurator/assets/icons/pixelitos/16/avatar-default.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/avatar-default.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/avatar-default.png.import b/tools/configurator/assets/icons/pixelitos/16/avatar-default.png.import new file mode 100644 index 00000000..fc8ca21c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/avatar-default.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qb2fx1kus7te" +path="res://.godot/imported/avatar-default.png-b976865723d050265640bc0685ce4170.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/avatar-default.png" +dest_files=["res://.godot/imported/avatar-default.png-b976865723d050265640bc0685ce4170.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png b/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png new file mode 100644 index 00000000..66ab2bdd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png.import b/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png.import new file mode 100644 index 00000000..80125956 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/balena-etcher-electron.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pptpptofdxlx" +path="res://.godot/imported/balena-etcher-electron.png-dcc20e0ff88ee21578e7f94c8e03b4e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/balena-etcher-electron.png" +dest_files=["res://.godot/imported/balena-etcher-electron.png-dcc20e0ff88ee21578e7f94c8e03b4e0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/bigpemu.png b/tools/configurator/assets/icons/pixelitos/16/bigpemu.png new file mode 100644 index 00000000..774d09db Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/bigpemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/bigpemu.png.import b/tools/configurator/assets/icons/pixelitos/16/bigpemu.png.import new file mode 100644 index 00000000..1e9d0feb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/bigpemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4vunmfvf5ca7" +path="res://.godot/imported/bigpemu.png-3b3e1d5d04b67882a6ad7c7ec5b0577a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/bigpemu.png" +dest_files=["res://.godot/imported/bigpemu.png-3b3e1d5d04b67882a6ad7c7ec5b0577a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/blender.png b/tools/configurator/assets/icons/pixelitos/16/blender.png new file mode 100644 index 00000000..baffd5a9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/blender.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/blender.png.import b/tools/configurator/assets/icons/pixelitos/16/blender.png.import new file mode 100644 index 00000000..0a038b83 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/blender.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqetmsqg2g2o4" +path="res://.godot/imported/blender.png-6d4fec3aed0fd069f451e7c8015ceb3a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/blender.png" +dest_files=["res://.godot/imported/blender.png-6d4fec3aed0fd069f451e7c8015ceb3a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/bulky.png b/tools/configurator/assets/icons/pixelitos/16/bulky.png new file mode 100644 index 00000000..346cbdfa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/bulky.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/bulky.png.import b/tools/configurator/assets/icons/pixelitos/16/bulky.png.import new file mode 100644 index 00000000..45cc9ced --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/bulky.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c78dxb808u52n" +path="res://.godot/imported/bulky.png-7177547fd858620bc3948a465a39d526.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/bulky.png" +dest_files=["res://.godot/imported/bulky.png-7177547fd858620bc3948a465a39d526.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png b/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png new file mode 100644 index 00000000..5cad7251 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png.import b/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png.import new file mode 100644 index 00000000..6bc41c00 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/chrome-beta.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j7p43fukafx5" +path="res://.godot/imported/chrome-beta.png-23900d8616b1266a44f9202ac49fdbdf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/chrome-beta.png" +dest_files=["res://.godot/imported/chrome-beta.png-23900d8616b1266a44f9202ac49fdbdf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/chrome.png b/tools/configurator/assets/icons/pixelitos/16/chrome.png new file mode 100644 index 00000000..c9654dd3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/chrome.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/chrome.png.import b/tools/configurator/assets/icons/pixelitos/16/chrome.png.import new file mode 100644 index 00000000..d33744b6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/chrome.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn4yl661c2ncd" +path="res://.godot/imported/chrome.png-5b2ee69b5e818878328498ea08fad74c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/chrome.png" +dest_files=["res://.godot/imported/chrome.png-5b2ee69b5e818878328498ea08fad74c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png b/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png.import new file mode 100644 index 00000000..b732545e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0y0jvvhy4gvv" +path="res://.godot/imported/cinnamon-virtual-keyboard.png-5464848e485ae035a16b3856ef20ff6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cinnamon-virtual-keyboard.png" +dest_files=["res://.godot/imported/cinnamon-virtual-keyboard.png-5464848e485ae035a16b3856ef20ff6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/clementine.png b/tools/configurator/assets/icons/pixelitos/16/clementine.png new file mode 100644 index 00000000..a97ea890 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/clementine.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/clementine.png.import b/tools/configurator/assets/icons/pixelitos/16/clementine.png.import new file mode 100644 index 00000000..89377ec3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/clementine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uldnpaifnuim" +path="res://.godot/imported/clementine.png-154ec7d9cceee10691007524b4f53710.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/clementine.png" +dest_files=["res://.godot/imported/clementine.png-154ec7d9cceee10691007524b4f53710.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png b/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png new file mode 100644 index 00000000..c242ed43 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png.import b/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png.import new file mode 100644 index 00000000..19133270 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cmake-gui.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvfd1n84dyicx" +path="res://.godot/imported/cmake-gui.png-8acb36d92b0f082f8c5dbdf034ed2e18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cmake-gui.png" +dest_files=["res://.godot/imported/cmake-gui.png-8acb36d92b0f082f8c5dbdf034ed2e18.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cmake.png b/tools/configurator/assets/icons/pixelitos/16/cmake.png new file mode 100644 index 00000000..c242ed43 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cmake.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cmake.png.import b/tools/configurator/assets/icons/pixelitos/16/cmake.png.import new file mode 100644 index 00000000..34f31c17 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cmake.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmj2oseon2h1y" +path="res://.godot/imported/cmake.png-5a9cb68a9462cd35e54ff4bcaf3fd09b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cmake.png" +dest_files=["res://.godot/imported/cmake.png-5a9cb68a9462cd35e54ff4bcaf3fd09b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/code-oss.png b/tools/configurator/assets/icons/pixelitos/16/code-oss.png new file mode 100644 index 00000000..d45bde63 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/code-oss.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/code-oss.png.import b/tools/configurator/assets/icons/pixelitos/16/code-oss.png.import new file mode 100644 index 00000000..cd30a1a5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/code-oss.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8c8888cu0crm" +path="res://.godot/imported/code-oss.png-f37359e120517e19f20f2f973c2f60d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/code-oss.png" +dest_files=["res://.godot/imported/code-oss.png-f37359e120517e19f20f2f973c2f60d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/compton.png b/tools/configurator/assets/icons/pixelitos/16/compton.png new file mode 100644 index 00000000..6299d8e1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/compton.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/compton.png.import b/tools/configurator/assets/icons/pixelitos/16/compton.png.import new file mode 100644 index 00000000..a40b463c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/compton.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da7lj1ulomd2q" +path="res://.godot/imported/compton.png-ed773ef0608538f53171651279a12b00.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/compton.png" +dest_files=["res://.godot/imported/compton.png-ed773ef0608538f53171651279a12b00.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/computer.png b/tools/configurator/assets/icons/pixelitos/16/computer.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/computer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/computer.png.import b/tools/configurator/assets/icons/pixelitos/16/computer.png.import new file mode 100644 index 00000000..5bca52a7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/computer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kvq6bgcrwi2x" +path="res://.godot/imported/computer.png-39ca132789ec2f0720481aa75c7bac70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/computer.png" +dest_files=["res://.godot/imported/computer.png-39ca132789ec2f0720481aa75c7bac70.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-applets.png b/tools/configurator/assets/icons/pixelitos/16/cs-applets.png new file mode 100644 index 00000000..e34eac87 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-applets.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-applets.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-applets.png.import new file mode 100644 index 00000000..22c94946 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-applets.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbxhu1gloni8f" +path="res://.godot/imported/cs-applets.png-5f4c9374553176a6793a7adad07fdc7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-applets.png" +dest_files=["res://.godot/imported/cs-applets.png-5f4c9374553176a6793a7adad07fdc7b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png b/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png new file mode 100644 index 00000000..64aaa26d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png.import new file mode 100644 index 00000000..b325e5d9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-backgrounds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wxkavajnu478" +path="res://.godot/imported/cs-backgrounds.png-24520abb08b4a161acb0a39c18a5f0b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-backgrounds.png" +dest_files=["res://.godot/imported/cs-backgrounds.png-24520abb08b4a161acb0a39c18a5f0b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png b/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png new file mode 100644 index 00000000..4e39d67b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png.import new file mode 100644 index 00000000..b0b75053 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-cat-admin.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rsxowetv8gk1" +path="res://.godot/imported/cs-cat-admin.png-952fa780f506847750ab2df0f603d010.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-cat-admin.png" +dest_files=["res://.godot/imported/cs-cat-admin.png-952fa780f506847750ab2df0f603d010.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png b/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png new file mode 100644 index 00000000..31f776b4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png.import new file mode 100644 index 00000000..780f334b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-cat-appearance.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://comvwewjsgafy" +path="res://.godot/imported/cs-cat-appearance.png-3d743c0460d097951f2e56b1b3ca704e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-cat-appearance.png" +dest_files=["res://.godot/imported/cs-cat-appearance.png-3d743c0460d097951f2e56b1b3ca704e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png b/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png.import new file mode 100644 index 00000000..8799c32f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-cat-hardware.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5vdvodg28i3y" +path="res://.godot/imported/cs-cat-hardware.png-09d1808df11be1533e435b6834177ded.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-cat-hardware.png" +dest_files=["res://.godot/imported/cs-cat-hardware.png-09d1808df11be1533e435b6834177ded.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png b/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png.import new file mode 100644 index 00000000..d83568c6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-cat-prefs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bapaqa1011qnr" +path="res://.godot/imported/cs-cat-prefs.png-4990e99fff6bd2940790c675d6bb83a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-cat-prefs.png" +dest_files=["res://.godot/imported/cs-cat-prefs.png-4990e99fff6bd2940790c675d6bb83a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png b/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png.import new file mode 100644 index 00000000..76112210 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-cat-tweaks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cacfgm8mma57o" +path="res://.godot/imported/cs-cat-tweaks.png-063c1c9db1689d6843ce265489bb0557.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-cat-tweaks.png" +dest_files=["res://.godot/imported/cs-cat-tweaks.png-063c1c9db1689d6843ce265489bb0557.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-color.png b/tools/configurator/assets/icons/pixelitos/16/cs-color.png new file mode 100644 index 00000000..d6de2445 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-color.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-color.png.import new file mode 100644 index 00000000..da4c8d01 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tq1804obkvj7" +path="res://.godot/imported/cs-color.png-909c93909d1d56c7c7e4daae2a60fe11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-color.png" +dest_files=["res://.godot/imported/cs-color.png-909c93909d1d56c7c7e4daae2a60fe11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png b/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png new file mode 100644 index 00000000..22ee5f71 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png.import new file mode 100644 index 00000000..f0551c08 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-date-time.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dleg3thvrytr" +path="res://.godot/imported/cs-date-time.png-4dcb5d9952a0b31a7df548aa81b62ea2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-date-time.png" +dest_files=["res://.godot/imported/cs-date-time.png-4dcb5d9952a0b31a7df548aa81b62ea2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png b/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png new file mode 100644 index 00000000..0b273a9f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png.import new file mode 100644 index 00000000..3b925d7e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-default-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6clxu254xvyg" +path="res://.godot/imported/cs-default-applications.png-b03412950c6411c61301ece5e22a8f8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-default-applications.png" +dest_files=["res://.godot/imported/cs-default-applications.png-b03412950c6411c61301ece5e22a8f8b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png b/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png new file mode 100644 index 00000000..96629dea Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png.import new file mode 100644 index 00000000..02558b9d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-desklets.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yyrypylbbsaa" +path="res://.godot/imported/cs-desklets.png-32a0ae43a99c8cbcc47e8dc9dc885894.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-desklets.png" +dest_files=["res://.godot/imported/cs-desklets.png-32a0ae43a99c8cbcc47e8dc9dc885894.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png b/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png new file mode 100644 index 00000000..9bc09aa2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png.import new file mode 100644 index 00000000..fb17036d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-desktop-effects.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhok6egt86cl1" +path="res://.godot/imported/cs-desktop-effects.png-ef385e28915ee0afe168b930cea60277.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-desktop-effects.png" +dest_files=["res://.godot/imported/cs-desktop-effects.png-ef385e28915ee0afe168b930cea60277.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png b/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png new file mode 100644 index 00000000..7c519310 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png.import new file mode 100644 index 00000000..64a5df5a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxs44uafmo1bl" +path="res://.godot/imported/cs-desktop.png-c298f0e528d42a9a79f68ce52f529839.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-desktop.png" +dest_files=["res://.godot/imported/cs-desktop.png-c298f0e528d42a9a79f68ce52f529839.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-details.png b/tools/configurator/assets/icons/pixelitos/16/cs-details.png new file mode 100644 index 00000000..44c13f02 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-details.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-details.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-details.png.import new file mode 100644 index 00000000..0680f94f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-details.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4n5eigk3qda2" +path="res://.godot/imported/cs-details.png-0874a3f55a9156b0be2d12acc53b4d13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-details.png" +dest_files=["res://.godot/imported/cs-details.png-0874a3f55a9156b0be2d12acc53b4d13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-display.png b/tools/configurator/assets/icons/pixelitos/16/cs-display.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-display.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-display.png.import new file mode 100644 index 00000000..72acc366 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw1efkf7j02km" +path="res://.godot/imported/cs-display.png-6a832a435f9752ae67088455a5bc0313.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-display.png" +dest_files=["res://.godot/imported/cs-display.png-6a832a435f9752ae67088455a5bc0313.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png b/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png new file mode 100644 index 00000000..0e26eff5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png.import new file mode 100644 index 00000000..061fe4d5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-extensions.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bla1gi614wmcd" +path="res://.godot/imported/cs-extensions.png-f61ea0e53bc567e432501e2e52dd7fb4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-extensions.png" +dest_files=["res://.godot/imported/cs-extensions.png-f61ea0e53bc567e432501e2e52dd7fb4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png b/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png new file mode 100644 index 00000000..7ed03533 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png.import new file mode 100644 index 00000000..e5305db0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-fonts.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbm6afpm1dumc" +path="res://.godot/imported/cs-fonts.png-78162ed6819ea3828af8b0b752f673b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-fonts.png" +dest_files=["res://.godot/imported/cs-fonts.png-78162ed6819ea3828af8b0b752f673b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-general.png b/tools/configurator/assets/icons/pixelitos/16/cs-general.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-general.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-general.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-general.png.import new file mode 100644 index 00000000..9fbe109b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-general.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4oxfl5lny1qh" +path="res://.godot/imported/cs-general.png-8300c75cbe4d0bf640f0f7624b05a200.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-general.png" +dest_files=["res://.godot/imported/cs-general.png-8300c75cbe4d0bf640f0f7624b05a200.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png b/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png.import new file mode 100644 index 00000000..9994af42 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxp0hekahgcni" +path="res://.godot/imported/cs-keyboard.png-c9c1cc68a3be91e0096425fe73957282.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-keyboard.png" +dest_files=["res://.godot/imported/cs-keyboard.png-c9c1cc68a3be91e0096425fe73957282.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png b/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png new file mode 100644 index 00000000..f22eacca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png.import new file mode 100644 index 00000000..494546b3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-mouse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp077nl0led6q" +path="res://.godot/imported/cs-mouse.png-75bec4b241928bf31bd7edceb6b1560a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-mouse.png" +dest_files=["res://.godot/imported/cs-mouse.png-75bec4b241928bf31bd7edceb6b1560a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-network.png b/tools/configurator/assets/icons/pixelitos/16/cs-network.png new file mode 100644 index 00000000..24cc0d0f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-network.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-network.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-network.png.import new file mode 100644 index 00000000..de6d4e0f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-network.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqmenjsyjudxk" +path="res://.godot/imported/cs-network.png-bb4f562efbd26272c3505ad56cd3aa78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-network.png" +dest_files=["res://.godot/imported/cs-network.png-bb4f562efbd26272c3505ad56cd3aa78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png b/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png new file mode 100644 index 00000000..15912542 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png.import new file mode 100644 index 00000000..18d1c38b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-notifications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsf5wwyw35s4n" +path="res://.godot/imported/cs-notifications.png-0b054292f13db414e6a8bb693df25739.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-notifications.png" +dest_files=["res://.godot/imported/cs-notifications.png-0b054292f13db414e6a8bb693df25739.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png b/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png new file mode 100644 index 00000000..a00b8492 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png.import new file mode 100644 index 00000000..c0ea164e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-online-accounts.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bht5o2hovb281" +path="res://.godot/imported/cs-online-accounts.png-8cb90b644d0bb01e55439015bdcacda9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-online-accounts.png" +dest_files=["res://.godot/imported/cs-online-accounts.png-8cb90b644d0bb01e55439015bdcacda9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-overview.png b/tools/configurator/assets/icons/pixelitos/16/cs-overview.png new file mode 100644 index 00000000..23dbeb39 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-overview.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-overview.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-overview.png.import new file mode 100644 index 00000000..1fb62d96 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-overview.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bptusu0iq3vgj" +path="res://.godot/imported/cs-overview.png-e055bc4b20beedfbd0156ec826a07584.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-overview.png" +dest_files=["res://.godot/imported/cs-overview.png-e055bc4b20beedfbd0156ec826a07584.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-panel.png b/tools/configurator/assets/icons/pixelitos/16/cs-panel.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-panel.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-panel.png.import new file mode 100644 index 00000000..b218f6a9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gxnotx43ues0" +path="res://.godot/imported/cs-panel.png-3e66a63765a10880323643678e6bec64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-panel.png" +dest_files=["res://.godot/imported/cs-panel.png-3e66a63765a10880323643678e6bec64.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-power.png b/tools/configurator/assets/icons/pixelitos/16/cs-power.png new file mode 100644 index 00000000..035ae5ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-power.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-power.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-power.png.import new file mode 100644 index 00000000..7bd9a1c0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-power.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3p8cxkpk48to" +path="res://.godot/imported/cs-power.png-147adb8ee1b4cfcafe8566c43a723036.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-power.png" +dest_files=["res://.godot/imported/cs-power.png-147adb8ee1b4cfcafe8566c43a723036.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-printer.png b/tools/configurator/assets/icons/pixelitos/16/cs-printer.png new file mode 100644 index 00000000..2c8c07a4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-printer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-printer.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-printer.png.import new file mode 100644 index 00000000..79177f74 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-printer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb05nefitlg1y" +path="res://.godot/imported/cs-printer.png-ac01f7d84f38ccdafc0b57488b2b2701.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-printer.png" +dest_files=["res://.godot/imported/cs-printer.png-ac01f7d84f38ccdafc0b57488b2b2701.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png b/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png new file mode 100644 index 00000000..50b05eef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png.import new file mode 100644 index 00000000..04fdd987 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-privacy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://26wnn24jivcv" +path="res://.godot/imported/cs-privacy.png-6cbad09c65166541c7b4f9ae224bddfd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-privacy.png" +dest_files=["res://.godot/imported/cs-privacy.png-6cbad09c65166541c7b4f9ae224bddfd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png b/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png new file mode 100644 index 00000000..5e845382 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png.import new file mode 100644 index 00000000..5cc8a162 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-screensaver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmpr5j4un1a23" +path="res://.godot/imported/cs-screensaver.png-37de338acf5f97a1a6d334ee90945065.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-screensaver.png" +dest_files=["res://.godot/imported/cs-screensaver.png-37de338acf5f97a1a6d334ee90945065.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-sound.png b/tools/configurator/assets/icons/pixelitos/16/cs-sound.png new file mode 100644 index 00000000..13750d5e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-sound.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-sound.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-sound.png.import new file mode 100644 index 00000000..f3050c4a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-sound.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3b1jh5rfyvvu" +path="res://.godot/imported/cs-sound.png-528cbae3ff7849345395c2b0d5723b75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-sound.png" +dest_files=["res://.godot/imported/cs-sound.png-528cbae3ff7849345395c2b0d5723b75.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png b/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png new file mode 100644 index 00000000..65460949 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png.import new file mode 100644 index 00000000..d8836dde --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-startup-programs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by5qvudsemmku" +path="res://.godot/imported/cs-startup-programs.png-16fa0aab4bc867d4fb0c4b27e7b53dd8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-startup-programs.png" +dest_files=["res://.godot/imported/cs-startup-programs.png-16fa0aab4bc867d4fb0c4b27e7b53dd8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png b/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png new file mode 100644 index 00000000..79046b27 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png.import new file mode 100644 index 00000000..4c56b80e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-tablet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tm4py8urlf7p" +path="res://.godot/imported/cs-tablet.png-6b4d9d79c8d29eed9f262a37ed601057.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-tablet.png" +dest_files=["res://.godot/imported/cs-tablet.png-6b4d9d79c8d29eed9f262a37ed601057.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-themes.png b/tools/configurator/assets/icons/pixelitos/16/cs-themes.png new file mode 100644 index 00000000..31f776b4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-themes.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-themes.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-themes.png.import new file mode 100644 index 00000000..4fde8d0a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-themes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cegfc6hhvqts5" +path="res://.godot/imported/cs-themes.png-2ecf9ea40fd21152606c434f0d488c1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-themes.png" +dest_files=["res://.godot/imported/cs-themes.png-2ecf9ea40fd21152606c434f0d488c1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png b/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png new file mode 100644 index 00000000..99190b36 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png.import new file mode 100644 index 00000000..fad8a2e9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-tiling.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cot1lfrqa78qx" +path="res://.godot/imported/cs-tiling.png-8c5866d3c6e61ad5590add12698cfbc9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-tiling.png" +dest_files=["res://.godot/imported/cs-tiling.png-8c5866d3c6e61ad5590add12698cfbc9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png b/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png new file mode 100644 index 00000000..71112dbc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png.import new file mode 100644 index 00000000..d4b19dd1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-universal-access.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cicts6tjfyvfb" +path="res://.godot/imported/cs-universal-access.png-5c3906658657307ad0964f073acdb43a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-universal-access.png" +dest_files=["res://.godot/imported/cs-universal-access.png-5c3906658657307ad0964f073acdb43a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-user.png b/tools/configurator/assets/icons/pixelitos/16/cs-user.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-user.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-user.png.import new file mode 100644 index 00000000..837371c7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuqxwr2at6wsq" +path="res://.godot/imported/cs-user.png-8d141f8b1cd03beace4a4a180388a361.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-user.png" +dest_files=["res://.godot/imported/cs-user.png-8d141f8b1cd03beace4a4a180388a361.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-windows.png b/tools/configurator/assets/icons/pixelitos/16/cs-windows.png new file mode 100644 index 00000000..004f34cd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-windows.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-windows.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-windows.png.import new file mode 100644 index 00000000..423210c2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-windows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1nfw28nh4le3" +path="res://.godot/imported/cs-windows.png-fee03d3f2984e64d008e22758abd8000.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-windows.png" +dest_files=["res://.godot/imported/cs-windows.png-fee03d3f2984e64d008e22758abd8000.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png b/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png new file mode 100644 index 00000000..a03ea0be Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png.import b/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png.import new file mode 100644 index 00000000..105b5f09 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/cs-workspaces.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfrgl20wtmkik" +path="res://.godot/imported/cs-workspaces.png-0e8fb0bee4ce4614cd63897237de2600.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/cs-workspaces.png" +dest_files=["res://.godot/imported/cs-workspaces.png-0e8fb0bee4ce4614cd63897237de2600.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png b/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png new file mode 100644 index 00000000..44b33e80 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png.import b/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png.import new file mode 100644 index 00000000..fdae22e7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/desktop-environment-xfce.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clfekmume7u1n" +path="res://.godot/imported/desktop-environment-xfce.png-0399aecffd9af079bb6f184d85ed7366.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/desktop-environment-xfce.png" +dest_files=["res://.godot/imported/desktop-environment-xfce.png-0399aecffd9af079bb6f184d85ed7366.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/dialog-password.png b/tools/configurator/assets/icons/pixelitos/16/dialog-password.png new file mode 100644 index 00000000..ec757ca1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/dialog-password.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/dialog-password.png.import b/tools/configurator/assets/icons/pixelitos/16/dialog-password.png.import new file mode 100644 index 00000000..b430e078 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/dialog-password.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://swykt5ar3ylx" +path="res://.godot/imported/dialog-password.png-d577e23ece8e1e1cd8943c7aa0d0073a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/dialog-password.png" +dest_files=["res://.godot/imported/dialog-password.png-d577e23ece8e1e1cd8943c7aa0d0073a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/discord.png b/tools/configurator/assets/icons/pixelitos/16/discord.png new file mode 100644 index 00000000..2fbcf2da Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/discord.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/discord.png.import b/tools/configurator/assets/icons/pixelitos/16/discord.png.import new file mode 100644 index 00000000..add476d7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/discord.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcif46g20067f" +path="res://.godot/imported/discord.png-3cd609ca9992195c2a1f5e00ce795122.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/discord.png" +dest_files=["res://.godot/imported/discord.png-3cd609ca9992195c2a1f5e00ce795122.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png b/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png new file mode 100644 index 00000000..2831a1f7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png.import b/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png.import new file mode 100644 index 00000000..11314049 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/disk-usage-analyzer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4aysp57oy2qu" +path="res://.godot/imported/disk-usage-analyzer.png-09e4c0b57bad50aba44f2c61c6cabb50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/disk-usage-analyzer.png" +dest_files=["res://.godot/imported/disk-usage-analyzer.png-09e4c0b57bad50aba44f2c61c6cabb50.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png b/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png new file mode 100644 index 00000000..22ee5f71 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png.import b/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png.import new file mode 100644 index 00000000..20b7b5eb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/document-open-recent.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blbxr0vki6yyc" +path="res://.godot/imported/document-open-recent.png-69e9f5f0a11a00d89f690535bcf5f099.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/document-open-recent.png" +dest_files=["res://.godot/imported/document-open-recent.png-69e9f5f0a11a00d89f690535bcf5f099.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png b/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png new file mode 100644 index 00000000..527ffc5b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png.import b/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png.import new file mode 100644 index 00000000..2cbc3b77 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/dosbox-x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mdek5qmpdf4h" +path="res://.godot/imported/dosbox-x.png-33a7fb0579b7ff54220b4747f2b76779.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/dosbox-x.png" +dest_files=["res://.godot/imported/dosbox-x.png-33a7fb0579b7ff54220b4747f2b76779.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/dosbox.png b/tools/configurator/assets/icons/pixelitos/16/dosbox.png new file mode 100644 index 00000000..116286b6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/dosbox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/dosbox.png.import b/tools/configurator/assets/icons/pixelitos/16/dosbox.png.import new file mode 100644 index 00000000..ed27eccc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/dosbox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfpuv2r0stram" +path="res://.godot/imported/dosbox.png-907b8e54362a5d70e5a4465d0cd80a8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/dosbox.png" +dest_files=["res://.godot/imported/dosbox.png-907b8e54362a5d70e5a4465d0cd80a8d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png b/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png new file mode 100644 index 00000000..6452e304 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png.import b/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png.import new file mode 100644 index 00000000..a6c2d5d0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/drive-removable-media.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cal5bsvdurlel" +path="res://.godot/imported/drive-removable-media.png-a4b197481068753db220d4f2ec3b39c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/drive-removable-media.png" +dest_files=["res://.godot/imported/drive-removable-media.png-a4b197481068753db220d4f2ec3b39c7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/duck_tank.png b/tools/configurator/assets/icons/pixelitos/16/duck_tank.png new file mode 100644 index 00000000..eee34998 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/duck_tank.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/duck_tank.png.import b/tools/configurator/assets/icons/pixelitos/16/duck_tank.png.import new file mode 100644 index 00000000..373e2a06 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/duck_tank.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sum6qjymlg76" +path="res://.godot/imported/duck_tank.png-42c0e635589e44802aa3a79a1c280220.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/duck_tank.png" +dest_files=["res://.godot/imported/duck_tank.png-42c0e635589e44802aa3a79a1c280220.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png b/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png new file mode 100644 index 00000000..c87c1910 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png.import b/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png.import new file mode 100644 index 00000000..05ebe109 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/duckstation-nogui.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1ft7nlax58wy" +path="res://.godot/imported/duckstation-nogui.png-4503a55f82125853bf53b363320a022e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/duckstation-nogui.png" +dest_files=["res://.godot/imported/duckstation-nogui.png-4503a55f82125853bf53b363320a022e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/duckstation.png b/tools/configurator/assets/icons/pixelitos/16/duckstation.png new file mode 100644 index 00000000..c87c1910 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/duckstation.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/duckstation.png.import b/tools/configurator/assets/icons/pixelitos/16/duckstation.png.import new file mode 100644 index 00000000..1997ad1a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/duckstation.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cglkkre7ti4m2" +path="res://.godot/imported/duckstation.png-08a97dc99ac8637772054763e9a00856.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/duckstation.png" +dest_files=["res://.godot/imported/duckstation.png-08a97dc99ac8637772054763e9a00856.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/emacs.png b/tools/configurator/assets/icons/pixelitos/16/emacs.png new file mode 100644 index 00000000..c8f045ca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/emacs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/emacs.png.import b/tools/configurator/assets/icons/pixelitos/16/emacs.png.import new file mode 100644 index 00000000..63891fbf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/emacs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvjpjyn072jtp" +path="res://.godot/imported/emacs.png-06c5063e93233a39afcab46ee5b244cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/emacs.png" +dest_files=["res://.godot/imported/emacs.png-06c5063e93233a39afcab46ee5b244cb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/email.png b/tools/configurator/assets/icons/pixelitos/16/email.png new file mode 100644 index 00000000..9533dc87 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/email.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/email.png.import b/tools/configurator/assets/icons/pixelitos/16/email.png.import new file mode 100644 index 00000000..e01a5406 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/email.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dic0ajmwd23bl" +path="res://.godot/imported/email.png-ca04bce90d02c13fdfc7fd5bd5264916.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/email.png" +dest_files=["res://.godot/imported/email.png-ca04bce90d02c13fdfc7fd5bd5264916.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/es-de.png b/tools/configurator/assets/icons/pixelitos/16/es-de.png new file mode 100644 index 00000000..23c3fd70 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/es-de.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/es-de.png.import b/tools/configurator/assets/icons/pixelitos/16/es-de.png.import new file mode 100644 index 00000000..9311237b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/es-de.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cu4iuhbkj6u7i" +path="res://.godot/imported/es-de.png-a3db8ee09854beeb36717e8adc59667e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/es-de.png" +dest_files=["res://.godot/imported/es-de.png-a3db8ee09854beeb36717e8adc59667e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png b/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png new file mode 100644 index 00000000..af10d7e4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png.import b/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png.import new file mode 100644 index 00000000..5872a619 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/eu.vcmi.VCMI.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://636hicya124r" +path="res://.godot/imported/eu.vcmi.VCMI.png-8c3370d5941c9e3fe25646177f575a87.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/eu.vcmi.VCMI.png" +dest_files=["res://.godot/imported/eu.vcmi.VCMI.png-8c3370d5941c9e3fe25646177f575a87.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/facebook.png b/tools/configurator/assets/icons/pixelitos/16/facebook.png new file mode 100644 index 00000000..bd298a13 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/facebook.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/facebook.png.import b/tools/configurator/assets/icons/pixelitos/16/facebook.png.import new file mode 100644 index 00000000..275f959b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/facebook.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxatvsyyrjkge" +path="res://.godot/imported/facebook.png-00175920e3b1b811b3e30b89368f1a8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/facebook.png" +dest_files=["res://.godot/imported/facebook.png-00175920e3b1b811b3e30b89368f1a8e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/fbneo.png b/tools/configurator/assets/icons/pixelitos/16/fbneo.png new file mode 100644 index 00000000..5dcd5975 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/fbneo.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/fbneo.png.import b/tools/configurator/assets/icons/pixelitos/16/fbneo.png.import new file mode 100644 index 00000000..d3e683d6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/fbneo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7g7kap0mom6r" +path="res://.godot/imported/fbneo.png-a4c10cdbcf9e01e39a6adc47bf426a98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/fbneo.png" +dest_files=["res://.godot/imported/fbneo.png-a4c10cdbcf9e01e39a6adc47bf426a98.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/feh.png b/tools/configurator/assets/icons/pixelitos/16/feh.png new file mode 100644 index 00000000..0bdbb16c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/feh.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/feh.png.import b/tools/configurator/assets/icons/pixelitos/16/feh.png.import new file mode 100644 index 00000000..1ece228e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/feh.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtg2dq5uo8vso" +path="res://.godot/imported/feh.png-e5b41f77ef09eac3e7f5ea6abc6c26b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/feh.png" +dest_files=["res://.godot/imported/feh.png-e5b41f77ef09eac3e7f5ea6abc6c26b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/file-roller.png b/tools/configurator/assets/icons/pixelitos/16/file-roller.png new file mode 100644 index 00000000..f94f6e1e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/file-roller.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/file-roller.png.import b/tools/configurator/assets/icons/pixelitos/16/file-roller.png.import new file mode 100644 index 00000000..5368a996 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/file-roller.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://617bc863rel3" +path="res://.godot/imported/file-roller.png-ebae1999c0d2dabb5f06e4ead986fc9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/file-roller.png" +dest_files=["res://.godot/imported/file-roller.png-ebae1999c0d2dabb5f06e4ead986fc9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png b/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png.import b/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png.import new file mode 100644 index 00000000..0a799137 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/file-system-manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwmw5vccl76o8" +path="res://.godot/imported/file-system-manager.png-2792dbce38c617565e2deba1f00450b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/file-system-manager.png" +dest_files=["res://.godot/imported/file-system-manager.png-2792dbce38c617565e2deba1f00450b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/filezilla.png b/tools/configurator/assets/icons/pixelitos/16/filezilla.png new file mode 100644 index 00000000..e717893b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/filezilla.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/filezilla.png.import b/tools/configurator/assets/icons/pixelitos/16/filezilla.png.import new file mode 100644 index 00000000..5a003ff8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/filezilla.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uou28wwaldua" +path="res://.godot/imported/filezilla.png-15e5f038ffa36b6a492c0874b43f0a68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/filezilla.png" +dest_files=["res://.godot/imported/filezilla.png-15e5f038ffa36b6a492c0874b43f0a68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/firefox.png b/tools/configurator/assets/icons/pixelitos/16/firefox.png new file mode 100644 index 00000000..73457b6a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/firefox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/firefox.png.import b/tools/configurator/assets/icons/pixelitos/16/firefox.png.import new file mode 100644 index 00000000..e7eae868 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/firefox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6e1tgfc4ap0p" +path="res://.godot/imported/firefox.png-ecdf0c861938ba3725ca5ce45d37dd3b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/firefox.png" +dest_files=["res://.godot/imported/firefox.png-ecdf0c861938ba3725ca5ce45d37dd3b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/flycast.png b/tools/configurator/assets/icons/pixelitos/16/flycast.png new file mode 100644 index 00000000..1e5289d2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/flycast.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/flycast.png.import b/tools/configurator/assets/icons/pixelitos/16/flycast.png.import new file mode 100644 index 00000000..16f0bbca --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/flycast.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddrop57dvpox8" +path="res://.godot/imported/flycast.png-e841973f96e1142a71c26c001a3cde10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/flycast.png" +dest_files=["res://.godot/imported/flycast.png-e841973f96e1142a71c26c001a3cde10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/fuse.png b/tools/configurator/assets/icons/pixelitos/16/fuse.png new file mode 100644 index 00000000..ec2e5c0c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/fuse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/fuse.png.import b/tools/configurator/assets/icons/pixelitos/16/fuse.png.import new file mode 100644 index 00000000..6dd4436c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/fuse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfsm3snx12y6f" +path="res://.godot/imported/fuse.png-1ef21c4da3a35f683daafd99d476394b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/fuse.png" +dest_files=["res://.godot/imported/fuse.png-1ef21c4da3a35f683daafd99d476394b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/futurepinball.png b/tools/configurator/assets/icons/pixelitos/16/futurepinball.png new file mode 100644 index 00000000..7d42bdb8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/futurepinball.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/futurepinball.png.import b/tools/configurator/assets/icons/pixelitos/16/futurepinball.png.import new file mode 100644 index 00000000..65bd8e1d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/futurepinball.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qgegtsotc220" +path="res://.godot/imported/futurepinball.png-510a1cc8227a9489ef547d5278bedd5a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/futurepinball.png" +dest_files=["res://.godot/imported/futurepinball.png-510a1cc8227a9489ef547d5278bedd5a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor.png b/tools/configurator/assets/icons/pixelitos/16/gcolor.png new file mode 100644 index 00000000..c2171703 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gcolor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor.png.import b/tools/configurator/assets/icons/pixelitos/16/gcolor.png.import new file mode 100644 index 00000000..82c9705f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gcolor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbe0wkvuim3tf" +path="res://.godot/imported/gcolor.png-2a0a8885f23115daa29c9ad99d1ead1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gcolor.png" +dest_files=["res://.godot/imported/gcolor.png-2a0a8885f23115daa29c9ad99d1ead1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor2.png b/tools/configurator/assets/icons/pixelitos/16/gcolor2.png new file mode 100644 index 00000000..c2171703 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gcolor2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor2.png.import b/tools/configurator/assets/icons/pixelitos/16/gcolor2.png.import new file mode 100644 index 00000000..74502043 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gcolor2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1mu856aoqm6q" +path="res://.godot/imported/gcolor2.png-10efc9e325b483c0fea6b78358f0036e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gcolor2.png" +dest_files=["res://.godot/imported/gcolor2.png-10efc9e325b483c0fea6b78358f0036e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor3.png b/tools/configurator/assets/icons/pixelitos/16/gcolor3.png new file mode 100644 index 00000000..c2171703 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gcolor3.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gcolor3.png.import b/tools/configurator/assets/icons/pixelitos/16/gcolor3.png.import new file mode 100644 index 00000000..b4674fd5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gcolor3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccpun4ob1kdvl" +path="res://.godot/imported/gcolor3.png-242db9efd4bc583eb480b5fb3db3e8c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gcolor3.png" +dest_files=["res://.godot/imported/gcolor3.png-242db9efd4bc583eb480b5fb3db3e8c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png b/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png new file mode 100644 index 00000000..7deecf74 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png.import b/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png.import new file mode 100644 index 00000000..82eb1788 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/geometry-dash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdsvfrk2lk2ys" +path="res://.godot/imported/geometry-dash.png-fc4c5ef7abee285e9aba714451b14a65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/geometry-dash.png" +dest_files=["res://.godot/imported/geometry-dash.png-fc4c5ef7abee285e9aba714451b14a65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gimp.png b/tools/configurator/assets/icons/pixelitos/16/gimp.png new file mode 100644 index 00000000..057fd0dd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gimp.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gimp.png.import b/tools/configurator/assets/icons/pixelitos/16/gimp.png.import new file mode 100644 index 00000000..7e409d26 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gimp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxst3yki6w8c6" +path="res://.godot/imported/gimp.png-a07b56708a32f616693df20eec6cd204.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gimp.png" +dest_files=["res://.godot/imported/gimp.png-a07b56708a32f616693df20eec6cd204.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/github-desktop.png b/tools/configurator/assets/icons/pixelitos/16/github-desktop.png new file mode 100644 index 00000000..e83c0a58 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/github-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/github-desktop.png.import b/tools/configurator/assets/icons/pixelitos/16/github-desktop.png.import new file mode 100644 index 00000000..8b00894b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/github-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blqsabibgejli" +path="res://.godot/imported/github-desktop.png-012bc0b28ad4861c4e4b911582ef9e5b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/github-desktop.png" +dest_files=["res://.godot/imported/github-desktop.png-012bc0b28ad4861c4e4b911582ef9e5b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/github.png b/tools/configurator/assets/icons/pixelitos/16/github.png new file mode 100644 index 00000000..84f72c33 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/github.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/github.png.import b/tools/configurator/assets/icons/pixelitos/16/github.png.import new file mode 100644 index 00000000..d8023686 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/github.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djuddsdqdandx" +path="res://.godot/imported/github.png-32513112eff22368a8dbe7d71f3813a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/github.png" +dest_files=["res://.godot/imported/github.png-32513112eff22368a8dbe7d71f3813a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/godot.png b/tools/configurator/assets/icons/pixelitos/16/godot.png new file mode 100644 index 00000000..293f36e8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/godot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/godot.png.import b/tools/configurator/assets/icons/pixelitos/16/godot.png.import new file mode 100644 index 00000000..efc297b5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/godot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8a0o2mbe6473" +path="res://.godot/imported/godot.png-c8c4905fcd68aeb804516cfeeff7a2fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/godot.png" +dest_files=["res://.godot/imported/godot.png-c8c4905fcd68aeb804516cfeeff7a2fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/google-chrome.png b/tools/configurator/assets/icons/pixelitos/16/google-chrome.png new file mode 100644 index 00000000..c9654dd3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/google-chrome.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/google-chrome.png.import b/tools/configurator/assets/icons/pixelitos/16/google-chrome.png.import new file mode 100644 index 00000000..859577e1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/google-chrome.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8knsomgrekue" +path="res://.godot/imported/google-chrome.png-39d1b445286b86b516d55f91c3b66947.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/google-chrome.png" +dest_files=["res://.godot/imported/google-chrome.png-39d1b445286b86b516d55f91c3b66947.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gparted.png b/tools/configurator/assets/icons/pixelitos/16/gparted.png new file mode 100644 index 00000000..2831a1f7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gparted.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gparted.png.import b/tools/configurator/assets/icons/pixelitos/16/gparted.png.import new file mode 100644 index 00000000..3c507e7a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gparted.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq32qm32kwxeu" +path="res://.godot/imported/gparted.png-f0d2e70a04d0e185e647fdeea067a3ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gparted.png" +dest_files=["res://.godot/imported/gparted.png-f0d2e70a04d0e185e647fdeea067a3ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gsplus.png b/tools/configurator/assets/icons/pixelitos/16/gsplus.png new file mode 100644 index 00000000..146683f8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gsplus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gsplus.png.import b/tools/configurator/assets/icons/pixelitos/16/gsplus.png.import new file mode 100644 index 00000000..768d62c7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gsplus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l14nalgsiobv" +path="res://.godot/imported/gsplus.png-8c107be9bc9b83635c9974be0dc797d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gsplus.png" +dest_files=["res://.godot/imported/gsplus.png-8c107be9bc9b83635c9974be0dc797d5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png b/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png.import b/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png.import new file mode 100644 index 00000000..c06b5219 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gtk-preferences.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n2mnwd68w7wa" +path="res://.godot/imported/gtk-preferences.png-21d426063b89b39f3cc1aa289fe28b3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gtk-preferences.png" +dest_files=["res://.godot/imported/gtk-preferences.png-21d426063b89b39f3cc1aa289fe28b3c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png b/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png new file mode 100644 index 00000000..c2171703 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png.import b/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png.import new file mode 100644 index 00000000..4c6e14a6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gtk-select-color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csx0tl3en0bry" +path="res://.godot/imported/gtk-select-color.png-bff933f07447f05c8e98016f8df6d52b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gtk-select-color.png" +dest_files=["res://.godot/imported/gtk-select-color.png-bff933f07447f05c8e98016f8df6d52b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/gvim.png b/tools/configurator/assets/icons/pixelitos/16/gvim.png new file mode 100644 index 00000000..326ea235 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/gvim.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/gvim.png.import b/tools/configurator/assets/icons/pixelitos/16/gvim.png.import new file mode 100644 index 00000000..8fd9cead --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/gvim.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://musia1qne3m0" +path="res://.godot/imported/gvim.png-444cc90a2198e0e70a5eb027373ff964.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/gvim.png" +dest_files=["res://.godot/imported/gvim.png-444cc90a2198e0e70a5eb027373ff964.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/half-life.png b/tools/configurator/assets/icons/pixelitos/16/half-life.png new file mode 100644 index 00000000..9a8277b2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/half-life.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/half-life.png.import b/tools/configurator/assets/icons/pixelitos/16/half-life.png.import new file mode 100644 index 00000000..a87f5b2f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/half-life.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk2th2kc226j1" +path="res://.godot/imported/half-life.png-bfb2287cb46710e9f8bf5247ae41a7ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/half-life.png" +dest_files=["res://.godot/imported/half-life.png-bfb2287cb46710e9f8bf5247ae41a7ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/half-life2.png b/tools/configurator/assets/icons/pixelitos/16/half-life2.png new file mode 100644 index 00000000..5783747f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/half-life2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/half-life2.png.import b/tools/configurator/assets/icons/pixelitos/16/half-life2.png.import new file mode 100644 index 00000000..8c71f298 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/half-life2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ot0bv3vl2a0h" +path="res://.godot/imported/half-life2.png-734d0a7a3c28a8b6af77096e77f921ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/half-life2.png" +dest_files=["res://.godot/imported/half-life2.png-734d0a7a3c28a8b6af77096e77f921ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/helltaker.png b/tools/configurator/assets/icons/pixelitos/16/helltaker.png new file mode 100644 index 00000000..c336011d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/helltaker.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/helltaker.png.import b/tools/configurator/assets/icons/pixelitos/16/helltaker.png.import new file mode 100644 index 00000000..9e4239c7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/helltaker.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbk2vaayur3bj" +path="res://.godot/imported/helltaker.png-4f61c48ad0d6dc15366d03ce935a7b15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/helltaker.png" +dest_files=["res://.godot/imported/helltaker.png-4f61c48ad0d6dc15366d03ce935a7b15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/help-about.png b/tools/configurator/assets/icons/pixelitos/16/help-about.png new file mode 100644 index 00000000..44c13f02 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/help-about.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/help-about.png.import b/tools/configurator/assets/icons/pixelitos/16/help-about.png.import new file mode 100644 index 00000000..2c009063 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/help-about.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://claqi3etq1e17" +path="res://.godot/imported/help-about.png-4da6f2da4885318bd40bdcf6f79e8615.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/help-about.png" +dest_files=["res://.godot/imported/help-about.png-4da6f2da4885318bd40bdcf6f79e8615.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/help-browser.png b/tools/configurator/assets/icons/pixelitos/16/help-browser.png new file mode 100644 index 00000000..0e8b1912 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/help-browser.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/help-browser.png.import b/tools/configurator/assets/icons/pixelitos/16/help-browser.png.import new file mode 100644 index 00000000..631ef6ed --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/help-browser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4sv1u0ljef5n" +path="res://.godot/imported/help-browser.png-01fa512dbe0ee298582239fa6db121d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/help-browser.png" +dest_files=["res://.godot/imported/help-browser.png-01fa512dbe0ee298582239fa6db121d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/help-contents.png b/tools/configurator/assets/icons/pixelitos/16/help-contents.png new file mode 100644 index 00000000..0e8b1912 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/help-contents.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/help-contents.png.import b/tools/configurator/assets/icons/pixelitos/16/help-contents.png.import new file mode 100644 index 00000000..ab633269 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/help-contents.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbtmluecsbimt" +path="res://.godot/imported/help-contents.png-036ca57e2818c6f39df3eefb58488443.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/help-contents.png" +dest_files=["res://.godot/imported/help-contents.png-036ca57e2818c6f39df3eefb58488443.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/help.contents.png b/tools/configurator/assets/icons/pixelitos/16/help.contents.png new file mode 100644 index 00000000..0e8b1912 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/help.contents.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/help.contents.png.import b/tools/configurator/assets/icons/pixelitos/16/help.contents.png.import new file mode 100644 index 00000000..bfccc44c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/help.contents.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwtku23kynqmt" +path="res://.godot/imported/help.contents.png-014a41aac38f13741c2a2ec6e2bae271.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/help.contents.png" +dest_files=["res://.godot/imported/help.contents.png-014a41aac38f13741c2a2ec6e2bae271.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/htop.png b/tools/configurator/assets/icons/pixelitos/16/htop.png new file mode 100644 index 00000000..7d86083a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/htop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/htop.png.import b/tools/configurator/assets/icons/pixelitos/16/htop.png.import new file mode 100644 index 00000000..9aeb682b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/htop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clpsgskeigylp" +path="res://.godot/imported/htop.png-f664cf520d24e73bc40baa0102830b7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/htop.png" +dest_files=["res://.godot/imported/htop.png-f664cf520d24e73bc40baa0102830b7d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/hwloc.png b/tools/configurator/assets/icons/pixelitos/16/hwloc.png new file mode 100644 index 00000000..99ddb5e1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/hwloc.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/hwloc.png.import b/tools/configurator/assets/icons/pixelitos/16/hwloc.png.import new file mode 100644 index 00000000..756c51c2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/hwloc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uh2aqfpf4tye" +path="res://.godot/imported/hwloc.png-09a9dd3b44d35ebe5fa6957389a8cce6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/hwloc.png" +dest_files=["res://.godot/imported/hwloc.png-09a9dd3b44d35ebe5fa6957389a8cce6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/hypseus.png b/tools/configurator/assets/icons/pixelitos/16/hypseus.png new file mode 100644 index 00000000..d2edb360 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/hypseus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/hypseus.png.import b/tools/configurator/assets/icons/pixelitos/16/hypseus.png.import new file mode 100644 index 00000000..33bff7a3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/hypseus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nusdh25gqrtr" +path="res://.godot/imported/hypseus.png-4324a56a39640ad549a5ff09d388a8a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/hypseus.png" +dest_files=["res://.godot/imported/hypseus.png-4324a56a39640ad549a5ff09d388a8a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png b/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png.import b/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png.import new file mode 100644 index 00000000..21a6b1ae --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ibus-setup.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djj8420c72jsw" +path="res://.godot/imported/ibus-setup.png-442886b12a72aba5c7f08aa8ae5ef01d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ibus-setup.png" +dest_files=["res://.godot/imported/ibus-setup.png-442886b12a72aba5c7f08aa8ae5ef01d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ikemego.png b/tools/configurator/assets/icons/pixelitos/16/ikemego.png new file mode 100644 index 00000000..6008d759 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ikemego.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ikemego.png.import b/tools/configurator/assets/icons/pixelitos/16/ikemego.png.import new file mode 100644 index 00000000..4dfeddcb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ikemego.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxma7pcd0m026" +path="res://.godot/imported/ikemego.png-f809fe1e5960c2b46ba3c4da5280c8cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ikemego.png" +dest_files=["res://.godot/imported/ikemego.png-f809fe1e5960c2b46ba3c4da5280c8cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png b/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png new file mode 100644 index 00000000..961b86bd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png.import b/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png.import new file mode 100644 index 00000000..f69f9122 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/info.cemu.Cemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwf6d80b038l3" +path="res://.godot/imported/info.cemu.Cemu.png-28769a587567a67166ca5b3342c8234e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/info.cemu.Cemu.png" +dest_files=["res://.godot/imported/info.cemu.Cemu.png-28769a587567a67166ca5b3342c8234e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/inkscape.png b/tools/configurator/assets/icons/pixelitos/16/inkscape.png new file mode 100644 index 00000000..c06d6369 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/inkscape.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/inkscape.png.import b/tools/configurator/assets/icons/pixelitos/16/inkscape.png.import new file mode 100644 index 00000000..ef447f5c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/inkscape.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn6m3oqrbvrbf" +path="res://.godot/imported/inkscape.png-46836af15990f352bde369353d6bcd0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/inkscape.png" +dest_files=["res://.godot/imported/inkscape.png-46836af15990f352bde369353d6bcd0b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png b/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png.import new file mode 100644 index 00000000..29b2ffc9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/input-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6q1kkqpont76" +path="res://.godot/imported/input-keyboard.png-00bfdd9e62959a2dfe7be492e58ec198.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/input-keyboard.png" +dest_files=["res://.godot/imported/input-keyboard.png-00bfdd9e62959a2dfe7be492e58ec198.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png b/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png.import b/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png.import new file mode 100644 index 00000000..afbb08c6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/internet-web-browser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2yhqt60p8yca" +path="res://.godot/imported/internet-web-browser.png-f1a9d86d3b61ab05ac02bdd6a3face2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/internet-web-browser.png" +dest_files=["res://.godot/imported/internet-web-browser.png-f1a9d86d3b61ab05ac02bdd6a3face2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png b/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png new file mode 100644 index 00000000..e2a38b32 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png.import b/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png.import new file mode 100644 index 00000000..708c94e6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blskccp4w0qnw" +path="res://.godot/imported/io.github.antimicrox.antimicrox.png-b57882a79081b1759b7c41ba7c7b2067.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/io.github.antimicrox.antimicrox.png" +dest_files=["res://.godot/imported/io.github.antimicrox.antimicrox.png-b57882a79081b1759b7c41ba7c7b2067.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png b/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png new file mode 100644 index 00000000..e53a860a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png.import b/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png.import new file mode 100644 index 00000000..555c993e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djmfjqju5xb3c" +path="res://.godot/imported/io.github.ihhub.Fheroes2.png-54f848f5acaf9af2cc581d2c0cb96c1a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/io.github.ihhub.Fheroes2.png" +dest_files=["res://.godot/imported/io.github.ihhub.Fheroes2.png-54f848f5acaf9af2cc581d2c0cb96c1a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/itch.png b/tools/configurator/assets/icons/pixelitos/16/itch.png new file mode 100644 index 00000000..9aa9487c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/itch.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/itch.png.import b/tools/configurator/assets/icons/pixelitos/16/itch.png.import new file mode 100644 index 00000000..87b68247 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/itch.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://es6eosj27aie" +path="res://.godot/imported/itch.png-9e9885421891f602fa398dc263a4b134.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/itch.png" +dest_files=["res://.godot/imported/itch.png-9e9885421891f602fa398dc263a4b134.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png b/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png new file mode 100644 index 00000000..261c1a5d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png.import b/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png.import new file mode 100644 index 00000000..2f97e76e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kde-frameworks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmhsr44ijcy01" +path="res://.godot/imported/kde-frameworks.png-3a2874e92ddc005be7f0e511c29cd633.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kde-frameworks.png" +dest_files=["res://.godot/imported/kde-frameworks.png-3a2874e92ddc005be7f0e511c29cd633.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kdenlive.png b/tools/configurator/assets/icons/pixelitos/16/kdenlive.png new file mode 100644 index 00000000..cb14a856 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kdenlive.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kdenlive.png.import b/tools/configurator/assets/icons/pixelitos/16/kdenlive.png.import new file mode 100644 index 00000000..c8190fe9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kdenlive.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy76e2shrtck7" +path="res://.godot/imported/kdenlive.png-ccbdcca4907d4c957ea92e8402d848ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kdenlive.png" +dest_files=["res://.godot/imported/kdenlive.png-ccbdcca4907d4c957ea92e8402d848ba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kfontview.png b/tools/configurator/assets/icons/pixelitos/16/kfontview.png new file mode 100644 index 00000000..7ed03533 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kfontview.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kfontview.png.import b/tools/configurator/assets/icons/pixelitos/16/kfontview.png.import new file mode 100644 index 00000000..7ce4f182 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kfontview.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sfv5lry4iwbo" +path="res://.godot/imported/kfontview.png-ac2b0c47f76f382ed200c275d7f76ea2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kfontview.png" +dest_files=["res://.godot/imported/kfontview.png-ac2b0c47f76f382ed200c275d7f76ea2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/klipper.png b/tools/configurator/assets/icons/pixelitos/16/klipper.png new file mode 100644 index 00000000..96629dea Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/klipper.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/klipper.png.import b/tools/configurator/assets/icons/pixelitos/16/klipper.png.import new file mode 100644 index 00000000..2ad11823 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/klipper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t5hq6nr31vcv" +path="res://.godot/imported/klipper.png-3add0e59334bc5a4fd8d3d71a856c7af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/klipper.png" +dest_files=["res://.godot/imported/klipper.png-3add0e59334bc5a4fd8d3d71a856c7af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png b/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png new file mode 100644 index 00000000..b9c05361 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png.import b/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png.import new file mode 100644 index 00000000..29e7f237 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kmenuedit.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5wrbpq8qir2o" +path="res://.godot/imported/kmenuedit.png-5e8ce3192abea70feeb28c1f280267a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kmenuedit.png" +dest_files=["res://.godot/imported/kmenuedit.png-5e8ce3192abea70feeb28c1f280267a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/knetattach.png b/tools/configurator/assets/icons/pixelitos/16/knetattach.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/knetattach.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/knetattach.png.import b/tools/configurator/assets/icons/pixelitos/16/knetattach.png.import new file mode 100644 index 00000000..925a76e8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/knetattach.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://borbgat4bpipp" +path="res://.godot/imported/knetattach.png-63172d6799f2cf262829c2d533567def.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/knetattach.png" +dest_files=["res://.godot/imported/knetattach.png-63172d6799f2cf262829c2d533567def.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kotatogram.png b/tools/configurator/assets/icons/pixelitos/16/kotatogram.png new file mode 100644 index 00000000..98f6f3c6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kotatogram.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kotatogram.png.import b/tools/configurator/assets/icons/pixelitos/16/kotatogram.png.import new file mode 100644 index 00000000..d048d8c0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kotatogram.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlfx15qm0agnl" +path="res://.godot/imported/kotatogram.png-35e9f0c6d62addc0c3a19f6f7f0bc53c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kotatogram.png" +dest_files=["res://.godot/imported/kotatogram.png-35e9f0c6d62addc0c3a19f6f7f0bc53c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/krita.png b/tools/configurator/assets/icons/pixelitos/16/krita.png new file mode 100644 index 00000000..d2168838 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/krita.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/krita.png.import b/tools/configurator/assets/icons/pixelitos/16/krita.png.import new file mode 100644 index 00000000..1b3615f9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/krita.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7xhecrujl44x" +path="res://.godot/imported/krita.png-4f094c38b1aef3f3764d708557ef163e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/krita.png" +dest_files=["res://.godot/imported/krita.png-4f094c38b1aef3f3764d708557ef163e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png b/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png new file mode 100644 index 00000000..23e44a1d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png.import b/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png.import new file mode 100644 index 00000000..fb684af0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/kwalletmanager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo8swg58wm3yl" +path="res://.godot/imported/kwalletmanager.png-06df706feae8f5e8c042315687662687.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/kwalletmanager.png" +dest_files=["res://.godot/imported/kwalletmanager.png-06df706feae8f5e8c042315687662687.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png new file mode 100644 index 00000000..a78fb1cd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png.import new file mode 100644 index 00000000..08257dcb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-base.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cutsvu1u1hmmx" +path="res://.godot/imported/libreoffice-base.png-0da8370c0180b60173935d4e4cf02bba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-base.png" +dest_files=["res://.godot/imported/libreoffice-base.png-0da8370c0180b60173935d4e4cf02bba.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png new file mode 100644 index 00000000..f53b96dc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png.import new file mode 100644 index 00000000..0f4cc25c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-calc.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfvx4pgcjv8is" +path="res://.godot/imported/libreoffice-calc.png-c1927830b409492982508d873db0d11a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-calc.png" +dest_files=["res://.godot/imported/libreoffice-calc.png-c1927830b409492982508d873db0d11a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png new file mode 100644 index 00000000..d00d70e3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png.import new file mode 100644 index 00000000..ba03514e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-draw.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpgmssb0otx0c" +path="res://.godot/imported/libreoffice-draw.png-d0359d174fe19f92ef559e8784283dbd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-draw.png" +dest_files=["res://.godot/imported/libreoffice-draw.png-d0359d174fe19f92ef559e8784283dbd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png new file mode 100644 index 00000000..040b029b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png.import new file mode 100644 index 00000000..1d18a532 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-impress.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpjpg0vydsb6t" +path="res://.godot/imported/libreoffice-impress.png-48ee0a7d3143201140a7beed651372d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-impress.png" +dest_files=["res://.godot/imported/libreoffice-impress.png-48ee0a7d3143201140a7beed651372d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png new file mode 100644 index 00000000..7e9fa7f6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png.import new file mode 100644 index 00000000..1588a2d8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-math.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p1s1rm6u168n" +path="res://.godot/imported/libreoffice-math.png-a4b49d969f6cffbd4d7020bb49728701.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-math.png" +dest_files=["res://.godot/imported/libreoffice-math.png-a4b49d969f6cffbd4d7020bb49728701.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png new file mode 100644 index 00000000..4e3eecd3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png.import new file mode 100644 index 00000000..ac074ffe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-startcenter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bap0hptm7wygt" +path="res://.godot/imported/libreoffice-startcenter.png-2b39f947198a5550c3f5ed152d284904.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-startcenter.png" +dest_files=["res://.godot/imported/libreoffice-startcenter.png-2b39f947198a5550c3f5ed152d284904.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png new file mode 100644 index 00000000..dd923d93 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png.import new file mode 100644 index 00000000..bb9424fc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice-writer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4gxd7pr5ikn0" +path="res://.godot/imported/libreoffice-writer.png-ccd778605648f0f2794f63aa92affa05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice-writer.png" +dest_files=["res://.godot/imported/libreoffice-writer.png-ccd778605648f0f2794f63aa92affa05.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice.png b/tools/configurator/assets/icons/pixelitos/16/libreoffice.png new file mode 100644 index 00000000..4e3eecd3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/libreoffice.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/libreoffice.png.import b/tools/configurator/assets/icons/pixelitos/16/libreoffice.png.import new file mode 100644 index 00000000..cbef6d5f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/libreoffice.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xcbxaekxo7hw" +path="res://.godot/imported/libreoffice.png-684d84c63a8c37734545f5a73f723054.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/libreoffice.png" +dest_files=["res://.godot/imported/libreoffice.png-684d84c63a8c37734545f5a73f723054.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png b/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png new file mode 100644 index 00000000..e416a4aa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png.import b/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png.import new file mode 100644 index 00000000..bc7049c2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6l1ndd7wpm5d" +path="res://.godot/imported/lightdm-gtk-greeter-settings.png-93f0fdc578a419a118c61185d5c64a41.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/lightdm-gtk-greeter-settings.png" +dest_files=["res://.godot/imported/lightdm-gtk-greeter-settings.png-93f0fdc578a419a118c61185d5c64a41.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/lime3ds.png b/tools/configurator/assets/icons/pixelitos/16/lime3ds.png new file mode 100644 index 00000000..61e4a218 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/lime3ds.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/lime3ds.png.import b/tools/configurator/assets/icons/pixelitos/16/lime3ds.png.import new file mode 100644 index 00000000..01b80e2c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/lime3ds.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c25eufaxhq7tl" +path="res://.godot/imported/lime3ds.png-b68b6c9b859a99e081e7acee1637875c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/lime3ds.png" +dest_files=["res://.godot/imported/lime3ds.png-b68b6c9b859a99e081e7acee1637875c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/linapple.png b/tools/configurator/assets/icons/pixelitos/16/linapple.png new file mode 100644 index 00000000..6cdb53a6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/linapple.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/linapple.png.import b/tools/configurator/assets/icons/pixelitos/16/linapple.png.import new file mode 100644 index 00000000..99c73d5a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/linapple.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc5qjx7ej415k" +path="res://.godot/imported/linapple.png-4513120f1c8d5f1fa928e066dc2dc608.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/linapple.png" +dest_files=["res://.godot/imported/linapple.png-4513120f1c8d5f1fa928e066dc2dc608.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png b/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png.import b/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png.import new file mode 100644 index 00000000..c80143ac --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/links-48x48.xpm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx36v7t21qd02" +path="res://.godot/imported/links-48x48.xpm.png-d0d15ad8378bc83c19d2b3baba3085de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/links-48x48.xpm.png" +dest_files=["res://.godot/imported/links-48x48.xpm.png-d0d15ad8378bc83c19d2b3baba3085de.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/lmms.png b/tools/configurator/assets/icons/pixelitos/16/lmms.png new file mode 100644 index 00000000..2c00a895 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/lmms.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/lmms.png.import b/tools/configurator/assets/icons/pixelitos/16/lmms.png.import new file mode 100644 index 00000000..dc236cbd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/lmms.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyfaq8xp63kuo" +path="res://.godot/imported/lmms.png-011860c8ad5f026ff88d57f844dc74e2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/lmms.png" +dest_files=["res://.godot/imported/lmms.png-011860c8ad5f026ff88d57f844dc74e2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/lutris.png b/tools/configurator/assets/icons/pixelitos/16/lutris.png new file mode 100644 index 00000000..bd8d672b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/lutris.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/lutris.png.import b/tools/configurator/assets/icons/pixelitos/16/lutris.png.import new file mode 100644 index 00000000..c0f841a8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/lutris.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyfq23gxv48s8" +path="res://.godot/imported/lutris.png-cd61cbe3bc5de5779f553209a9e424da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/lutris.png" +dest_files=["res://.godot/imported/lutris.png-cd61cbe3bc5de5779f553209a9e424da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/map-globe.png b/tools/configurator/assets/icons/pixelitos/16/map-globe.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/map-globe.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/map-globe.png.import b/tools/configurator/assets/icons/pixelitos/16/map-globe.png.import new file mode 100644 index 00000000..91bbdfb9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/map-globe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6hl4s5shp1kp" +path="res://.godot/imported/map-globe.png-8e00c3af669b6eb554bf2fbff8941f0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/map-globe.png" +dest_files=["res://.godot/imported/map-globe.png-8e00c3af669b6eb554bf2fbff8941f0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png b/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png new file mode 100644 index 00000000..887dc1f9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png.import new file mode 100644 index 00000000..b6ed9f1b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyira43h8wpf0" +path="res://.godot/imported/mate-desktop.png-6919e96f0ea4bef9e886a7c8c088805c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-desktop.png" +dest_files=["res://.godot/imported/mate-desktop.png-6919e96f0ea4bef9e886a7c8c088805c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png b/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png new file mode 100644 index 00000000..2831a1f7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png.import new file mode 100644 index 00000000..84cac96f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-disk-usage-analyzer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctx0ec2ywkggn" +path="res://.godot/imported/mate-disk-usage-analyzer.png-201164540c3126139662a7fd55a39693.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-disk-usage-analyzer.png" +dest_files=["res://.godot/imported/mate-disk-usage-analyzer.png-201164540c3126139662a7fd55a39693.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png b/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png new file mode 100644 index 00000000..15912542 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png.import new file mode 100644 index 00000000..eba93d38 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-notification-properties.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyxiaqsa8cyyg" +path="res://.godot/imported/mate-notification-properties.png-22dfb06ec93e1af4d9d27d20942f8a2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-notification-properties.png" +dest_files=["res://.godot/imported/mate-notification-properties.png-22dfb06ec93e1af4d9d27d20942f8a2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-panel.png b/tools/configurator/assets/icons/pixelitos/16/mate-panel.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-panel.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-panel.png.import new file mode 100644 index 00000000..86bdbcbd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4efld31lcluk" +path="res://.godot/imported/mate-panel.png-db116feddaf863cd7675b3e5e0319f1e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-panel.png" +dest_files=["res://.godot/imported/mate-panel.png-db116feddaf863cd7675b3e5e0319f1e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png b/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png new file mode 100644 index 00000000..65460949 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png.import new file mode 100644 index 00000000..551f198e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-session-properties.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckpopeuns0dgm" +path="res://.godot/imported/mate-session-properties.png-a118b16c175775ca8778559e25f7b6fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-session-properties.png" +dest_files=["res://.godot/imported/mate-session-properties.png-a118b16c175775ca8778559e25f7b6fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png b/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png new file mode 100644 index 00000000..b27e455a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png.import b/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png.import new file mode 100644 index 00000000..827e0413 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mate-system-log.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cehrw80gmcuvp" +path="res://.godot/imported/mate-system-log.png-c7d85c4a680026f3651b00a695e74dd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mate-system-log.png" +dest_files=["res://.godot/imported/mate-system-log.png-c7d85c4a680026f3651b00a695e74dd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/menulibre.png b/tools/configurator/assets/icons/pixelitos/16/menulibre.png new file mode 100644 index 00000000..b9c05361 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/menulibre.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/menulibre.png.import b/tools/configurator/assets/icons/pixelitos/16/menulibre.png.import new file mode 100644 index 00000000..97beb1b0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/menulibre.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccg32h1k43s5v" +path="res://.godot/imported/menulibre.png-770b34222fc6d89cbeec09a611c66ad8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/menulibre.png" +dest_files=["res://.godot/imported/menulibre.png-770b34222fc6d89cbeec09a611c66ad8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png b/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png new file mode 100644 index 00000000..f4ee2aea Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png.import b/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png.import new file mode 100644 index 00000000..e54480c1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/microsoft-edge.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqleifsve62d5" +path="res://.godot/imported/microsoft-edge.png-2d1f73d05decba978865dcad1ca80525.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/microsoft-edge.png" +dest_files=["res://.godot/imported/microsoft-edge.png-2d1f73d05decba978865dcad1ca80525.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/midori.png b/tools/configurator/assets/icons/pixelitos/16/midori.png new file mode 100644 index 00000000..7a9b9839 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/midori.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/midori.png.import b/tools/configurator/assets/icons/pixelitos/16/midori.png.import new file mode 100644 index 00000000..ea9eb6fd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/midori.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvbtuk6o8g0hy" +path="res://.godot/imported/midori.png-fe10c43e5d811ae704e2ff505ff515bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/midori.png" +dest_files=["res://.godot/imported/midori.png-fe10c43e5d811ae704e2ff505ff515bf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/minecraft.png b/tools/configurator/assets/icons/pixelitos/16/minecraft.png new file mode 100644 index 00000000..b0028ad0 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/minecraft.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/minecraft.png.import b/tools/configurator/assets/icons/pixelitos/16/minecraft.png.import new file mode 100644 index 00000000..58d8c4bf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/minecraft.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0wrklb48wa85" +path="res://.godot/imported/minecraft.png-cd668069ad887357a778a4e3c103dc6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/minecraft.png" +dest_files=["res://.godot/imported/minecraft.png-cd668069ad887357a778a4e3c103dc6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/mpv.png b/tools/configurator/assets/icons/pixelitos/16/mpv.png new file mode 100644 index 00000000..576e1bfc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/mpv.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/mpv.png.import b/tools/configurator/assets/icons/pixelitos/16/mpv.png.import new file mode 100644 index 00000000..b640b8d3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/mpv.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhqqyiol0fxt8" +path="res://.godot/imported/mpv.png-aa95741f25fc87b01ccf4833fb229e13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/mpv.png" +dest_files=["res://.godot/imported/mpv.png-aa95741f25fc87b01ccf4833fb229e13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png b/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png new file mode 100644 index 00000000..13750d5e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png.import b/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png.import new file mode 100644 index 00000000..61de383b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/multimedia-volume-control.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7ql0ymmxc1cf" +path="res://.godot/imported/multimedia-volume-control.png-0c5f3e83bbacf08bff6c3f1631d7c1d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/multimedia-volume-control.png" +dest_files=["res://.godot/imported/multimedia-volume-control.png-0c5f3e83bbacf08bff6c3f1631d7c1d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/nestopia.png b/tools/configurator/assets/icons/pixelitos/16/nestopia.png new file mode 100644 index 00000000..18754b3d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/nestopia.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/nestopia.png.import b/tools/configurator/assets/icons/pixelitos/16/nestopia.png.import new file mode 100644 index 00000000..52c4c6a9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/nestopia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcpn5on5d86j6" +path="res://.godot/imported/nestopia.png-e5b6bab34508815eef32f056c8faa1ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/nestopia.png" +dest_files=["res://.godot/imported/nestopia.png-e5b6bab34508815eef32f056c8faa1ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png b/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png new file mode 100644 index 00000000..25fbe352 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png.import b/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png.import new file mode 100644 index 00000000..72ffb9ce --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.kuribo64.melonDS.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgftfx70c0n3o" +path="res://.godot/imported/net.kuribo64.melonDS.png-91be884a1cbb396218bda12865b1e1f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.kuribo64.melonDS.png" +dest_files=["res://.godot/imported/net.kuribo64.melonDS.png-91be884a1cbb396218bda12865b1e1f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png b/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png new file mode 100644 index 00000000..f0788bbe Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png.import b/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png.import new file mode 100644 index 00000000..dda8db29 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.openra.OpenRA.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctpwwrhwdtyx4" +path="res://.godot/imported/net.openra.OpenRA.png-eed493596198a6fc09881a9309f18650.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.openra.OpenRA.png" +dest_files=["res://.godot/imported/net.openra.OpenRA.png-eed493596198a6fc09881a9309f18650.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png b/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png new file mode 100644 index 00000000..7802e4e5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png.import b/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png.import new file mode 100644 index 00000000..199154da --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.pcsx2.PCSX2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyljorv0erfvy" +path="res://.godot/imported/net.pcsx2.PCSX2.png-7e193e04f4e905e3176888dc3f1ab832.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.pcsx2.PCSX2.png" +dest_files=["res://.godot/imported/net.pcsx2.PCSX2.png-7e193e04f4e905e3176888dc3f1ab832.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png b/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png new file mode 100644 index 00000000..3a17519d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png.import b/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png.import new file mode 100644 index 00000000..c39231db --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.retrodeck.retrodeck.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cun21ydlaiowf" +path="res://.godot/imported/net.retrodeck.retrodeck.png-98e972d9f02cea76a00973ab45d3f984.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.retrodeck.retrodeck.png" +dest_files=["res://.godot/imported/net.retrodeck.retrodeck.png-98e972d9f02cea76a00973ab45d3f984.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png b/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png new file mode 100644 index 00000000..7ab2d04a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png.import b/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png.import new file mode 100644 index 00000000..f966a3db --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.rpcs3.RPCS3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2gmles6ceqya" +path="res://.godot/imported/net.rpcs3.RPCS3.png-002c184a5be273fbc4387bd556fa3460.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.rpcs3.RPCS3.png" +dest_files=["res://.godot/imported/net.rpcs3.RPCS3.png-002c184a5be273fbc4387bd556fa3460.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png b/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png new file mode 100644 index 00000000..5407a9b0 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png.import b/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png.import new file mode 100644 index 00000000..e54fce48 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/net.veloren.airshipper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7lpo3mnccxgq" +path="res://.godot/imported/net.veloren.airshipper.png-2003d1db12f8d5c6ccbf0808b7a48c52.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/net.veloren.airshipper.png" +dest_files=["res://.godot/imported/net.veloren.airshipper.png-2003d1db12f8d5c6ccbf0808b7a48c52.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/network-wired.png b/tools/configurator/assets/icons/pixelitos/16/network-wired.png new file mode 100644 index 00000000..24cc0d0f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/network-wired.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/network-wired.png.import b/tools/configurator/assets/icons/pixelitos/16/network-wired.png.import new file mode 100644 index 00000000..86ec9efe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/network-wired.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpqprsxdxasdy" +path="res://.godot/imported/network-wired.png-60a912dbdd88732efe9ab4daae443017.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/network-wired.png" +dest_files=["res://.godot/imported/network-wired.png-60a912dbdd88732efe9ab4daae443017.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png b/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png new file mode 100644 index 00000000..24cc0d0f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png.import b/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png.import new file mode 100644 index 00000000..65240120 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/network-workgroup.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bp4nne3q8pora" +path="res://.godot/imported/network-workgroup.png-1841de749dc3c890f673198b54d0b511.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/network-workgroup.png" +dest_files=["res://.godot/imported/network-workgroup.png-1841de749dc3c890f673198b54d0b511.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png b/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png new file mode 100644 index 00000000..c2171703 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png.import b/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png.import new file mode 100644 index 00000000..7ff11b80 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhp1d200ml0yt" +path="res://.godot/imported/nl.hjdskes.gcolor3.png-224e6c86a64bfc303a9e6b5362906268.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/nl.hjdskes.gcolor3.png" +dest_files=["res://.godot/imported/nl.hjdskes.gcolor3.png-224e6c86a64bfc303a9e6b5362906268.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png b/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png new file mode 100644 index 00000000..24cc0d0f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png.import b/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png.import new file mode 100644 index 00000000..72f413e4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/nm-device-wireless.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cif3n56iv533k" +path="res://.godot/imported/nm-device-wireless.png-4f2a088d01234e898dd6f6f487e36170.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/nm-device-wireless.png" +dest_files=["res://.godot/imported/nm-device-wireless.png-4f2a088d01234e898dd6f6f487e36170.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/nnn.png b/tools/configurator/assets/icons/pixelitos/16/nnn.png new file mode 100644 index 00000000..cf236b7b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/nnn.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/nnn.png.import b/tools/configurator/assets/icons/pixelitos/16/nnn.png.import new file mode 100644 index 00000000..f813fb0a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/nnn.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccpoxgcr4skh8" +path="res://.godot/imported/nnn.png-dedb49744dca5117303e32ca9a7b6cdf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/nnn.png" +dest_files=["res://.godot/imported/nnn.png-dedb49744dca5117303e32ca9a7b6cdf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/notepadqq.png b/tools/configurator/assets/icons/pixelitos/16/notepadqq.png new file mode 100644 index 00000000..e13d6d5b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/notepadqq.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/notepadqq.png.import b/tools/configurator/assets/icons/pixelitos/16/notepadqq.png.import new file mode 100644 index 00000000..cb17d43a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/notepadqq.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4uvtwuq8w644" +path="res://.godot/imported/notepadqq.png-af5c993f6eca67b95872d62476ba3208.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/notepadqq.png" +dest_files=["res://.godot/imported/notepadqq.png-af5c993f6eca67b95872d62476ba3208.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/nvim.png b/tools/configurator/assets/icons/pixelitos/16/nvim.png new file mode 100644 index 00000000..622643cc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/nvim.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/nvim.png.import b/tools/configurator/assets/icons/pixelitos/16/nvim.png.import new file mode 100644 index 00000000..03249195 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/nvim.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7kbipqgofuex" +path="res://.godot/imported/nvim.png-74dd143cef43cb5d8be06faa1b57f37b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/nvim.png" +dest_files=["res://.godot/imported/nvim.png-74dd143cef43cb5d8be06faa1b57f37b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/octopi.png b/tools/configurator/assets/icons/pixelitos/16/octopi.png new file mode 100644 index 00000000..20647d16 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/octopi.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/octopi.png.import b/tools/configurator/assets/icons/pixelitos/16/octopi.png.import new file mode 100644 index 00000000..583bb7b4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/octopi.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcmhdph6oy3h0" +path="res://.godot/imported/octopi.png-de1fab0715c6dd9070ee5e6b7df9192d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/octopi.png" +dest_files=["res://.godot/imported/octopi.png-de1fab0715c6dd9070ee5e6b7df9192d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/okular.png b/tools/configurator/assets/icons/pixelitos/16/okular.png new file mode 100644 index 00000000..e83aa422 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/okular.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/okular.png.import b/tools/configurator/assets/icons/pixelitos/16/okular.png.import new file mode 100644 index 00000000..37eda872 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/okular.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2vwo82rcjlg8" +path="res://.godot/imported/okular.png-e538058210716536d62723674156f539.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/okular.png" +dest_files=["res://.godot/imported/okular.png-e538058210716536d62723674156f539.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/openarena-server.png b/tools/configurator/assets/icons/pixelitos/16/openarena-server.png new file mode 100644 index 00000000..3ca33637 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/openarena-server.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/openarena-server.png.import b/tools/configurator/assets/icons/pixelitos/16/openarena-server.png.import new file mode 100644 index 00000000..2c22a5f2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/openarena-server.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f1aqbp0uk47y" +path="res://.godot/imported/openarena-server.png-0b3424e66040b1b4e1973e759e2a921a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/openarena-server.png" +dest_files=["res://.godot/imported/openarena-server.png-0b3424e66040b1b4e1973e759e2a921a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/openarena.png b/tools/configurator/assets/icons/pixelitos/16/openarena.png new file mode 100644 index 00000000..45a81400 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/openarena.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/openarena.png.import b/tools/configurator/assets/icons/pixelitos/16/openarena.png.import new file mode 100644 index 00000000..f3931ca5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/openarena.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdnmtqjr4nyvq" +path="res://.godot/imported/openarena.png-7cfc5ccd27d7e52695198ea49cbb84b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/openarena.png" +dest_files=["res://.godot/imported/openarena.png-7cfc5ccd27d7e52695198ea49cbb84b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/openbor.png b/tools/configurator/assets/icons/pixelitos/16/openbor.png new file mode 100644 index 00000000..a591de65 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/openbor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/openbor.png.import b/tools/configurator/assets/icons/pixelitos/16/openbor.png.import new file mode 100644 index 00000000..cb4a46c9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/openbor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyxw6hxobexic" +path="res://.godot/imported/openbor.png-fd1e7647503d805c2e75403de010a476.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/openbor.png" +dest_files=["res://.godot/imported/openbor.png-fd1e7647503d805c2e75403de010a476.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/opera-beta.png b/tools/configurator/assets/icons/pixelitos/16/opera-beta.png new file mode 100644 index 00000000..63a5b952 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/opera-beta.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/opera-beta.png.import b/tools/configurator/assets/icons/pixelitos/16/opera-beta.png.import new file mode 100644 index 00000000..4cd1af85 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/opera-beta.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1e83pltayxo1" +path="res://.godot/imported/opera-beta.png-7444d8e47424cd375eca248e07943317.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/opera-beta.png" +dest_files=["res://.godot/imported/opera-beta.png-7444d8e47424cd375eca248e07943317.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/opera-developer.png b/tools/configurator/assets/icons/pixelitos/16/opera-developer.png new file mode 100644 index 00000000..d265279b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/opera-developer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/opera-developer.png.import b/tools/configurator/assets/icons/pixelitos/16/opera-developer.png.import new file mode 100644 index 00000000..e277e374 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/opera-developer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r3f1hooovfyv" +path="res://.godot/imported/opera-developer.png-e2b1edc820741dac3111db7b4aa22bef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/opera-developer.png" +dest_files=["res://.godot/imported/opera-developer.png-e2b1edc820741dac3111db7b4aa22bef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/opera.png b/tools/configurator/assets/icons/pixelitos/16/opera.png new file mode 100644 index 00000000..62ef4c62 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/opera.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/opera.png.import b/tools/configurator/assets/icons/pixelitos/16/opera.png.import new file mode 100644 index 00000000..ca6c7b43 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/opera.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt6lscyalqlu6" +path="res://.godot/imported/opera.png-a8785d94df88079ed761f7242173087d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/opera.png" +dest_files=["res://.godot/imported/opera.png-a8785d94df88079ed761f7242173087d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png b/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png new file mode 100644 index 00000000..6e56ca02 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png.import b/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png.import new file mode 100644 index 00000000..176c5966 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du7kd6j4lyvcm" +path="res://.godot/imported/org.DolphinEmu.dolphin-emu.png-7f096726fc198b4bc687ebc7db123987.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.DolphinEmu.dolphin-emu.png" +dest_files=["res://.godot/imported/org.DolphinEmu.dolphin-emu.png-7f096726fc198b4bc687ebc7db123987.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png b/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png new file mode 100644 index 00000000..9d2f7a20 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png.import b/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png.import new file mode 100644 index 00000000..d4acd591 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.citra_emu.citra.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p2yjf1kb775k" +path="res://.godot/imported/org.citra_emu.citra.png-bd33ba020e6b8762ad9047d0f6fca25d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.citra_emu.citra.png" +dest_files=["res://.godot/imported/org.citra_emu.citra.png-bd33ba020e6b8762ad9047d0f6fca25d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png b/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png new file mode 100644 index 00000000..f94f6e1e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png.import new file mode 100644 index 00000000..2dc9844f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gnome.ArchiveManager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2mcmjsuuhfvn" +path="res://.godot/imported/org.gnome.ArchiveManager.png-6cc6c570f5246d7c6d7b7dfd597ed752.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gnome.ArchiveManager.png" +dest_files=["res://.godot/imported/org.gnome.ArchiveManager.png-6cc6c570f5246d7c6d7b7dfd597ed752.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png.import new file mode 100644 index 00000000..caac5636 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Nautilus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjcfg3bcgj3t4" +path="res://.godot/imported/org.gnome.Nautilus.png-05ba453446d9169d05743a89e6cd9e9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gnome.Nautilus.png" +dest_files=["res://.godot/imported/org.gnome.Nautilus.png-05ba453446d9169d05743a89e6cd9e9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png new file mode 100644 index 00000000..cd86d42d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png.import new file mode 100644 index 00000000..ecf1f14f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Screenshot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3ah1cfj4gtdt" +path="res://.godot/imported/org.gnome.Screenshot.png-5f1e1cfa0ea9a14cfa44f3fb5b96f3a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gnome.Screenshot.png" +dest_files=["res://.godot/imported/org.gnome.Screenshot.png-5f1e1cfa0ea9a14cfa44f3fb5b96f3a0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png new file mode 100644 index 00000000..0e8b1912 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png.import new file mode 100644 index 00000000..6c3d7643 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gnome.Yelp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv73q6cn2f1ar" +path="res://.godot/imported/org.gnome.Yelp.png-26e7f4e6e1d31a4c9ca1b29380b9d7cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gnome.Yelp.png" +dest_files=["res://.godot/imported/org.gnome.Yelp.png-26e7f4e6e1d31a4c9ca1b29380b9d7cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png b/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png new file mode 100644 index 00000000..22ee5f71 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png.import new file mode 100644 index 00000000..8aad125d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gnome.clocks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b72vy3ilt8vgn" +path="res://.godot/imported/org.gnome.clocks.png-5a530d9aba8da7c31dda78866516a995.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gnome.clocks.png" +dest_files=["res://.godot/imported/org.gnome.clocks.png-5a530d9aba8da7c31dda78866516a995.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png b/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png new file mode 100644 index 00000000..64d42472 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png.import b/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png.import new file mode 100644 index 00000000..62a06d97 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.gtk.IconBrowser4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc2wwcvgcbmrd" +path="res://.godot/imported/org.gtk.IconBrowser4.png-73dae9b5b25b21bf0ceefc6e9be03a9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.gtk.IconBrowser4.png" +dest_files=["res://.godot/imported/org.gtk.IconBrowser4.png-73dae9b5b25b21bf0ceefc6e9be03a9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png b/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png new file mode 100644 index 00000000..c06d6369 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png.import b/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png.import new file mode 100644 index 00000000..166e1a2d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.inkscape.Inkscape.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu0hbafdygr88" +path="res://.godot/imported/org.inkscape.Inkscape.png-061df928dfed8ef067b57680edcb6db5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.inkscape.Inkscape.png" +dest_files=["res://.godot/imported/org.inkscape.Inkscape.png-061df928dfed8ef067b57680edcb6db5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png b/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png new file mode 100644 index 00000000..c4c264d0 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png.import b/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png.import new file mode 100644 index 00000000..b4928423 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.mamedev.MAME.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0sqfj4pjyd2h" +path="res://.godot/imported/org.mamedev.MAME.png-037b5f3e522db848a08c11ae7dd1fc66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.mamedev.MAME.png" +dest_files=["res://.godot/imported/org.mamedev.MAME.png-037b5f3e522db848a08c11ae7dd1fc66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png b/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png new file mode 100644 index 00000000..7a9b9839 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png.import b/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png.import new file mode 100644 index 00000000..e6e34514 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.midori_browser.Midori.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lwpunxi8qslb" +path="res://.godot/imported/org.midori_browser.Midori.png-d066b6a169822e1f2d88708df6569ce6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.midori_browser.Midori.png" +dest_files=["res://.godot/imported/org.midori_browser.Midori.png-d066b6a169822e1f2d88708df6569ce6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png b/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png new file mode 100644 index 00000000..1c547c85 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png.import b/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png.import new file mode 100644 index 00000000..79174227 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.openmw.OpenMW.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nha16jes77rx" +path="res://.godot/imported/org.openmw.OpenMW.png-f946f9c0c3ef7270ff1cc454a3821115.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.openmw.OpenMW.png" +dest_files=["res://.godot/imported/org.openmw.OpenMW.png-f946f9c0c3ef7270ff1cc454a3821115.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png b/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png new file mode 100644 index 00000000..ed5fd37a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png.import b/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png.import new file mode 100644 index 00000000..1b154b62 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.openttd.OpenTTD.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctktgd2t1o0ai" +path="res://.godot/imported/org.openttd.OpenTTD.png-fa5ae261bba60889c756818c3a28c26b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.openttd.OpenTTD.png" +dest_files=["res://.godot/imported/org.openttd.OpenTTD.png-fa5ae261bba60889c756818c3a28c26b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png new file mode 100644 index 00000000..54afd901 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png.import b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png.import new file mode 100644 index 00000000..135f01c1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bum1mqj0pfrff" +path="res://.godot/imported/org.ppsspp.PPSSPP.png-f3d677c5ef5b9a8e676dfad2b4b7aad9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.ppsspp.PPSSPP.png" +dest_files=["res://.godot/imported/org.ppsspp.PPSSPP.png-f3d677c5ef5b9a8e676dfad2b4b7aad9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png new file mode 100644 index 00000000..24c86078 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png.import b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png.import new file mode 100644 index 00000000..ff5715ea --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buu8rqln4qdfu" +path="res://.godot/imported/org.ppsspp.PPSSPP_.png-70c5a5a3a41e36f238abf53cfa0a2789.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.ppsspp.PPSSPP_.png" +dest_files=["res://.godot/imported/org.ppsspp.PPSSPP_.png-70c5a5a3a41e36f238abf53cfa0a2789.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png b/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png new file mode 100644 index 00000000..7998042c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png.import b/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png.import new file mode 100644 index 00000000..5ccdabc6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvr0vqplyynln" +path="res://.godot/imported/org.prismlauncher.PrismLauncher.png-07e164a314679fe4b0835f9ae129f321.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.prismlauncher.PrismLauncher.png" +dest_files=["res://.godot/imported/org.prismlauncher.PrismLauncher.png-07e164a314679fe4b0835f9ae129f321.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png b/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png new file mode 100644 index 00000000..99ddb5e1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png.import b/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png.import new file mode 100644 index 00000000..74419933 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lsi3lmo88sb7" +path="res://.godot/imported/org.rnd2.cpupower-gui.png-a40304d03499ce8685c2fbc386bb510d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.rnd2.cpupower-gui.png" +dest_files=["res://.godot/imported/org.rnd2.cpupower-gui.png-a40304d03499ce8685c2fbc386bb510d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png b/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png new file mode 100644 index 00000000..604f23bf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png.import b/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png.import new file mode 100644 index 00000000..9ba22ff7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hrlmj3pmha5t" +path="res://.godot/imported/org.ryujinx.Ryujinx.png-4c351c857fe2f9740f11bfd050c66337.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.ryujinx.Ryujinx.png" +dest_files=["res://.godot/imported/org.ryujinx.Ryujinx.png-4c351c857fe2f9740f11bfd050c66337.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png new file mode 100644 index 00000000..44b33e80 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png.import new file mode 100644 index 00000000..418cc8a8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.about.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwcp67onjq824" +path="res://.godot/imported/org.xfce.about.png-a66c7b7f85a744d1c11fb5851ea8a62a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.about.png" +dest_files=["res://.godot/imported/org.xfce.about.png-a66c7b7f85a744d1c11fb5851ea8a62a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png.import new file mode 100644 index 00000000..8bdf189b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.appfinder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf5ny8suf3skw" +path="res://.godot/imported/org.xfce.appfinder.png-36a7fb2a29275e01504d402474117897.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.appfinder.png" +dest_files=["res://.godot/imported/org.xfce.appfinder.png-36a7fb2a29275e01504d402474117897.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png.import new file mode 100644 index 00000000..f5b8ada8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.filemanager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co37mhpomsm5k" +path="res://.godot/imported/org.xfce.filemanager.png-30b6aa56ac2e2a09e9be7eb060fb0f33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.filemanager.png" +dest_files=["res://.godot/imported/org.xfce.filemanager.png-30b6aa56ac2e2a09e9be7eb060fb0f33.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png new file mode 100644 index 00000000..b9c05361 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png.import new file mode 100644 index 00000000..77a2c2f9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.garcon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2gcl1s3kkq3w" +path="res://.godot/imported/org.xfce.garcon.png-c11059a9935d671a8b40787df039cd86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.garcon.png" +dest_files=["res://.godot/imported/org.xfce.garcon.png-c11059a9935d671a8b40787df039cd86.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png new file mode 100644 index 00000000..9533dc87 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png.import new file mode 100644 index 00000000..9f05cd98 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.mailreader.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqokc3afgdgwl" +path="res://.godot/imported/org.xfce.mailreader.png-acdb445240e7da3bdb5f5993993bd450.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.mailreader.png" +dest_files=["res://.godot/imported/org.xfce.mailreader.png-acdb445240e7da3bdb5f5993993bd450.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png new file mode 100644 index 00000000..15912542 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png.import new file mode 100644 index 00000000..00f1e8e4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.notification.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhqr4n32qyx7j" +path="res://.godot/imported/org.xfce.notification.png-7baa6917e0703e05f9b2634ae18914c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.notification.png" +dest_files=["res://.godot/imported/org.xfce.notification.png-7baa6917e0703e05f9b2634ae18914c1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png new file mode 100644 index 00000000..933ee6a7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png.import new file mode 100644 index 00000000..002324c4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.actions.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yul4oi0rbom0" +path="res://.godot/imported/org.xfce.panel.actions.png-27d53e6c886051cd7897f8f47067fe91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.actions.png" +dest_files=["res://.godot/imported/org.xfce.panel.actions.png-27d53e6c886051cd7897f8f47067fe91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png new file mode 100644 index 00000000..44b33e80 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png.import new file mode 100644 index 00000000..9cc79aa4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv1a1fj4w55jp" +path="res://.godot/imported/org.xfce.panel.applicationsmenu.png-2581cc5e977993815757389dd480e611.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.applicationsmenu.png" +dest_files=["res://.godot/imported/org.xfce.panel.applicationsmenu.png-2581cc5e977993815757389dd480e611.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png.import new file mode 100644 index 00000000..1e2b4fd9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmfivi50t2asm" +path="res://.godot/imported/org.xfce.panel.png-c3f2be6c956f645b87c1de62fe5d7820.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.png" +dest_files=["res://.godot/imported/org.xfce.panel.png-c3f2be6c956f645b87c1de62fe5d7820.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png.import new file mode 100644 index 00000000..149910af --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.tasklist.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcx6il2ck3136" +path="res://.godot/imported/org.xfce.panel.tasklist.png-c5c0b0bc6cc2f73f5f19463ad44adcdc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.tasklist.png" +dest_files=["res://.godot/imported/org.xfce.panel.tasklist.png-c5c0b0bc6cc2f73f5f19463ad44adcdc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png new file mode 100644 index 00000000..44b33e80 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png.import new file mode 100644 index 00000000..6433ff1b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o66g0htjj5yy" +path="res://.godot/imported/org.xfce.panel.whiskermenu.png-51446df856ff13f503b581f007d98ee4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.whiskermenu.png" +dest_files=["res://.godot/imported/org.xfce.panel.whiskermenu.png-51446df856ff13f503b581f007d98ee4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png new file mode 100644 index 00000000..b9c05361 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png.import new file mode 100644 index 00000000..8f804c77 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6hu6nwnodggt" +path="res://.godot/imported/org.xfce.panel.windowmenu.png-02cd501fdab8fb1160560157990e5107.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.panel.windowmenu.png" +dest_files=["res://.godot/imported/org.xfce.panel.windowmenu.png-02cd501fdab8fb1160560157990e5107.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png new file mode 100644 index 00000000..035ae5ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png.import new file mode 100644 index 00000000..aab5674d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.powermanager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfl4fx141ngyj" +path="res://.godot/imported/org.xfce.powermanager.png-3db3f9b2a47ba9e04594bfe87de381f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.powermanager.png" +dest_files=["res://.godot/imported/org.xfce.powermanager.png-3db3f9b2a47ba9e04594bfe87de381f7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png new file mode 100644 index 00000000..65460949 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png.import new file mode 100644 index 00000000..4d3f0af5 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.session.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgf54yv6jwm01" +path="res://.godot/imported/org.xfce.session.png-d1043828ecf1990df809d466782df966.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.session.png" +dest_files=["res://.godot/imported/org.xfce.session.png-d1043828ecf1990df809d466782df966.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png new file mode 100644 index 00000000..71112dbc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png.import new file mode 100644 index 00000000..60e485c3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.accessibility.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbistoey5xott" +path="res://.godot/imported/org.xfce.settings.accessibility.png-93533fa194363a020734ae40cd0051d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.accessibility.png" +dest_files=["res://.godot/imported/org.xfce.settings.accessibility.png-93533fa194363a020734ae40cd0051d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png new file mode 100644 index 00000000..31f776b4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png.import new file mode 100644 index 00000000..3c9b6f0d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.appearance.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bia24qoyb6qcx" +path="res://.godot/imported/org.xfce.settings.appearance.png-661546795fae00496f33c54a947a3956.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.appearance.png" +dest_files=["res://.godot/imported/org.xfce.settings.appearance.png-661546795fae00496f33c54a947a3956.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png new file mode 100644 index 00000000..d6de2445 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png.import new file mode 100644 index 00000000..a5435c19 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chh012frbla0o" +path="res://.godot/imported/org.xfce.settings.color.png-f77917750b0d38d1e6f4b95f1d75dbb1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.color.png" +dest_files=["res://.godot/imported/org.xfce.settings.color.png-f77917750b0d38d1e6f4b95f1d75dbb1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png new file mode 100644 index 00000000..0b273a9f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png.import new file mode 100644 index 00000000..ba10ed12 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.default-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvhekbcxjlry5" +path="res://.godot/imported/org.xfce.settings.default-applications.png-87df4cde2b5b850345969bc64e9a5871.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.default-applications.png" +dest_files=["res://.godot/imported/org.xfce.settings.default-applications.png-87df4cde2b5b850345969bc64e9a5871.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png.import new file mode 100644 index 00000000..a8674b40 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dynuranek4e2v" +path="res://.godot/imported/org.xfce.settings.display.png-e80dec6573aaab806d045a4115beae6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.display.png" +dest_files=["res://.godot/imported/org.xfce.settings.display.png-e80dec6573aaab806d045a4115beae6e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png.import new file mode 100644 index 00000000..e7e6e16b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.editor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ed28akply7xg" +path="res://.godot/imported/org.xfce.settings.editor.png-6f68cd2db2d317f318d3f169cd8bad38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.editor.png" +dest_files=["res://.godot/imported/org.xfce.settings.editor.png-6f68cd2db2d317f318d3f169cd8bad38.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png.import new file mode 100644 index 00000000..14aaa8b3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2ytuk3nolulh" +path="res://.godot/imported/org.xfce.settings.keyboard.png-223c26df080ab222223ebd7610051880.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.keyboard.png" +dest_files=["res://.godot/imported/org.xfce.settings.keyboard.png-223c26df080ab222223ebd7610051880.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png.import new file mode 100644 index 00000000..92aa2cc7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsqn3ch8h3nne" +path="res://.godot/imported/org.xfce.settings.manager.png-0f2f007fbda2297afc3fd07e4f4cb773.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.manager.png" +dest_files=["res://.godot/imported/org.xfce.settings.manager.png-0f2f007fbda2297afc3fd07e4f4cb773.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png new file mode 100644 index 00000000..f22eacca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png.import new file mode 100644 index 00000000..601fd3e9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.settings.mouse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://u1011hgs3tkx" +path="res://.godot/imported/org.xfce.settings.mouse.png-4dd39d90fe2d2c912d2d73af91df3dbc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.settings.mouse.png" +dest_files=["res://.godot/imported/org.xfce.settings.mouse.png-4dd39d90fe2d2c912d2d73af91df3dbc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png.import new file mode 100644 index 00000000..0a725418 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal-settings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b870j1m7iegvv" +path="res://.godot/imported/org.xfce.terminal-settings.png-5fc70e4f55fce672952233170ee9f96e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.terminal-settings.png" +dest_files=["res://.godot/imported/org.xfce.terminal-settings.png-5fc70e4f55fce672952233170ee9f96e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png.import new file mode 100644 index 00000000..dc29536e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpykpi6o2og2r" +path="res://.godot/imported/org.xfce.terminal.png-45f9db63c63ff7830cbc6c476d27ebac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.terminal.png" +dest_files=["res://.godot/imported/org.xfce.terminal.png-45f9db63c63ff7830cbc6c476d27ebac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png.import new file mode 100644 index 00000000..9321f1e6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.terminalemulator.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqfyk1uusseue" +path="res://.godot/imported/org.xfce.terminalemulator.png-f28e77455486c9acdefe66205820681e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.terminalemulator.png" +dest_files=["res://.godot/imported/org.xfce.terminalemulator.png-f28e77455486c9acdefe66205820681e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png.import new file mode 100644 index 00000000..0f12e979 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.thunar.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt40bcd4q1cge" +path="res://.godot/imported/org.xfce.thunar.png-7acd5f7299ecf650849cb5d3ee5798ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.thunar.png" +dest_files=["res://.godot/imported/org.xfce.thunar.png-7acd5f7299ecf650849cb5d3ee5798ab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png new file mode 100644 index 00000000..0bdbb16c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png.import new file mode 100644 index 00000000..af12e56d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.tumbler.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn76eg7lrk667" +path="res://.godot/imported/org.xfce.tumbler.png-c8f9d08654760a6cd9b5fdeb937418fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.tumbler.png" +dest_files=["res://.godot/imported/org.xfce.tumbler.png-c8f9d08654760a6cd9b5fdeb937418fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png new file mode 100644 index 00000000..83c09b8e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png.import new file mode 100644 index 00000000..8153ddf9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.volman.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbtod0i0xmq0n" +path="res://.godot/imported/org.xfce.volman.png-f046606d234aea49999cd1321103be66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.volman.png" +dest_files=["res://.godot/imported/org.xfce.volman.png-f046606d234aea49999cd1321103be66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png new file mode 100644 index 00000000..88f0a50d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png.import new file mode 100644 index 00000000..9dd6b64c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.webbrowser.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgqe4crqoksyx" +path="res://.godot/imported/org.xfce.webbrowser.png-e4b5b9c513e65d1ea17c40a54e9c8257.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.webbrowser.png" +dest_files=["res://.godot/imported/org.xfce.webbrowser.png-e4b5b9c513e65d1ea17c40a54e9c8257.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png new file mode 100644 index 00000000..a03ea0be Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png.import new file mode 100644 index 00000000..7c23aed1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.workspaces.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wpjwggxb0xpi" +path="res://.godot/imported/org.xfce.workspaces.png-936b0a43d7ba97967317c303793ead6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.workspaces.png" +dest_files=["res://.godot/imported/org.xfce.workspaces.png-936b0a43d7ba97967317c303793ead6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png new file mode 100644 index 00000000..7c519310 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png.import new file mode 100644 index 00000000..c3c1b085 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfdesktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxqqex7nt6pw1" +path="res://.godot/imported/org.xfce.xfdesktop.png-90d9ed2b688bcbdd9195376171f49f47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.xfdesktop.png" +dest_files=["res://.godot/imported/org.xfce.xfdesktop.png-90d9ed2b688bcbdd9195376171f49f47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png.import new file mode 100644 index 00000000..101e0008 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb1dsanh76hp2" +path="res://.godot/imported/org.xfce.xfwm4-tweaks.png-4edef579d9857d639b79a675ac20d192.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.xfwm4-tweaks.png" +dest_files=["res://.godot/imported/org.xfce.xfwm4-tweaks.png-4edef579d9857d639b79a675ac20d192.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png new file mode 100644 index 00000000..004f34cd Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png.import b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png.import new file mode 100644 index 00000000..0c9ca2be --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.xfce.xfwm4.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbdx1hyg82dti" +path="res://.godot/imported/org.xfce.xfwm4.png-4e660e6b97cc24b183beeb11a27f5f24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.xfce.xfwm4.png" +dest_files=["res://.godot/imported/org.xfce.xfwm4.png-4e660e6b97cc24b183beeb11a27f5f24.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png b/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png new file mode 100644 index 00000000..5494bbaf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png.import b/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png.import new file mode 100644 index 00000000..b78fc8ca --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1hjps1wpnsvt" +path="res://.godot/imported/org.yuzu_emu.yuzu.png-d516bd818951c54eb7ddfa9b4e248b45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.yuzu_emu.yuzu.png" +dest_files=["res://.godot/imported/org.yuzu_emu.yuzu.png-d516bd818951c54eb7ddfa9b4e248b45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png b/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png new file mode 100644 index 00000000..0cf56591 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png.import b/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png.import new file mode 100644 index 00000000..2fbed2be --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/org.zdoom.GZDoom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgejbfwthuvpk" +path="res://.godot/imported/org.zdoom.GZDoom.png-28bc1e29b0bfbb21d25aaa8763b86d02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/org.zdoom.GZDoom.png" +dest_files=["res://.godot/imported/org.zdoom.GZDoom.png-28bc1e29b0bfbb21d25aaa8763b86d02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/oricutron.png b/tools/configurator/assets/icons/pixelitos/16/oricutron.png new file mode 100644 index 00000000..c1c724ea Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/oricutron.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/oricutron.png.import b/tools/configurator/assets/icons/pixelitos/16/oricutron.png.import new file mode 100644 index 00000000..dadf1e9b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/oricutron.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dae2syr0t3xf7" +path="res://.godot/imported/oricutron.png-41a6bab6a207b41204a0fe50d3cf1826.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/oricutron.png" +dest_files=["res://.godot/imported/oricutron.png-41a6bab6a207b41204a0fe50d3cf1826.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png b/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png new file mode 100644 index 00000000..f1af0b57 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png.import b/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png.import new file mode 100644 index 00000000..b90a3ebb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/pcsxr-icon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://01728drco4o4" +path="res://.godot/imported/pcsxr-icon.png-8917afafc3f1e660bd5c0e50da790609.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/pcsxr-icon.png" +dest_files=["res://.godot/imported/pcsxr-icon.png-8917afafc3f1e660bd5c0e50da790609.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/picom.png b/tools/configurator/assets/icons/pixelitos/16/picom.png new file mode 100644 index 00000000..76349c4c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/picom.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/picom.png.import b/tools/configurator/assets/icons/pixelitos/16/picom.png.import new file mode 100644 index 00000000..c4daf96e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/picom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4sgwyv0jbsu1" +path="res://.godot/imported/picom.png-ef1986fc454441d1a642b5b06966273c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/picom.png" +dest_files=["res://.godot/imported/picom.png-ef1986fc454441d1a642b5b06966273c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/plasma-search.png b/tools/configurator/assets/icons/pixelitos/16/plasma-search.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/plasma-search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/plasma-search.png.import b/tools/configurator/assets/icons/pixelitos/16/plasma-search.png.import new file mode 100644 index 00000000..d34276dc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/plasma-search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4cxjx6r5p8nh" +path="res://.godot/imported/plasma-search.png-735378940b6c67d3137d3d624dba6562.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/plasma-search.png" +dest_files=["res://.godot/imported/plasma-search.png-735378940b6c67d3137d3d624dba6562.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/plasma.png b/tools/configurator/assets/icons/pixelitos/16/plasma.png new file mode 100644 index 00000000..6c0d2d4c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/plasma.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/plasma.png.import b/tools/configurator/assets/icons/pixelitos/16/plasma.png.import new file mode 100644 index 00000000..bec06136 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/plasma.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7mfq1ri1aqmp" +path="res://.godot/imported/plasma.png-c6018396c6be27623a15d265e28c380e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/plasma.png" +dest_files=["res://.godot/imported/plasma.png-c6018396c6be27623a15d265e28c380e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/plasmashell.png b/tools/configurator/assets/icons/pixelitos/16/plasmashell.png new file mode 100644 index 00000000..6c0d2d4c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/plasmashell.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/plasmashell.png.import b/tools/configurator/assets/icons/pixelitos/16/plasmashell.png.import new file mode 100644 index 00000000..af9733e1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/plasmashell.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c14vif2ujrpah" +path="res://.godot/imported/plasmashell.png-2087bea5d0258667796a94afc624b5a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/plasmashell.png" +dest_files=["res://.godot/imported/plasmashell.png-2087bea5d0258667796a94afc624b5a9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/playonlinux.png b/tools/configurator/assets/icons/pixelitos/16/playonlinux.png new file mode 100644 index 00000000..bb0889fe Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/playonlinux.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/playonlinux.png.import b/tools/configurator/assets/icons/pixelitos/16/playonlinux.png.import new file mode 100644 index 00000000..ac872f30 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/playonlinux.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c72he282v60dh" +path="res://.godot/imported/playonlinux.png-0efbe94457ea618be9c7219d1f75d693.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/playonlinux.png" +dest_files=["res://.godot/imported/playonlinux.png-0efbe94457ea618be9c7219d1f75d693.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/portal2.png b/tools/configurator/assets/icons/pixelitos/16/portal2.png new file mode 100644 index 00000000..f7a067b3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/portal2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/portal2.png.import b/tools/configurator/assets/icons/pixelitos/16/portal2.png.import new file mode 100644 index 00000000..987d767d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/portal2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2vltke8wdy1e" +path="res://.godot/imported/portal2.png-51e281228f5c3932544c7898c1e5f02c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/portal2.png" +dest_files=["res://.godot/imported/portal2.png-51e281228f5c3932544c7898c1e5f02c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/portmaster.png b/tools/configurator/assets/icons/pixelitos/16/portmaster.png new file mode 100644 index 00000000..3da7cb4a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/portmaster.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/portmaster.png.import b/tools/configurator/assets/icons/pixelitos/16/portmaster.png.import new file mode 100644 index 00000000..1b36f3bb --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/portmaster.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk752lj5kwueq" +path="res://.godot/imported/portmaster.png-c092ba49485bf5f8fca6713d5a7dcf77.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/portmaster.png" +dest_files=["res://.godot/imported/portmaster.png-c092ba49485bf5f8fca6713d5a7dcf77.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png new file mode 100644 index 00000000..71112dbc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png.import new file mode 100644 index 00000000..5cbf3e1f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-accessibility.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c35qwkfw3scqc" +path="res://.godot/imported/preferences-desktop-accessibility.png-75273d2d7bc377d62114b17b779c0ea8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-accessibility.png" +dest_files=["res://.godot/imported/preferences-desktop-accessibility.png-75273d2d7bc377d62114b17b779c0ea8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png new file mode 100644 index 00000000..a03ea0be Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png.import new file mode 100644 index 00000000..d1581c8d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-activities.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhh411lvgak6x" +path="res://.godot/imported/preferences-desktop-activities.png-be9947e634977e435a1e89e856dd4cc0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-activities.png" +dest_files=["res://.godot/imported/preferences-desktop-activities.png-be9947e634977e435a1e89e856dd4cc0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png.import new file mode 100644 index 00000000..d1d1dcd1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-baloo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g3kbuut4p8rp" +path="res://.godot/imported/preferences-desktop-baloo.png-4e6a1233daa2b235cdd793d053dd3620.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-baloo.png" +dest_files=["res://.godot/imported/preferences-desktop-baloo.png-4e6a1233daa2b235cdd793d053dd3620.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png new file mode 100644 index 00000000..d6de2445 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png.import new file mode 100644 index 00000000..b70eb282 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-color.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk7wbka4qj6gb" +path="res://.godot/imported/preferences-desktop-color.png-540fee3c1f215e0aae8559e9532559ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-color.png" +dest_files=["res://.godot/imported/preferences-desktop-color.png-540fee3c1f215e0aae8559e9532559ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png new file mode 100644 index 00000000..6f5b3c7b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png.import new file mode 100644 index 00000000..52e60254 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-cursors.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv5u500iou4t7" +path="res://.godot/imported/preferences-desktop-cursors.png-73d490687d1903fe0531da1af6868295.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-cursors.png" +dest_files=["res://.godot/imported/preferences-desktop-cursors.png-73d490687d1903fe0531da1af6868295.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png new file mode 100644 index 00000000..0b273a9f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png.import new file mode 100644 index 00000000..b05ae5b3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-default-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1484gslnijbh" +path="res://.godot/imported/preferences-desktop-default-applications.png-e33b100d4c8e4ec3a8f8b58a96189e46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-default-applications.png" +dest_files=["res://.godot/imported/preferences-desktop-default-applications.png-e33b100d4c8e4ec3a8f8b58a96189e46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png.import new file mode 100644 index 00000000..2944080e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciwcplu412cv7" +path="res://.godot/imported/preferences-desktop-display-nightcolor.png-3aa31cf0df3d0007d07ad9d057fb529c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-display-nightcolor.png" +dest_files=["res://.godot/imported/preferences-desktop-display-nightcolor.png-3aa31cf0df3d0007d07ad9d057fb529c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png.import new file mode 100644 index 00000000..ab08027e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4wf3b1q62wg0" +path="res://.godot/imported/preferences-desktop-display.png-bec0663e0a6f2dfba4880b476315b6b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-display.png" +dest_files=["res://.godot/imported/preferences-desktop-display.png-bec0663e0a6f2dfba4880b476315b6b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png new file mode 100644 index 00000000..ca50058c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png.import new file mode 100644 index 00000000..b9604624 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-emoticons.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkithtfdcslqm" +path="res://.godot/imported/preferences-desktop-emoticons.png-ba8b4da68eaace5320d714abbc97bfc1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-emoticons.png" +dest_files=["res://.godot/imported/preferences-desktop-emoticons.png-ba8b4da68eaace5320d714abbc97bfc1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png new file mode 100644 index 00000000..eba63ae7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png.import new file mode 100644 index 00000000..8a5eb86a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-feedback.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2sh5n06ltqvs" +path="res://.godot/imported/preferences-desktop-feedback.png-6b01ebb05e467bd09eab44ae7213c42d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-feedback.png" +dest_files=["res://.godot/imported/preferences-desktop-feedback.png-6b01ebb05e467bd09eab44ae7213c42d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png new file mode 100644 index 00000000..1dc57b9d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png.import new file mode 100644 index 00000000..b68c9abf --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-filetype-association.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chfiyjqoa1h76" +path="res://.godot/imported/preferences-desktop-filetype-association.png-222303069c5b8b7c51ae472d2102f670.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-filetype-association.png" +dest_files=["res://.godot/imported/preferences-desktop-filetype-association.png-222303069c5b8b7c51ae472d2102f670.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png new file mode 100644 index 00000000..7ed03533 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png.import new file mode 100644 index 00000000..f10d1a2c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font-installer.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt81lm1fppr88" +path="res://.godot/imported/preferences-desktop-font-installer.png-7520bcacb6f40c731bac10671e64b49c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-font-installer.png" +dest_files=["res://.godot/imported/preferences-desktop-font-installer.png-7520bcacb6f40c731bac10671e64b49c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png new file mode 100644 index 00000000..7ed03533 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png.import new file mode 100644 index 00000000..9876fb04 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-font.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceeu7dtkc73pa" +path="res://.godot/imported/preferences-desktop-font.png-0206ec89c99047f695a505f7052c00a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-font.png" +dest_files=["res://.godot/imported/preferences-desktop-font.png-0206ec89c99047f695a505f7052c00a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png new file mode 100644 index 00000000..e2a38b32 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png.import new file mode 100644 index 00000000..18843b3e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-gaming.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://50ang61sjvqf" +path="res://.godot/imported/preferences-desktop-gaming.png-e8e25e5669463d458821e72145f00c66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-gaming.png" +dest_files=["res://.godot/imported/preferences-desktop-gaming.png-e8e25e5669463d458821e72145f00c66.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png new file mode 100644 index 00000000..64d42472 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png.import new file mode 100644 index 00000000..d62ab155 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-icons.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m4knhhovo6gw" +path="res://.godot/imported/preferences-desktop-icons.png-b25ad3b900531e4da94951cd0bb5a539.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-icons.png" +dest_files=["res://.godot/imported/preferences-desktop-icons.png-b25ad3b900531e4da94951cd0bb5a539.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png.import new file mode 100644 index 00000000..6de0ce62 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cflmi0x335ois" +path="res://.godot/imported/preferences-desktop-keyboard-shortcut.png-7900b64636f49c2e322162254451288f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcut.png" +dest_files=["res://.godot/imported/preferences-desktop-keyboard-shortcut.png-7900b64636f49c2e322162254451288f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png new file mode 100644 index 00000000..9728b168 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png.import new file mode 100644 index 00000000..d762c93c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnmfukj2i3141" +path="res://.godot/imported/preferences-desktop-keyboard-shortcuts.png-a1c633203c6a28760a684a1ced9091b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-keyboard-shortcuts.png" +dest_files=["res://.godot/imported/preferences-desktop-keyboard-shortcuts.png-a1c633203c6a28760a684a1ced9091b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png new file mode 100644 index 00000000..2a577eb2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png.import new file mode 100644 index 00000000..8c115daa --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-keyboard.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m58on2yeua6q" +path="res://.godot/imported/preferences-desktop-keyboard.png-d18cce687b93ca5fd501adbe7801798c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-keyboard.png" +dest_files=["res://.godot/imported/preferences-desktop-keyboard.png-d18cce687b93ca5fd501adbe7801798c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png new file mode 100644 index 00000000..65460949 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png.import new file mode 100644 index 00000000..a5c28102 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bknv1ve45rbap" +path="res://.godot/imported/preferences-desktop-launch-feedback.png-b10174d21205932f2df452853abe915d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-launch-feedback.png" +dest_files=["res://.godot/imported/preferences-desktop-launch-feedback.png-b10174d21205932f2df452853abe915d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png new file mode 100644 index 00000000..06d89798 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png.import new file mode 100644 index 00000000..1fde067a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-locale.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cthlwjgcq1xa3" +path="res://.godot/imported/preferences-desktop-locale.png-bcb93f5c133027ee5845257cf81ebe63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-locale.png" +dest_files=["res://.godot/imported/preferences-desktop-locale.png-bcb93f5c133027ee5845257cf81ebe63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png new file mode 100644 index 00000000..f22eacca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png.import new file mode 100644 index 00000000..eb74e064 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-mouse.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxxysdnsp2bp6" +path="res://.godot/imported/preferences-desktop-mouse.png-9d3086db4fca1052d8ef5179d6e4f248.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-mouse.png" +dest_files=["res://.godot/imported/preferences-desktop-mouse.png-9d3086db4fca1052d8ef5179d6e4f248.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png new file mode 100644 index 00000000..15912542 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png.import new file mode 100644 index 00000000..6c90d6e0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-notification-bell.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgfh71000s0w0" +path="res://.godot/imported/preferences-desktop-notification-bell.png-ec36ee81ed2c898377bc6d70430f5451.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-notification-bell.png" +dest_files=["res://.godot/imported/preferences-desktop-notification-bell.png-ec36ee81ed2c898377bc6d70430f5451.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png new file mode 100644 index 00000000..f22eacca Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png.import new file mode 100644 index 00000000..cd33cb3f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-peripherals.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvj2e6d4uinj" +path="res://.godot/imported/preferences-desktop-peripherals.png-3883396431c3a6d2a54e0e507b5f6cb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-peripherals.png" +dest_files=["res://.godot/imported/preferences-desktop-peripherals.png-3883396431c3a6d2a54e0e507b5f6cb7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png.import new file mode 100644 index 00000000..93aa9714 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-personal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxewb6w43ip1i" +path="res://.godot/imported/preferences-desktop-personal.png-f770350c2ab69996655905fe718c6f5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-personal.png" +dest_files=["res://.godot/imported/preferences-desktop-personal.png-f770350c2ab69996655905fe718c6f5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png new file mode 100644 index 00000000..ebd4e1c4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png.import new file mode 100644 index 00000000..f94cba8c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgyophevygne6" +path="res://.godot/imported/preferences-desktop-plasma-theme.png-256fca699c9b162bc478251c9e248292.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-plasma-theme.png" +dest_files=["res://.godot/imported/preferences-desktop-plasma-theme.png-256fca699c9b162bc478251c9e248292.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png new file mode 100644 index 00000000..79046b27 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png.import new file mode 100644 index 00000000..532b6b6a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-tablet.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://32xih17df4pr" +path="res://.godot/imported/preferences-desktop-tablet.png-c804535884330c8eec41a5169afea038.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-tablet.png" +dest_files=["res://.godot/imported/preferences-desktop-tablet.png-c804535884330c8eec41a5169afea038.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png new file mode 100644 index 00000000..d382caa6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png.import new file mode 100644 index 00000000..8ec1eae2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-applications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dws0rr8jfap8i" +path="res://.godot/imported/preferences-desktop-theme-applications.png-4747329daaf2f9bc279e7d1f91ee6676.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-theme-applications.png" +dest_files=["res://.godot/imported/preferences-desktop-theme-applications.png-4747329daaf2f9bc279e7d1f91ee6676.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png new file mode 100644 index 00000000..31f776b4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png.import new file mode 100644 index 00000000..b3897a62 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme-global.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8oex88dows0o" +path="res://.godot/imported/preferences-desktop-theme-global.png-6aac40f72448c6b1549f1e3f0b14ac10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-theme-global.png" +dest_files=["res://.godot/imported/preferences-desktop-theme-global.png-6aac40f72448c6b1549f1e3f0b14ac10.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png new file mode 100644 index 00000000..31f776b4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png.import new file mode 100644 index 00000000..9ddbb3ed --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-theme.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dky7nwryje704" +path="res://.godot/imported/preferences-desktop-theme.png-e883ec76cbd7504c6f9b646b1f6b0ddd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-theme.png" +dest_files=["res://.godot/imported/preferences-desktop-theme.png-e883ec76cbd7504c6f9b646b1f6b0ddd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png new file mode 100644 index 00000000..4f7691e1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png.import new file mode 100644 index 00000000..f67eb19e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-touchpad.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cedie5ag60rbc" +path="res://.godot/imported/preferences-desktop-touchpad.png-33c38dc42bf5aa5231ef159fb7ce7ca9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-touchpad.png" +dest_files=["res://.godot/imported/preferences-desktop-touchpad.png-33c38dc42bf5aa5231ef159fb7ce7ca9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png.import new file mode 100644 index 00000000..cf0e2b48 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n8p7470loem4" +path="res://.godot/imported/preferences-desktop-user.png-124cb7d45f1278e37a3d0db514e7d8c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-user.png" +dest_files=["res://.godot/imported/preferences-desktop-user.png-124cb7d45f1278e37a3d0db514e7d8c3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png new file mode 100644 index 00000000..64aaa26d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png.import new file mode 100644 index 00000000..5dcccba7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop-wallpaper.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1f52fe05blqy" +path="res://.godot/imported/preferences-desktop-wallpaper.png-64bd2841fd5ea0b3609d36f2b28942ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop-wallpaper.png" +dest_files=["res://.godot/imported/preferences-desktop-wallpaper.png-64bd2841fd5ea0b3609d36f2b28942ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png.import new file mode 100644 index 00000000..74524089 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-desktop.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bn3pw84c6mlsk" +path="res://.godot/imported/preferences-desktop.png-05a9a9a3084bba8618cf5c49bdfcf2ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-desktop.png" +dest_files=["res://.godot/imported/preferences-desktop.png-05a9a9a3084bba8618cf5c49bdfcf2ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png new file mode 100644 index 00000000..24cc0d0f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png.import new file mode 100644 index 00000000..78913223 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-network.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2qkkdgbfdchd" +path="res://.godot/imported/preferences-system-network.png-a7f18f002d7e33c008f5c7c9580f6480.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-network.png" +dest_files=["res://.godot/imported/preferences-system-network.png-a7f18f002d7e33c008f5c7c9580f6480.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png new file mode 100644 index 00000000..15912542 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png.import new file mode 100644 index 00000000..d4e93527 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-notifications.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxrhrmkmg7urb" +path="res://.godot/imported/preferences-system-notifications.png-48ffc2cabdd20ce8ba57a8b9af672df9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-notifications.png" +dest_files=["res://.godot/imported/preferences-system-notifications.png-48ffc2cabdd20ce8ba57a8b9af672df9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png.import new file mode 100644 index 00000000..a1ac9052 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djrtcdwxuvfj4" +path="res://.godot/imported/preferences-system-search.png-de9a763925f1da793e0b974c213186dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-search.png" +dest_files=["res://.godot/imported/preferences-system-search.png-de9a763925f1da793e0b974c213186dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png new file mode 100644 index 00000000..31db6e05 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png.import new file mode 100644 index 00000000..c8047301 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-session-services.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfxghigsbiqf1" +path="res://.godot/imported/preferences-system-session-services.png-30af6243d6ffd3d8a18c0bdf3b6df591.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-session-services.png" +dest_files=["res://.godot/imported/preferences-system-session-services.png-30af6243d6ffd3d8a18c0bdf3b6df591.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png new file mode 100644 index 00000000..e63322a2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png.import new file mode 100644 index 00000000..17f1f32a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-splash.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cebtyi1tx7f7n" +path="res://.godot/imported/preferences-system-splash.png-5c2558cab91f6e30e3e311e8ef79fced.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-splash.png" +dest_files=["res://.godot/imported/preferences-system-splash.png-5c2558cab91f6e30e3e311e8ef79fced.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png new file mode 100644 index 00000000..22ee5f71 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png.import new file mode 100644 index 00000000..e140a385 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-time.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm8q7gmtaytl" +path="res://.godot/imported/preferences-system-time.png-4d578f09f4f105fd9af734a9efe3c374.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-time.png" +dest_files=["res://.godot/imported/preferences-system-time.png-4d578f09f4f105fd9af734a9efe3c374.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png.import new file mode 100644 index 00000000..1e937e21 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-users.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v8q2yt1ku0oj" +path="res://.godot/imported/preferences-system-users.png-832bc1e218edce65e24928e40a981bfa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-users.png" +dest_files=["res://.godot/imported/preferences-system-users.png-832bc1e218edce65e24928e40a981bfa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png new file mode 100644 index 00000000..bfdcec42 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png.import new file mode 100644 index 00000000..b0ba18f6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows-actions.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://we7r4tgvylj7" +path="res://.godot/imported/preferences-system-windows-actions.png-10561d9321e5e2171fabe7f35baf6efa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-windows-actions.png" +dest_files=["res://.godot/imported/preferences-system-windows-actions.png-10561d9321e5e2171fabe7f35baf6efa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png new file mode 100644 index 00000000..bfdcec42 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png.import new file mode 100644 index 00000000..f05e594d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system-windows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ojosle3jlmcq" +path="res://.godot/imported/preferences-system-windows.png-f3f23f0b1f1798df9fa64dc89e9c800d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system-windows.png" +dest_files=["res://.godot/imported/preferences-system-windows.png-f3f23f0b1f1798df9fa64dc89e9c800d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system.png b/tools/configurator/assets/icons/pixelitos/16/preferences-system.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-system.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-system.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-system.png.import new file mode 100644 index 00000000..12df65a9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-system.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm6m1y0u7tqul" +path="res://.godot/imported/preferences-system.png-8bcf1f077b588bae0aeaad821886906d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-system.png" +dest_files=["res://.godot/imported/preferences-system.png-8bcf1f077b588bae0aeaad821886906d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png b/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png new file mode 100644 index 00000000..9bc09aa2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png.import b/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png.import new file mode 100644 index 00000000..54f22053 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/preferences-tweaks-shadows.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnrroqoqmswwl" +path="res://.godot/imported/preferences-tweaks-shadows.png-9f5472e0debd8a608aba1a98d88b846b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/preferences-tweaks-shadows.png" +dest_files=["res://.godot/imported/preferences-tweaks-shadows.png-9f5472e0debd8a608aba1a98d88b846b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/primehack.png b/tools/configurator/assets/icons/pixelitos/16/primehack.png new file mode 100644 index 00000000..6e8032a6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/primehack.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/primehack.png.import b/tools/configurator/assets/icons/pixelitos/16/primehack.png.import new file mode 100644 index 00000000..fb14d203 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/primehack.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kr1q8015vaim" +path="res://.godot/imported/primehack.png-215d916d6654b2811b2c90bd03445f63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/primehack.png" +dest_files=["res://.godot/imported/primehack.png-215d916d6654b2811b2c90bd03445f63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/pvz.png b/tools/configurator/assets/icons/pixelitos/16/pvz.png new file mode 100644 index 00000000..257f8940 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/pvz.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/pvz.png.import b/tools/configurator/assets/icons/pixelitos/16/pvz.png.import new file mode 100644 index 00000000..0ddd0c17 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/pvz.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dohmqfg8vnb24" +path="res://.godot/imported/pvz.png-cf54b534c25ecc5e56b72a82e24be1db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/pvz.png" +dest_files=["res://.godot/imported/pvz.png-cf54b534c25ecc5e56b72a82e24be1db.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/qemu.png b/tools/configurator/assets/icons/pixelitos/16/qemu.png new file mode 100644 index 00000000..1dffade4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/qemu.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/qemu.png.import b/tools/configurator/assets/icons/pixelitos/16/qemu.png.import new file mode 100644 index 00000000..65e2cc81 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/qemu.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvuv7sp4uneml" +path="res://.godot/imported/qemu.png-c2a290f1a375d41e82faaafa287ce6b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/qemu.png" +dest_files=["res://.godot/imported/qemu.png-c2a290f1a375d41e82faaafa287ce6b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/raze.png b/tools/configurator/assets/icons/pixelitos/16/raze.png new file mode 100644 index 00000000..390982e8 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/raze.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/raze.png.import b/tools/configurator/assets/icons/pixelitos/16/raze.png.import new file mode 100644 index 00000000..bb5010ff --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/raze.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cke850dhfqqs" +path="res://.godot/imported/raze.png-e4ae7402888398697b6c58ff047122e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/raze.png" +dest_files=["res://.godot/imported/raze.png-e4ae7402888398697b6c58ff047122e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/redream.png b/tools/configurator/assets/icons/pixelitos/16/redream.png new file mode 100644 index 00000000..4d317cfa Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/redream.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/redream.png.import b/tools/configurator/assets/icons/pixelitos/16/redream.png.import new file mode 100644 index 00000000..0864bf91 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/redream.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k4uc4spfu3dp" +path="res://.godot/imported/redream.png-9aed0f5f856dc8252cee283c49a97dc7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/redream.png" +dest_files=["res://.godot/imported/redream.png-9aed0f5f856dc8252cee283c49a97dc7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/romm.png b/tools/configurator/assets/icons/pixelitos/16/romm.png new file mode 100644 index 00000000..0e6ef453 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/romm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/romm.png.import b/tools/configurator/assets/icons/pixelitos/16/romm.png.import new file mode 100644 index 00000000..1219d3b4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/romm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b72c8l76p2v63" +path="res://.godot/imported/romm.png-4509adc3492d66efb382d7974e45aa79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/romm.png" +dest_files=["res://.godot/imported/romm.png-4509adc3492d66efb382d7974e45aa79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/roxterm.png b/tools/configurator/assets/icons/pixelitos/16/roxterm.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/roxterm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/roxterm.png.import b/tools/configurator/assets/icons/pixelitos/16/roxterm.png.import new file mode 100644 index 00000000..e535774c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/roxterm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca7xrs551iscw" +path="res://.godot/imported/roxterm.png-7642cf5b41e736ab6ef3cb10b79ec163.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/roxterm.png" +dest_files=["res://.godot/imported/roxterm.png-7642cf5b41e736ab6ef3cb10b79ec163.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ruffle.png b/tools/configurator/assets/icons/pixelitos/16/ruffle.png new file mode 100644 index 00000000..ac69d76b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ruffle.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ruffle.png.import b/tools/configurator/assets/icons/pixelitos/16/ruffle.png.import new file mode 100644 index 00000000..17846697 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ruffle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvmof0t5n2ir0" +path="res://.godot/imported/ruffle.png-f70fbfddbbafb936c7a1f4b99a59aa5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ruffle.png" +dest_files=["res://.godot/imported/ruffle.png-f70fbfddbbafb936c7a1f4b99a59aa5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/scummvm.png b/tools/configurator/assets/icons/pixelitos/16/scummvm.png new file mode 100644 index 00000000..131cd9ad Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/scummvm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/scummvm.png.import b/tools/configurator/assets/icons/pixelitos/16/scummvm.png.import new file mode 100644 index 00000000..a373b79b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/scummvm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8b4ax5j4eedk" +path="res://.godot/imported/scummvm.png-2adc817cfff5997d269fcdde2985984a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/scummvm.png" +dest_files=["res://.godot/imported/scummvm.png-2adc817cfff5997d269fcdde2985984a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/sdltrs.png b/tools/configurator/assets/icons/pixelitos/16/sdltrs.png new file mode 100644 index 00000000..d26a432a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/sdltrs.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/sdltrs.png.import b/tools/configurator/assets/icons/pixelitos/16/sdltrs.png.import new file mode 100644 index 00000000..4c75435a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/sdltrs.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvk5hxalqfgb7" +path="res://.godot/imported/sdltrs.png-fe31a6206147de752a57abbd41e7e8e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/sdltrs.png" +dest_files=["res://.godot/imported/sdltrs.png-fe31a6206147de752a57abbd41e7e8e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/search.png b/tools/configurator/assets/icons/pixelitos/16/search.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/search.png.import b/tools/configurator/assets/icons/pixelitos/16/search.png.import new file mode 100644 index 00000000..0768db3a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj7nyqs2setf3" +path="res://.godot/imported/search.png-8f15dc952b96a8b8e28e3d52f2c4f2e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/search.png" +dest_files=["res://.godot/imported/search.png-8f15dc952b96a8b8e28e3d52f2c4f2e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/security-high.png b/tools/configurator/assets/icons/pixelitos/16/security-high.png new file mode 100644 index 00000000..ac52aca7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/security-high.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/security-high.png.import b/tools/configurator/assets/icons/pixelitos/16/security-high.png.import new file mode 100644 index 00000000..b3e17a6f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/security-high.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j6ayc241mul7" +path="res://.godot/imported/security-high.png-e3c55e9993f44540fe3855ab3b49d5a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/security-high.png" +dest_files=["res://.godot/imported/security-high.png-e3c55e9993f44540fe3855ab3b49d5a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/security-low.png b/tools/configurator/assets/icons/pixelitos/16/security-low.png new file mode 100644 index 00000000..45d2cf8a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/security-low.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/security-low.png.import b/tools/configurator/assets/icons/pixelitos/16/security-low.png.import new file mode 100644 index 00000000..dce25d23 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/security-low.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgodd1g2u3b32" +path="res://.godot/imported/security-low.png-57c11229d4ec7d240e1ad6a5f6cb8ddb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/security-low.png" +dest_files=["res://.godot/imported/security-low.png-57c11229d4ec7d240e1ad6a5f6cb8ddb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/security-medium.png b/tools/configurator/assets/icons/pixelitos/16/security-medium.png new file mode 100644 index 00000000..c4b3fb7e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/security-medium.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/security-medium.png.import b/tools/configurator/assets/icons/pixelitos/16/security-medium.png.import new file mode 100644 index 00000000..99006b6c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/security-medium.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd5eulbnphmuc" +path="res://.godot/imported/security-medium.png-4d465c71282317ebffd524c51ad2990f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/security-medium.png" +dest_files=["res://.godot/imported/security-medium.png-4d465c71282317ebffd524c51ad2990f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/simcoupe.png b/tools/configurator/assets/icons/pixelitos/16/simcoupe.png new file mode 100644 index 00000000..0ae4a032 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/simcoupe.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/simcoupe.png.import b/tools/configurator/assets/icons/pixelitos/16/simcoupe.png.import new file mode 100644 index 00000000..013b21b7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/simcoupe.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc8khhviiolw7" +path="res://.godot/imported/simcoupe.png-fd097e8eeb90b6108dbf315fc57855fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/simcoupe.png" +dest_files=["res://.godot/imported/simcoupe.png-fd097e8eeb90b6108dbf315fc57855fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png b/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png new file mode 100644 index 00000000..a2092b1c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png.import b/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png.import new file mode 100644 index 00000000..9d7efa77 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/simplescreenrecorder.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk0yte5sv7c2v" +path="res://.godot/imported/simplescreenrecorder.png-387b632a8d8abf13f7fde27646e7ff13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/simplescreenrecorder.png" +dest_files=["res://.godot/imported/simplescreenrecorder.png-387b632a8d8abf13f7fde27646e7ff13.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/skullgirls.png b/tools/configurator/assets/icons/pixelitos/16/skullgirls.png new file mode 100644 index 00000000..f049d3a4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/skullgirls.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/skullgirls.png.import b/tools/configurator/assets/icons/pixelitos/16/skullgirls.png.import new file mode 100644 index 00000000..2d177bae --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/skullgirls.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drp3unl1vkrog" +path="res://.godot/imported/skullgirls.png-71aba4d569bd4656d080a6c5efe77d76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/skullgirls.png" +dest_files=["res://.godot/imported/skullgirls.png-71aba4d569bd4656d080a6c5efe77d76.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/snes9x.png b/tools/configurator/assets/icons/pixelitos/16/snes9x.png new file mode 100644 index 00000000..764cc23b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/snes9x.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/snes9x.png.import b/tools/configurator/assets/icons/pixelitos/16/snes9x.png.import new file mode 100644 index 00000000..ed9d69a8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/snes9x.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c62sx6543a5he" +path="res://.godot/imported/snes9x.png-cff50f0bf19843a1ae9aa3e6859cccd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/snes9x.png" +dest_files=["res://.godot/imported/snes9x.png-cff50f0bf19843a1ae9aa3e6859cccd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/solarus.png b/tools/configurator/assets/icons/pixelitos/16/solarus.png new file mode 100644 index 00000000..808c03f5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/solarus.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/solarus.png.import b/tools/configurator/assets/icons/pixelitos/16/solarus.png.import new file mode 100644 index 00000000..e51d92ef --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/solarus.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3n0fek4gi555" +path="res://.godot/imported/solarus.png-637f4aa0ea0d755b3ec06201bb05cd9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/solarus.png" +dest_files=["res://.godot/imported/solarus.png-637f4aa0ea0d755b3ec06201bb05cd9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png b/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png new file mode 100644 index 00000000..865e567a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png.import b/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png.import new file mode 100644 index 00000000..6381060f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/spacefm-find.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr5yjnrs8omxq" +path="res://.godot/imported/spacefm-find.png-53352db519eb13c0782ad7624d28cf2b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/spacefm-find.png" +dest_files=["res://.godot/imported/spacefm-find.png-53352db519eb13c0782ad7624d28cf2b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/spacefm.png b/tools/configurator/assets/icons/pixelitos/16/spacefm.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/spacefm.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/spacefm.png.import b/tools/configurator/assets/icons/pixelitos/16/spacefm.png.import new file mode 100644 index 00000000..82b29f21 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/spacefm.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coe8y7u6h2ris" +path="res://.godot/imported/spacefm.png-7b259b5b2ff7202b6d6d76c6c6fed804.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/spacefm.png" +dest_files=["res://.godot/imported/spacefm.png-7b259b5b2ff7202b6d6d76c6c6fed804.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/spotify.png b/tools/configurator/assets/icons/pixelitos/16/spotify.png new file mode 100644 index 00000000..3f4c736a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/spotify.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/spotify.png.import b/tools/configurator/assets/icons/pixelitos/16/spotify.png.import new file mode 100644 index 00000000..510a4714 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/spotify.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://def4opf6rqyuc" +path="res://.godot/imported/spotify.png-20583f418e2d260b4827ed546eabf5bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/spotify.png" +dest_files=["res://.godot/imported/spotify.png-20583f418e2d260b4827ed546eabf5bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam.png b/tools/configurator/assets/icons/pixelitos/16/steam.png new file mode 100644 index 00000000..4f517f48 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam.png.import b/tools/configurator/assets/icons/pixelitos/16/steam.png.import new file mode 100644 index 00000000..128a44c0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq7k15yigp12n" +path="res://.godot/imported/steam.png-b078f1f95ae03fe9d3dc8218c130db0d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam.png" +dest_files=["res://.godot/imported/steam.png-b078f1f95ae03fe9d3dc8218c130db0d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png new file mode 100644 index 00000000..c336011d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png.import new file mode 100644 index 00000000..237e76c4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_1289310.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6tgi18yckgyh" +path="res://.godot/imported/steam_icon_1289310.png-929d2360848cb3f65d6763c4126a2936.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_1289310.png" +dest_files=["res://.godot/imported/steam_icon_1289310.png-929d2360848cb3f65d6763c4126a2936.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png new file mode 100644 index 00000000..789c9e39 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png.import new file mode 100644 index 00000000..9630d3f7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_20.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy12d6j31cqhx" +path="res://.godot/imported/steam_icon_20.png-99848ddb725c982b2af9d08cfdecb92f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_20.png" +dest_files=["res://.godot/imported/steam_icon_20.png-99848ddb725c982b2af9d08cfdecb92f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png new file mode 100644 index 00000000..f049d3a4 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png.import new file mode 100644 index 00000000..df810839 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_245170.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cub7g0r2r4fc2" +path="res://.godot/imported/steam_icon_245170.png-6b3e4830baecf1e92ebdb8c82d66c7dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_245170.png" +dest_files=["res://.godot/imported/steam_icon_245170.png-6b3e4830baecf1e92ebdb8c82d66c7dd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png new file mode 100644 index 00000000..7deecf74 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png.import new file mode 100644 index 00000000..62c444da --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_322170.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm2nq8fahr7yr" +path="res://.godot/imported/steam_icon_322170.png-fa8ebaf25263717eb34cef2e33a66166.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_322170.png" +dest_files=["res://.godot/imported/steam_icon_322170.png-fa8ebaf25263717eb34cef2e33a66166.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png new file mode 100644 index 00000000..257f8940 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png.import new file mode 100644 index 00000000..0df2461a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_3590.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t8y6t1udeh58" +path="res://.godot/imported/steam_icon_3590.png-389a4dbe806652c7078dd678f8c3f1ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_3590.png" +dest_files=["res://.godot/imported/steam_icon_3590.png-389a4dbe806652c7078dd678f8c3f1ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png new file mode 100644 index 00000000..f7a067b3 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png.import new file mode 100644 index 00000000..42b9dbce --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_620.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2s533p5hnurr" +path="res://.godot/imported/steam_icon_620.png-ad18815d1bdfbcd46c57164ad0091233.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_620.png" +dest_files=["res://.godot/imported/steam_icon_620.png-ad18815d1bdfbcd46c57164ad0091233.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png b/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png new file mode 100644 index 00000000..9a8277b2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png.import b/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png.import new file mode 100644 index 00000000..3a1afcd9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/steam_icon_70.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5x62oq72g0ts" +path="res://.godot/imported/steam_icon_70.png-6f255c749a65e7337d9b7de37f27ed79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/steam_icon_70.png" +dest_files=["res://.godot/imported/steam_icon_70.png-6f255c749a65e7337d9b7de37f27ed79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/stella.png b/tools/configurator/assets/icons/pixelitos/16/stella.png new file mode 100644 index 00000000..c2f07638 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/stella.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/stella.png.import b/tools/configurator/assets/icons/pixelitos/16/stella.png.import new file mode 100644 index 00000000..ad35404b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/stella.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ojje55wspq87" +path="res://.godot/imported/stella.png-4de3afffad8f31f69344bb3bd6f9aa9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/stella.png" +dest_files=["res://.godot/imported/stella.png-4de3afffad8f31f69344bb3bd6f9aa9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/strawberry.png b/tools/configurator/assets/icons/pixelitos/16/strawberry.png new file mode 100644 index 00000000..361cefcf Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/strawberry.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/strawberry.png.import b/tools/configurator/assets/icons/pixelitos/16/strawberry.png.import new file mode 100644 index 00000000..f62501ac --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/strawberry.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgk64qjqo6q1j" +path="res://.godot/imported/strawberry.png-7ccb8caf25884ca8511816502ff738ed.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/strawberry.png" +dest_files=["res://.godot/imported/strawberry.png-7ccb8caf25884ca8511816502ff738ed.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/supermodel.png b/tools/configurator/assets/icons/pixelitos/16/supermodel.png new file mode 100644 index 00000000..d52230eb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/supermodel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/supermodel.png.import b/tools/configurator/assets/icons/pixelitos/16/supermodel.png.import new file mode 100644 index 00000000..c00f0c52 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/supermodel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gwkmo282lwpq" +path="res://.godot/imported/supermodel.png-2370d99ef21be058ea45c09b3cd4ca21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/supermodel.png" +dest_files=["res://.godot/imported/supermodel.png-2370d99ef21be058ea45c09b3cd4ca21.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png b/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png new file mode 100644 index 00000000..23b4691c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png.import b/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png.import new file mode 100644 index 00000000..43925f01 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/supertuxkart.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cytqatrku51le" +path="res://.godot/imported/supertuxkart.png-f1d1934d102f7db2e5541804410921c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/supertuxkart.png" +dest_files=["res://.godot/imported/supertuxkart.png-f1d1934d102f7db2e5541804410921c8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png b/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png new file mode 100644 index 00000000..77e06888 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png.import b/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png.import new file mode 100644 index 00000000..d27327df --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-file-manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl2i2gk1hbnqa" +path="res://.godot/imported/system-file-manager.png-842ebc4010d551148ae9b76ccc8766d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-file-manager.png" +dest_files=["res://.godot/imported/system-file-manager.png-842ebc4010d551148ae9b76ccc8766d2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png b/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png new file mode 100644 index 00000000..fe75993c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png.import b/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png.import new file mode 100644 index 00000000..a2e65ce2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-lock-screen.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d00ek24nvfj7x" +path="res://.godot/imported/system-lock-screen.png-e9ea68da0d3a36330347454e7ac3c345.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-lock-screen.png" +dest_files=["res://.godot/imported/system-lock-screen.png-e9ea68da0d3a36330347454e7ac3c345.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-log-out.png b/tools/configurator/assets/icons/pixelitos/16/system-log-out.png new file mode 100644 index 00000000..1ccffb7c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-log-out.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-log-out.png.import b/tools/configurator/assets/icons/pixelitos/16/system-log-out.png.import new file mode 100644 index 00000000..ec6fa71a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-log-out.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br1jsl4kv2n3t" +path="res://.godot/imported/system-log-out.png-bb671251ad259cb2c201d79028478a62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-log-out.png" +dest_files=["res://.godot/imported/system-log-out.png-bb671251ad259cb2c201d79028478a62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-logout.png b/tools/configurator/assets/icons/pixelitos/16/system-logout.png new file mode 100644 index 00000000..1ccffb7c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-logout.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-logout.png.import b/tools/configurator/assets/icons/pixelitos/16/system-logout.png.import new file mode 100644 index 00000000..ad01417c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-logout.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3rbuehbro1ry" +path="res://.godot/imported/system-logout.png-3c7da452254b7fd460d47363c13e73cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-logout.png" +dest_files=["res://.godot/imported/system-logout.png-3c7da452254b7fd460d47363c13e73cd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-reboot.png b/tools/configurator/assets/icons/pixelitos/16/system-reboot.png new file mode 100644 index 00000000..e2d17944 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-reboot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-reboot.png.import b/tools/configurator/assets/icons/pixelitos/16/system-reboot.png.import new file mode 100644 index 00000000..3184a412 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-reboot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfgok7ebqinc3" +path="res://.godot/imported/system-reboot.png-7e29360bc5998a0b2efb37079f86b3c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-reboot.png" +dest_files=["res://.godot/imported/system-reboot.png-7e29360bc5998a0b2efb37079f86b3c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-run.png b/tools/configurator/assets/icons/pixelitos/16/system-run.png new file mode 100644 index 00000000..31db6e05 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-run.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-run.png.import b/tools/configurator/assets/icons/pixelitos/16/system-run.png.import new file mode 100644 index 00000000..18bcbb53 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-run.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqn6ewwbp7vrv" +path="res://.godot/imported/system-run.png-305ddb0d74524762e698470100fefe20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-run.png" +dest_files=["res://.godot/imported/system-run.png-305ddb0d74524762e698470100fefe20.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-search.png b/tools/configurator/assets/icons/pixelitos/16/system-search.png new file mode 100644 index 00000000..4f1d91fc Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-search.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-search.png.import b/tools/configurator/assets/icons/pixelitos/16/system-search.png.import new file mode 100644 index 00000000..6d85407c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-search.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnpe0gn8f210" +path="res://.godot/imported/system-search.png-bc21dfb5be7657a4a0ac84f5ddc4c40b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-search.png" +dest_files=["res://.godot/imported/system-search.png-bc21dfb5be7657a4a0ac84f5ddc4c40b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png b/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png new file mode 100644 index 00000000..933ee6a7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png.import b/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png.import new file mode 100644 index 00000000..d854221b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-shutdown.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dllymmym0335n" +path="res://.godot/imported/system-shutdown.png-a75946cc22f093e1fd7d20423f6d4b6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-shutdown.png" +dest_files=["res://.godot/imported/system-shutdown.png-a75946cc22f093e1fd7d20423f6d4b6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-software-install.png b/tools/configurator/assets/icons/pixelitos/16/system-software-install.png new file mode 100644 index 00000000..743671ce Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-software-install.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-software-install.png.import b/tools/configurator/assets/icons/pixelitos/16/system-software-install.png.import new file mode 100644 index 00000000..97012ed6 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-software-install.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://caoe28dbq33x3" +path="res://.godot/imported/system-software-install.png-b13f1ec242485529c63ced3278abf54b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-software-install.png" +dest_files=["res://.godot/imported/system-software-install.png-b13f1ec242485529c63ced3278abf54b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png b/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png new file mode 100644 index 00000000..885a2a4e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png.import b/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png.import new file mode 100644 index 00000000..62cc50aa --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-suspend-hibernate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bucpvenc7dmma" +path="res://.godot/imported/system-suspend-hibernate.png-ba07d22518ebca88849cd171f005e86d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-suspend-hibernate.png" +dest_files=["res://.godot/imported/system-suspend-hibernate.png-ba07d22518ebca88849cd171f005e86d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-suspend.png b/tools/configurator/assets/icons/pixelitos/16/system-suspend.png new file mode 100644 index 00000000..fe75993c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-suspend.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-suspend.png.import b/tools/configurator/assets/icons/pixelitos/16/system-suspend.png.import new file mode 100644 index 00000000..312566ac --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-suspend.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdqayeev762dx" +path="res://.godot/imported/system-suspend.png-3805ff4bef128ce0747c8a8d9416f70c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-suspend.png" +dest_files=["res://.godot/imported/system-suspend.png-3805ff4bef128ce0747c8a8d9416f70c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png b/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png new file mode 100644 index 00000000..480e62d1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png.import b/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png.import new file mode 100644 index 00000000..f9ac607d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-switch-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://64ojdcj7mfol" +path="res://.godot/imported/system-switch-user.png-b582e67832ed6a2d283bf00b190081d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-switch-user.png" +dest_files=["res://.godot/imported/system-switch-user.png-b582e67832ed6a2d283bf00b190081d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/system-users.png b/tools/configurator/assets/icons/pixelitos/16/system-users.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/system-users.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/system-users.png.import b/tools/configurator/assets/icons/pixelitos/16/system-users.png.import new file mode 100644 index 00000000..befd0585 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/system-users.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qqcb7grvp6om" +path="res://.godot/imported/system-users.png-f43ba36547704aa521f06c414bb06bfe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/system-users.png" +dest_files=["res://.godot/imported/system-users.png-f43ba36547704aa521f06c414bb06bfe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/systemsettings.png b/tools/configurator/assets/icons/pixelitos/16/systemsettings.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/systemsettings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/systemsettings.png.import b/tools/configurator/assets/icons/pixelitos/16/systemsettings.png.import new file mode 100644 index 00000000..a4cce86e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/systemsettings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8w5o1bmrth6g" +path="res://.godot/imported/systemsettings.png-a32512d81ece5301e2abfb892943e3f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/systemsettings.png" +dest_files=["res://.godot/imported/systemsettings.png-a32512d81ece5301e2abfb892943e3f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png b/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png new file mode 100644 index 00000000..789c9e39 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png.import b/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png.import new file mode 100644 index 00000000..52b71583 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/team-fortress-classic.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g5bbb8d4048h" +path="res://.godot/imported/team-fortress-classic.png-7fb9df470d445fd4020a654dc726ff15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/team-fortress-classic.png" +dest_files=["res://.godot/imported/team-fortress-classic.png-7fb9df470d445fd4020a654dc726ff15.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/telegram.png b/tools/configurator/assets/icons/pixelitos/16/telegram.png new file mode 100644 index 00000000..98f6f3c6 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/telegram.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/telegram.png.import b/tools/configurator/assets/icons/pixelitos/16/telegram.png.import new file mode 100644 index 00000000..6fce858d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/telegram.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4u0yp5008h72" +path="res://.godot/imported/telegram.png-0ff85cc21c0cff8036f5dcccf133d32e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/telegram.png" +dest_files=["res://.godot/imported/telegram.png-0ff85cc21c0cff8036f5dcccf133d32e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png b/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png.import b/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png.import new file mode 100644 index 00000000..7ba27817 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/terminal-tango.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxtop31oij8b5" +path="res://.godot/imported/terminal-tango.png-2cca333019c8808606519465822a385a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/terminal-tango.png" +dest_files=["res://.godot/imported/terminal-tango.png-2cca333019c8808606519465822a385a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/tesseract.png b/tools/configurator/assets/icons/pixelitos/16/tesseract.png new file mode 100644 index 00000000..800ea5ef Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/tesseract.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/tesseract.png.import b/tools/configurator/assets/icons/pixelitos/16/tesseract.png.import new file mode 100644 index 00000000..d35137f1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/tesseract.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmia0bukb6fgd" +path="res://.godot/imported/tesseract.png-064b9e2e05b60a6b4b7a91fb4921d28e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/tesseract.png" +dest_files=["res://.godot/imported/tesseract.png-064b9e2e05b60a6b4b7a91fb4921d28e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png b/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png new file mode 100644 index 00000000..f0b2cfe5 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png.import b/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png.import new file mode 100644 index 00000000..78200293 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/text-x-chdr.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjslf4sag627l" +path="res://.godot/imported/text-x-chdr.png-e9e8afda665f1e49f23176ac0f2de535.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/text-x-chdr.png" +dest_files=["res://.godot/imported/text-x-chdr.png-e9e8afda665f1e49f23176ac0f2de535.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/tint2.png b/tools/configurator/assets/icons/pixelitos/16/tint2.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/tint2.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/tint2.png.import b/tools/configurator/assets/icons/pixelitos/16/tint2.png.import new file mode 100644 index 00000000..c058d451 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/tint2.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b12go0dgwqe32" +path="res://.godot/imported/tint2.png-14981b5c67f9c481b0df20c7559a8ec7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/tint2.png" +dest_files=["res://.godot/imported/tint2.png-14981b5c67f9c481b0df20c7559a8ec7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/tint2conf.png b/tools/configurator/assets/icons/pixelitos/16/tint2conf.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/tint2conf.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/tint2conf.png.import b/tools/configurator/assets/icons/pixelitos/16/tint2conf.png.import new file mode 100644 index 00000000..7e7a9aa4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/tint2conf.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf40mycjyk4yq" +path="res://.godot/imported/tint2conf.png-284a035988f362480e1b0a7874e97de2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/tint2conf.png" +dest_files=["res://.godot/imported/tint2conf.png-284a035988f362480e1b0a7874e97de2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png b/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png new file mode 100644 index 00000000..93158588 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png.import b/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png.import new file mode 100644 index 00000000..37b01a18 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/tools-check-spelling.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgfk8feokb5w5" +path="res://.godot/imported/tools-check-spelling.png-a2a533768237b01e590776eb567fc3a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/tools-check-spelling.png" +dest_files=["res://.godot/imported/tools-check-spelling.png-a2a533768237b01e590776eb567fc3a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/tsugaru.png b/tools/configurator/assets/icons/pixelitos/16/tsugaru.png new file mode 100644 index 00000000..eaf8e1eb Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/tsugaru.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/tsugaru.png.import b/tools/configurator/assets/icons/pixelitos/16/tsugaru.png.import new file mode 100644 index 00000000..5d963e39 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/tsugaru.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwwhexnd8i1h1" +path="res://.godot/imported/tsugaru.png-437ad6a3a7ff11854f4c1cc89abad33a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/tsugaru.png" +dest_files=["res://.godot/imported/tsugaru.png-437ad6a3a7ff11854f4c1cc89abad33a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/twitter.png b/tools/configurator/assets/icons/pixelitos/16/twitter.png new file mode 100644 index 00000000..dbbbfe3d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/twitter.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/twitter.png.import b/tools/configurator/assets/icons/pixelitos/16/twitter.png.import new file mode 100644 index 00000000..07148812 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/twitter.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmg3ay2o2rond" +path="res://.godot/imported/twitter.png-eb5a5787b6dc28d2695e1fdef37276ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/twitter.png" +dest_files=["res://.godot/imported/twitter.png-eb5a5787b6dc28d2695e1fdef37276ca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/uget-icon.png b/tools/configurator/assets/icons/pixelitos/16/uget-icon.png new file mode 100644 index 00000000..b15ae0ce Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/uget-icon.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/uget-icon.png.import b/tools/configurator/assets/icons/pixelitos/16/uget-icon.png.import new file mode 100644 index 00000000..c4c24a6c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/uget-icon.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj3edaahdc7oo" +path="res://.godot/imported/uget-icon.png-c5a5b0f19c7b736fc0446ce5c9159089.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/uget-icon.png" +dest_files=["res://.godot/imported/uget-icon.png-c5a5b0f19c7b736fc0446ce5c9159089.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/urbanterror.png b/tools/configurator/assets/icons/pixelitos/16/urbanterror.png new file mode 100644 index 00000000..3cf4e5ce Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/urbanterror.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/urbanterror.png.import b/tools/configurator/assets/icons/pixelitos/16/urbanterror.png.import new file mode 100644 index 00000000..32a90ae7 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/urbanterror.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de2s7amfwsy4b" +path="res://.godot/imported/urbanterror.png-f89e9f4ba137c8961d17cc87cf64a393.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/urbanterror.png" +dest_files=["res://.godot/imported/urbanterror.png-f89e9f4ba137c8961d17cc87cf64a393.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/user-info.png b/tools/configurator/assets/icons/pixelitos/16/user-info.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/user-info.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/user-info.png.import b/tools/configurator/assets/icons/pixelitos/16/user-info.png.import new file mode 100644 index 00000000..c4ab223d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/user-info.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgyr3tv8ng4ky" +path="res://.godot/imported/user-info.png-245299ca135d07e8b2d474391a36e331.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/user-info.png" +dest_files=["res://.godot/imported/user-info.png-245299ca135d07e8b2d474391a36e331.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png b/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png new file mode 100644 index 00000000..ff4e5819 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png.import b/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png.import new file mode 100644 index 00000000..b8a111fd --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/utilities-system-monitor.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3fd3momtaxc8" +path="res://.godot/imported/utilities-system-monitor.png-28372a5bab0d00e46abb06d42711a0e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/utilities-system-monitor.png" +dest_files=["res://.godot/imported/utilities-system-monitor.png-28372a5bab0d00e46abb06d42711a0e7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png b/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png new file mode 100644 index 00000000..ed8a1c2b Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png.import b/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png.import new file mode 100644 index 00000000..72e85df4 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/utilities-terminal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do0eyukvt2nmx" +path="res://.godot/imported/utilities-terminal.png-2cbe6a35ce562b2e6c45b2965a4235b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/utilities-terminal.png" +dest_files=["res://.godot/imported/utilities-terminal.png-2cbe6a35ce562b2e6c45b2965a4235b4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png b/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png.import b/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png.import new file mode 100644 index 00000000..a454a608 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/utilities-tweak-tool.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8skwer0rpxrd" +path="res://.godot/imported/utilities-tweak-tool.png-6e7480633f257c24648b69404af54b4b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/utilities-tweak-tool.png" +dest_files=["res://.godot/imported/utilities-tweak-tool.png-6e7480633f257c24648b69404af54b4b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/ventoy.png b/tools/configurator/assets/icons/pixelitos/16/ventoy.png new file mode 100644 index 00000000..83c09b8e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/ventoy.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/ventoy.png.import b/tools/configurator/assets/icons/pixelitos/16/ventoy.png.import new file mode 100644 index 00000000..2a4b6194 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/ventoy.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gdvbqsbd21ea" +path="res://.godot/imported/ventoy.png-73c71b94bf12c922d070aa57b7937b5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/ventoy.png" +dest_files=["res://.godot/imported/ventoy.png-73c71b94bf12c922d070aa57b7937b5e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/video-display.png b/tools/configurator/assets/icons/pixelitos/16/video-display.png new file mode 100644 index 00000000..ce878051 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/video-display.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/video-display.png.import b/tools/configurator/assets/icons/pixelitos/16/video-display.png.import new file mode 100644 index 00000000..faa3b734 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/video-display.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpu4rf0817jdd" +path="res://.godot/imported/video-display.png-debf9c1b116845775a1c8280c1f35ef4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/video-display.png" +dest_files=["res://.godot/imported/video-display.png-debf9c1b116845775a1c8280c1f35ef4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/viewnior.png b/tools/configurator/assets/icons/pixelitos/16/viewnior.png new file mode 100644 index 00000000..0bdbb16c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/viewnior.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/viewnior.png.import b/tools/configurator/assets/icons/pixelitos/16/viewnior.png.import new file mode 100644 index 00000000..ab0c8027 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/viewnior.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e87q1uv22qnk" +path="res://.godot/imported/viewnior.png-44d50731b3e041071409e21564c92b2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/viewnior.png" +dest_files=["res://.godot/imported/viewnior.png-44d50731b3e041071409e21564c92b2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/vim.png b/tools/configurator/assets/icons/pixelitos/16/vim.png new file mode 100644 index 00000000..326ea235 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/vim.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/vim.png.import b/tools/configurator/assets/icons/pixelitos/16/vim.png.import new file mode 100644 index 00000000..805a1f4d --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/vim.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cflkavw61pbuo" +path="res://.godot/imported/vim.png-e392abfff231faa7ebb3456307710cd8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/vim.png" +dest_files=["res://.godot/imported/vim.png-e392abfff231faa7ebb3456307710cd8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/virt-manager.png b/tools/configurator/assets/icons/pixelitos/16/virt-manager.png new file mode 100644 index 00000000..cfb61bc9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/virt-manager.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/virt-manager.png.import b/tools/configurator/assets/icons/pixelitos/16/virt-manager.png.import new file mode 100644 index 00000000..608d385f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/virt-manager.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk5dgt1074ggd" +path="res://.godot/imported/virt-manager.png-6b91c09de9ef35b02d508798aa67389c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/virt-manager.png" +dest_files=["res://.godot/imported/virt-manager.png-6b91c09de9ef35b02d508798aa67389c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/virtualbox.png b/tools/configurator/assets/icons/pixelitos/16/virtualbox.png new file mode 100644 index 00000000..07c0ec4f Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/virtualbox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/virtualbox.png.import b/tools/configurator/assets/icons/pixelitos/16/virtualbox.png.import new file mode 100644 index 00000000..755fc37b --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/virtualbox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c07s6ipedcxj" +path="res://.godot/imported/virtualbox.png-9b68eb51b6f62a43968329d18d41db42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/virtualbox.png" +dest_files=["res://.godot/imported/virtualbox.png-9b68eb51b6f62a43968329d18d41db42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png b/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png new file mode 100644 index 00000000..d45bde63 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png.import b/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png.import new file mode 100644 index 00000000..c4376ee3 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/visual-studio-code.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca6to2d15hvp6" +path="res://.godot/imported/visual-studio-code.png-25692ca8485bb690bbc73f9bf8cfa184.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/visual-studio-code.png" +dest_files=["res://.godot/imported/visual-studio-code.png-25692ca8485bb690bbc73f9bf8cfa184.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/vita3k.png b/tools/configurator/assets/icons/pixelitos/16/vita3k.png new file mode 100644 index 00000000..e1441196 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/vita3k.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/vita3k.png.import b/tools/configurator/assets/icons/pixelitos/16/vita3k.png.import new file mode 100644 index 00000000..62d7a9c1 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/vita3k.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cly75dshuhaj" +path="res://.godot/imported/vita3k.png-93fe1d165f18d42eb8d11782e32ca7a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/vita3k.png" +dest_files=["res://.godot/imported/vita3k.png-93fe1d165f18d42eb8d11782e32ca7a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/vivaldi.png b/tools/configurator/assets/icons/pixelitos/16/vivaldi.png new file mode 100644 index 00000000..5d34b0c9 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/vivaldi.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/vivaldi.png.import b/tools/configurator/assets/icons/pixelitos/16/vivaldi.png.import new file mode 100644 index 00000000..46b695d8 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/vivaldi.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://psgbhmi6m6a" +path="res://.godot/imported/vivaldi.png-1656dbc320082bef066759e8094d9a65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/vivaldi.png" +dest_files=["res://.godot/imported/vivaldi.png-1656dbc320082bef066759e8094d9a65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/vpinball.png b/tools/configurator/assets/icons/pixelitos/16/vpinball.png new file mode 100644 index 00000000..246a0f0d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/vpinball.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/vpinball.png.import b/tools/configurator/assets/icons/pixelitos/16/vpinball.png.import new file mode 100644 index 00000000..bf8f035c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/vpinball.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgqp5gfygvabx" +path="res://.godot/imported/vpinball.png-f7b80d1ce198d6aba87b6d34b24e4b4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/vpinball.png" +dest_files=["res://.godot/imported/vpinball.png-f7b80d1ce198d6aba87b6d34b24e4b4c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/vscodium.png b/tools/configurator/assets/icons/pixelitos/16/vscodium.png new file mode 100644 index 00000000..8db5def0 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/vscodium.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/vscodium.png.import b/tools/configurator/assets/icons/pixelitos/16/vscodium.png.import new file mode 100644 index 00000000..9731bcbe --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/vscodium.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk0ymfg6swxkb" +path="res://.godot/imported/vscodium.png-c7249cafc42d9fff83b75c6e00013f0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/vscodium.png" +dest_files=["res://.godot/imported/vscodium.png-c7249cafc42d9fff83b75c6e00013f0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/waterfox.png b/tools/configurator/assets/icons/pixelitos/16/waterfox.png new file mode 100644 index 00000000..2cab3843 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/waterfox.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/waterfox.png.import b/tools/configurator/assets/icons/pixelitos/16/waterfox.png.import new file mode 100644 index 00000000..667dd539 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/waterfox.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b18qmcfm8xitj" +path="res://.godot/imported/waterfox.png-f5cdf2daf2fb1f59bc435c4904dfcd80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/waterfox.png" +dest_files=["res://.godot/imported/waterfox.png-f5cdf2daf2fb1f59bc435c4904dfcd80.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/wine.png b/tools/configurator/assets/icons/pixelitos/16/wine.png new file mode 100644 index 00000000..b0bf7108 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/wine.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/wine.png.import b/tools/configurator/assets/icons/pixelitos/16/wine.png.import new file mode 100644 index 00000000..80f93f3e --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/wine.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpwyu3hvv62c5" +path="res://.godot/imported/wine.png-583ea9587fa331cb756b428ac5ab7cd7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/wine.png" +dest_files=["res://.godot/imported/wine.png-583ea9587fa331cb756b428ac5ab7cd7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xarchiver.png b/tools/configurator/assets/icons/pixelitos/16/xarchiver.png new file mode 100644 index 00000000..f94f6e1e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xarchiver.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xarchiver.png.import b/tools/configurator/assets/icons/pixelitos/16/xarchiver.png.import new file mode 100644 index 00000000..7f8668ba --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xarchiver.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgta2khfqwul5" +path="res://.godot/imported/xarchiver.png-440e60dc8a19f025c3df8304419c2af3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xarchiver.png" +dest_files=["res://.godot/imported/xarchiver.png-440e60dc8a19f025c3df8304419c2af3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xenia.png b/tools/configurator/assets/icons/pixelitos/16/xenia.png new file mode 100644 index 00000000..1c37b691 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xenia.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xenia.png.import b/tools/configurator/assets/icons/pixelitos/16/xenia.png.import new file mode 100644 index 00000000..1bd76ab9 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xenia.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cadw0a72vyht3" +path="res://.godot/imported/xenia.png-404c14c1fb3a625de35e2b6a0233918a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xenia.png" +dest_files=["res://.godot/imported/xenia.png-404c14c1fb3a625de35e2b6a0233918a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png b/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png.import b/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png.import new file mode 100644 index 00000000..ee88b815 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfce-display-profile.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s5wjg2hbbs4c" +path="res://.godot/imported/xfce-display-profile.png-3fae86b686e1c34ac75474b4221254e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfce-display-profile.png" +dest_files=["res://.godot/imported/xfce-display-profile.png-3fae86b686e1c34ac75474b4221254e8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png b/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png new file mode 100644 index 00000000..44b33e80 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png.import b/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png.import new file mode 100644 index 00000000..154e8558 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfce4-logo.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvhmw7adbslp" +path="res://.godot/imported/xfce4-logo.png-d15a4ad641968d3fb52e371a647d1a99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfce4-logo.png" +dest_files=["res://.godot/imported/xfce4-logo.png-d15a4ad641968d3fb52e371a647d1a99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png b/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png new file mode 100644 index 00000000..6c71f919 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png.import b/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png.import new file mode 100644 index 00000000..8e5576af --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfce4-panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://676ex2tlwvbe" +path="res://.godot/imported/xfce4-panel.png-0e54f9857a1d71d55f21bae1f684c3f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfce4-panel.png" +dest_files=["res://.godot/imported/xfce4-panel.png-0e54f9857a1d71d55f21bae1f684c3f5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png b/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png new file mode 100644 index 00000000..f007d74a Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png.import b/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png.import new file mode 100644 index 00000000..12a6a3d0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfce4-settings.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cks7g5wldlmxh" +path="res://.godot/imported/xfce4-settings.png-549e6b6c58b910debf614a20b7846dab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfce4-settings.png" +dest_files=["res://.godot/imported/xfce4-settings.png-549e6b6c58b910debf614a20b7846dab.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png new file mode 100644 index 00000000..885a2a4e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png.import new file mode 100644 index 00000000..ccb16718 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-hibernate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddmy8g7lyi224" +path="res://.godot/imported/xfsm-hibernate.png-8638f6ff9927011167334582011af3a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-hibernate.png" +dest_files=["res://.godot/imported/xfsm-hibernate.png-8638f6ff9927011167334582011af3a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png new file mode 100644 index 00000000..fe75993c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png.import new file mode 100644 index 00000000..8e631d4a --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-lock.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqsq1h8y71lfc" +path="res://.godot/imported/xfsm-lock.png-9576458b998d6372c9977082063a1443.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-lock.png" +dest_files=["res://.godot/imported/xfsm-lock.png-9576458b998d6372c9977082063a1443.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png new file mode 100644 index 00000000..1ccffb7c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png.import new file mode 100644 index 00000000..1a4013c2 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-logout.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0m8e47lba1et" +path="res://.godot/imported/xfsm-logout.png-ac73a847e90bdf75fad44456bfb943e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-logout.png" +dest_files=["res://.godot/imported/xfsm-logout.png-ac73a847e90bdf75fad44456bfb943e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png new file mode 100644 index 00000000..e2d17944 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png.import new file mode 100644 index 00000000..70542333 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-reboot.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://reen68m4q0sa" +path="res://.godot/imported/xfsm-reboot.png-9d2dec3268df7f808e7bbc7e0648e701.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-reboot.png" +dest_files=["res://.godot/imported/xfsm-reboot.png-9d2dec3268df7f808e7bbc7e0648e701.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png new file mode 100644 index 00000000..933ee6a7 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png.import new file mode 100644 index 00000000..a1d3bbca --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-shutdown.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crsgqqhmtx16d" +path="res://.godot/imported/xfsm-shutdown.png-b3a0b02d819392a4d81210e00159b733.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-shutdown.png" +dest_files=["res://.godot/imported/xfsm-shutdown.png-b3a0b02d819392a4d81210e00159b733.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png new file mode 100644 index 00000000..885a2a4e Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png.import new file mode 100644 index 00000000..73a167fc --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend-hibernate.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch44473hnctip" +path="res://.godot/imported/xfsm-suspend-hibernate.png-a69ba42625da3707cf2abc70b2e2a1ea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-suspend-hibernate.png" +dest_files=["res://.godot/imported/xfsm-suspend-hibernate.png-a69ba42625da3707cf2abc70b2e2a1ea.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png new file mode 100644 index 00000000..fe75993c Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png.import new file mode 100644 index 00000000..81031a8f --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-suspend.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwruuyshmnsnr" +path="res://.godot/imported/xfsm-suspend.png-696c941b51e15ad9372f9a667e7e212d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-suspend.png" +dest_files=["res://.godot/imported/xfsm-suspend.png-696c941b51e15ad9372f9a667e7e212d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png new file mode 100644 index 00000000..480e62d1 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png.import new file mode 100644 index 00000000..63862b15 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-switch-user.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dftye6v4lj68f" +path="res://.godot/imported/xfsm-switch-user.png-72d8f01ff17445363a9f48c777ebec31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-switch-user.png" +dest_files=["res://.godot/imported/xfsm-switch-user.png-72d8f01ff17445363a9f48c777ebec31.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png b/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png new file mode 100644 index 00000000..ef122e2d Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png.import b/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png.import new file mode 100644 index 00000000..98e89924 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/xfsm-users.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwbb7jldfgivg" +path="res://.godot/imported/xfsm-users.png-bac0746ce05178f903a231cb62e00b07.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/xfsm-users.png" +dest_files=["res://.godot/imported/xfsm-users.png-bac0746ce05178f903a231cb62e00b07.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/youtube-music.png b/tools/configurator/assets/icons/pixelitos/16/youtube-music.png new file mode 100644 index 00000000..7b101c88 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/youtube-music.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/youtube-music.png.import b/tools/configurator/assets/icons/pixelitos/16/youtube-music.png.import new file mode 100644 index 00000000..7920ff9c --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/youtube-music.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3shqdknt7pm" +path="res://.godot/imported/youtube-music.png-3177d6285d96c22fcfc17e4e23364668.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/youtube-music.png" +dest_files=["res://.godot/imported/youtube-music.png-3177d6285d96c22fcfc17e4e23364668.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/youtube.png b/tools/configurator/assets/icons/pixelitos/16/youtube.png new file mode 100644 index 00000000..eaad8522 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/youtube.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/youtube.png.import b/tools/configurator/assets/icons/pixelitos/16/youtube.png.import new file mode 100644 index 00000000..20b83065 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/youtube.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0c8ak7bxccch" +path="res://.godot/imported/youtube.png-68accaf6eddb3bf22959327109ee6aac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/youtube.png" +dest_files=["res://.godot/imported/youtube.png-68accaf6eddb3bf22959327109ee6aac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/icons/pixelitos/16/zsnes.png b/tools/configurator/assets/icons/pixelitos/16/zsnes.png new file mode 100644 index 00000000..132409c2 Binary files /dev/null and b/tools/configurator/assets/icons/pixelitos/16/zsnes.png differ diff --git a/tools/configurator/assets/icons/pixelitos/16/zsnes.png.import b/tools/configurator/assets/icons/pixelitos/16/zsnes.png.import new file mode 100644 index 00000000..3085d4b0 --- /dev/null +++ b/tools/configurator/assets/icons/pixelitos/16/zsnes.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0jiqq01ttumv" +path="res://.godot/imported/zsnes.png-9d207e62f6761228b413dd3ba02be9fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://assets/icons/pixelitos/16/zsnes.png" +dest_files=["res://.godot/imported/zsnes.png-9d207e62f6761228b413dd3ba02be9fe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav new file mode 100644 index 00000000..033e0566 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav.import new file mode 100644 index 00000000..fe5b914f --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://b2vis56rc446" +path="res://.godot/imported/538538__sjonas88__process-2.wav-7e0ab92936c07ed43d54872d5e9e3b4b.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538538__sjonas88__process-2.wav" +dest_files=["res://.godot/imported/538538__sjonas88__process-2.wav-7e0ab92936c07ed43d54872d5e9e3b4b.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav new file mode 100644 index 00000000..27d95bdc Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav.import new file mode 100644 index 00000000..8c69ff51 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://buktnqo4i5lmh" +path="res://.godot/imported/538539__sjonas88__pipe-sound.wav-6515783939644190febb3c8f23d3e912.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538539__sjonas88__pipe-sound.wav" +dest_files=["res://.godot/imported/538539__sjonas88__pipe-sound.wav-6515783939644190febb3c8f23d3e912.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav new file mode 100644 index 00000000..da2a541e Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav.import new file mode 100644 index 00000000..fd20d7fe --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://h8v5imq2ghl6" +path="res://.godot/imported/538540__sjonas88__fail-sound.wav-25ec50c6877c99ff966be2fd860a0bb1.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538540__sjonas88__fail-sound.wav" +dest_files=["res://.godot/imported/538540__sjonas88__fail-sound.wav-25ec50c6877c99ff966be2fd860a0bb1.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav new file mode 100644 index 00000000..32290ae8 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav.import new file mode 100644 index 00000000..1f9aff8d --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://dvuhuo2irjhbu" +path="res://.godot/imported/538541__sjonas88__fail-2.wav-122b4ea196164e5fa7c83a9cb72e40b1.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538541__sjonas88__fail-2.wav" +dest_files=["res://.godot/imported/538541__sjonas88__fail-2.wav-122b4ea196164e5fa7c83a9cb72e40b1.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav new file mode 100644 index 00000000..73ee660f Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav.import new file mode 100644 index 00000000..6c3ca695 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://ccfw0kgfshftj" +path="res://.godot/imported/538542__sjonas88__rising-3.wav-e5be02dafb9d2b2e656f3e284cb59f41.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538542__sjonas88__rising-3.wav" +dest_files=["res://.godot/imported/538542__sjonas88__rising-3.wav-e5be02dafb9d2b2e656f3e284cb59f41.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav new file mode 100644 index 00000000..682202e9 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav.import new file mode 100644 index 00000000..f40102e3 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://7o37g1ldsqg8" +path="res://.godot/imported/538543__sjonas88__rising-2.wav-94424088492c09d1baee466dfd04f771.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538543__sjonas88__rising-2.wav" +dest_files=["res://.godot/imported/538543__sjonas88__rising-2.wav-94424088492c09d1baee466dfd04f771.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav new file mode 100644 index 00000000..50710de8 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav.import new file mode 100644 index 00000000..a510fdc9 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://7w073cgcaph8" +path="res://.godot/imported/538544__sjonas88__process.wav-9eab6f84a156a2f52c7696fb11887a3c.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538544__sjonas88__process.wav" +dest_files=["res://.godot/imported/538544__sjonas88__process.wav-9eab6f84a156a2f52c7696fb11887a3c.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav new file mode 100644 index 00000000..39eba25f Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav.import new file mode 100644 index 00000000..6c33fd01 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://bsuubeqwno7gv" +path="res://.godot/imported/538545__sjonas88__process-3.wav-7ffbb7f6eec788f1d198cdfc5bcd35da.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538545__sjonas88__process-3.wav" +dest_files=["res://.godot/imported/538545__sjonas88__process-3.wav-7ffbb7f6eec788f1d198cdfc5bcd35da.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav new file mode 100644 index 00000000..ff1bb288 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav.import new file mode 100644 index 00000000..b69c5001 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://c1gh1d0tp5ut3" +path="res://.godot/imported/538546__sjonas88__rising.wav-be28154e2568a7901227e89f3cf4027f.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538546__sjonas88__rising.wav" +dest_files=["res://.godot/imported/538546__sjonas88__rising.wav-be28154e2568a7901227e89f3cf4027f.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav new file mode 100644 index 00000000..b82140be Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav.import new file mode 100644 index 00000000..74050be3 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://ctks8i20nretn" +path="res://.godot/imported/538547__sjonas88__rising-4.wav-cc2a6f85daa3fc6ba61d88b8bf523924.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538547__sjonas88__rising-4.wav" +dest_files=["res://.godot/imported/538547__sjonas88__rising-4.wav-cc2a6f85daa3fc6ba61d88b8bf523924.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav new file mode 100644 index 00000000..3ac170a9 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav.import new file mode 100644 index 00000000..ca14f934 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://fveqtwd33w7n" +path="res://.godot/imported/538548__sjonas88__select-3.wav-3d75efee47597b1c7d77f9412f0b14b5.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538548__sjonas88__select-3.wav" +dest_files=["res://.godot/imported/538548__sjonas88__select-3.wav-3d75efee47597b1c7d77f9412f0b14b5.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav new file mode 100644 index 00000000..11792f71 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav.import new file mode 100644 index 00000000..4a18a9e5 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://dhejvg02t5o35" +path="res://.godot/imported/538549__sjonas88__select-2.wav-8b1c4c60db51366ba4f01f6922bbf4d2.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav" +dest_files=["res://.godot/imported/538549__sjonas88__select-2.wav-8b1c4c60db51366ba4f01f6922bbf4d2.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav new file mode 100644 index 00000000..e465c937 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav.import new file mode 100644 index 00000000..b29bd3fa --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://b0tkc4uqeh75q" +path="res://.godot/imported/538550__sjonas88__deep-tone.wav-95e9dc90f6e75bc6620575d07f709ba7.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538550__sjonas88__deep-tone.wav" +dest_files=["res://.godot/imported/538550__sjonas88__deep-tone.wav-95e9dc90f6e75bc6620575d07f709ba7.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav new file mode 100644 index 00000000..2e7aa53d Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav.import new file mode 100644 index 00000000..1284ae6c --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://ujv8kpegpmpt" +path="res://.godot/imported/538551__sjonas88__3-select.wav-86b8ffff434ba08cc915003719c0dcd9.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538551__sjonas88__3-select.wav" +dest_files=["res://.godot/imported/538551__sjonas88__3-select.wav-86b8ffff434ba08cc915003719c0dcd9.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav new file mode 100644 index 00000000..bd71d2a5 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav.import new file mode 100644 index 00000000..d068e028 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://mm42tfxhowwe" +path="res://.godot/imported/538552__sjonas88__rising-tones.wav-f484f3e32af39e2f6ece214b2cbbc19b.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538552__sjonas88__rising-tones.wav" +dest_files=["res://.godot/imported/538552__sjonas88__rising-tones.wav-f484f3e32af39e2f6ece214b2cbbc19b.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav new file mode 100644 index 00000000..55b368da Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav.import new file mode 100644 index 00000000..b14fef5b --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://bmap54wuuumst" +path="res://.godot/imported/538553__sjonas88__stars.wav-593d0d6b4e2052a07396971ced5315b5.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538553__sjonas88__stars.wav" +dest_files=["res://.godot/imported/538553__sjonas88__stars.wav-593d0d6b4e2052a07396971ced5315b5.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav new file mode 100644 index 00000000..3d811607 Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav.import new file mode 100644 index 00000000..5ba9a95e --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://bu16hw2opbvp6" +path="res://.godot/imported/538554__sjonas88__success.wav-617fb21a3a937ebffcac1034bc19f3de.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538554__sjonas88__success.wav" +dest_files=["res://.godot/imported/538554__sjonas88__success.wav-617fb21a3a937ebffcac1034bc19f3de.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav new file mode 100644 index 00000000..5643866a Binary files /dev/null and b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav differ diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav.import b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav.import new file mode 100644 index 00000000..2b3a2c5d --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav.import @@ -0,0 +1,24 @@ +[remap] + +importer="wav" +type="AudioStreamWAV" +uid="uid://cgg08e1741i0m" +path="res://.godot/imported/538555__sjonas88__shimmer.wav-c47d31735b366fa09f66d96c18887d7d.sample" + +[deps] + +source_file="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538555__sjonas88__shimmer.wav" +dest_files=["res://.godot/imported/538555__sjonas88__shimmer.wav-c47d31735b366fa09f66d96c18887d7d.sample"] + +[params] + +force/8_bit=false +force/mono=false +force/max_rate=false +force/max_rate_hz=44100 +edit/trim=false +edit/normalize=false +edit/loop_mode=0 +edit/loop_begin=0 +edit/loop_end=-1 +compress/mode=0 diff --git a/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/_readme_and_license.txt b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/_readme_and_license.txt new file mode 100644 index 00000000..8abc72f9 --- /dev/null +++ b/tools/configurator/assets/sounds/30375__sjonas88__smooth-game-like-sounds/_readme_and_license.txt @@ -0,0 +1,76 @@ +Sound pack downloaded from Freesound +---------------------------------------- + +"Smooth Game-like Sounds" + +This pack of sounds contains sounds by the following user: + - Sjonas88 ( https://freesound.org/people/Sjonas88/ ) + +You can find this pack online at: https://freesound.org/people/Sjonas88/packs/30375/ + + +Licenses in this pack (see below for individual sound licenses) +--------------------------------------------------------------- + +Creative Commons 0: http://creativecommons.org/publicdomain/zero/1.0/ + + +Sounds in this pack +------------------- + + * 538555__sjonas88__shimmer.wav + * url: https://freesound.org/s/538555/ + * license: Creative Commons 0 + * 538554__sjonas88__success.wav + * url: https://freesound.org/s/538554/ + * license: Creative Commons 0 + * 538553__sjonas88__stars.wav + * url: https://freesound.org/s/538553/ + * license: Creative Commons 0 + * 538552__sjonas88__rising-tones.wav + * url: https://freesound.org/s/538552/ + * license: Creative Commons 0 + * 538551__sjonas88__3-select.wav + * url: https://freesound.org/s/538551/ + * license: Creative Commons 0 + * 538550__sjonas88__deep-tone.wav + * url: https://freesound.org/s/538550/ + * license: Creative Commons 0 + * 538549__sjonas88__select-2.wav + * url: https://freesound.org/s/538549/ + * license: Creative Commons 0 + * 538548__sjonas88__select-3.wav + * url: https://freesound.org/s/538548/ + * license: Creative Commons 0 + * 538547__sjonas88__rising-4.wav + * url: https://freesound.org/s/538547/ + * license: Creative Commons 0 + * 538546__sjonas88__rising.wav + * url: https://freesound.org/s/538546/ + * license: Creative Commons 0 + * 538545__sjonas88__process-3.wav + * url: https://freesound.org/s/538545/ + * license: Creative Commons 0 + * 538544__sjonas88__process.wav + * url: https://freesound.org/s/538544/ + * license: Creative Commons 0 + * 538543__sjonas88__rising-2.wav + * url: https://freesound.org/s/538543/ + * license: Creative Commons 0 + * 538542__sjonas88__rising-3.wav + * url: https://freesound.org/s/538542/ + * license: Creative Commons 0 + * 538541__sjonas88__fail-2.wav + * url: https://freesound.org/s/538541/ + * license: Creative Commons 0 + * 538540__sjonas88__fail-sound.wav + * url: https://freesound.org/s/538540/ + * license: Creative Commons 0 + * 538539__sjonas88__pipe-sound.wav + * url: https://freesound.org/s/538539/ + * license: Creative Commons 0 + * 538538__sjonas88__process-2.wav + * url: https://freesound.org/s/538538/ + * license: Creative Commons 0 + + diff --git a/tools/configurator/components/bios_check/bios_check.gd b/tools/configurator/components/bios_check/bios_check.gd index 9e0ac0a5..83ff7877 100644 --- a/tools/configurator/components/bios_check/bios_check.gd +++ b/tools/configurator/components/bios_check/bios_check.gd @@ -1,9 +1,6 @@ extends Control - -var file := FileAccess -var bios_tempfile : String -var command: String = "../../tools/retrodeck_function_wrapper.sh" +var bios_result: Dictionary var console: bool = false var BIOS_COLUMNS_BASIC := ["BIOS File Name", "System", "Found", "Hash Match", "Description"] var BIOS_COLUMNS_EXPERT := ["BIOS File Name", "System", "Found", "Hash Match", "Description", "Subdirectory", "Hash"] @@ -12,16 +9,8 @@ var BIOS_COLUMNS_EXPERT := ["BIOS File Name", "System", "Found", "Hash Match", " func _ready(): $".".theme = custom_theme - #Check if XDG_RUNTIME_DIR is set and choose temp file location - if OS.has_environment("XDG_RUNTIME_DIR"): - bios_tempfile = OS.get_environment("XDG_RUNTIME_DIR") + "/godot_temp/godot_bios_files_checked.tmp" - #bios_tempfile = "/var/config/retrodeck/godot/godot_bios_files_checked.tmp" - else: - bios_tempfile = "/var/config/retrodeck/godot/godot_bios_files_checked.tmp" - var table := $Table - - if bios_type == 0: #Basic BIOS button pressed + if bios_type == 1: #Basic BIOS button pressed table.columns = BIOS_COLUMNS_BASIC.size() for i in BIOS_COLUMNS_BASIC.size(): table.set_column_title(i, BIOS_COLUMNS_BASIC[i]) @@ -29,36 +18,28 @@ func _ready(): table.columns = BIOS_COLUMNS_EXPERT.size() for i in BIOS_COLUMNS_EXPERT.size(): table.set_column_title(i, BIOS_COLUMNS_EXPERT[i]) - var root = table.create_item() table.hide_root = true - if bios_type == 0: #Basic BIOS button pressed - #OS.execute("/app/tools/retrodeck_function_wrapper.sh",["check_bios_files", "basic"]) - #var parameters = ["log", "i", "Configurator: " + "check_bios_files"] - # classFunctions.execute_command(command, parameters, false) + if bios_type == 1: #Basic BIOS button pressed var parameters = ["check_bios_files","basic"] - #result = classFunctions.execute_command(command, parameters, false) - #threaded - await run_thread_command(command, parameters, console) - + await run_thread_command(class_functions.wrapper_command, parameters, console) + class_functions.log_parameters[2] = class_functions.log_text + "Exit code: " + str(bios_result["exit_code"]) + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) else: #Assume advanced BIOS button pressed var parameters = ["check_bios_files"] - class_functions.execute_command(command, parameters, false) - await run_thread_command(command, parameters, console) - #OS.execute("/app/tools/retrodeck_function_wrapper.sh",["check_bios_files"]) - - if file.file_exists(bios_tempfile): #File to be removed after script is done - var bios_list := file.open(bios_tempfile, FileAccess.READ) - var bios_line := [] - while ! bios_list.eof_reached(): - bios_line = bios_list.get_csv_line("^") - var table_line: TreeItem = table.create_item(root) - for i in bios_line.size(): - table_line.set_text(i, bios_line[i]) - if table_line.get_index() % 2 == 1: - table_line.set_custom_bg_color(i,Color(0.15, 0.15, 0.15, 1),false) - table_line.set_custom_color(i,Color(1,1,1,1)) + class_functions.execute_command(class_functions.wrapper_command, parameters, false) + await run_thread_command(class_functions.wrapper_command, parameters, console) + var bios_list = bios_result["output"] + var bios_lines = bios_list.split("\n") + for line in bios_lines: + var bios_line = line.split("^") + var table_line: TreeItem = table.create_item(root) + for i in bios_line.size(): + table_line.set_text(i, bios_line[i]) + if table_line.get_index() % 2 == 1: + table_line.set_custom_bg_color(i,Color(0.15, 0.15, 0.15, 1),false) + table_line.set_custom_color(i,Color(1,1,1,1)) func run_thread_command(command: String, parameters: Array, console: bool) -> void: - var result = await class_functions.run_command_in_thread(command, parameters, console) + bios_result = await class_functions.run_command_in_thread(command, parameters, console) diff --git a/tools/configurator/components/bios_check/bios_popup_content.tscn b/tools/configurator/components/bios_check/bios_popup_content.tscn index 7c7b8ca6..c82780ac 100644 --- a/tools/configurator/components/bios_check/bios_popup_content.tscn +++ b/tools/configurator/components/bios_check/bios_popup_content.tscn @@ -14,21 +14,6 @@ grow_horizontal = 2 grow_vertical = 2 script = ExtResource("1_qrkee") -[node name="RichTextLabel" type="RichTextLabel" parent="."] -visible = false -layout_mode = 1 -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 -text = "This is a list of problematic BIOS? -Very multiline text -Why do we use it? - -PS3 BIOS IS VERY BAD -I'm not sure what else?" - [node name="Table" type="Tree" parent="."] layout_mode = 1 anchors_preset = 15 @@ -38,4 +23,6 @@ grow_horizontal = 2 grow_vertical = 2 columns = 5 column_titles_visible = true +allow_reselect = true +allow_rmb_select = true select_mode = 1 diff --git a/tools/configurator/components/popup.gd b/tools/configurator/components/popup.gd index 3f384faa..4d75e012 100644 --- a/tools/configurator/components/popup.gd +++ b/tools/configurator/components/popup.gd @@ -5,14 +5,15 @@ var content = null #@onready var button_off = get_node(current_scene.%l1_button)# .current_scene.l1_button @onready var lbhide: TextureButton = get_tree().current_scene.get_node("%l1_button") @onready var rbhide: TextureButton = get_tree().current_scene.get_node("%r1_button") +@onready var bios_type:int = get_tree().current_scene.bios_type func _ready(): lbhide.visible=false rbhide.visible=false $".".theme = custom_theme - if (content != null): + # TODO this alowes copy and paste from RTB in logs? + if (content != null and bios_type > 0): $Panel/MarginContainer/VBoxContainer/ContentContainer/MarginContainer.add_child(content) - func _process(delta): if Input.is_action_pressed("back_button"): @@ -22,6 +23,7 @@ func _process(delta): func set_content(new_content): content = load(new_content).instantiate() + func set_title(new_title): $Panel/MarginContainer/VBoxContainer/MarginContainer/HBoxContainer/Label.text = new_title func set_display_text(new_display_text): diff --git a/tools/configurator/components/popup.tscn b/tools/configurator/components/popup.tscn index a5810685..be8915da 100644 --- a/tools/configurator/components/popup.tscn +++ b/tools/configurator/components/popup.tscn @@ -47,11 +47,6 @@ layout_mode = 2 theme_override_font_sizes/font_size = 23 text = "This is the label" -[node name="BackButton" type="Button" parent="Panel/MarginContainer/VBoxContainer/MarginContainer/HBoxContainer"] -layout_mode = 2 -size_flags_horizontal = 10 -text = "Back" - [node name="ContentContainer" type="Panel" parent="Panel/MarginContainer/VBoxContainer"] layout_mode = 2 size_flags_vertical = 3 @@ -73,6 +68,5 @@ layout_mode = 2 focus_mode = 2 scroll_following = true context_menu_enabled = true +shortcut_keys_enabled = false selection_enabled = true - -[connection signal="pressed" from="Panel/MarginContainer/VBoxContainer/MarginContainer/HBoxContainer/BackButton" to="." method="_on_back_pressed"] diff --git a/tools/configurator/components/popup_dialogue.gd b/tools/configurator/components/popup_dialogue.gd new file mode 100644 index 00000000..3b9250d5 --- /dev/null +++ b/tools/configurator/components/popup_dialogue.gd @@ -0,0 +1,37 @@ +extends Control + +@onready var custom_theme: Theme = get_tree().current_scene.custom_theme +var command: String +var parameters: Array + +func _ready(): + $".".theme = custom_theme + var args = OS.get_cmdline_args() + for arg in range(args.size()): + if args[arg] == "--title" and arg + 1 < args.size(): + %title_label.text = args[arg + 1] + elif args[arg] == "--content" and arg + 1 < args.size(): + %content_rtl.text = args[arg + 1] + elif args[arg] == "--command" and arg + 1 < args.size(): + command = args[arg + 1] + elif args[arg] == "--parameters" and arg + 1 < args.size(): + parameters.append(args[arg + 1]) + elif args[arg] == "--fullscreen" and arg + 1 < args.size(): + DisplayServer.window_set_mode(DisplayServer.WindowMode.WINDOW_MODE_FULLSCREEN) + +func _input(event): + if Input.is_action_pressed("back_button"): + get_tree().quit() + +func _on_cancel_pressed(): + class_functions.log_parameters[2] = class_functions.log_text + "Exited dialogue" + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + get_tree().quit() + +func _on_ok_button_pressed() -> void: + class_functions.log_parameters[2] = class_functions.log_text + "Command to run:- " + command + " " + str(parameters) + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + var result = class_functions.execute_command(command,parameters , false) + class_functions.log_parameters[2] = class_functions.log_text + "Exit code: " + str(result["exit_code"]) + %content_rtl.text = result["output"] + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) diff --git a/tools/configurator/components/popup_dialogue.tscn b/tools/configurator/components/popup_dialogue.tscn new file mode 100644 index 00000000..4d04367c --- /dev/null +++ b/tools/configurator/components/popup_dialogue.tscn @@ -0,0 +1,107 @@ +[gd_scene load_steps=3 format=3 uid="uid://bdbxu0r51jfk1"] + +[ext_resource type="Script" path="res://components/popup_dialogue.gd" id="1_oiwsy"] +[ext_resource type="Texture2D" uid="uid://brf74puvpnwsd" path="res://assets/graphics/retrodeck.png" id="2_3a55w"] + +[node name="Popup_Dialogue" type="Control"] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_left = 23.0 +offset_top = -7.0 +offset_right = 23.0 +offset_bottom = -7.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_oiwsy") + +[node name="Panel" type="Panel" parent="."] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_right = -357.0 +offset_bottom = -70.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="MarginContainer" type="MarginContainer" parent="Panel"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="VBoxContainer" type="VBoxContainer" parent="Panel/MarginContainer"] +layout_mode = 2 + +[node name="MarginContainer" type="MarginContainer" parent="Panel/MarginContainer/VBoxContainer"] +layout_mode = 2 +theme_override_constants/margin_left = 10 +theme_override_constants/margin_top = 0 +theme_override_constants/margin_right = 0 +theme_override_constants/margin_bottom = 0 + +[node name="HBoxContainer" type="HBoxContainer" parent="Panel/MarginContainer/VBoxContainer/MarginContainer"] +layout_mode = 2 + +[node name="title_label" type="Label" parent="Panel/MarginContainer/VBoxContainer/MarginContainer/HBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +theme_override_font_sizes/font_size = 23 +text = "Welcome to RetroDeck" + +[node name="ContentContainer" type="Panel" parent="Panel/MarginContainer/VBoxContainer"] +layout_mode = 2 +size_flags_vertical = 3 + +[node name="MarginContainer" type="MarginContainer" parent="Panel/MarginContainer/VBoxContainer/ContentContainer"] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_constants/margin_left = 10 +theme_override_constants/margin_top = 6 +theme_override_constants/margin_right = 10 +theme_override_constants/margin_bottom = 6 + +[node name="content_rtl" type="RichTextLabel" parent="Panel/MarginContainer/VBoxContainer/ContentContainer/MarginContainer"] +unique_name_in_owner = true +layout_mode = 2 +focus_mode = 2 +text = "Some text here for the content?" +scroll_following = true +context_menu_enabled = true +selection_enabled = true + +[node name="MarginContainer_bootom" type="MarginContainer" parent="Panel/MarginContainer/VBoxContainer"] +layout_mode = 2 + +[node name="HBoxContainer" type="HBoxContainer" parent="Panel/MarginContainer/VBoxContainer/MarginContainer_bootom"] +layout_mode = 2 + +[node name="cancel_button" type="Button" parent="Panel/MarginContainer/VBoxContainer/MarginContainer_bootom/HBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 0) +layout_mode = 2 +size_flags_horizontal = 10 +text = "CANCEL" + +[node name="ok_button" type="Button" parent="Panel/MarginContainer/VBoxContainer/MarginContainer_bootom/HBoxContainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 0) +layout_mode = 2 +size_flags_horizontal = 10 +text = "OK" + +[node name="Retrodeck" type="Sprite2D" parent="."] +position = Vector2(859, 108) +scale = Vector2(0.209961, 0.204102) +texture = ExtResource("2_3a55w") + +[connection signal="pressed" from="Panel/MarginContainer/VBoxContainer/MarginContainer_bootom/HBoxContainer/cancel_button" to="." method="_on_cancel_pressed"] +[connection signal="pressed" from="Panel/MarginContainer/VBoxContainer/MarginContainer_bootom/HBoxContainer/ok_button" to="." method="_on_ok_button_pressed"] diff --git a/tools/configurator/controller_guide.gd b/tools/configurator/controller_guide.gd new file mode 100644 index 00000000..dda49c18 --- /dev/null +++ b/tools/configurator/controller_guide.gd @@ -0,0 +1,13 @@ +extends PanelContainer + +func _process(delta): + # TODO hack. Use state machine? + if %action_gridcontainer.visible == true: + if Input.is_action_pressed("back_button"): + %action_gridcontainer.visible = false + %retroarch_button.grab_focus() + for i in range(%system_gridcontainer.get_child_count()): + var child = %system_gridcontainer.get_child(i) + if child is Button: + child.visible=true + child.toggle_mode = false diff --git a/tools/configurator/export_presets.cfg b/tools/configurator/export_presets.cfg index 6a69d4df..b5845d75 100644 --- a/tools/configurator/export_presets.cfg +++ b/tools/configurator/export_presets.cfg @@ -1,8 +1,9 @@ [preset.0] name="Linux/X11 64-bit" -platform="Linux/X11" +platform="Linux" runnable=true +advanced_options=false dedicated_server=false custom_features="" export_filter="all_resources" @@ -13,6 +14,7 @@ encryption_include_filters="" encryption_exclude_filters="" encrypt_pck=false encrypt_directory=false +script_export_mode=2 [preset.0.options] @@ -20,10 +22,8 @@ custom_template/debug="" custom_template/release="" debug/export_console_wrapper=1 binary_format/embed_pck=true -texture_format/bptc=true -texture_format/s3tc=true -texture_format/etc=false -texture_format/etc2=false +texture_format/s3tc_bptc=true +texture_format/etc2_astc=false binary_format/architecture="x86_64" ssh_remote_deploy/enabled=false ssh_remote_deploy/host="user@host_ip" @@ -37,3 +37,322 @@ unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\") rm -rf \"{temp_dir}\"" +texture_format/bptc=true +texture_format/s3tc=true +texture_format/etc=false +texture_format/etc2=false + +[preset.1] + +name="windows" +platform="Windows Desktop" +runnable=true +advanced_options=false +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false +script_export_mode=2 + +[preset.1.options] + +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=1 +binary_format/embed_pck=false +texture_format/s3tc_bptc=true +texture_format/etc2_astc=false +binary_format/architecture="x86_64" +codesign/enable=false +codesign/timestamp=true +codesign/timestamp_server_url="" +codesign/digest_algorithm=1 +codesign/description="" +codesign/custom_options=PackedStringArray() +application/modify_resources=true +application/icon="" +application/console_wrapper_icon="" +application/icon_interpolation=4 +application/file_version="" +application/product_version="" +application/company_name="" +application/product_name="" +application/file_description="" +application/copyright="" +application/trademarks="" +application/export_angle=0 +application/export_d3d12=0 +application/d3d12_agility_sdk_multiarch=true +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}' +$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}' +$trigger = New-ScheduledTaskTrigger -Once -At 00:00 +$settings = New-ScheduledTaskSettingsSet +$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings +Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true +Start-ScheduledTask -TaskName godot_remote_debug +while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 } +Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue" +ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue +Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue +Remove-Item -Recurse -Force '{temp_dir}'" + +[preset.2] + +name="macOS" +platform="macOS" +runnable=true +advanced_options=false +dedicated_server=false +custom_features="" +export_filter="all_resources" +include_filter="" +exclude_filter="" +export_path="./godot_configurator.zip" +encryption_include_filters="" +encryption_exclude_filters="" +encrypt_pck=false +encrypt_directory=false +script_export_mode=2 + +[preset.2.options] + +export/distribution_type=1 +binary_format/architecture="universal" +custom_template/debug="" +custom_template/release="" +debug/export_console_wrapper=1 +application/icon="" +application/icon_interpolation=4 +application/bundle_identifier="net.retrodeck.retrodeck" +application/signature="" +application/app_category="Games" +application/short_version="" +application/version="" +application/copyright="" +application/copyright_localized={} +application/min_macos_version="10.12" +application/export_angle=0 +display/high_res=true +application/additional_plist_content="" +xcode/platform_build="14C18" +xcode/sdk_version="13.1" +xcode/sdk_build="22C55" +xcode/sdk_name="macosx13.1" +xcode/xcode_version="1420" +xcode/xcode_build="14C18" +codesign/codesign=1 +codesign/installer_identity="" +codesign/apple_team_id="" +codesign/identity="" +codesign/entitlements/custom_file="" +codesign/entitlements/allow_jit_code_execution=false +codesign/entitlements/allow_unsigned_executable_memory=false +codesign/entitlements/allow_dyld_environment_variables=false +codesign/entitlements/disable_library_validation=false +codesign/entitlements/audio_input=false +codesign/entitlements/camera=false +codesign/entitlements/location=false +codesign/entitlements/address_book=false +codesign/entitlements/calendars=false +codesign/entitlements/photos_library=false +codesign/entitlements/apple_events=false +codesign/entitlements/debugging=false +codesign/entitlements/app_sandbox/enabled=false +codesign/entitlements/app_sandbox/network_server=false +codesign/entitlements/app_sandbox/network_client=false +codesign/entitlements/app_sandbox/device_usb=false +codesign/entitlements/app_sandbox/device_bluetooth=false +codesign/entitlements/app_sandbox/files_downloads=0 +codesign/entitlements/app_sandbox/files_pictures=0 +codesign/entitlements/app_sandbox/files_music=0 +codesign/entitlements/app_sandbox/files_movies=0 +codesign/entitlements/app_sandbox/files_user_selected=0 +codesign/entitlements/app_sandbox/helper_executables=[] +codesign/custom_options=PackedStringArray() +notarization/notarization=0 +privacy/microphone_usage_description="" +privacy/microphone_usage_description_localized={} +privacy/camera_usage_description="" +privacy/camera_usage_description_localized={} +privacy/location_usage_description="" +privacy/location_usage_description_localized={} +privacy/address_book_usage_description="" +privacy/address_book_usage_description_localized={} +privacy/calendar_usage_description="" +privacy/calendar_usage_description_localized={} +privacy/photos_library_usage_description="" +privacy/photos_library_usage_description_localized={} +privacy/desktop_folder_usage_description="" +privacy/desktop_folder_usage_description_localized={} +privacy/documents_folder_usage_description="" +privacy/documents_folder_usage_description_localized={} +privacy/downloads_folder_usage_description="" +privacy/downloads_folder_usage_description_localized={} +privacy/network_volumes_usage_description="" +privacy/network_volumes_usage_description_localized={} +privacy/removable_volumes_usage_description="" +privacy/removable_volumes_usage_description_localized={} +privacy/tracking_enabled=false +privacy/tracking_domains=PackedStringArray() +privacy/collected_data/name/collected=false +privacy/collected_data/name/linked_to_user=false +privacy/collected_data/name/used_for_tracking=false +privacy/collected_data/name/collection_purposes=0 +privacy/collected_data/email_address/collected=false +privacy/collected_data/email_address/linked_to_user=false +privacy/collected_data/email_address/used_for_tracking=false +privacy/collected_data/email_address/collection_purposes=0 +privacy/collected_data/phone_number/collected=false +privacy/collected_data/phone_number/linked_to_user=false +privacy/collected_data/phone_number/used_for_tracking=false +privacy/collected_data/phone_number/collection_purposes=0 +privacy/collected_data/physical_address/collected=false +privacy/collected_data/physical_address/linked_to_user=false +privacy/collected_data/physical_address/used_for_tracking=false +privacy/collected_data/physical_address/collection_purposes=0 +privacy/collected_data/other_contact_info/collected=false +privacy/collected_data/other_contact_info/linked_to_user=false +privacy/collected_data/other_contact_info/used_for_tracking=false +privacy/collected_data/other_contact_info/collection_purposes=0 +privacy/collected_data/health/collected=false +privacy/collected_data/health/linked_to_user=false +privacy/collected_data/health/used_for_tracking=false +privacy/collected_data/health/collection_purposes=0 +privacy/collected_data/fitness/collected=false +privacy/collected_data/fitness/linked_to_user=false +privacy/collected_data/fitness/used_for_tracking=false +privacy/collected_data/fitness/collection_purposes=0 +privacy/collected_data/payment_info/collected=false +privacy/collected_data/payment_info/linked_to_user=false +privacy/collected_data/payment_info/used_for_tracking=false +privacy/collected_data/payment_info/collection_purposes=0 +privacy/collected_data/credit_info/collected=false +privacy/collected_data/credit_info/linked_to_user=false +privacy/collected_data/credit_info/used_for_tracking=false +privacy/collected_data/credit_info/collection_purposes=0 +privacy/collected_data/other_financial_info/collected=false +privacy/collected_data/other_financial_info/linked_to_user=false +privacy/collected_data/other_financial_info/used_for_tracking=false +privacy/collected_data/other_financial_info/collection_purposes=0 +privacy/collected_data/precise_location/collected=false +privacy/collected_data/precise_location/linked_to_user=false +privacy/collected_data/precise_location/used_for_tracking=false +privacy/collected_data/precise_location/collection_purposes=0 +privacy/collected_data/coarse_location/collected=false +privacy/collected_data/coarse_location/linked_to_user=false +privacy/collected_data/coarse_location/used_for_tracking=false +privacy/collected_data/coarse_location/collection_purposes=0 +privacy/collected_data/sensitive_info/collected=false +privacy/collected_data/sensitive_info/linked_to_user=false +privacy/collected_data/sensitive_info/used_for_tracking=false +privacy/collected_data/sensitive_info/collection_purposes=0 +privacy/collected_data/contacts/collected=false +privacy/collected_data/contacts/linked_to_user=false +privacy/collected_data/contacts/used_for_tracking=false +privacy/collected_data/contacts/collection_purposes=0 +privacy/collected_data/emails_or_text_messages/collected=false +privacy/collected_data/emails_or_text_messages/linked_to_user=false +privacy/collected_data/emails_or_text_messages/used_for_tracking=false +privacy/collected_data/emails_or_text_messages/collection_purposes=0 +privacy/collected_data/photos_or_videos/collected=false +privacy/collected_data/photos_or_videos/linked_to_user=false +privacy/collected_data/photos_or_videos/used_for_tracking=false +privacy/collected_data/photos_or_videos/collection_purposes=0 +privacy/collected_data/audio_data/collected=false +privacy/collected_data/audio_data/linked_to_user=false +privacy/collected_data/audio_data/used_for_tracking=false +privacy/collected_data/audio_data/collection_purposes=0 +privacy/collected_data/gameplay_content/collected=false +privacy/collected_data/gameplay_content/linked_to_user=false +privacy/collected_data/gameplay_content/used_for_tracking=false +privacy/collected_data/gameplay_content/collection_purposes=0 +privacy/collected_data/customer_support/collected=false +privacy/collected_data/customer_support/linked_to_user=false +privacy/collected_data/customer_support/used_for_tracking=false +privacy/collected_data/customer_support/collection_purposes=0 +privacy/collected_data/other_user_content/collected=false +privacy/collected_data/other_user_content/linked_to_user=false +privacy/collected_data/other_user_content/used_for_tracking=false +privacy/collected_data/other_user_content/collection_purposes=0 +privacy/collected_data/browsing_history/collected=false +privacy/collected_data/browsing_history/linked_to_user=false +privacy/collected_data/browsing_history/used_for_tracking=false +privacy/collected_data/browsing_history/collection_purposes=0 +privacy/collected_data/search_hhistory/collected=false +privacy/collected_data/search_hhistory/linked_to_user=false +privacy/collected_data/search_hhistory/used_for_tracking=false +privacy/collected_data/search_hhistory/collection_purposes=0 +privacy/collected_data/user_id/collected=false +privacy/collected_data/user_id/linked_to_user=false +privacy/collected_data/user_id/used_for_tracking=false +privacy/collected_data/user_id/collection_purposes=0 +privacy/collected_data/device_id/collected=false +privacy/collected_data/device_id/linked_to_user=false +privacy/collected_data/device_id/used_for_tracking=false +privacy/collected_data/device_id/collection_purposes=0 +privacy/collected_data/purchase_history/collected=false +privacy/collected_data/purchase_history/linked_to_user=false +privacy/collected_data/purchase_history/used_for_tracking=false +privacy/collected_data/purchase_history/collection_purposes=0 +privacy/collected_data/product_interaction/collected=false +privacy/collected_data/product_interaction/linked_to_user=false +privacy/collected_data/product_interaction/used_for_tracking=false +privacy/collected_data/product_interaction/collection_purposes=0 +privacy/collected_data/advertising_data/collected=false +privacy/collected_data/advertising_data/linked_to_user=false +privacy/collected_data/advertising_data/used_for_tracking=false +privacy/collected_data/advertising_data/collection_purposes=0 +privacy/collected_data/other_usage_data/collected=false +privacy/collected_data/other_usage_data/linked_to_user=false +privacy/collected_data/other_usage_data/used_for_tracking=false +privacy/collected_data/other_usage_data/collection_purposes=0 +privacy/collected_data/crash_data/collected=false +privacy/collected_data/crash_data/linked_to_user=false +privacy/collected_data/crash_data/used_for_tracking=false +privacy/collected_data/crash_data/collection_purposes=0 +privacy/collected_data/performance_data/collected=false +privacy/collected_data/performance_data/linked_to_user=false +privacy/collected_data/performance_data/used_for_tracking=false +privacy/collected_data/performance_data/collection_purposes=0 +privacy/collected_data/other_diagnostic_data/collected=false +privacy/collected_data/other_diagnostic_data/linked_to_user=false +privacy/collected_data/other_diagnostic_data/used_for_tracking=false +privacy/collected_data/other_diagnostic_data/collection_purposes=0 +privacy/collected_data/environment_scanning/collected=false +privacy/collected_data/environment_scanning/linked_to_user=false +privacy/collected_data/environment_scanning/used_for_tracking=false +privacy/collected_data/environment_scanning/collection_purposes=0 +privacy/collected_data/hands/collected=false +privacy/collected_data/hands/linked_to_user=false +privacy/collected_data/hands/used_for_tracking=false +privacy/collected_data/hands/collection_purposes=0 +privacy/collected_data/head/collected=false +privacy/collected_data/head/linked_to_user=false +privacy/collected_data/head/used_for_tracking=false +privacy/collected_data/head/collection_purposes=0 +privacy/collected_data/other_data_types/collected=false +privacy/collected_data/other_data_types/linked_to_user=false +privacy/collected_data/other_data_types/used_for_tracking=false +privacy/collected_data/other_data_types/collection_purposes=0 +ssh_remote_deploy/enabled=false +ssh_remote_deploy/host="user@host_ip" +ssh_remote_deploy/port="22" +ssh_remote_deploy/extra_args_ssh="" +ssh_remote_deploy/extra_args_scp="" +ssh_remote_deploy/run_script="#!/usr/bin/env bash +unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\" +open \"{temp_dir}/{exe_name}.app\" --args {cmd_args}" +ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash +kill $(pgrep -x -f \"{temp_dir}/{exe_name}.app/Contents/MacOS/{exe_name} {cmd_args}\") +rm -rf \"{temp_dir}\"" diff --git a/tools/configurator/helper_text.gd b/tools/configurator/helper_text.gd index e4d92d63..1026e672 100644 --- a/tools/configurator/helper_text.gd +++ b/tools/configurator/helper_text.gd @@ -10,5 +10,5 @@ func _on_focus_changed(selected_element:Control) -> void: if selected_element != null and selected_element.has_meta("description"): helper_text_node.text = selected_element.get_meta("description") else: - #helper_text_node.text = "Hey, there's no description" - helper_text_node.text = "That stupid Monkey almost deleted me.\n\n\nPlease save me!!!!!!!!" + helper_text_node.text = "Hey, there's no description" + #helper_text_node.text = "That stupid Monkey almost deleted me.\n\n\nPlease save me!!!!!!!!" diff --git a/tools/configurator/locales/interface.de.translation b/tools/configurator/locales/interface.de.translation deleted file mode 100644 index 32ac9a52..00000000 Binary files a/tools/configurator/locales/interface.de.translation and /dev/null differ diff --git a/tools/configurator/locales/interface.en.translation b/tools/configurator/locales/interface.en.translation deleted file mode 100644 index 499a21f9..00000000 Binary files a/tools/configurator/locales/interface.en.translation and /dev/null differ diff --git a/tools/configurator/locales/interface.it.translation b/tools/configurator/locales/interface.it.translation deleted file mode 100644 index 52c56a3e..00000000 Binary files a/tools/configurator/locales/interface.it.translation and /dev/null differ diff --git a/tools/configurator/locales/interface.ja.translation b/tools/configurator/locales/interface.ja.translation deleted file mode 100644 index 4b90f1f0..00000000 Binary files a/tools/configurator/locales/interface.ja.translation and /dev/null differ diff --git a/tools/configurator/locales/interface.sv.translation b/tools/configurator/locales/interface.sv.translation deleted file mode 100644 index 8047717d..00000000 Binary files a/tools/configurator/locales/interface.sv.translation and /dev/null differ diff --git a/tools/configurator/locales/interface.ua.translation b/tools/configurator/locales/interface.ua.translation deleted file mode 100644 index 346b3c9b..00000000 Binary files a/tools/configurator/locales/interface.ua.translation and /dev/null differ diff --git a/tools/configurator/locales/interface.zh.translation b/tools/configurator/locales/interface.zh.translation deleted file mode 100644 index b2305da7..00000000 Binary files a/tools/configurator/locales/interface.zh.translation and /dev/null differ diff --git a/tools/configurator/main.gd b/tools/configurator/main.gd index ba963ed3..722444aa 100644 --- a/tools/configurator/main.gd +++ b/tools/configurator/main.gd @@ -3,11 +3,7 @@ extends Control -var bios_type:int -var status_code_label: Label -var wrapper_command: String = "../../tools/retrodeck_function_wrapper.sh" -var log_text = "gdc_" -var log_parameters: Array = ["log", "i", log_text] +@onready var bios_type:int var log_results: Dictionary var theme_option: OptionButton #signal signal_theme_changed @@ -15,51 +11,21 @@ var custom_theme: Theme = $".".theme var log_option: OptionButton var tab_container: TabContainer var anim_logo: AnimatedSprite2D -var rd_logs: String -var rd_version: String -var gc_version: String -var l1_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png") -var r1_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png") var a_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png") var b_button_texture: Texture2D = load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png") - var app_data := AppData.new() + func _ready(): _get_nodes() _connect_signals() _play_main_animations() - %locale_option.selected = class_functions.map_locale_id(OS.get_locale_language()) - app_data = data_handler.app_data - #data_handler.add_emulator() - #data_handler.modify_emulator_test() - if app_data: - var website_data: Link = app_data.about_links["rd_web"] - print (website_data.name,"-",website_data.url,"-",website_data.description,"-",website_data.url) - #print (app_data.about_links["rd_web"]["name"]) - - for key in app_data.emulators.keys(): - var emulator = app_data.emulators[key] - # Display the properties of each emulator - print("Emulator Name: ", emulator.name) - print("Description: ", emulator.description) - print("Properties:") - # Iterate over properties and show each one - for property: EmulatorProperty in emulator.properties: - print("Cheevos: ", property.cheevos) - print("ABXY_button:", property.abxy_button) - print("multi_user_config_dir: ", property.multi_user_config_dir) - else: - print ("No emulators") + #%locale_option.selected = class_functions.map_locale_id(OS.get_locale_language()) - var config_file_path = "/var/config/retrodeck/retrodeck.cfg" - var json_file_path = "/var/config/retrodeck/retrodeck.json" - var config = data_handler.parse_config_to_json(config_file_path) - data_handler.config_save_json(config, json_file_path) - rd_logs = config["paths"]["logs_folder"] - rd_version = config["version"] - gc_version = ProjectSettings.get_setting("application/config/version") - %rd_title.text+= "\n " + rd_version + "\nConfigurator\n " + gc_version - + #class_functions.logger() + %rd_title.text += class_functions.read_cfg() + class_functions.log_parameters[2] = class_functions.log_text + "started configurator" + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + print (class_functions.rd_log) #var log_file = class_functions.import_text_file(rd_logs +"/retrodeck.log") #for id in config.paths: # var path_data = config.paths[id] @@ -78,25 +44,24 @@ func _ready(): func _input(event): if Input.is_action_pressed("quit1") and Input.is_action_pressed("quit2"): - get_tree().quit() - if Input.is_action_pressed("next_tab"): - %r1_button.texture_normal = %r1_button.texture_pressed - elif Input.is_action_pressed("previous_tab"): - %l1_button.texture_normal = %l1_button.texture_pressed - elif Input.is_action_pressed("back_button"): + _exit() + if Input.is_action_pressed("back_button"): %b_button.texture_normal = %b_button.texture_pressed elif Input.is_action_pressed("action_button"): %a_button.texture_normal = %a_button.texture_pressed else: - %r1_button.texture_normal = r1_button_texture - %l1_button.texture_normal = l1_button_texture %a_button.texture_normal = a_button_texture %b_button.texture_normal = b_button_texture if event.is_action_pressed("quit"): _exit() +func _exit(): + class_functions.log_parameters[2] = class_functions.log_text + "exited configurator" + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + get_tree().root.propagate_notification(NOTIFICATION_WM_CLOSE_REQUEST) + get_tree().quit() + func _get_nodes() -> void: - status_code_label = get_node("%status_code_label") theme_option = get_node("%theme_optionbutton") tab_container = get_node("%TabContainer") anim_logo = get_node("%logo_animated") @@ -107,76 +72,87 @@ func _connect_signals() -> void: theme_option.item_selected.connect(_conf_theme) #signal_theme_changed.emit(theme_option.item_selected) log_option.item_selected.connect(_load_log) - %borders_button.pressed.connect(_hide_show.bind(%borders_button)) - %save_button.pressed.connect(_hide_show.bind(%save_button)) - %decorations_button.pressed.connect(_hide_show_containers.bind(%decorations_button)) - %systems_button.pressed.connect(_hide_show_containers.bind(%systems_button)) - %save_resume_button.pressed.connect(_hide_show_containers.bind(%decorations_button)) - + %borders_button.pressed.connect(_hide_show_buttons.bind(%borders_button,%borders_gridcontainer,%decorations_gridcontainer)) + %button_layout.pressed.connect(_hide_show_buttons.bind(%button_layout,%borders_gridcontainer,%decorations_gridcontainer)) + %decorations_save.pressed.connect(_hide_show_buttons.bind(%decorations_save,%decorations_save.get_parent(),null)) + %decorations_button.pressed.connect(_hide_show_containers.bind(%decorations_button, %decorations_gridcontainer)) + %systems_button.pressed.connect(_hide_show_containers.bind(%systems_button, %systems_gridcontainer)) + %save_resume_button.pressed.connect(_hide_show_containers.bind(%decorations_button,%systems_gridcontainer)) + func _load_log(index: int) -> void: var log_content:String match index: 1: - log_content = class_functions.import_text_file(rd_logs +"/retrodeck.log") + class_functions.log_parameters[2] = class_functions.log_text + "Loading RetroDeck log" + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + log_content = class_functions.import_text_file(class_functions.rd_log_folder +"/retrodeck.log") load_popup("RetroDeck Log", "res://components/logs_view/logs_popup_content.tscn", log_content) 2: - log_content = class_functions.import_text_file(rd_logs +"/ES-DE/es_log.txt") + class_functions.log_parameters[2] = class_functions.log_text + "Loading ES-DE log" + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + log_content = class_functions.import_text_file(class_functions.rd_log_folder +"/ES-DE/es_log.txt") load_popup("ES-DE Log", "res://components/logs_view/logs_popup_content.tscn",log_content) 3: - log_content = class_functions.import_text_file(rd_logs +"/retroarch/logs/log.txt") + class_functions.log_parameters[2] = class_functions.log_text + "Loading RetroArch log" + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + log_content = class_functions.import_text_file(class_functions.rd_log_folder +"/retroarch/logs/log.txt") load_popup("Retroarch Log", "res://components/logs_view/logs_popup_content.tscn",log_content) func _play_main_animations() -> void: anim_logo.play() -func _hide_show_containers(button: Button) -> void: +func _hide_show_containers(button: Button, grid_container: GridContainer) -> void: match button.name: - "decorations_button": - %graphics_gridcontainer.visible = true + "decorations_button", "systems_button": + grid_container.visible = true if button.toggle_mode: button.toggle_mode=false - %graphics_gridcontainer.visible = false - else: - button.toggle_mode=true - "systems_button": - %systems_gridcontainer.visible = true - if button.toggle_mode: - button.toggle_mode=false - %systems_gridcontainer.visible = false + grid_container.visible = false else: button.toggle_mode=true -func _hide_show(button: Button) -> void: - if %borders_button.button_pressed: - %borders_gridcontainer.visible = true - for i in range(%borders_gridcontainer.get_child_count()): - var child = %borders_gridcontainer.get_child(i) - if child is Button: - child.button_pressed=true - for i in range(%graphics_gridcontainer.get_child_count()): - var child = %graphics_gridcontainer.get_child(i) - if child is Button and child != %borders_button: - child.visible=false - %save_button.visible=true - - if %save_button.button_pressed: - %borders_gridcontainer.visible = false - for i in range(%graphics_gridcontainer.get_child_count()): - var child = %graphics_gridcontainer.get_child(i) - if child is Button: - child.visible=true - %save_button.visible=false +# TODO Pass GridContainer(might need 2?) as above +# TODO load existing settings or default to enable all +func _hide_show_buttons(button: Button, buttons_gridcontainer: GridContainer, hidden_gridcontainer: GridContainer) -> void: + match button.name: + "borders_button", "button_layout": + buttons_gridcontainer.visible = true + if button.toggle_mode == false: + for i in range(buttons_gridcontainer.get_child_count()): + var child = buttons_gridcontainer.get_child(i) + child.button_pressed=true + for i in range(hidden_gridcontainer.get_child_count()): + var child = hidden_gridcontainer.get_child(i) + if child is Button and child != button: + child.visible=false + elif button.toggle_mode == true and %borders_gridcontainer.visible == true: + print (button.name, "SAVE NOW? TODO") # TODO SHOW ALL AGAIN? + buttons_gridcontainer.visible = false + #button.toggle_mode = false + for i in range(hidden_gridcontainer.get_child_count()): + var child = hidden_gridcontainer.get_child(i) + if child is Button: + child.visible=true + child.toggle_mode = false + button.toggle_mode = true func _conf_theme(index: int) -> void: - print (index) match index: 1: + class_functions.log_parameters[2] = class_functions.log_text + "Set theme to index " + str(index) + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) custom_theme = preload("res://res/pixel_ui_theme/RetroDECKTheme.tres") 2: + class_functions.log_parameters[2] = class_functions.log_text + "Set theme to index " + str(index) + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) custom_theme = preload("res://assets/themes/retro_theme.tres") 3: + class_functions.log_parameters[2] = class_functions.log_text + "Set theme to index " + str(index) + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) custom_theme = preload("res://assets/themes/modern_theme.tres") 4: + class_functions.log_parameters[2] = class_functions.log_text + "Set theme to index " + str(index) + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) custom_theme = preload("res://assets/themes/accesible_theme.tres") $".".theme = custom_theme _play_main_animations() @@ -203,30 +179,25 @@ func _on_quickresume_advanced_pressed(): func _on_bios_button_pressed(): _play_main_animations() - bios_type = 0 - log_parameters[2] = log_text + "Bios_Check" - log_results = class_functions.execute_command(wrapper_command, log_parameters, false) + bios_type = 1 + class_functions.log_parameters[2] = class_functions.log_text + "Bios_Check" + log_results = class_functions.execute_command(class_functions.wrapper_command, class_functions.log_parameters, false) load_popup("BIOS File Check", "res://components/bios_check/bios_popup_content.tscn","") - status_code_label.text = str(log_results["exit_code"]) - + bios_type = 0 + func _on_bios_button_expert_pressed(): _play_main_animations() - bios_type = 1 - log_parameters[2] = log_text + "Advanced_Bios_Check" - log_results = class_functions.execute_command(wrapper_command, log_parameters, false) + bios_type = 2 + class_functions.log_parameters[2] = class_functions.log_text + "Advanced_Bios_Check" + log_results = class_functions.execute_command(class_functions.wrapper_command, class_functions.log_parameters, false) + class_functions.log_parameters[2] = class_functions.log_text + "Exit code: " + str(log_results["exit_code"]) load_popup("BIOS File Check", "res://components/bios_check/bios_popup_content.tscn","") - status_code_label.text = str(log_results["exit_code"]) - + bios_type = 0 + func _on_exit_button_pressed(): _play_main_animations() - log_parameters[2] = log_text + "Exited" - log_results = class_functions.execute_command(wrapper_command, log_parameters, false) _exit() -func _exit(): - get_tree().root.propagate_notification(NOTIFICATION_WM_CLOSE_REQUEST) - get_tree().quit() - func _on_locale_selected(index): match index: 0: @@ -252,10 +223,59 @@ func _on_locale_selected(index): func combine_tkeys(): #More as a test - %cheats.text = tr("TK_CHEATS") + " " + tr("TK_SOON") # switched to access as a unique name as easier to refactor + pass + #%cheats.text = tr("TK_CHEATS") + " " + tr("TK_SOON") # switched to access as a unique name as easier to refactor #$Background/MarginContainer/TabContainer/TK_SYSTEM/ScrollContainer/VBoxContainer/HBoxContainer/GridContainer/cheats.text = tr("TK_CHEATS") + " " + tr("TK_SOON") #%tate_mode.text = tr("TK_TATE") + " " + tr("TK_SOON") #%hotkey_sound.text = tr("TK_HOTKEYSOUND") + " " + tr("TK_SOON") #$Background/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container/cheevos_hardcore.text = tr("TK_CHEEVOSHARDCORE") + " " + tr("TK_SOON") #$Background/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/data_mng_container/saves_sync.text = tr("TK_SAVESSYNC") + " " + tr("TK_SOON") #$Background/MarginContainer/TabContainer/TK_CONFIGURATOR/ScrollContainer/VBoxContainer/system_container/easter_eggs.text = tr("TK_EASTEREGGS") + " " + tr("TK_SOON") + +func display_json_data() -> void: + app_data = data_handler.app_data + #data_handler.add_emulator() + #data_handler.modify_emulator_test() + if app_data: + var website_data: Link = app_data.about_links["rd_web"] + print (website_data.name,"-",website_data.url,"-",website_data.description,"-",website_data.url) + #print (app_data.about_links["rd_web"]["name"]) + var core_data: Core = app_data.cores["gambatte_libetro"] + print (core_data.name) + for property: CoreProperty in core_data.properties: + print("Cheevos: ", property.cheevos) + print("Cheevos Hardcore: ", property.cheevos_hardcore) + print("Quick Resume: ", property.quick_resume) + print("Rewind: ", property.rewind) + print("Borders: ", property.borders) + print("Widescreen: ", property.widescreen) + print("ABXY_button:", property.abxy_button) + for key in app_data.emulators.keys(): + var emulator = app_data.emulators[key] + # Display the properties of each emulator + print("System Name: ", emulator.name) + print("Description: ", emulator.description) + #print("System: ", emulator.systen) + print("Help URL: ", emulator.url) + print("Properties:") + for property: EmulatorProperty in emulator.properties: + print("Cheevos: ", property.cheevos) + print("Borders: ", property.borders) + print("ABXY_button:", property.abxy_button) + print("multi_user_config_dir: ", property.multi_user_config_dir) + + for key in app_data.cores.keys(): + var core = app_data.cores[key] + print("Core Name: ", core.name) + print("Description: ", core.description) + print("Properties:") + for property: CoreProperty in core.properties: + print("Cheevos: ", property.cheevos) + print("Cheevos Hardcore: ", property.cheevos_hardcore) + print("Quick Resume: ", property.quick_resume) + print("Rewind: ", property.rewind) + print("Borders: ", property.borders) + print("Widescreen: ", property.widescreen) + print("ABXY_button:", property.abxy_button) + else: + print ("No emulators") diff --git a/tools/configurator/main.tscn b/tools/configurator/main.tscn index b1e03c9a..7cd11420 100644 --- a/tools/configurator/main.tscn +++ b/tools/configurator/main.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=76 format=3 uid="uid://61f6m4r1mpan"] +[gd_scene load_steps=99 format=3 uid="uid://61f6m4r1mpan"] [ext_resource type="Texture2D" uid="uid://bv6vh33cnfaw4" path="res://icon.svg" id="1_axfei"] [ext_resource type="Theme" uid="uid://hhc60cllcg47" path="res://assets/themes/default_theme.tres" id="1_if8nh"] @@ -6,6 +6,7 @@ [ext_resource type="Script" path="res://TabContainer.gd" id="3_id6l4"] [ext_resource type="AudioStream" uid="uid://dig4pco500pyt" path="res://res/configurator.mp3" id="3_xivj6"] [ext_resource type="Texture2D" uid="uid://dx0u5hiwxfgu5" path="res://res/pixel_ui_theme/8x8_ui_elements.png" id="4_2tuu4"] +[ext_resource type="Texture2D" uid="uid://qu88ngewoj4w" path="res://assets/icons/pixelitos/128/applications-games.png" id="4_caaxx"] [ext_resource type="Texture2D" uid="uid://bdj8vt3vhucq4" path="res://assets/icons/pixelitos/128/cs-display.png" id="4_jldgc"] [ext_resource type="Script" path="res://tk_about.gd" id="4_m4rto"] [ext_resource type="Script" path="res://Rekku.gd" id="4_nqqx3"] @@ -19,6 +20,7 @@ [ext_resource type="Texture2D" uid="uid://du8go5dyabmsl" path="res://assets/icons/banner/gb.png" id="5_ja8to"] [ext_resource type="StyleBox" uid="uid://ba3l3ja1jbqpx" path="res://assets/themes/emulators.tres" id="5_rjtkn"] [ext_resource type="Texture2D" uid="uid://cboyy7fkdijwg" path="res://assets/icons/pixelitos/128/cs-desktop-effects.png" id="5_uiobi"] +[ext_resource type="Texture2D" uid="uid://do3mc6sg5mfek" path="res://assets/icons/pixelitos/128/system-software-install.png" id="5_vehlp"] [ext_resource type="Texture2D" uid="uid://cjv6lhd4g63m3" path="res://assets/graphics/retrodeck_base_shake1.png" id="6_d43n7"] [ext_resource type="Texture2D" uid="uid://cru43y7hco6kh" path="res://res/flags/italy_32.png" id="6_fiylw"] [ext_resource type="Texture2D" uid="uid://du4mupvvwbusy" path="res://assets/icons/banner/gbc.png" id="6_mvrie"] @@ -42,9 +44,11 @@ [ext_resource type="Texture2D" uid="uid://dgdennwyj5g2l" path="res://assets/icons/banner/mastersystem.png" id="9_s3srh"] [ext_resource type="Texture2D" uid="uid://cpq0em8j2bank" path="res://assets/icons/banner/megadrive.png" id="10_2jlmn"] [ext_resource type="Texture2D" uid="uid://dtwjo7co226dw" path="res://res/flags/japan_32.png" id="10_e8mt0"] +[ext_resource type="Texture2D" uid="uid://clvsisb38lk72" path="res://assets/icons/pixelitos/128/accesories-screenshoot.png" id="10_jm3oh"] [ext_resource type="Texture2D" uid="uid://bevamv2c8knnn" path="res://assets/icons/pixelitos/128/org.citra_emu.citra.png" id="10_wbaif"] [ext_resource type="Texture2D" uid="uid://dbvjugxp84gsj" path="res://assets/icons/pixelitos/128/org.DolphinEmu.dolphin-emu.png" id="11_61sak"] [ext_resource type="Texture2D" uid="uid://c0pbart7aj657" path="res://assets/icons/pixelitos/128/preferences-system-time.png" id="11_c3qcy"] +[ext_resource type="Texture2D" uid="uid://do6o02gxjxneh" path="res://assets/icons/pixelitos/128/net.retrodeck.retrodeck.png" id="11_g1uhn"] [ext_resource type="Texture2D" uid="uid://blwtj4of6fb5y" path="res://assets/icons/pixelitos/128/spacefm.png" id="11_p6y0k"] [ext_resource type="Texture2D" uid="uid://cbwhpqip43aei" path="res://res/flags/china_32.png" id="11_ri2fv"] [ext_resource type="Texture2D" uid="uid://b763qnm02o5bd" path="res://assets/icons/pixelitos/128/system-reboot.png" id="12_3jrmi"] @@ -56,27 +60,45 @@ [ext_resource type="Texture2D" uid="uid://cvt2jky3bbjun" path="res://assets/icons/pixelitos/128/drive-removable-media.png" id="18_h2o3e"] [ext_resource type="Texture2D" uid="uid://dyumvh0ixwrbl" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0042.png" id="30_glnve"] [ext_resource type="Texture2D" uid="uid://cn11vcrybtor4" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0047.png" id="31_j5ri1"] -[ext_resource type="Texture2D" uid="uid://cor8ep0fkqm08" path="res://res/Rekku/base.png" id="32_omdu2"] [ext_resource type="Texture2D" uid="uid://cc7ohmfxafe78" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0043.png" id="33_1ghye"] -[ext_resource type="Texture2D" uid="uid://cavtn1rljc5oe" path="res://res/Rekku/eyes-open.png" id="33_loftd"] [ext_resource type="Texture2D" uid="uid://cs8lh31kh7jv1" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0048.png" id="34_fum2b"] -[ext_resource type="Texture2D" uid="uid://cv7nckloqhn5m" path="res://res/Rekku/blink1.png" id="34_liw3o"] -[ext_resource type="Texture2D" uid="uid://by0oj188x350g" path="res://res/Rekku/blink2.png" id="35_dxwop"] -[ext_resource type="Texture2D" uid="uid://cfa5mn3dsdvw6" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0729.png" id="36_3qttl"] -[ext_resource type="Texture2D" uid="uid://kx8eypf4ffvu" path="res://res/Rekku/mouth-base.png" id="36_qon8n"] -[ext_resource type="Texture2D" uid="uid://b6gl8sltbak7v" path="res://res/Rekku/mouth-O.png" id="37_2mdp6"] +[ext_resource type="Texture2D" uid="uid://chd6d8tx081hm" path="res://assets/icons/pixelitos/128/org.mamedev.MAME.png" id="36_dj81i"] +[ext_resource type="Script" path="res://scripts/SystemTab.gd" id="36_wv31h"] +[ext_resource type="Texture2D" uid="uid://10pyy05xqpr4" path="res://assets/icons/pixelitos/128/ruffle.png" id="37_7hhbn"] +[ext_resource type="Texture2D" uid="uid://fhxlwf7in0ke" path="res://assets/icons/pixelitos/128/net.pcsx2.PCSX2.png" id="38_44je8"] [ext_resource type="Texture2D" uid="uid://dpi351mmxu7x6" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png" id="38_prt7u"] +[ext_resource type="Texture2D" uid="uid://bum0ys5hf70g5" path="res://assets/icons/pixelitos/128/vita3k.png" id="38_vsjf2"] [ext_resource type="Texture2D" uid="uid://ckyvec3wqx3t" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0798.png" id="39_5ft88"] [ext_resource type="Texture2D" uid="uid://n4hywdifr1q4" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0763.png" id="39_m4qgd"] +[ext_resource type="Texture2D" uid="uid://4rxej78gwu6" path="res://assets/icons/pixelitos/128/org.ryujinx.Ryujinx.png" id="40_7fdvq"] [ext_resource type="Texture2D" uid="uid://bwcc0mjxxm0w1" path="res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0764.png" id="40_pnuor"] - -[sub_resource type="GDScript" id="GDScript_203iw"] -script/source = "extends MarginContainer -" +[ext_resource type="Texture2D" uid="uid://dr637stsnsg01" path="res://assets/icons/pixelitos/128/primehack.png" id="41_55e56"] +[ext_resource type="Texture2D" uid="uid://lopxvipv6asb" path="res://assets/icons/pixelitos/128/info.cemu.Cemu.png" id="42_n3n7j"] +[ext_resource type="Texture2D" uid="uid://bxng1bakpvyyr" path="res://assets/icons/pixelitos/128/app.xemu.xemu.png" id="43_ifi6j"] +[ext_resource type="Texture2D" uid="uid://dhf620jyq75t1" path="res://assets/icons/pixelitos/128/es-de.png" id="44_7lpj5"] +[ext_resource type="Texture2D" uid="uid://b6vndtbu4qduo" path="res://assets/icons/pixelitos/128/preferences-desktop-launch-feedback.png" id="45_qxd26"] +[ext_resource type="Texture2D" uid="uid://3sw7gtoiuab3" path="res://assets/icons/pixelitos/128/help-browser.png" id="46_feagl"] +[ext_resource type="Texture2D" uid="uid://b0awa8venu1h8" path="res://assets/icons/pixelitos/128/cs-network.png" id="50_5d2ui"] +[ext_resource type="Texture2D" uid="uid://bafdexg6aq8tn" path="res://assets/icons/pixelitos/128/applications-accessories.png" id="50_h3jx2"] +[ext_resource type="Texture2D" uid="uid://be3tmvgoa1wua" path="res://assets/icons/pixelitos/128/applications-development.png" id="50_tl5ty"] +[ext_resource type="Texture2D" uid="uid://l3bredurb11m" path="res://assets/graphics/rekku2/rekku_base.png" id="57_1n3u5"] +[ext_resource type="Texture2D" uid="uid://cvlncuql8igrm" path="res://assets/graphics/rekku2/rekku_eye_1.png" id="59_7lcu5"] +[ext_resource type="Texture2D" uid="uid://bdrdu4nddkqjn" path="res://assets/graphics/rekku2/rekku_eye_2.png" id="60_mbhg6"] +[ext_resource type="Texture2D" uid="uid://cb2hwhaq036mu" path="res://assets/graphics/rekku2/rekku_mouth_a.png" id="61_5vyvy"] +[ext_resource type="Texture2D" uid="uid://dl2fd66fvn1an" path="res://assets/graphics/rekku2/rekku_mouth_i.png" id="62_lji1k"] +[ext_resource type="Texture2D" uid="uid://3ktnkmuecxea" path="res://assets/graphics/rekku2/rekku_mouth_m.png" id="63_52v81"] +[ext_resource type="Texture2D" uid="uid://d08ngewjvxkmn" path="res://assets/graphics/rekku2/rekku_mouth_o.png" id="64_s8u0e"] +[ext_resource type="Texture2D" uid="uid://dieva7tuxjrvy" path="res://assets/graphics/rekku2/rekku_nomouth.png" id="65_kk8ba"] +[ext_resource type="Script" path="res://controller_guide.gd" id="68_ahvw4"] +[ext_resource type="AudioStream" uid="uid://dhejvg02t5o35" path="res://assets/sounds/30375__sjonas88__smooth-game-like-sounds/538549__sjonas88__select-2.wav" id="71_ghxvk"] +[ext_resource type="Texture2D" uid="uid://dllymmym0335n" path="res://assets/icons/pixelitos/16/system-shutdown.png" id="87_1yqbe"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_omewi"] bg_color = Color(0.712505, 0, 0.175592, 1) +[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_1161k"] +bg_color = Color(0.101961, 0.623529, 1, 0.376471) + [sub_resource type="SpriteFrames" id="SpriteFrames_lhf2y"] animations = [{ "frames": [{ @@ -100,17 +122,23 @@ animations = [{ "speed": 12.0 }] +[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_rf0rc"] +texture = ExtResource("4_2tuu4") +texture_margin_left = 6.0 +texture_margin_top = 6.0 +texture_margin_right = 6.0 +texture_margin_bottom = 6.0 +region_rect = Rect2(0, 8, 16, 16) +modulate_color = Color(0.65098, 0.403922, 0.819608, 1) + [sub_resource type="SpriteFrames" id="SpriteFrames_k7pd1"] animations = [{ "frames": [{ -"duration": 40.0, -"texture": ExtResource("33_loftd") +"duration": 10.0, +"texture": ExtResource("59_7lcu5") }, { -"duration": 0.15, -"texture": ExtResource("34_liw3o") -}, { -"duration": 0.15, -"texture": ExtResource("35_dxwop") +"duration": 1.0, +"texture": ExtResource("60_mbhg6") }], "loop": true, "name": &"blink", @@ -120,41 +148,26 @@ animations = [{ [sub_resource type="SpriteFrames" id="SpriteFrames_l20mt"] animations = [{ "frames": [{ -"duration": 0.5, -"texture": ExtResource("36_qon8n") +"duration": 1.0, +"texture": ExtResource("63_52v81") }, { "duration": 1.0, -"texture": ExtResource("37_2mdp6") +"texture": ExtResource("62_lji1k") }, { "duration": 1.0, -"texture": ExtResource("36_qon8n") +"texture": ExtResource("61_5vyvy") }, { "duration": 1.0, -"texture": ExtResource("36_qon8n") +"texture": ExtResource("64_s8u0e") }, { "duration": 1.0, -"texture": ExtResource("37_2mdp6") -}, { -"duration": 1.0, -"texture": ExtResource("37_2mdp6") -}, { -"duration": 1.0, -"texture": ExtResource("36_qon8n") +"texture": ExtResource("65_kk8ba") }], "loop": true, "name": &"speech", "speed": 5.0 }] -[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_rf0rc"] -texture = ExtResource("4_2tuu4") -texture_margin_left = 6.0 -texture_margin_top = 6.0 -texture_margin_right = 6.0 -texture_margin_bottom = 6.0 -region_rect = Rect2(0, 8, 16, 16) -modulate_color = Color(0.65098, 0.403922, 0.819608, 1) - [node name="Control" type="Control"] layout_mode = 3 anchors_preset = 15 @@ -191,37 +204,84 @@ size_flags_horizontal = 3 unique_name_in_owner = true layout_mode = 2 tab_alignment = 1 -current_tab = 0 +current_tab = 4 script = ExtResource("3_id6l4") -[node name="Presets" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] +[node name="GLOBALS" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] unique_name_in_owner = true +visible = false layout_mode = 2 -script = SubResource("GDScript_203iw") metadata/_tab_index = 0 -[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets"] +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS"] layout_mode = 2 follow_focus = true -[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer"] +[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer"] layout_mode = 2 size_flags_horizontal = 3 size_flags_vertical = 3 -[node name="decorations_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer"] -unique_name_in_owner = true +[node name="GridContainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer"] layout_mode = 2 -text = "DECORATIONS - Borders, Widescreen" +columns = 3 + +[node name="Widescreen6" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/GridContainer"] +layout_mode = 2 +tooltip_text = "Change to Nintendo style button mappings." +text = "BUTTON SWAP +" +icon = ExtResource("4_caaxx") + +[node name="Widescreen2" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/GridContainer"] +layout_mode = 2 +text = "MODS" +icon = ExtResource("5_vehlp") + +[node name="Widescreen5" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/GridContainer"] +layout_mode = 2 +text = "QUICK RESUME" +icon = ExtResource("12_3jrmi") + +[node name="decorations_button" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/GridContainer"] +layout_mode = 2 +text = "BORDERS" +icon = ExtResource("4_jldgc") + +[node name="Widescreen" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/GridContainer"] +layout_mode = 2 +text = "SHADERS" icon = ExtResource("4_q6hd2") -[node name="graphics_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer"] -unique_name_in_owner = true +[node name="Widescreen3" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/GridContainer"] +layout_mode = 2 +text = "QUICK REWIND" +icon = ExtResource("11_c3qcy") + +[node name="Widescreen4" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/GridContainer"] +layout_mode = 2 +text = "TATE MODE" +icon = ExtResource("10_jm3oh") + +[node name="Widescreen7" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/GridContainer"] +layout_mode = 2 +text = "RESET +RETROCECK" +icon = ExtResource("11_g1uhn") +expand_icon = true + +[node name="Widescreen8" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/GridContainer"] +layout_mode = 2 +text = "RESET ALL +EMULATORS" +icon = ExtResource("45_qxd26") + +[node name="decorations_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer"] visible = false layout_mode = 2 columns = 5 -[node name="wide_screen" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] +[node name="wide_screen" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] custom_minimum_size = Vector2(200, 200) layout_mode = 2 size_flags_horizontal = 4 @@ -233,7 +293,7 @@ icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true -[node name="shaders" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] +[node name="shaders" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] custom_minimum_size = Vector2(200, 200) layout_mode = 2 size_flags_horizontal = 4 @@ -245,7 +305,7 @@ icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true -[node name="mods" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] +[node name="mods" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] custom_minimum_size = Vector2(200, 200) layout_mode = 2 size_flags_horizontal = 4 @@ -257,8 +317,7 @@ icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true -[node name="tate_mode" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] -unique_name_in_owner = true +[node name="tate_mode" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] custom_minimum_size = Vector2(200, 200) layout_mode = 2 size_flags_horizontal = 4 @@ -270,8 +329,7 @@ icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true -[node name="borders_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] -unique_name_in_owner = true +[node name="borders_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] custom_minimum_size = Vector2(200, 200) layout_mode = 2 size_flags_horizontal = 4 @@ -283,8 +341,7 @@ icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true -[node name="hotkey_sound" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] -unique_name_in_owner = true +[node name="hotkey_sound" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] custom_minimum_size = Vector2(200, 200) layout_mode = 2 size_flags_horizontal = 4 @@ -297,8 +354,7 @@ icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true -[node name="buttons" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] -unique_name_in_owner = true +[node name="button_layout" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] custom_minimum_size = Vector2(200, 200) layout_mode = 2 size_flags_horizontal = 4 @@ -311,7 +367,7 @@ icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true -[node name="quick_resume" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] +[node name="quick_resume" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] custom_minimum_size = Vector2(200, 200) layout_mode = 2 size_flags_horizontal = 4 @@ -324,7 +380,7 @@ vertical_icon_alignment = 0 expand_icon = true metadata/description = "This is a test description set to this element" -[node name="rewind" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] +[node name="rewind" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] custom_minimum_size = Vector2(200, 200) layout_mode = 2 size_flags_horizontal = 4 @@ -337,7 +393,7 @@ vertical_icon_alignment = 0 expand_icon = true metadata/description = "This is another, very long and convoluted, description, that I put too much commas in to make in LONGER and more SOPHISTICATED. And I did it twice!!!This is another, very long and convoluted, description, that I put too much commas in to make in LONGER and more SOPHISTICATED." -[node name="quit_confirm" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] +[node name="quit_confirm" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] custom_minimum_size = Vector2(200, 200) layout_mode = 2 size_flags_horizontal = 0 @@ -350,8 +406,7 @@ icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true -[node name="cheats" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] -unique_name_in_owner = true +[node name="cheats" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] custom_minimum_size = Vector2(200, 200) layout_mode = 2 size_flags_horizontal = 4 @@ -364,107 +419,98 @@ icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true -[node name="save_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/graphics_gridcontainer"] -unique_name_in_owner = true +[node name="decorations_save" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/decorations_gridcontainer"] visible = false custom_minimum_size = Vector2(125, 125) layout_mode = 2 size_flags_horizontal = 4 size_flags_vertical = 4 theme_override_styles/focus = SubResource("StyleBoxFlat_omewi") -text = "SAVE" +text = "SAVE OR SELECT ALL?" icon = ExtResource("11_p6y0k") icon_alignment = 1 vertical_icon_alignment = 0 expand_icon = true -[node name="borders_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer"] -unique_name_in_owner = true +[node name="borders_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer"] visible = false layout_mode = 2 theme_override_constants/h_separation = 30 -columns = 4 +columns = 6 -[node name="CheckBox5" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/borders_gridcontainer"] -custom_minimum_size = Vector2(200, 180) +[node name="CheckBox5" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) layout_mode = 2 size_flags_horizontal = 0 size_flags_vertical = 0 icon = ExtResource("5_ja8to") expand_icon = true -[node name="CheckBox3" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/borders_gridcontainer"] -custom_minimum_size = Vector2(200, 180) +[node name="CheckBox3" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) layout_mode = 2 size_flags_horizontal = 0 size_flags_vertical = 0 icon = ExtResource("6_mvrie") expand_icon = true -[node name="CheckBox4" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/borders_gridcontainer"] -custom_minimum_size = Vector2(200, 180) +[node name="CheckBox4" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) layout_mode = 2 size_flags_horizontal = 0 size_flags_vertical = 0 icon = ExtResource("7_01lqn") expand_icon = true -[node name="CheckBox6" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/borders_gridcontainer"] -custom_minimum_size = Vector2(200, 180) +[node name="CheckBox6" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) layout_mode = 2 size_flags_horizontal = 0 size_flags_vertical = 0 icon = ExtResource("7_b8xj2") expand_icon = true -[node name="CheckBox" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/borders_gridcontainer"] -custom_minimum_size = Vector2(200, 180) +[node name="CheckBox" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) layout_mode = 2 size_flags_horizontal = 0 size_flags_vertical = 0 icon = ExtResource("8_rvph4") expand_icon = true -[node name="CheckBox7" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/borders_gridcontainer"] -custom_minimum_size = Vector2(200, 180) +[node name="CheckBox7" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) layout_mode = 2 size_flags_horizontal = 0 size_flags_vertical = 0 icon = ExtResource("9_s3srh") expand_icon = true -[node name="CheckBox8" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/borders_gridcontainer"] -custom_minimum_size = Vector2(200, 180) +[node name="CheckBox8" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) layout_mode = 2 size_flags_horizontal = 0 size_flags_vertical = 0 icon = ExtResource("10_2jlmn") expand_icon = true -[node name="CheckBox9" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/borders_gridcontainer"] -custom_minimum_size = Vector2(200, 180) +[node name="CheckBox9" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) layout_mode = 2 size_flags_horizontal = 0 size_flags_vertical = 0 icon = ExtResource("5_4d7s7") expand_icon = true -[node name="CheckBox10" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/borders_gridcontainer"] -custom_minimum_size = Vector2(200, 180) +[node name="CheckBox10" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) layout_mode = 2 size_flags_horizontal = 0 size_flags_vertical = 0 icon = ExtResource("12_pp08o") expand_icon = true -[node name="systems_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer"] -unique_name_in_owner = true -layout_mode = 2 -text = "SYSTEMS - Emulators, Console, Computers" -icon = ExtResource("17_0kr64") - -[node name="systems_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer"] -unique_name_in_owner = true +[node name="systems_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer"] visible = false layout_mode = 2 size_flags_vertical = 3 @@ -472,7 +518,7 @@ theme_override_constants/h_separation = 10 theme_override_constants/v_separation = 10 columns = 6 -[node name="Button3" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/systems_gridcontainer"] +[node name="Button3" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/systems_gridcontainer"] layout_mode = 2 tooltip_text = "RetroARCH" theme_override_styles/focus = ExtResource("5_rjtkn") @@ -481,7 +527,7 @@ icon = ExtResource("4_xcuib") icon_alignment = 1 vertical_icon_alignment = 0 -[node name="Button8" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/systems_gridcontainer"] +[node name="Button8" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/systems_gridcontainer"] layout_mode = 2 theme_override_styles/focus = ExtResource("5_rjtkn") text = "Dolphin" @@ -489,7 +535,7 @@ icon = ExtResource("11_61sak") icon_alignment = 1 vertical_icon_alignment = 0 -[node name="Button7" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/systems_gridcontainer"] +[node name="Button7" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/systems_gridcontainer"] layout_mode = 2 tooltip_text = "CITRA" text = "RPCS3" @@ -497,7 +543,7 @@ icon = ExtResource("8_ec4gt") icon_alignment = 1 vertical_icon_alignment = 0 -[node name="Button5" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/systems_gridcontainer"] +[node name="Button5" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/systems_gridcontainer"] layout_mode = 2 tooltip_text = "PSPSSPP" theme_override_styles/focus = ExtResource("5_rjtkn") @@ -506,7 +552,7 @@ icon = ExtResource("8_akxf7") icon_alignment = 1 vertical_icon_alignment = 0 -[node name="Button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/systems_gridcontainer"] +[node name="Button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/systems_gridcontainer"] layout_mode = 2 tooltip_text = "Duckstation" theme_override_styles/focus = ExtResource("5_rjtkn") @@ -515,7 +561,7 @@ icon = ExtResource("6_winpq") icon_alignment = 1 vertical_icon_alignment = 0 -[node name="Button2" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/systems_gridcontainer"] +[node name="Button2" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/systems_gridcontainer"] layout_mode = 2 tooltip_text = "Melon DS" theme_override_styles/focus = ExtResource("5_rjtkn") @@ -524,7 +570,7 @@ icon = ExtResource("7_4otos") icon_alignment = 1 vertical_icon_alignment = 0 -[node name="Button9" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer/systems_gridcontainer"] +[node name="Button9" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/GLOBALS/ScrollContainer/VBoxContainer/systems_gridcontainer"] visible = false layout_mode = 2 tooltip_text = "CITRA" @@ -534,445 +580,368 @@ icon = ExtResource("10_wbaif") icon_alignment = 1 vertical_icon_alignment = 0 -[node name="save_resume_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/Presets/ScrollContainer/VBoxContainer"] -unique_name_in_owner = true -layout_mode = 2 -text = "FUNCTIONS - Save states, etc" -icon = ExtResource("18_h2o3e") - -[node name="TK_SYSTEM" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] +[node name="SYSTEM" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] visible = false layout_mode = 2 +script = ExtResource("36_wv31h") metadata/_tab_index = 1 -[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_SYSTEM"] +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM"] layout_mode = 2 follow_focus = true -[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_SYSTEM/ScrollContainer"] +[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer"] layout_mode = 2 size_flags_horizontal = 3 size_flags_vertical = 3 -[node name="controls_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_SYSTEM/ScrollContainer/VBoxContainer"] +[node name="sysems_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer"] layout_mode = 2 -[node name="controls_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_SYSTEM/ScrollContainer/VBoxContainer/controls_container"] +[node name="systems_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container"] layout_mode = 2 -text = "TK_SYSTEM" +text = "SYSTEMS & EMULATORS" -[node name="controls_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_SYSTEM/ScrollContainer/VBoxContainer/controls_container"] +[node name="systems_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container"] layout_mode = 2 -[node name="TK_TOOLS" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] +[node name="system_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container"] +unique_name_in_owner = true +layout_mode = 2 +columns = 4 + +[node name="retroarch_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "RETROARCH" +icon = ExtResource("4_xcuib") + +[node name="mame_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "MAME" +icon = ExtResource("36_dj81i") + +[node name="ruffle_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "RUFFLE" +icon = ExtResource("37_7hhbn") + +[node name="melonds_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "MELONDS" +icon = ExtResource("7_4otos") + +[node name="pcsx2_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "PCSX2" +icon = ExtResource("38_44je8") + +[node name="duckstation_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "DUCKSTATION" +icon = ExtResource("6_winpq") + +[node name="ppsspp_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "PPSSPP" +icon = ExtResource("8_akxf7") + +[node name="vita3k_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "VITA3K" +icon = ExtResource("38_vsjf2") + +[node name="rpcs3_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "RPCS3" +icon = ExtResource("8_ec4gt") + +[node name="ryujinx_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "RYUJINX" +icon = ExtResource("40_7fdvq") + +[node name="dolphin_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "DOLPHIN" +icon = ExtResource("11_61sak") + +[node name="primehack_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "PRIMEHACK" +icon = ExtResource("41_55e56") + +[node name="cemu_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "CEMU" +icon = ExtResource("42_n3n7j") + +[node name="xemu_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "XEMU" +icon = ExtResource("43_ifi6j") + +[node name="esde_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/system_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "ES-DE" +icon = ExtResource("44_7lpj5") + +[node name="action_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container"] +unique_name_in_owner = true +visible = false +layout_mode = 2 + +[node name="help_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/action_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +size_flags_horizontal = 3 +text = "HELP" +icon = ExtResource("46_feagl") + +[node name="launch_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/action_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +action_mode = 0 +text = "LAUNCH" +icon = ExtResource("45_qxd26") + +[node name="reset_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/action_gridcontainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "RESET" +icon = ExtResource("12_3jrmi") + +[node name="reset_progress" type="ProgressBar" parent="Background/SplitContainer/MarginContainer/TabContainer/SYSTEM/ScrollContainer/VBoxContainer/sysems_container/action_gridcontainer/reset_button"] +unique_name_in_owner = true +visible = false +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme_override_styles/fill = SubResource("StyleBoxFlat_1161k") +show_percentage = false + +[node name="TOOLS" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] visible = false layout_mode = 2 metadata/_tab_index = 2 -[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS"] -layout_mode = 2 -follow_focus = true - -[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer"] -layout_mode = 2 -size_flags_horizontal = 3 -theme_override_constants/separation = 36 - -[node name="scan_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer"] +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS"] layout_mode = 2 -[node name="scan_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/scan_container"] -layout_mode = 2 -text = "TK_SCAN" - -[node name="scan_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/scan_container"] -layout_mode = 2 - -[node name="ps3_scan" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/scan_container"] -layout_mode = 2 -disabled = true -text = "TK_PS3SCAN" - -[node name="scummvm_scan" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/scan_container"] -layout_mode = 2 -disabled = true -text = "TK_SCUMMVMSCAN" - -[node name="multifile_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/scan_container"] -layout_mode = 2 -text = "TK_MULTIFILE" - -[node name="3ds_decrypt_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/scan_container"] -layout_mode = 2 -disabled = true -text = "TK_3DSDECRYPT" - -[node name="bios_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/scan_container"] -layout_mode = 2 -text = "TK_BIOS" - -[node name="bios_button_expert" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/scan_container"] -layout_mode = 2 -text = "TK_BIOS_EXPERT" - -[node name="tools_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer"] -layout_mode = 2 - -[node name="tools_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/tools_container"] -layout_mode = 2 -text = "TK_GENTOOLS" - -[node name="tools_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/tools_container"] -layout_mode = 2 - -[node name="emu_open_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/tools_container"] -layout_mode = 2 -text = "TK_EMUOPEN" - -[node name="steamgrid_install_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/tools_container"] -layout_mode = 2 -disabled = true -text = "TK_GRIDINSTALL" - -[node name="ps3_fw_install_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/tools_container"] -layout_mode = 2 -text = "TK_PS3FWINSTALL" - -[node name="fav_steam" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/tools_container"] -layout_mode = 2 -text = "TK_FAVSTEAM" - -[node name="file_tools_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer"] -layout_mode = 2 - -[node name="file_tools_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] -layout_mode = 2 -text = "TK_FILETOOLS" - -[node name="file_tools_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] -layout_mode = 2 - -[node name="usb_tool_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] -layout_mode = 2 -disabled = true -text = "TK_USBTOOL" - -[node name="backup_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] -layout_mode = 2 -disabled = true -text = "TK_BACKUPBTN" - -[node name="compress_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] -layout_mode = 2 -disabled = true -text = "TK_COMPRESSGAMES" - -[node name="move_files_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] -layout_mode = 2 -disabled = true -text = "TK_MOVEFILES" - -[node name="TK_NETWORK" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] -visible = false -layout_mode = 2 -metadata/_tab_index = 3 - -[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK"] -layout_mode = 2 -follow_focus = true - -[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer"] +[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer"] layout_mode = 2 size_flags_horizontal = 3 theme_override_constants/separation = 64 -[node name="cheevos_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer"] +[node name="troubleshoot_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer"] layout_mode = 2 -[node name="cheevos" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container"] +[node name="check_conn_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_container"] layout_mode = 2 -text = "TK_CHEEVOS" +text = "CHECK CONNECTION" +icon = ExtResource("50_5d2ui") -[node name="cheevos_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container"] -layout_mode = 2 - -[node name="cheevos_login_container" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container"] -layout_mode = 2 -theme_override_constants/h_separation = 64 -columns = 2 - -[node name="cheevos_username_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_login_container"] -layout_mode = 2 -size_flags_horizontal = 3 -size_flags_vertical = 3 -text = "TK_CHEEVOSUNAME" - -[node name="cheevos_username" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_login_container"] -custom_minimum_size = Vector2(256, 0) -layout_mode = 2 -size_flags_horizontal = 3 -text = "username" -placeholder_text = "username" - -[node name="cheevos_pass_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_login_container"] -layout_mode = 2 -size_flags_horizontal = 3 -size_flags_vertical = 1 -text = "TK_CHEEVOSPWD" - -[node name="cheevos_pass" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_login_container"] -layout_mode = 2 -size_flags_horizontal = 3 -text = "password" -placeholder_text = "password" -secret = true -secret_character = "*" - -[node name="cheevos_advanced_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container"] -layout_mode = 2 - -[node name="cheevos_advanced_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container"] -layout_mode = 2 -disabled = true -text = "TK_ADVANCED" - -[node name="cheevos_hardcore" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container"] -layout_mode = 2 -disabled = true -text = "TK_CHEEVOSHARDCORE" - -[node name="cheevos_loginout_container" type="HBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container"] -layout_mode = 2 -size_flags_horizontal = 8 -theme_override_constants/separation = 10 - -[node name="cheevos_trophies_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container/cheevos_loginout_container"] -layout_mode = 2 -disabled = true -text = "TK_CHEEVOSTROPHYBTN" - -[node name="cheevos_loginout_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container/cheevos_loginout_container"] -layout_mode = 2 -text = "TK_LOGIN" - -[node name="netplay_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer"] -layout_mode = 2 - -[node name="netplay" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/netplay_container"] -layout_mode = 2 -text = "TK_NETPLAY" - -[node name="netplay_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/netplay_container"] -layout_mode = 2 - -[node name="netplay_id_container" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/netplay_container"] -layout_mode = 2 -theme_override_constants/h_separation = 64 -columns = 2 - -[node name="netplay_id_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] -layout_mode = 2 -size_flags_horizontal = 3 -size_flags_vertical = 5 -text = "TK_NETPLAYID" - -[node name="netplay_id" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] -custom_minimum_size = Vector2(256, 0) -layout_mode = 2 -size_flags_horizontal = 3 -text = "RetroDECK" -placeholder_text = "RetroDECK" - -[node name="netplay_address_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] -layout_mode = 2 -size_flags_horizontal = 3 -size_flags_vertical = 5 -text = "TK_NETPLAYADDRESS" - -[node name="netplay_address" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] -layout_mode = 2 -size_flags_horizontal = 3 -text = "127.0.0.1" -placeholder_text = "127.0.0.1" - -[node name="blank_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] -layout_mode = 2 -size_flags_horizontal = 3 -size_flags_vertical = 5 - -[node name="netplay_connect_disconnect_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] -layout_mode = 2 -text = "TK_NETPLAYCONNECT" - -[node name="data_mng_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer"] -layout_mode = 2 - -[node name="data_mng_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/data_mng_container"] -layout_mode = 2 -text = "TK_DATAMNG" - -[node name="data_mng_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/data_mng_container"] -layout_mode = 2 - -[node name="saves_sync" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/data_mng_container"] -layout_mode = 2 -size_flags_horizontal = 3 -disabled = true -text = "TK_SAVESSYNC" - -[node name="ftp_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_NETWORK/ScrollContainer/VBoxContainer/data_mng_container"] -layout_mode = 2 -size_flags_horizontal = 3 -disabled = true -text = "TK_FTPBTN" - -[node name="TK_TROUBLESHOOT" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] -visible = false -layout_mode = 2 -metadata/_tab_index = 4 - -[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT"] -layout_mode = 2 -theme_override_constants/separation = 64 - -[node name="troubleshoot_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer"] -layout_mode = 2 - -[node name="troubleshoot_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/troubleshoot_container"] -layout_mode = 2 -text = "TK_TROUBLESHOOTLBL" - -[node name="troubleshoot_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/troubleshoot_container"] -layout_mode = 2 - -[node name="check_conn_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/troubleshoot_container"] -layout_mode = 2 -text = "TK_CHECKCONN" - -[node name="logs_button" type="OptionButton" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/troubleshoot_container"] +[node name="logs_button" type="OptionButton" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_container"] unique_name_in_owner = true layout_mode = 2 -size_flags_horizontal = 4 selected = 0 item_count = 4 -popup/item_0/text = "TK_LOGSBTN" +popup/item_0/text = " LOGS" +popup/item_0/icon = ExtResource("50_h3jx2") popup/item_0/disabled = true popup/item_0/separator = true popup/item_1/text = "RetroDECK Log" +popup/item_1/icon = ExtResource("11_g1uhn") popup/item_1/id = 1 popup/item_2/text = "ES_DE Log" +popup/item_2/icon = ExtResource("44_7lpj5") popup/item_2/id = 2 popup/item_3/text = "Retroarch" +popup/item_3/icon = ExtResource("4_xcuib") popup/item_3/id = 3 -[node name="reset_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer"] +[node name="bios_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_container"] +layout_mode = 2 +text = "BIOS STANDARD" +icon = ExtResource("50_tl5ty") + +[node name="bios_button_expert" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_container"] +layout_mode = 2 +text = "BIOS EXPERT" +icon = ExtResource("50_tl5ty") + +[node name="controls_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer"] layout_mode = 2 -[node name="reset_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/reset_container"] -layout_mode = 2 -text = "TK_RESET" - -[node name="reset_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/reset_container"] -layout_mode = 2 - -[node name="reset_single_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/reset_container"] -layout_mode = 2 -text = "TK_RESETSINGLE" - -[node name="reset_all_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/reset_container"] -layout_mode = 2 -text = "TK_RESETALL" - -[node name="reset_full_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/reset_container"] -layout_mode = 2 -text = "TK_RESETFULL" - -[node name="controls_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer"] -layout_mode = 2 - -[node name="controls_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/controls_container"] +[node name="controls_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_container"] layout_mode = 2 text = "TK_CONTROLS" -[node name="controls_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/controls_container"] +[node name="controls_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_container"] layout_mode = 2 -[node name="controller_templates_container" type="HBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/controls_container"] +[node name="controller_templates_container" type="HBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_container"] layout_mode = 2 -[node name="controller_templates" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/controls_container/controller_templates_container"] +[node name="controller_templates" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_container/controller_templates_container"] layout_mode = 2 size_flags_horizontal = 3 text = "TK_STEAMCONTEMP" -[node name="controller_templater_install_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/controls_container/controller_templates_container"] +[node name="controller_templater_install_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_container/controller_templates_container"] layout_mode = 2 size_flags_horizontal = 10 size_flags_vertical = 4 text = "TK_INSTALL" -[node name="button_layout_container" type="HBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/VBoxContainer/controls_container"] +[node name="button_layout_container" type="HBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/controls_container"] layout_mode = 2 -[node name="status_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT"] -unique_name_in_owner = true +[node name="file_tools_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer"] layout_mode = 2 -text = "Status:" -[node name="status_code_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_TROUBLESHOOT/status_label"] -unique_name_in_owner = true -layout_mode = 0 -offset_left = 87.0 -offset_top = 3.0 -offset_right = 144.0 -offset_bottom = 35.0 +[node name="file_tools_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +layout_mode = 2 +text = "TK_FILETOOLS" -[node name="Settings" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] +[node name="file_tools_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +layout_mode = 2 + +[node name="usb_tool_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +layout_mode = 2 +disabled = true +text = "TK_USBTOOL" + +[node name="backup_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +layout_mode = 2 +disabled = true +text = "TK_BACKUPBTN" + +[node name="compress_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +layout_mode = 2 +disabled = true +text = "TK_COMPRESSGAMES" + +[node name="move_files_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/file_tools_container"] +layout_mode = 2 +disabled = true +text = "TK_MOVEFILES" + +[node name="tools_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer"] +layout_mode = 2 + +[node name="tools_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/tools_container"] +layout_mode = 2 +text = "TK_GENTOOLS" + +[node name="tools_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/tools_container"] +layout_mode = 2 + +[node name="steamgrid_install_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/tools_container"] +layout_mode = 2 +disabled = true +text = "TK_GRIDINSTALL" + +[node name="ps3_fw_install_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/tools_container"] +layout_mode = 2 +text = "TK_PS3FWINSTALL" + +[node name="fav_steam" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/tools_container"] +layout_mode = 2 +text = "TK_FAVSTEAM" + +[node name="scan_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer"] +layout_mode = 2 + +[node name="scan_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/scan_container"] +layout_mode = 2 +text = "TK_SCAN" + +[node name="scan_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/scan_container"] +layout_mode = 2 + +[node name="ps3_scan" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/scan_container"] +layout_mode = 2 +disabled = true +text = "TK_PS3SCAN" + +[node name="scummvm_scan" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/scan_container"] +layout_mode = 2 +disabled = true +text = "TK_SCUMMVMSCAN" + +[node name="multifile_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/scan_container"] +layout_mode = 2 +text = "TK_MULTIFILE" + +[node name="3ds_decrypt_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/scan_container"] +layout_mode = 2 +disabled = true +text = "TK_3DSDECRYPT" + +[node name="SETTINGS" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] visible = false layout_mode = 2 -metadata/_tab_index = 5 +metadata/_tab_index = 3 -[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings"] +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS"] layout_mode = 2 follow_focus = true -[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer"] +[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer"] layout_mode = 2 size_flags_horizontal = 3 size_flags_vertical = 3 theme_override_constants/separation = 64 -[node name="system_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer/VBoxContainer"] +[node name="system_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] layout_mode = 2 -[node name="system_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer/VBoxContainer/system_container"] +[node name="system_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_container"] layout_mode = 2 text = "TK_SYSTEM" -[node name="system_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer/VBoxContainer/system_container"] +[node name="system_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_container"] layout_mode = 2 -[node name="update_notification" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer/VBoxContainer/system_container"] +[node name="update_notification" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_container"] layout_mode = 2 button_pressed = true text = "TK_UPDATENOTIF" -[node name="easter_eggs" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer/VBoxContainer/system_container"] +[node name="easter_eggs" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_container"] layout_mode = 2 disabled = true button_pressed = true text = "TK_EASTEREGGS" -[node name="multi_user_container" type="HBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer/VBoxContainer/system_container"] +[node name="multi_user_container" type="HBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_container"] layout_mode = 2 -[node name="multi_user_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer/VBoxContainer/system_container/multi_user_container"] +[node name="multi_user_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_container/multi_user_container"] layout_mode = 2 size_flags_horizontal = 3 size_flags_vertical = 1 text = "TK_MULTIUSR" -[node name="multi_user_option" type="OptionButton" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer/VBoxContainer/system_container/multi_user_container"] +[node name="multi_user_option" type="OptionButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_container/multi_user_container"] layout_mode = 2 size_flags_horizontal = 10 selected = 0 @@ -983,17 +952,17 @@ popup/item_1/id = 1 popup/item_2/text = "TK_CUSTOMUSR" popup/item_2/id = 2 -[node name="menu_music" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer/VBoxContainer/system_container"] +[node name="menu_music" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_container"] layout_mode = 2 button_pressed = true text = "TK_MUSIC" -[node name="fancy_audio_player_here_(please_no)" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer/VBoxContainer/system_container"] +[node name="fancy_audio_player_here_(please_no)" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/system_container"] layout_mode = 2 size_flags_vertical = 1 text = "|| ------( )--------" -[node name="theme_optionbutton" type="OptionButton" parent="Background/SplitContainer/MarginContainer/TabContainer/Settings/ScrollContainer/VBoxContainer"] +[node name="theme_optionbutton" type="OptionButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] unique_name_in_owner = true layout_mode = 2 selected = 0 @@ -1010,20 +979,159 @@ popup/item_3/id = 3 popup/item_4/text = "OpenDyslexic3" popup/item_4/id = 4 -[node name="TK_ABOUT" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] -visible = false +[node name="cheevos_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] +layout_mode = 2 + +[node name="cheevos" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container"] +layout_mode = 2 +text = "TK_CHEEVOS" + +[node name="cheevos_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container"] +layout_mode = 2 + +[node name="cheevos_login_container" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container"] +layout_mode = 2 +theme_override_constants/h_separation = 64 +columns = 2 + +[node name="cheevos_username_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container/cheevos_login_container"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 +text = "TK_CHEEVOSUNAME" + +[node name="cheevos_username" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container/cheevos_login_container"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "username" +placeholder_text = "username" + +[node name="cheevos_pass_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container/cheevos_login_container"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 1 +text = "TK_CHEEVOSPWD" + +[node name="cheevos_pass" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container/cheevos_login_container"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "password" +placeholder_text = "password" +secret = true +secret_character = "*" + +[node name="cheevos_advanced_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container"] +layout_mode = 2 + +[node name="cheevos_advanced_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container"] +layout_mode = 2 +disabled = true +text = "TK_ADVANCED" + +[node name="cheevos_hardcore" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container"] +layout_mode = 2 +disabled = true +text = "TK_CHEEVOSHARDCORE" + +[node name="cheevos_loginout_container" type="HBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container"] +layout_mode = 2 +size_flags_horizontal = 8 +theme_override_constants/separation = 10 + +[node name="cheevos_trophies_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container/cheevos_loginout_container"] +layout_mode = 2 +disabled = true +text = "TK_CHEEVOSTROPHYBTN" + +[node name="cheevos_loginout_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/cheevos_container/cheevos_advanced_container/cheevos_loginout_container"] +layout_mode = 2 +text = "TK_LOGIN" + +[node name="netplay_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] +layout_mode = 2 + +[node name="netplay" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_container"] +layout_mode = 2 +text = "TK_NETPLAY" + +[node name="netplay_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_container"] +layout_mode = 2 + +[node name="netplay_id_container" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_container"] +layout_mode = 2 +theme_override_constants/h_separation = 64 +columns = 2 + +[node name="netplay_id_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 5 +text = "TK_NETPLAYID" + +[node name="netplay_id" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] +custom_minimum_size = Vector2(256, 0) +layout_mode = 2 +size_flags_horizontal = 3 +text = "RetroDECK" +placeholder_text = "RetroDECK" + +[node name="netplay_address_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 5 +text = "TK_NETPLAYADDRESS" + +[node name="netplay_address" type="LineEdit" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] +layout_mode = 2 +size_flags_horizontal = 3 +text = "127.0.0.1" +placeholder_text = "127.0.0.1" + +[node name="blank_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 5 + +[node name="netplay_connect_disconnect_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/netplay_container/netplay_id_container"] +layout_mode = 2 +text = "TK_NETPLAYCONNECT" + +[node name="data_mng_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer"] +layout_mode = 2 + +[node name="data_mng_label" type="Label" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/data_mng_container"] +layout_mode = 2 +text = "TK_DATAMNG" + +[node name="data_mng_separator" type="HSeparator" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/data_mng_container"] +layout_mode = 2 + +[node name="saves_sync" type="CheckButton" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/data_mng_container"] +layout_mode = 2 +size_flags_horizontal = 3 +disabled = true +text = "TK_SAVESSYNC" + +[node name="ftp_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/SETTINGS/ScrollContainer/VBoxContainer/data_mng_container"] +layout_mode = 2 +size_flags_horizontal = 3 +disabled = true +text = "TK_FTPBTN" + +[node name="ABOUT" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] layout_mode = 2 script = ExtResource("4_m4rto") -metadata/_tab_index = 6 +metadata/_tab_index = 4 -[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_ABOUT"] +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT"] layout_mode = 2 -[node name="about_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_ABOUT/ScrollContainer"] +[node name="about_container" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT/ScrollContainer"] layout_mode = 2 alignment = 1 -[node name="rd_title" type="RichTextLabel" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_ABOUT/ScrollContainer/about_container"] +[node name="rd_title" type="RichTextLabel" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT/ScrollContainer/about_container"] unique_name_in_owner = true clip_contents = false custom_minimum_size = Vector2(300, 150) @@ -1033,35 +1141,382 @@ scroll_active = false autowrap_mode = 2 tab_size = 2 -[node name="logo" type="TextureRect" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_ABOUT/ScrollContainer/about_container/rd_title"] +[node name="logo" type="TextureRect" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT/ScrollContainer/about_container/rd_title"] custom_minimum_size = Vector2(128, 128) layout_mode = 2 -offset_left = 166.0 -offset_top = -14.0 -offset_right = 294.0 -offset_bottom = 114.0 +offset_left = 487.0 +offset_top = -3.0 +offset_right = 615.0 +offset_bottom = 125.0 size_flags_horizontal = 4 size_flags_vertical = 0 texture = ExtResource("1_axfei") expand_mode = 1 stretch_mode = 4 -[node name="about_header" type="RichTextLabel" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_ABOUT/ScrollContainer/about_container"] +[node name="about_header" type="RichTextLabel" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT/ScrollContainer/about_container"] clip_contents = false custom_minimum_size = Vector2(0, 40) layout_mode = 2 size_flags_vertical = 3 theme_override_font_sizes/normal_font_size = 23 -text = "TK_ABOUTHEADER" +text = "ABOUT RETRODECK" scroll_active = false -[node name="GridContainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/TK_ABOUT/ScrollContainer/about_container"] +[node name="GridContainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/ABOUT/ScrollContainer/about_container"] unique_name_in_owner = true layout_mode = 2 theme_override_constants/h_separation = 20 theme_override_constants/v_separation = 20 columns = 5 +[node name="WIP" type="MarginContainer" parent="Background/SplitContainer/MarginContainer/TabContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +focus_neighbor_right = NodePath("../GLOBALS") +metadata/_tab_index = 5 + +[node name="ScrollContainer" type="ScrollContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP"] +layout_mode = 2 +follow_focus = true + +[node name="VBoxContainer" type="VBoxContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer"] +layout_mode = 2 +size_flags_horizontal = 3 +size_flags_vertical = 3 + +[node name="decorations_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "DECORATIONS - Borders, Widescreen" +icon = ExtResource("4_q6hd2") + +[node name="decorations_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +columns = 5 + +[node name="wide_screen" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +visible = false +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_WSCREEN" +text = "TK_WSCREEN" +icon = ExtResource("4_jldgc") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="shaders" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_SHADERS" +text = "TK_SHADERS" +icon = ExtResource("5_box56") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="mods" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_MODS" +text = "TK_MODS" +icon = ExtResource("6_u80kq") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="tate_mode" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_TATE" +text = "TK_TATE" +icon = ExtResource("7_i14ax") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="borders_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_BORDERS" +text = "TK_BORDERS" +icon = ExtResource("5_uiobi") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="hotkey_sound" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_HOTKEYSOUND" +text = "TK_HOTKEYSOUND" +icon = ExtResource("9_qwq2k") +clip_text = true +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="button_layout" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_BTNLAYOUT" +text = "TK_BTNLAYOUT" +icon = ExtResource("9_d2327") +clip_text = true +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="quick_resume" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_QRESUME" +text = "TK_QRESUME" +icon = ExtResource("11_c3qcy") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true +metadata/description = "This is a test description set to this element" + +[node name="rewind" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_REWIND" +text = "TK_REWIND" +icon = ExtResource("12_3jrmi") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true +metadata/description = "This is another, very long and convoluted, description, that I put too much commas in to make in LONGER and more SOPHISTICATED. And I did it twice!!!This is another, very long and convoluted, description, that I put too much commas in to make in LONGER and more SOPHISTICATED." + +[node name="quit_confirm" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +tooltip_text = "TK_CONFIRMEXIT" +text = "TK_CONFIRMEXIT" +icon = ExtResource("13_8kii4") +clip_text = true +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="cheats" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +custom_minimum_size = Vector2(200, 200) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +tooltip_text = "TK_CHEATS" +text = "TK_CHEATS" +icon = ExtResource("14_oe3l4") +clip_text = true +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="decorations_save" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/decorations_gridcontainer"] +unique_name_in_owner = true +visible = false +custom_minimum_size = Vector2(125, 125) +layout_mode = 2 +size_flags_horizontal = 4 +size_flags_vertical = 4 +theme_override_styles/focus = SubResource("StyleBoxFlat_omewi") +text = "SAVE OR SELECT ALL?" +icon = ExtResource("11_p6y0k") +icon_alignment = 1 +vertical_icon_alignment = 0 +expand_icon = true + +[node name="borders_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +theme_override_constants/h_separation = 30 +columns = 6 + +[node name="CheckBox5" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("5_ja8to") +expand_icon = true + +[node name="CheckBox3" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("6_mvrie") +expand_icon = true + +[node name="CheckBox4" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("7_01lqn") +expand_icon = true + +[node name="CheckBox6" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("7_b8xj2") +expand_icon = true + +[node name="CheckBox" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("8_rvph4") +expand_icon = true + +[node name="CheckBox7" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("9_s3srh") +expand_icon = true + +[node name="CheckBox8" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("10_2jlmn") +expand_icon = true + +[node name="CheckBox9" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("5_4d7s7") +expand_icon = true + +[node name="CheckBox10" type="CheckBox" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/borders_gridcontainer"] +custom_minimum_size = Vector2(175, 175) +layout_mode = 2 +size_flags_horizontal = 0 +size_flags_vertical = 0 +icon = ExtResource("12_pp08o") +expand_icon = true + +[node name="systems_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "SYSTEMS - Emulators, Console, Computers" +icon = ExtResource("17_0kr64") + +[node name="systems_gridcontainer" type="GridContainer" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +visible = false +layout_mode = 2 +size_flags_vertical = 3 +theme_override_constants/h_separation = 10 +theme_override_constants/v_separation = 10 +columns = 6 + +[node name="Button3" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +tooltip_text = "RetroARCH" +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "RetroArch" +icon = ExtResource("4_xcuib") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button8" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "Dolphin" +icon = ExtResource("11_61sak") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button7" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +tooltip_text = "CITRA" +text = "RPCS3" +icon = ExtResource("8_ec4gt") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button5" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +tooltip_text = "PSPSSPP" +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "PSPSSPP" +icon = ExtResource("8_akxf7") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +tooltip_text = "Duckstation" +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "DuckStation" +icon = ExtResource("6_winpq") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button2" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +layout_mode = 2 +tooltip_text = "Melon DS" +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "MelonDS" +icon = ExtResource("7_4otos") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="Button9" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer/systems_gridcontainer"] +visible = false +layout_mode = 2 +tooltip_text = "CITRA" +theme_override_styles/focus = ExtResource("5_rjtkn") +text = "CITRA" +icon = ExtResource("10_wbaif") +icon_alignment = 1 +vertical_icon_alignment = 0 + +[node name="save_resume_button" type="Button" parent="Background/SplitContainer/MarginContainer/TabContainer/WIP/ScrollContainer/VBoxContainer"] +unique_name_in_owner = true +layout_mode = 2 +text = "FUNCTIONS - Save states, etc" +icon = ExtResource("18_h2o3e") + [node name="logo_animated" type="AnimatedSprite2D" parent="Background/SplitContainer/MarginContainer"] unique_name_in_owner = true visible = false @@ -1092,48 +1547,25 @@ mouse_filter = 1 mouse_default_cursor_shape = 8 script = ExtResource("4_nqqx3") -[node name="rekku_sprite" type="Sprite2D" parent="Background/SplitContainer/side_logo/rekku"] -position = Vector2(530.5, -989) -scale = Vector2(0.264648, 0.302734) -texture = ExtResource("32_omdu2") - -[node name="blink_anim" type="AnimatedSprite2D" parent="Background/SplitContainer/side_logo/rekku/rekku_sprite"] -sprite_frames = SubResource("SpriteFrames_k7pd1") -animation = &"blink" -autoplay = "blink" -frame_progress = 0.188668 - -[node name="speech_anim" type="AnimatedSprite2D" parent="Background/SplitContainer/side_logo/rekku/rekku_sprite"] -sprite_frames = SubResource("SpriteFrames_l20mt") -animation = &"speech" -autoplay = "speech" - [node name="speach_bubble" type="Panel" parent="Background/SplitContainer/side_logo/rekku"] -layout_mode = 1 -anchors_preset = 7 -anchor_left = 0.5 -anchor_top = 1.0 -anchor_right = 0.5 -anchor_bottom = 1.0 -offset_left = 395.0 -offset_top = -830.0 -offset_right = 673.0 -offset_bottom = -402.0 -grow_horizontal = 2 -grow_vertical = 0 +layout_mode = 0 +offset_left = 371.0 +offset_top = -1120.0 +offset_right = 644.0 +offset_bottom = -786.0 theme_override_styles/panel = SubResource("StyleBoxTexture_rf0rc") -[node name="helper_text" type="RichTextLabel" parent="Background/SplitContainer/side_logo/rekku"] +[node name="helper_text" type="RichTextLabel" parent="Background/SplitContainer/side_logo/rekku/speach_bubble"] layout_mode = 1 anchors_preset = 8 anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -offset_left = 414.0 -offset_top = -815.0 -offset_right = 668.0 -offset_bottom = -420.0 +offset_left = -129.5 +offset_top = -161.0 +offset_right = 129.5 +offset_bottom = 191.0 grow_horizontal = 2 grow_vertical = 2 text = "Rekku: @@ -1144,6 +1576,24 @@ fit_content = true scroll_following = true script = ExtResource("5_cprkf") +[node name="rekku_sprite" type="Sprite2D" parent="Background/SplitContainer/side_logo/rekku"] +position = Vector2(536, -513) +scale = Vector2(0.5, 0.5) +texture = ExtResource("57_1n3u5") + +[node name="blink_anim" type="AnimatedSprite2D" parent="Background/SplitContainer/side_logo/rekku/rekku_sprite"] +position = Vector2(-72, -252) +sprite_frames = SubResource("SpriteFrames_k7pd1") +animation = &"blink" +autoplay = "blink" +frame_progress = 0.188668 + +[node name="speech_anim" type="AnimatedSprite2D" parent="Background/SplitContainer/side_logo/rekku/rekku_sprite"] +position = Vector2(-76, -198) +sprite_frames = SubResource("SpriteFrames_l20mt") +animation = &"speech" +autoplay = "speech" + [node name="TextureRect" type="TextureRect" parent="Background/SplitContainer/side_logo"] visible = false layout_mode = 0 @@ -1163,96 +1613,43 @@ visible = false position = Vector2(134, 151) color = Color(0.858824, 0.890196, 1, 1) -[node name="coltroller_guide" type="PanelContainer" parent="."] +[node name="controller_guide" type="PanelContainer" parent="."] layout_mode = 1 -anchors_preset = 12 +anchors_preset = 7 +anchor_left = 0.5 anchor_top = 1.0 -anchor_right = 1.0 +anchor_right = 0.5 anchor_bottom = 1.0 -offset_left = 5.0 -offset_top = -69.0 -offset_right = -337.0 +offset_left = -136.0 +offset_top = -72.0 +offset_right = 87.0 grow_horizontal = 2 grow_vertical = 0 +script = ExtResource("68_ahvw4") -[node name="controller_guide_text" type="RichTextLabel" parent="coltroller_guide"] +[node name="HBoxContainer" type="HBoxContainer" parent="controller_guide"] layout_mode = 2 -theme_override_colors/default_color = Color(1, 1, 1, 0.607843) -theme_override_font_sizes/normal_font_size = 23 -fit_content = true -scroll_active = false +theme_override_constants/separation = 25 -[node name="a_button" type="TextureButton" parent="coltroller_guide/controller_guide_text"] +[node name="a_button" type="TextureButton" parent="controller_guide/HBoxContainer"] unique_name_in_owner = true +custom_minimum_size = Vector2(60, 60) layout_mode = 2 -offset_left = 147.0 -offset_top = -5.0 -offset_right = 231.0 -offset_bottom = 54.0 texture_normal = ExtResource("30_glnve") texture_pressed = ExtResource("31_j5ri1") stretch_mode = 0 -[node name="b_button" type="TextureButton" parent="coltroller_guide/controller_guide_text"] +[node name="b_button" type="TextureButton" parent="controller_guide/HBoxContainer"] unique_name_in_owner = true +custom_minimum_size = Vector2(60, 60) layout_mode = 2 -offset_left = 314.0 -offset_top = -4.0 -offset_right = 398.0 -offset_bottom = 55.0 texture_normal = ExtResource("33_1ghye") texture_pressed = ExtResource("34_fum2b") stretch_mode = 0 -[node name="l1_button" type="TextureButton" parent="coltroller_guide/controller_guide_text"] +[node name="locale_option" type="OptionButton" parent="controller_guide/HBoxContainer"] unique_name_in_owner = true layout_mode = 2 -offset_left = 7.0 -offset_top = -6.0 -offset_right = 91.0 -offset_bottom = 53.0 -texture_normal = ExtResource("38_prt7u") -texture_pressed = ExtResource("39_m4qgd") -stretch_mode = 0 - -[node name="r1_button" type="TextureButton" parent="coltroller_guide/controller_guide_text"] -unique_name_in_owner = true -layout_mode = 0 -offset_left = 832.0 -offset_top = -8.0 -offset_right = 916.0 -offset_bottom = 51.0 -texture_normal = ExtResource("39_5ft88") -texture_pressed = ExtResource("40_pnuor") -stretch_mode = 0 - -[node name="exit_button" type="Button" parent="coltroller_guide/controller_guide_text"] -layout_mode = 2 -offset_left = 567.0 -offset_top = -11.0 -offset_right = 651.0 -offset_bottom = 48.0 -grow_horizontal = 0 -scale = Vector2(1.4, 1.4) -icon = ExtResource("36_3qttl") -flat = true -icon_alignment = 1 -expand_icon = true - -[node name="locale_option" type="OptionButton" parent="coltroller_guide/controller_guide_text"] -unique_name_in_owner = true -layout_mode = 1 -anchors_preset = 3 -anchor_left = 1.0 -anchor_top = 1.0 -anchor_right = 1.0 -anchor_bottom = 1.0 -offset_left = -217.0 -offset_top = -46.0 -offset_right = -158.0 -offset_bottom = -17.0 -grow_horizontal = 0 -grow_vertical = 0 selected = 0 item_count = 7 popup/item_0/icon = ExtResource("5_exkn2") @@ -1269,7 +1666,40 @@ popup/item_5/id = 5 popup/item_6/icon = ExtResource("11_ri2fv") popup/item_6/id = 6 -[connection signal="pressed" from="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/scan_container/bios_button" to="." method="_on_bios_button_pressed"] -[connection signal="pressed" from="Background/SplitContainer/MarginContainer/TabContainer/TK_TOOLS/ScrollContainer/VBoxContainer/scan_container/bios_button_expert" to="." method="_on_bios_button_expert_pressed"] -[connection signal="pressed" from="coltroller_guide/controller_guide_text/exit_button" to="." method="_on_exit_button_pressed"] -[connection signal="item_selected" from="coltroller_guide/controller_guide_text/locale_option" to="." method="_on_locale_selected"] +[node name="exit_button" type="TextureButton" parent="controller_guide/HBoxContainer"] +custom_minimum_size = Vector2(45, 45) +layout_mode = 2 +texture_normal = ExtResource("87_1yqbe") +stretch_mode = 0 + +[node name="AudioStreamPlayer2D" type="AudioStreamPlayer2D" parent="."] +unique_name_in_owner = true +stream = ExtResource("71_ghxvk") +volume_db = -5.0 + +[node name="l1_button" type="TextureButton" parent="."] +unique_name_in_owner = true +layout_mode = 2 +offset_left = 14.0 +offset_top = 2.0 +offset_right = 105.0 +offset_bottom = 54.0 +texture_normal = ExtResource("38_prt7u") +texture_pressed = ExtResource("39_m4qgd") +stretch_mode = 0 + +[node name="r1_button" type="TextureButton" parent="."] +unique_name_in_owner = true +layout_mode = 0 +offset_left = 1134.0 +offset_top = 1.0 +offset_right = 1225.0 +offset_bottom = 53.0 +texture_normal = ExtResource("39_5ft88") +texture_pressed = ExtResource("40_pnuor") +stretch_mode = 0 + +[connection signal="pressed" from="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_container/bios_button" to="." method="_on_bios_button_pressed"] +[connection signal="pressed" from="Background/SplitContainer/MarginContainer/TabContainer/TOOLS/ScrollContainer/VBoxContainer/troubleshoot_container/bios_button_expert" to="." method="_on_bios_button_expert_pressed"] +[connection signal="item_selected" from="controller_guide/HBoxContainer/locale_option" to="." method="_on_locale_selected"] +[connection signal="pressed" from="controller_guide/HBoxContainer/exit_button" to="." method="_on_exit_button_pressed"] diff --git a/tools/configurator/project.godot b/tools/configurator/project.godot index 068dea36..8a5ca29b 100644 --- a/tools/configurator/project.godot +++ b/tools/configurator/project.godot @@ -11,7 +11,7 @@ config_version=5 [application] config/name="RetroDECK Configurator" -config/version="v0.051" +config/version="0.053" run/main_scene="res://main.tscn" config/features=PackedStringArray("4.3", "GL Compatibility") boot_splash/bg_color=Color(0.141176, 0.141176, 0.141176, 0) @@ -105,6 +105,7 @@ quit1={ quit2={ "deadzone": 0.5, "events": [Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":7,"pressure":0.0,"pressed":true,"script":null) +, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":4,"pressure":0.0,"pressed":true,"script":null) ] } @@ -121,4 +122,5 @@ locale/translations=PackedStringArray("res://locales/interface.en.translation", textures/canvas_textures/default_texture_filter=0 renderer/rendering_method="gl_compatibility" renderer/rendering_method.mobile="gl_compatibility" +textures/vram_compression/import_etc2_astc=true viewport/transparent_background=true diff --git a/tools/configurator/res/pixel_ui_theme/RetroDECKTheme.tres b/tools/configurator/res/pixel_ui_theme/RetroDECKTheme.tres index ce995125..57543076 100644 --- a/tools/configurator/res/pixel_ui_theme/RetroDECKTheme.tres +++ b/tools/configurator/res/pixel_ui_theme/RetroDECKTheme.tres @@ -1087,7 +1087,7 @@ cache/0/16/0/glyphs/95/uv_rect = Rect2(92, 148, 6, 1) cache/0/16/0/glyphs/95/texture_idx = 0 cache/0/16/0/kerning_overrides/16/0 = Vector2(0, 0) -[sub_resource type="Image" id="Image_5erl7"] +[sub_resource type="Image" id="Image_62emc"] data = { "data": PackedByteArray("4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg/////////////////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4P//////////4ODg4ODg4OD//////////+Dg4ODg4ODg///////////g4ODg4ODg4A=="), "format": "Lum8", @@ -1097,9 +1097,9 @@ data = { } [sub_resource type="ImageTexture" id="447"] -image = SubResource("Image_5erl7") +image = SubResource("Image_62emc") -[sub_resource type="Image" id="Image_u2s1p"] +[sub_resource type="Image" id="Image_43yh4"] data = { "data": PackedByteArray("AAQACgARABkAHwAiACQAJAAkACQAIgAfABkAEQAKAAQACgAVACUANAA/AEYARwBIAEgARwBGAD8ANAAlABUACgARACU/d1rvVv9W/1b/Vv9W/1b/Vv9W/1rvP3cAJQARABkANFnvSP9E/0P/Q/9D/0P/Q/9D/0T/SP9Z7wA0ABkAHwA/VP9D/0P/Q/9D/0P/Q/9D/0P/Q/9D/1T/AD8AHwAiAEZS/0L/Qv9C/0L/Qv9C/0L/Qv9C/0L/Uv8ARgAiACQAR1H/QP9A/0D/QP9A/0D/QP9A/0D/QP9R/wBHACQAJABIT/8//z//P/8//z//P/8//z//P/8//0//AEgAJAAkAEhN/z7/Pv8+/z7/Pv8+/z7/Pv8+/z7/Tf8ASAAkACQAR0z/Pf89/z3/Pf89/z3/Pf89/z3/Pf9M/wBHACQAIgBGSv87/zv/O/87/zv/O/87/zv/O/87/0r/AEYAIgAfAD9J/zr/Ov86/zr/Ov86/zr/Ov86/zr/Sf8APwAfABkANEvvPf85/zn/Of85/zn/Of85/zn/Pf9L7wA0ABkAEQAlNXdK70f/Rv9G/0b/Rv9G/0b/R/9K7TV3ACUAEQAKABUAJQA0AD8ARgBHAEgASABHAEYAPwA0ACUAFQAKAAQACgARABkAHwAiACQAJAAkACQAIgAfABkAEQAKAAQ="), "format": "LumAlpha8", @@ -1109,7 +1109,7 @@ data = { } [sub_resource type="ImageTexture" id="53"] -image = SubResource("Image_u2s1p") +image = SubResource("Image_43yh4") [sub_resource type="StyleBoxTexture" id="54"] content_margin_left = 6.0 @@ -1123,7 +1123,7 @@ expand_margin_right = 2.0 expand_margin_bottom = 2.0 region_rect = Rect2(0, 0, 16, 16) -[sub_resource type="Image" id="Image_7jtn8"] +[sub_resource type="Image" id="Image_g8qbb"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvw5HjL85R4y/aEeMv3pHjL97R4y/e0eMv3tHjL97R4y/ekeMv2hHjL85R4y/DgAAAAAAAAAAAAAAAAAAAABHjL86R4y/dEeMvxBHjL8IR4y/CEeMvwhHjL8IR4y/CEeMvwhHjL8QR4y/dEeMvzoAAAAAAAAAAAAAAAAAAAAAR4y/aUeMvw8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvw9HjL9pAAAAAAAAAAAAAAAAAAAAAEeMv3tHjL8GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHjL8GR4y/ewAAAAAAAAAAAAAAAAAAAABHjL97R4y/CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR4y/CEeMv3sAAAAAAAAAAAAAAAAAAAAAR4y/e0eMvwgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvwhHjL97AAAAAAAAAAAAAAAAAAAAAEeMv3tHjL8IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHjL8IR4y/ewAAAAAAAAAAAAAAAAAAAABHjL97R4y/CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAR4y/CEeMv3sAAAAAAAAAAAAAAAAAAAAAR4y/e0eMvwYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEeMvwZHjL97AAAAAAAAAAAAAAAAAAAAAEeMv2lHjL8PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABHjL8OR4y/aQAAAAAAAAAAAAAAAAAAAABHjL86R4y/dUeMvw9HjL8IR4y/CEeMvwhHjL8IR4y/CEeMvwhHjL8RR4y/dEeMvzoAAAAAAAAAAAAAAAAAAAAAR4y/DkeMvzpHjL9oR4y/ekeMv3tHjL97R4y/e0eMv3tHjL96R4y/aEeMvzlHjL8OAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), "format": "RGBA8", @@ -1133,7 +1133,7 @@ data = { } [sub_resource type="ImageTexture" id="56"] -image = SubResource("Image_7jtn8") +image = SubResource("Image_g8qbb") [sub_resource type="StyleBoxTexture" id="57"] content_margin_left = 6.0 @@ -1147,7 +1147,7 @@ expand_margin_right = 2.0 expand_margin_bottom = 2.0 region_rect = Rect2(0, 0, 16, 16) -[sub_resource type="Image" id="Image_vhvkw"] +[sub_resource type="Image" id="Image_8hsq5"] data = { "data": PackedByteArray("AAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABAAAAAoAAAAVAAAAJQAAADQAAAA/AAAARgAAAEcAAABIAAAASAAAAEcAAABGAAAAPwAAADQAAAAlAAAAFQAAAAoAAAARAAAAJUJAS3dfWmzvW1do/1pWZ/9aVmf/WlZn/1pWZ/9aVmf/WlZn/1tXaP9fWmzvQkBLdwAAACUAAAARAAAAGQAAADRfWmvvTUpX/0lGUv9IRVH/SEVR/0hFUf9IRVH/SEVR/0hFUf9JRlL/TUpX/19aa+8AAAA0AAAAGQAAAB8AAAA/W1dm/0lGUv9IRVH/SEVR/0hFUf9IRVH/SEVR/0hFUf9IRVH/SEVR/0lGUv9bV2b/AAAAPwAAAB8AAAAiAAAARllVZP9HRFD/R0RQ/0dEUP9HRFD/R0RQ/0dEUP9HRFD/R0RQ/0dEUP9HRFD/WVVk/wAAAEYAAAAiAAAAJAAAAEdYVGT/RkNQ/0ZDUP9GQ1D/RkNQ/0ZDUP9GQ1D/RkNQ/0ZDUP9GQ1D/RkNQ/1hUZP8AAABHAAAAJAAAACQAAABIVlNj/0VCT/9FQk//RUJP/0VCT/9FQk//RUJP/0VCT/9FQk//RUJP/0VCT/9WU2P/AAAASAAAACQAAAAkAAAASFZTYv9FQk7/RUJO/0VCTv9FQk7/RUJO/0VCTv9FQk7/RUJO/0VCTv9FQk7/VlNi/wAAAEgAAAAkAAAAJAAAAEdVUWL/REFO/0RBTv9EQU7/REFO/0RBTv9EQU7/REFO/0RBTv9EQU7/REFO/1VRYv8AAABHAAAAJAAAACIAAABGVVFg/0RBTf9EQU3/REFN/0RBTf9EQU3/REFN/0RBTf9EQU3/REFN/0RBTf9VUWD/AAAARgAAACIAAAAfAAAAP1VRYP9EQU3/Q0BM/0NATP9DQEz/Q0BM/0NATP9DQEz/Q0BM/0NATP9EQU3/VVFg/wAAAD8AAAAfAAAAGQAAADRWU2TvR0NR/0M/Tf9CP0z/Qj9M/0I/TP9CP0z/Qj9M/0I/TP9DP03/R0NR/1dTZO8AAAA0AAAAGQAAABEAAAAlPjtGd1dTY+9TUF//U09e/1NPXv9TT17/U09e/1NPXv9TT17/U1Bf/1dTY+0+O0Z3AAAAJQAAABEAAAAKAAAAFQAAACUAAAA0AAAAPwAAAEYAAABHAAAASAAAAEgAAABHAAAARgAAAD8AAAA0AAAAJQAAABUAAAAKAAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABA=="), "format": "RGBA8", @@ -1157,7 +1157,7 @@ data = { } [sub_resource type="ImageTexture" id="59"] -image = SubResource("Image_vhvkw") +image = SubResource("Image_8hsq5") [sub_resource type="StyleBoxTexture" id="60"] content_margin_left = 6.0 @@ -1175,7 +1175,7 @@ expand_margin_right = 2.0 expand_margin_bottom = 2.0 region_rect = Rect2(0, 0, 16, 16) -[sub_resource type="Image" id="Image_djtfc"] +[sub_resource type="Image" id="Image_xq8h4"] data = { "data": PackedByteArray("AAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABAAAAAoAAAAVAAAAJQAAADQAAAA/AAAARgAAAEcAAABIAAAASAAAAEcAAABGAAAAPwAAADQAAAAlAAAAFQAAAAoAAAARAAAAJTw6RHdWU2HvUlBd/1FPXf9RT13/UU9d/1FPXf9RT13/UU9d/1JQXf9WU2HvPDpEdwAAACUAAAARAAAAGQAAADRWUmDvRkJO/0I+Sv9BPkn/QT5J/0E+Sf9BPkn/QT5J/0E+Sf9CPkr/RkJO/1ZSYO8AAAA0AAAAGQAAAB8AAAA/UU5b/0E+Sf9APkj/QD5I/0A+SP9APkj/QD5I/0A+SP9APkj/QD5I/0E+Sf9RTlv/AAAAPwAAAB8AAAAiAAAARk9MWf8/PUf/Pz1H/z89R/8/PUf/Pz1H/z89R/8/PUf/Pz1H/z89R/8/PUf/T0xZ/wAAAEYAAAAiAAAAJAAAAEdOSlj/PjtG/z47Rv8+O0b/PjtG/z47Rv8+O0b/PjtG/z47Rv8+O0b/PjtG/05KWP8AAABHAAAAJAAAACQAAABIS0lV/zw6RP88OkT/PDpE/zw6RP88OkT/PDpE/zw6RP88OkT/PDpE/zw6RP9LSVX/AAAASAAAACQAAAAkAAAASEpHVP87OUP/OzlD/zs5Q/87OUP/OzlD/zs5Q/87OUP/OzlD/zs5Q/87OUP/SkdU/wAAAEgAAAAkAAAAJAAAAEdJRlP/OjhC/zo4Qv86OEL/OjhC/zo4Qv86OEL/OjhC/zo4Qv86OEL/OjhC/0lGU/8AAABHAAAAJAAAACIAAABGR0VQ/zk3QP85N0D/OTdA/zk3QP85N0D/OTdA/zk3QP85N0D/OTdA/zk3QP9HRVD/AAAARgAAACIAAAAfAAAAP0dDUP84NT//ODU//zg1P/84NT//ODU//zg1P/84NT//ODU//zg1P/84NT//R0NQ/wAAAD8AAAAfAAAAGQAAADRHRFLvOjhC/zY0Pv82ND7/NjQ+/zY0Pv82ND7/NjQ+/zY0Pv82ND7/OjhC/0dEUu8AAAA0AAAAGQAAABEAAAAlMzE5d0dEUO9EQk3/REFM/0RBTP9EQUz/REFM/0RBTP9EQUz/REJN/0dEUe0zMTl3AAAAJQAAABEAAAAKAAAAFQAAACUAAAA0AAAAPwAAAEYAAABHAAAASAAAAEgAAABHAAAARgAAAD8AAAA0AAAAJQAAABUAAAAKAAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABA=="), "format": "RGBA8", @@ -1185,7 +1185,7 @@ data = { } [sub_resource type="ImageTexture" id="62"] -image = SubResource("Image_djtfc") +image = SubResource("Image_xq8h4") [sub_resource type="StyleBoxTexture" id="63"] content_margin_left = 6.0 @@ -1199,7 +1199,7 @@ expand_margin_right = 2.0 expand_margin_bottom = 2.0 region_rect = Rect2(0, 0, 16, 16) -[sub_resource type="Image" id="Image_dfxxt"] +[sub_resource type="Image" id="Image_33w4k"] data = { "data": PackedByteArray("AAAABAAAAAoAAAARAAAAGQAAAB8AAAAiAAAAJAAAACQAAAAkAAAAJAAAACIAAAAfAAAAGQAAABEAAAAKAAAABAAAAAsAAAAWAAAAJwAAADYAAABBAAAASQAAAEoAAABLAAAASwAAAEoAAABJAAAAQQAAADYAAAAnAAAAFgAAAAsAAAATAAAAKTEvN4BGQ0/xQ0BM/0JAS/9CQEv/QkBL/0JAS/9CQEv/QkBL/0NATP9GQ0/xMS83fwAAACkAAAATAAAAHgAAAD1HRFDyOjhB/wsLDP8LCgz/CwoM/wsKDP8LCgz/CwsM/wsLDP8LCwz/OjhB/0dEUPIAAAA9AAAAHgAAACcAAABNREJO/w8OEf8PDhH/Dw4R/w8OEf8PDhH/Dw4R/w8OEf8PDhH/Dw4R/w8OEf9EQk7/AAAATQAAACcAAAAsAAAAWEZCT/8UExb/ExIW/xMSFv8UExb/ExIW/xQTFv8UExb/FBMW/xQTFv8TEhb/RkJP/wAAAFgAAAAsAAAAMgAAAF1HRVD/GBcb/xgXG/8YFxv/GBcb/xgXG/8YFxv/GBcb/xkYHP8YFxv/GBcb/0dFUP8AAABdAAAAMgAAADMAAABjSUZT/x0cIf8dHCH/HRwh/x0cIf8dHCH/HRwh/x0cIf8dHCH/HRwh/x0cIf9JRlP/AAAAYwAAADMAAAA2AAAAZkpHVP8iISf/IiEn/yIhJ/8iISf/IiEn/yIhJ/8iISf/IiEn/yIhJ/8iISf/SkdU/wAAAGYAAAA2AAAAOQAAAGlLSVX/JyYt/ycmLf8nJi3/JyYt/ycmLf8nJi3/JyYt/ygmLf8nJi3/KCYt/0tJVf8AAABpAAAAOQAAADgAAABsTkpY/y0rM/8tKzP/LSsz/y0rM/8tKzP/LSsz/y0rM/8tKzP/LSsz/y0rM/9OSlj/AAAAbAAAADgAAAA1AAAAZVBNWv8zMTr/MzE5/zMxOf8zMTn/MzE5/zMxOf8zMTn/MzE5/zMxOf8zMTr/UE1a/wAAAGUAAAA1AAAALQAAAFlVUl/8RUJN/zk3QP84N0D/OTdA/zg3QP84N0D/ODdA/zg3QP86N0H/RUJN/1VSYPwAAABZAAAALQAAACAAAABEPTpFtFZSYP1STlz/UU5b/1FOW/9RTlv/UU5b/1FOW/9RTlv/Uk5c/1ZSYP09OkW0AAAARAAAACAAAAAUAAAAKAAAAEUAAABdAAAAbgAAAHkAAAB6AAAAfAAAAHwAAAB6AAAAeQAAAG4AAABdAAAARQAAACgAAAAUAAAACAAAABQAAAAhAAAAMAAAADoAAAA/AAAAQwAAAEMAAABDAAAAQwAAAD8AAAA6AAAAMAAAACEAAAAUAAAACA=="), "format": "RGBA8", @@ -1209,7 +1209,7 @@ data = { } [sub_resource type="ImageTexture" id="65"] -image = SubResource("Image_dfxxt") +image = SubResource("Image_33w4k") [sub_resource type="StyleBoxTexture" id="66"] content_margin_left = 6.0 @@ -1223,7 +1223,7 @@ expand_margin_right = 2.0 expand_margin_bottom = 2.0 region_rect = Rect2(0, 0, 16, 16) -[sub_resource type="Image" id="Image_cu3dl"] +[sub_resource type="Image" id="Image_dg6qs"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAADf39+IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAA4ODg/9/f34gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAODg4P/g4OD/39/fiAAAAAAAAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAADg4OD/4ODg/+Dg4P/f39+IAAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAAAAAAAAAAAAAAAAAADg4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P8AAAAAAAAAAAAAAAAAAAAA4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/AAAAAAAAAAAAAAAAAAAAAODg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/+Dg4P/g4OD/4ODg/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), "format": "RGBA8", @@ -1233,9 +1233,9 @@ data = { } [sub_resource type="ImageTexture" id="425"] -image = SubResource("Image_cu3dl") +image = SubResource("Image_dg6qs") -[sub_resource type="Image" id="Image_06k3s"] +[sub_resource type="Image" id="Image_d8gug"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4MXg/+D/4P/g/+D/4P/gwwAAAAAAAAAAAAAAAAAAAADg/+D/4P/g/+D/4P/g/+D/AAAAAAAAAAAAAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P/hPAAAAAAAAAAAAAAAAAAA4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/gwwAAAADg/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/AAAAAOD/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P8AAAAA4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/wAAAADg/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/AAAAAOD/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P8AAAAA4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/wAAAADg/+D/4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/AAAAAODD4P/g/+D/4P/g/+D/4P/g/+D/4P/g/+D/38IAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), "format": "LumAlpha8", @@ -1245,9 +1245,9 @@ data = { } [sub_resource type="ImageTexture" id="427"] -image = SubResource("Image_06k3s") +image = SubResource("Image_d8gug") -[sub_resource type="Image" id="Image_g0jqc"] +[sub_resource type="Image" id="Image_r7rto"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3hfgz+DO3hcAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3Bbh0uD+4P7g1+AZAAAAAAAAAAAAAAAAAAAAAAAA3Bbh0uD+4P7g/uD+4NfgGQAAAAAAAAAAAAAAAAAA3hfg1OD+4NHg/uD94dLg/uDU3hcAAAAAAAAAAAAAAADgzeD+4NDcFuD+4P3bFeDR4P7gzAAAAAAAAAAAAAAAAOC+4MXZFP8B4P7g/QAA2xXhyeDFAAAAAAAAAAAAAAAAAAAAAAAA/wHg/uD9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD/AeD+4P0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4MThwQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), "format": "LumAlpha8", @@ -1257,9 +1257,9 @@ data = { } [sub_resource type="ImageTexture" id="429"] -image = SubResource("Image_g0jqc") +image = SubResource("Image_r7rto") -[sub_resource type="Image" id="Image_gk346"] +[sub_resource type="Image" id="Image_emksd"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADbB99u4Mfg8+Dz4MfebdsHAAAAAAAAAAAAAAAAAADjG+DP4P7g/uD+4P7g/uD+4M7jGwAAAAAAAAAAAADbB+DP4P7g4eBT2A3YDd9Q4Nfg/uDO2wcAAAAAAAAAAN9u4P7g4eMSAAAAAAAAAADhEeDh4P7ebAAAAAAAAAAA4Mjg/uBTAAAAAAAAAAAAAAAA3lXg/uDGAAAAAAAAAADg8uD+2A0AAAAAAAAAAAAAAADbDuD+4PEAAAAA4J7g/uD+4P7g/uCeAAAAAAAAAAAAAN0P4P7g8QAAAADoC+DU4P7g/uDU6AsAAAAAAAAAAAAA3lbg/uDGAAAAAAAA4Svg8+Dz4SsAAAAAAAAAAAAA5BPh4uD+3mwAAAAAAAAAAN9g32AAAAAAAAAAANsO3lbh4uD+4M7VBgAAAAAAAAAAAAAAAAAAAAAAAAAA4P7g/uD+4M7jGwAAAAAAAAAAAAAAAAAAAAAAAAAAAADg8uDF3mzVBgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), "format": "LumAlpha8", @@ -1269,9 +1269,9 @@ data = { } [sub_resource type="ImageTexture" id="431"] -image = SubResource("Image_gk346") +image = SubResource("Image_emksd") -[sub_resource type="Image" id="Image_srd7s"] +[sub_resource type="Image" id="Image_kxpah"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA39/fCN7e3mzg4ODF4ODg9ODg4PPg4ODF3t7ebePj4wkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3t7eLuDg4Njg4OD+4ODg/uDg4P7g4OD+4ODg/uDg4P7h4eHa4ODgMgAAAAAAAAAAAAAAAAAAAAAAAAAA3t7eL+Dg4PDg4OD+4ODg4eDg4FPY2NgN2NjYDd/f31Dg4ODX4ODg/uDg4PLh4eEzAAAAAAAAAAAAAAAA4+PjCeDg4Nzg4OD+4ODg4ePj4xIAAAAAAAAAAAAAAAAAAAAA4eHhEeDg4OHg4OD+4ODg3+bm5goAAAAAAAAAAN/f33fg4OD+4ODg/uDg4FMAAAAA4ODgS+Dg4OPh4eHi4ODgSQAAAADe3t5V4ODg/uDg4P7f3995AAAAAAAAAADh4eHa4ODg/uDg4P7Y2NgNAAAAAOHh4eLg4OD+4ODg/uDg4OEAAAAA29vbDuDg4P7g4OD+4eHh2gAAAAAAAAAA4ODg2+Dg4P7g4OD+2NjYDQAAAADh4eHi4ODg/uDg4P7g4ODhAAAAAN3d3Q/g4OD+4ODg/uDg4NsAAAAAAAAAAN7e3nzg4OD+4ODg/t/f31AAAAAA4ODgSeHh4eLg4ODh39/fSAAAAADe3t5W4ODg/uDg4P7g4OB7AAAAAAAAAADV1dUM4ODg4+Dg4P7g4ODX4eHhEQAAAAAAAAAAAAAAAAAAAADk5OQT4eHh4uDg4P7g4ODh1dXVDAAAAAAAAAAAAAAAAN/f3zjg4OD04ODg/uDg4OHe3t5V29vbDtvb2w7e3t5W4eHh4uDg4P7g4OD03t7eNgAAAAAAAAAAAAAAAAAAAAAAAAAA39/fN+Dg4N7g4OD+4ODg/uDg4P7g4OD+4ODg/uDg4P7g4ODd3t7eNgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADm5uYK39/fcODg4MXg4ODz4ODg8+Dg4MXf399u5ubmCgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), "format": "RGBA8", @@ -1281,7 +1281,7 @@ data = { } [sub_resource type="ImageTexture" id="433"] -image = SubResource("Image_srd7s") +image = SubResource("Image_kxpah") [sub_resource type="StyleBoxTexture" id="StyleBoxTexture_g6bu4"] texture = ExtResource("1_ak8qr") @@ -1359,7 +1359,7 @@ region = Rect2(96, 96, 16, 16) atlas = ExtResource("1_ak8qr") region = Rect2(96, 80, 16, 16) -[sub_resource type="Image" id="Image_0m0km"] +[sub_resource type="Image" id="Image_nr33g"] data = { "data": PackedByteArray("AAAAAJiYmHlOTk4xAAAAAAAAAACNjY15Tk5OMQAAAAAAAAAAgoKCeU5OTjEAAAAAAAAAAE5OTjFOTk4cAAAAAAAAAAA4VV8AOFVfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjKy4ADhVXwAAAAAAAAAAAIGirQA4VV8AAAAAAAAAAACYmJh5Tk5OMQAAAAAAAAAAjY2NeU5OTjEAAAAAAAAAAIKCgnlOTk4xAAAAAA=="), "format": "RGBA8", @@ -1369,7 +1369,7 @@ data = { } [sub_resource type="ImageTexture" id="29"] -image = SubResource("Image_0m0km") +image = SubResource("Image_nr33g") [sub_resource type="StyleBoxTexture" id="4"] content_margin_left = 6.0 @@ -1440,7 +1440,7 @@ bg_color = Color(0.490196, 0.490196, 0.490196, 1) corner_detail = 1 anti_aliasing = false -[sub_resource type="Image" id="Image_qu6fu"] +[sub_resource type="Image" id="Image_67hak"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN9Y3BYAAAAAAAAAAAAAAADcFt9YAAAAAAAAAAAAAN9Y4P7g09wWAAAAAAAAAADcFuDT4P7fWAAAAAAAAAAA2xXf0uD/4NfgGQAAAADbFd/S4P/g198YAAAAAAAAAAAAANsV39Lg/+DX4BnbFd/S4P/g198YAAAAAAAAAAAAAAAAAADbFd/S4P/h2uDW4P/g198YAAAAAAAAAAAAAAAAAAAAAAAA2xXf1uD/4P/g298YAAAAAAAAAAAAAAAAAAAAAAAAAADbFd/W4P/g/+Db4BkAAAAAAAAAAAAAAAAAAAAAAADbFd/S4P/f2uDW4P/g1+AZAAAAAAAAAAAAAAAAAADbFd/S4P/g198Y2xXf0uD/4NfgGQAAAAAAAAAAAADbFd/S4P/g198YAAAAANsV39Lg/+DX4BkAAAAAAAAAAN9Y4P7g09wWAAAAAAAAAADcFuDT4P7fWAAAAAAAAAAAAADfWNwWAAAAAAAAAAAAAAAA3BbfWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), "format": "LumAlpha8", @@ -1450,7 +1450,7 @@ data = { } [sub_resource type="ImageTexture" id="49"] -image = SubResource("Image_qu6fu") +image = SubResource("Image_67hak") [sub_resource type="StyleBoxTexture" id="127"] content_margin_left = 4.0 @@ -2271,7 +2271,7 @@ texture_margin_right = 2.0 texture_margin_bottom = 2.0 region_rect = Rect2(72, 64, 8, 8) -[sub_resource type="Image" id="Image_vsf8e"] +[sub_resource type="Image" id="Image_22qm6"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAc5uqs87c4bPO3OGzztzhs87c4bPO3OGzztzhs3ObqrMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), "format": "RGBA8", @@ -2281,7 +2281,7 @@ data = { } [sub_resource type="ImageTexture" id="199"] -image = SubResource("Image_vsf8e") +image = SubResource("Image_22qm6") [sub_resource type="StyleBoxTexture" id="200"] texture = SubResource("199") @@ -2305,7 +2305,7 @@ texture_margin_right = 2.0 texture_margin_bottom = 2.0 region_rect = Rect2(64, 64, 8, 8) -[sub_resource type="Image" id="Image_58oo7"] +[sub_resource type="Image" id="Image_mwlj8"] data = { "data": PackedByteArray("/wD//wD//wD//wD/Z3qFZnqGaHuGaHuGaHuGaHuGZnqGZ3qF/wD//wD//wD//wD//wD//wD/Z3qFZnqGV1FRTEJATUNBTUNBTUNBTUNBTEJAV1FRZnqGZ3qF/wD//wD//wD/Z3qFVkxLTEJATURBTUNBTkRCTkRCTkRCTkRCTUNBTURBTEJAV1FRZ3qF/wD//wD/ZnqGTEJATEJATUNBT0VDT0VDT0VDT0VDT0VDT0VDTUNBTEJATEJAZ3uH/wD/Z3qFV1FRTEJATEJATkRCT0RDUEVEUkZEUkZEUUZFT0RDTkRCTEJATEJAV1FRZ3qFZnqGS0A/TEJATUNBT0RDUUdFUkhGU0hHU0hHUkhGUUdFT0RDTkRCTEJAS0E/Z3uHZ3uHS0E/TEJATUNBT0RDUUdFVElGVUpHVUlHVUpHUkhGUEVETUNBTEJAS0E/aHyIZ3uHSkA+S0E/TUNBT0VDUUdFVElGVUtJVk1LVElGU0lHUEZETkRCTEJAS0E/aHyIZ3uHSkE+S0E/TEJAT0VDUUdFVElGVUtJVUtJVUpHUkhGUEZETkRCTEJASkA+aHyIZ3uHSD48S0I/S0E/TkRCUEVEUUZFU0lHU0lHUkhGUEVETkRCTEJAS0E/ST89aHyIZ3uHRj08SD48SkA+TEJATkRCT0RDUEVEUEVEUEZET0VDTEJAS0A/ST89Rz07Z3uHZ3qFV1FRRz47SUA9S0E/TEJATUNBTkRCTkRCTUNBTEJAS0E/ST89Rz07V1FRaHuG/wD/Z3uHRj08Rz07SD48ST89SkA+S0E/S0E/S0A/SkA+SD48Rz47Rz07Z3uH/wD//wD/Z3qFV1FRRTw7Rz07Rz07Rz07SD48SD48Rz07Rz07Rz47Rj08V1FRZnqG/wD//wD//wD/Z3qFZ3uHV1FRRjw6Rjw6Rz47Rz47Rjw6Rjw6V1FRZ3uHaHuG/wD//wD//wD//wD//wD//wD/ZnqGZ3uHaHyIaHyIaHyIaHyIZ3uHaHuG/wD//wD//wD//wD/"), "format": "RGB8", @@ -2315,7 +2315,7 @@ data = { } [sub_resource type="ImageTexture" id="204"] -image = SubResource("Image_58oo7") +image = SubResource("Image_mwlj8") [sub_resource type="StyleBoxTexture" id="205"] texture = SubResource("204") @@ -2428,7 +2428,7 @@ axis_stretch_horizontal = 2 axis_stretch_vertical = 2 region_rect = Rect2(80, 0, 16, 8) -[sub_resource type="Image" id="Image_vwdns"] +[sub_resource type="Image" id="Image_k0gxe"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P8AAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P8AAAAAAAAAAOD/4P/g/+D/4P/g/+D/4P8AAAAAAAAAAOFe4PTg/+D/4P/g/+D24WYAAAAAAAAAAAAA3yjf0uD/4P/g1+MtAAAAAAAAAAAAAAAAAADoC+Gf4Z/oCwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"), "format": "LumAlpha8", @@ -2438,9 +2438,9 @@ data = { } [sub_resource type="ImageTexture" id="306"] -image = SubResource("Image_vwdns") +image = SubResource("Image_k0gxe") -[sub_resource type="Image" id="Image_8u1x6"] +[sub_resource type="Image" id="Image_x5o30"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4P/g/+D/32AAAAAAAAAAAAAAAAAAAAAA4P/g/+D/4PThKwAAAAAAAAAAAAAAAAAA4P/g/+D/4P/g1egLAAAAAAAAAAAAAAAA4P/g/+D/4P/g/+GfAAAAAAAAAAAAAAAA4P/g/+D/4P/g/+GfAAAAAAAAAAAAAAAA4P/g/+D/4P/g1egLAAAAAAAAAAAAAAAA4P/g/+D/4PThKwAAAAAAAAAAAAAAAAAA4P/g/+D/32AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"), "format": "LumAlpha8", @@ -2450,9 +2450,9 @@ data = { } [sub_resource type="ImageTexture" id="308"] -image = SubResource("Image_8u1x6") +image = SubResource("Image_x5o30") -[sub_resource type="Image" id="Image_naxpi"] +[sub_resource type="Image" id="Image_r2uaw"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAA/1n/FP8U/1kAAAAAAAAAAAAA/1n/FP8U/1kAAAAAAAAAAAAA/1n/FP8U/1kAAAAAAAAAAP9Z/xT/FP9ZAAAAAAAA/1n/FP8U/1kAAAAAAAD/Wf8U/xT/WQAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="), "format": "LumAlpha8", @@ -2462,9 +2462,9 @@ data = { } [sub_resource type="ImageTexture" id="292"] -image = SubResource("Image_naxpi") +image = SubResource("Image_r2uaw") -[sub_resource type="Image" id="Image_ksn4y"] +[sub_resource type="Image" id="Image_mmk83"] data = { "data": PackedByteArray("FxYabx0cIe8gHiT3IR8l9yEfJfchHyX3IR8l9yAeJPcdHCHvFxYabx0cIfAkIin/KCYt/ygmLv8oJi7/KCYu/ygmLv8oJi3/JCIp/x0cIfAgHiT5KCYt/ysqMf8sKjL/LCoy/ywqMv8sKjL/Kyox/ygmLf8gHiT5IR8l9ygmLv8sKjL/LCoy/ywqMv8sKjL/LCoy/ywqMv8oJi7/IR8l9yEfJfcoJi7/LCoy/ywqMv8sKjL/LCoy/ywqMv8sKjL/KCYu/yEfJfchHyX3KCYu/ywqMv8sKjL/LCoy/ywqMv8sKjL/LCoy/ygmLv8hHyX3IR8l9ygmLv8sKjL/LCoy/ywqMv8sKjL/LCoy/ywqMv8oJi7/IR8l9yAeJPkoJi3/Kyox/ywqMv8sKjL/LCoy/ywqMv8rKjH/KCYt/yAeJPkdHCHwJCIp/ygmLf8oJi7/KCYu/ygmLv8oJi7/KCYt/yQiKf8dHCHxFxYabx0cIfAgHiT3IR8l9yEfJfchHyX3IR8l9yAeJPcdHCHuFxYabw=="), "format": "RGBA8", @@ -2474,7 +2474,7 @@ data = { } [sub_resource type="ImageTexture" id="39"] -image = SubResource("Image_ksn4y") +image = SubResource("Image_mmk83") [sub_resource type="StyleBoxTexture" id="272"] content_margin_left = 0.0 @@ -2534,7 +2534,7 @@ axis_stretch_horizontal = 2 axis_stretch_vertical = 2 region_rect = Rect2(24, 40, 8, 8) -[sub_resource type="Image" id="Image_jvlbm"] +[sub_resource type="Image" id="Image_kak1t"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNS1kHTUtZJ01LWVBNS1lmTUtZaE1LWWhNS1loTUtZaE1LWWhNS1loWFZjarCvtYFNS1knTUtZBwAAAAAAAAAATUtZJzg3QLQgICT6Hh4i/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hx8j/4uLjf//////tra53U1LWScAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/0JCR//4+Pj//v7+/1dXWvtNS1lQAAAAAAAAAABNS1lmHh4i/yIiJ/8lJSr/JSUq/05OUv8mJiv/JSUq/yUlKv/Fxcf//////6qqq/8eHiL/TUtZZgAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/7i4uv//////X19j/yUlKv90dHf//////+3t7f8zMzj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv+NjY///////7i4uf81NTn/7e3t//////90dHf/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/Ojo+//v7+//6+vr/srK0///////Fxcf/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/yUlKv+4uLr///////7+/v/4+Pj/RUVJ/yUlKv8jIyj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv8lJSr/YWFl////////////j4+S/yUlKv8lJSr/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/JSUq/yYmK/9OTlL/Y2Nm/yoqL/8lJSr/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZZh4eIv8iIif/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8iIif/Hh4i/01LWWYAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/yMjKP8iIif/ICAk/yAgJPtNS1lQAAAAAAAAAABNS1knODZAtCAgJPseHiL/Hx8j/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hh4i/yAgJfo4NkC0TUtZJwAAAAAAAAAATUtZB01LWSdNS1lQTUtZZk1LWWhNS1loTUtZaE1LWWhNS1loTUtZaE1LWWZNS1lQTUtZJ01LWQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), "format": "RGBA8", @@ -2544,9 +2544,9 @@ data = { } [sub_resource type="ImageTexture" id="334"] -image = SubResource("Image_jvlbm") +image = SubResource("Image_kak1t") -[sub_resource type="Image" id="Image_pxng2"] +[sub_resource type="Image" id="Image_ds41u"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABNS1kHTUtZJ01LWVBNS1lmTUtZaE1LWWhNS1loTUtZaE1LWWhNS1loTUtZZk1LWVBNS1knTUtZBwAAAAAAAAAATUtZJzg3QLQgICT6Hh4i/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hx8j/x4eIv8gICT6ODdAtE1LWScAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/yMjKP8iIif/ICAk/yAgJPpNS1lQAAAAAAAAAABNS1lmHh4i/yIiJ/8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yIiJ/8eHiL/TUtZZgAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8jIyj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZaB8fI/8jIyj/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8jIyj/Hx8j/01LWWgAAAAAAAAAAE1LWWgfHyP/IyMo/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/IyMo/x8fI/9NS1loAAAAAAAAAABNS1loHx8j/yMjKP8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yMjKP8fHyP/TUtZaAAAAAAAAAAATUtZZh4eIv8iIif/JSUq/yUlKv8lJSr/JSUq/yUlKv8lJSr/JSUq/yUlKv8iIif/Hh4i/01LWWYAAAAAAAAAAE1LWVAgICT6ICAk/yIiJ/8jIyj/IyMo/yMjKP8jIyj/IyMo/yMjKP8iIif/ICAk/yAgJPtNS1lQAAAAAAAAAABNS1knODZAtCAgJPseHiL/Hx8j/x8fI/8fHyP/Hx8j/x8fI/8fHyP/Hh4i/yAgJfo4NkC0TUtZJwAAAAAAAAAATUtZB01LWSdNS1lQTUtZZk1LWWhNS1loTUtZaE1LWWhNS1loTUtZaE1LWWZNS1lQTUtZJ01LWQcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), "format": "RGBA8", @@ -2556,7 +2556,7 @@ data = { } [sub_resource type="ImageTexture" id="336"] -image = SubResource("Image_pxng2") +image = SubResource("Image_ds41u") [sub_resource type="AtlasTexture" id="359"] atlas = ExtResource("1_ak8qr") @@ -2632,7 +2632,7 @@ border_width_left = 1 border_color = Color(0.2, 0.2, 0.2, 1) anti_aliasing = false -[sub_resource type="Image" id="Image_8h43v"] +[sub_resource type="Image" id="Image_1e2s7"] data = { "data": PackedByteArray("AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIKCgnmNjY15mJiYeYGirQCMrLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOFVfAE5OTjGCgoJ5jY2NeZiYmHlOTk4xTk5OMU5OTjE4VV8AOFVfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADhVXwBOTk4cTk5OMU5OTjFOTk4xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=="), "format": "RGBA8", @@ -2642,7 +2642,7 @@ data = { } [sub_resource type="ImageTexture" id="111"] -image = SubResource("Image_8h43v") +image = SubResource("Image_1e2s7") [sub_resource type="AtlasTexture" id="20"] atlas = ExtResource("3_0m6kw") diff --git a/tools/configurator/scripts/SystemTab.gd b/tools/configurator/scripts/SystemTab.gd new file mode 100644 index 00000000..ab22ab8e --- /dev/null +++ b/tools/configurator/scripts/SystemTab.gd @@ -0,0 +1,103 @@ +extends Control + +var app_data := AppData.new() +var current_system := Emulator.new() +var press_time: float = 0.0 +var is_reset_pressed: bool = false +var reset_result: Dictionary +@export var PRESS_DURATION: float = 3.0 + +func _ready(): + app_data = data_handler.app_data + _connect_signals() + +func _process(delta: float) -> void: + if is_reset_pressed: + press_time += delta + %reset_progress.value = press_time / PRESS_DURATION * 100.0 + if press_time >= PRESS_DURATION: + _do_complete() + press_time = 0.0 + is_reset_pressed = false + %reset_progress.value = 0.0 + +func _connect_signals() -> void: + %retroarch_button.pressed.connect(_hide_show_buttons.bind(%retroarch_button,%system_gridcontainer, %action_gridcontainer)) + %mame_button.pressed.connect(_hide_show_buttons.bind(%mame_button,%system_gridcontainer, %action_gridcontainer)) + %ruffle_button.pressed.connect(_hide_show_buttons.bind(%ruffle_button,%system_gridcontainer, %action_gridcontainer)) + %melonds_button.pressed.connect(_hide_show_buttons.bind(%melonds_button,%system_gridcontainer, %action_gridcontainer)) + %pcsx2_button.pressed.connect(_hide_show_buttons.bind(%pcsx2_button,%system_gridcontainer, %action_gridcontainer)) + %duckstation_button.pressed.connect(_hide_show_buttons.bind(%duckstation_button,%system_gridcontainer, %action_gridcontainer)) + %ppsspp_button.pressed.connect(_hide_show_buttons.bind(%ppsspp_button,%system_gridcontainer, %action_gridcontainer)) + %vita3k_button.pressed.connect(_hide_show_buttons.bind(%vita3k_button,%system_gridcontainer, %action_gridcontainer)) + %rpcs3_button.pressed.connect(_hide_show_buttons.bind(%rpcs3_button,%system_gridcontainer, %action_gridcontainer)) + %ryujinx_button.pressed.connect(_hide_show_buttons.bind(%ryujinx_button,%system_gridcontainer, %action_gridcontainer)) + %dolphin_button.pressed.connect(_hide_show_buttons.bind(%dolphin_button,%system_gridcontainer, %action_gridcontainer)) + %primehack_button.pressed.connect(_hide_show_buttons.bind(%primehack_button,%system_gridcontainer, %action_gridcontainer)) + %cemu_button.pressed.connect(_hide_show_buttons.bind(%cemu_button,%system_gridcontainer, %action_gridcontainer)) + %xemu_button.pressed.connect(_hide_show_buttons.bind(%xemu_button,%system_gridcontainer, %action_gridcontainer)) + %esde_button.pressed.connect(_hide_show_buttons.bind(%esde_button,%system_gridcontainer, %action_gridcontainer)) + %help_button.pressed.connect(_do_action.bind(%help_button)) + #%launch_button.pressed.connect(_do_action.bind(%launch_button)) + %launch_button.pressed.connect(_do_action.bind(%launch_button)) + %reset_button.button_down.connect(_do_action.bind(%reset_button)) + %reset_button.button_up.connect(_on_Button_released.bind(%reset_progress)) + +func _hide_show_buttons(button: Button, buttons_gridcontainer: GridContainer, hidden_gridcontainer: GridContainer) -> void: + current_system = app_data.emulators[button.text.to_lower()] + match button.name: + "retroarch_button", "mame_button", "ruffle_button", "melonds_button", "pcsx2_button", "duckstation_button", \ + "ppsspp_button", "vita3k_button", "rpcs3_button", "ryujinx_button", "dolphin_button", "primehack_button", \ + "cemu_button", "xemu_button", "esde_button": + %reset_button.text="RESET" + hidden_gridcontainer.visible = true + if button.toggle_mode == false: + for i in range(buttons_gridcontainer.get_child_count()): + var child = buttons_gridcontainer.get_child(i) + if child is Button and child != button: + child.visible=false + elif button.toggle_mode == true and hidden_gridcontainer.visible == true: + hidden_gridcontainer.visible = false + for i in range(buttons_gridcontainer.get_child_count()): + var child = buttons_gridcontainer.get_child(i) + if child is Button: + child.visible=true + child.toggle_mode = false + if hidden_gridcontainer.visible == true: + button.toggle_mode = true + +func _on_Button_released(progress: ProgressBar) -> void: + is_reset_pressed = false + %reset_progress.visible = false + press_time = 0.0 + progress.value = 0.0 + +func _do_action(button: Button) -> void: + match [button.name, current_system.name]: + ["help_button", current_system.name]: + class_functions.log_parameters[2] = class_functions.log_text + "Launching " + current_system.name + " Help" + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + class_functions.launch_help(current_system.url) + ["launch_button", current_system.name]: + class_functions.log_parameters[2] = class_functions.log_text + "Launching " + current_system.name + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + var launch = class_functions.execute_command(current_system.launch,[], false) + class_functions.log_parameters[2] = class_functions.log_text + "Exit Code: " + str(launch["exit_code"]) + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + ["reset_button", current_system.name]: + is_reset_pressed = true + %reset_progress.visible = true + +func _do_complete() ->void: + if is_reset_pressed: + var parameters = ["prepare_component","reset",current_system.name] + %reset_button.text = "RESETTING-NOW" + class_functions.log_parameters[2] = class_functions.log_text + "Resetting " + current_system.name + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + await run_thread_command(class_functions.wrapper_command,parameters, false) + class_functions.log_parameters[2] = class_functions.log_text + "Exit Code: " + str(reset_result["exit_code"]) + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + %reset_button.text = "RESET COMPLETED" + +func run_thread_command(command: String, parameters: Array, console: bool) -> void: + reset_result = await class_functions.run_command_in_thread(command, parameters, console) diff --git a/tools/configurator/scripts/app_data.gd b/tools/configurator/scripts/app_data.gd index 5b386d8d..851b6ef5 100644 --- a/tools/configurator/scripts/app_data.gd +++ b/tools/configurator/scripts/app_data.gd @@ -6,3 +6,4 @@ class_name AppData @export var about_links: Dictionary = {} @export var emulators: Dictionary = {} +@export var cores: Dictionary = {} diff --git a/tools/configurator/scripts/class_functions.gd b/tools/configurator/scripts/class_functions.gd index a138ae6f..699a752c 100644 --- a/tools/configurator/scripts/class_functions.gd +++ b/tools/configurator/scripts/class_functions.gd @@ -1,7 +1,33 @@ -class_name ClassFunctions extends Control +class_name ClassFunctions -# This should be looked at again when GoDot 4.3 ships as has new OS.execute_with_pipe +extends Control +var log_text = "gdc_" +var log_parameters: Array +var wrapper_command: String = "/app/tools/retrodeck_function_wrapper.sh" +var rd_log: String +var rd_log_folder: String +var rd_version: String +var gc_version: String +func read_cfg() -> String: + var title: String + var config_file_path = "/var/config/retrodeck/retrodeck.cfg" + var json_file_path = "/var/config/retrodeck/retrodeck.json" + var config = data_handler.parse_config_to_json(config_file_path) + data_handler.config_save_json(config, json_file_path) + rd_log_folder = config["paths"]["logs_folder"] + rd_log = rd_log_folder + "/retrodeck.log" + #rd_log = "/var/config/retrodeck/logs/retrodeck.log" + log_parameters = ["log", "i", log_text, rd_log] + rd_version = config["version"] + gc_version = ProjectSettings.get_setting("application/config/version") + title = "\n " + rd_version + "\nConfigurator\n " + gc_version + print ("Make logging a function\nAlso add d,i,e,w: ", rd_log) + return title + +func logger() -> void: + pass + func array_to_string(arr: Array) -> String: var text: String for line in arr: @@ -9,6 +35,7 @@ func array_to_string(arr: Array) -> String: text = line.strip_edges() + "\n" return text +# TODO This should be looked at again when GoDot 4.3 ships as has new OS.execute_with_pipe func execute_command(command: String, parameters: Array, console: bool) -> Dictionary: var result = {} var output = [] diff --git a/tools/configurator/scripts/core.gd b/tools/configurator/scripts/core.gd new file mode 100644 index 00000000..835eb071 --- /dev/null +++ b/tools/configurator/scripts/core.gd @@ -0,0 +1,8 @@ +extends Resource + +class_name Core + +@export var name: String +@export var description: String +@export var system: Array +@export var properties: Array[CoreProperty] diff --git a/tools/configurator/scripts/core_property.gd b/tools/configurator/scripts/core_property.gd new file mode 100644 index 00000000..a744712e --- /dev/null +++ b/tools/configurator/scripts/core_property.gd @@ -0,0 +1,14 @@ +extends Resource + +class_name CoreProperty + +@export var borders: bool +@export var abxy_button: bool +@export var cheevos: bool +@export var cheevos_hardcore: bool +@export var ask_to_exit: bool +@export var multi_user_config_dir: String +@export var universal_dyn_input: bool +@export var quick_resume: bool +@export var widescreen: bool +@export var rewind: bool diff --git a/tools/configurator/scripts/data_handler.gd b/tools/configurator/scripts/data_handler.gd index 4b48cb4c..2b24a79c 100644 --- a/tools/configurator/scripts/data_handler.gd +++ b/tools/configurator/scripts/data_handler.gd @@ -34,9 +34,12 @@ func load_base_data() -> AppData: var emulator = Emulator.new() emulator.name = emulator_data["name"] emulator.description = emulator_data["description"] + emulator.url = emulator_data["url"] + #emulator.system = emulator_data["system"] + emulator.launch = emulator_data["launch"] if emulator_data.has("properties"): for property_data in emulator_data["properties"]: - print (emulator,"----",property_data) + #print (emulator,"----",property_data) var property = EmulatorProperty.new() if property_data.has("cheevos"): property.cheevos = property_data.get("cheevos",true) @@ -47,11 +50,36 @@ func load_base_data() -> AppData: if property_data.has("multi_user_config_dir"): property.multi_user_config_dir = property_data.get("multi_user_config_dir",true) emulator.properties.append(property) - emulators[key] = emulator + #TODO add systems too + var cores = {} + for key in data_dict["emulator"]["retroarch"]["cores"].keys(): + var core_data = data_dict["emulator"]["retroarch"]["cores"][key] + var core = Core.new() + core.name = core_data["name"] + core.description = core_data["description"] + if core_data.has("properties"): + for property_data in core_data["properties"]: + #print (core.name,"----",property_data) + var property = CoreProperty.new() + property.cheevos = true + property.cheevos_hardcore = true + property.quick_resume = true + if property_data.has("abxy_button"): + property.abxy_button = property_data.get("abxy_button",true) + if property_data.has("widescreen"): + property.widescreen = property_data.get("widescreen",true) + if property_data.has("borders"): + property.borders = property_data.get("borders",true) + if property_data.has("rewind"): + property.rewind = property_data.get("rewind",true) + core.properties.append(property) + cores[key] = core + var app_dict = AppData.new() app_dict.about_links = about_links app_dict.emulators = emulators + app_dict.cores = cores return app_dict else: print("Error parsing JSON") @@ -60,7 +88,7 @@ func load_base_data() -> AppData: get_tree().quit() return null -func save_base_data(app_dict: AppData): # was apP_data but gave warning +func save_base_data(app_dict: AppData): var file = FileAccess.open(data_file_path, FileAccess.READ) var existing_data = {} if file: @@ -71,18 +99,18 @@ func save_base_data(app_dict: AppData): # was apP_data but gave warning file.close() else: print("File not found. Creating a new one.") - var about_links = {} + #var about_links ={} + var about_links_new = Link.new() for key in app_dict.about_links.keys(): var link = app_dict.about_links[key] - about_links[key] = { + about_links_new[key] = { "name": link.name, "url": link.url, "description": link.description } - var new_data_dict = {} - # Convert about_links to a dictionary - var about_links = {} + #var about_links = {} + var about_links = Link.new() for key in app_dict.about_links.keys(): var link = app_dict.about_links[key] about_links[key] = { @@ -90,8 +118,6 @@ func save_base_data(app_dict: AppData): # was apP_data but gave warning "url": link.url, "description": link.description } - - # Convert emulators to a dictionary var emulators = {} for key in app_dict.emulators.keys(): var emulator = app_data.emulators[key] @@ -101,16 +127,16 @@ func save_base_data(app_dict: AppData): # was apP_data but gave warning #"standalone": property.standalone, "abxy_button": {"status": property.abxy_button} }) - emulators[key] = { "name": emulator.name, "description": emulator.description, + "launch": emulator.launch, + "system": emulator.system, + "url": emulator.url, "properties": properties } - new_data_dict["about_links"] = about_links new_data_dict["emulators"] = emulators - # Merge existing data with new data for key in new_data_dict.keys(): if existing_data.has(key): @@ -122,7 +148,6 @@ func save_base_data(app_dict: AppData): # was apP_data but gave warning existing_dict[sub_key] = new_dict[sub_key] else: existing_data[key] = new_data_dict[key] - # Serialize the combined data to JSON #var json_text = JSON.new().stringify(existing_data, "\t") #var json_text = json.stringify(existing_data, "\t") @@ -149,13 +174,14 @@ func modify_link(key: String, new_name: String, new_url: String, new_description print("Link not found") # Function to modify an existing emulator -func modify_emulator(key: String, new_name: String, new_description: String, new_properties: Array): +func modify_emulator(key: String, new_name: String, new_launch: String, new_description: String, new_properties: Array): #data_handler.modify_emulator_test() var app_dict = load_base_data() # was app_data if app_dict and app_dict.emulators.has(key): var emulator = app_dict.emulators[key] emulator.name = new_name emulator.description = new_description + emulator.launch = new_launch # Update properties emulator.properties.clear() @@ -165,9 +191,7 @@ func modify_emulator(key: String, new_name: String, new_description: String, new new_property.abxy_button = property.abxy_button new_property.ask_to_exit = property.ask_to_exit new_property.cheevos = property.cheevos - emulator.properties.append(new_property) - app_dict.emulators[key] = emulator save_base_data(app_dict) print("Emulator modified successfully") @@ -182,10 +206,10 @@ func add_emulator() -> void: link.url = "https://example.com" link.description = "An example description." app_data.about_links["example_site"] = link - var emulator = Emulator.new() - emulator.name = "Example Emulator" + emulator.name = "Example System" emulator.description = "An example emulator." + emulator.launch = "launcher" var property = EmulatorProperty.new() #property.standalone = true property.abxy_button = false @@ -195,29 +219,23 @@ func add_emulator() -> void: func modify_emulator_test() -> void: data_handler.modify_link("example_site", "Updated Site", "https://updated-example.com", "Updated description.") - - var new_properties = [] var new_property = EmulatorProperty.new() #new_property.standalone = false new_property.abxy_button = true new_properties.append(new_property) - - data_handler.modify_emulator("example_emulator", "Updated Emulator", "Updated description", new_properties) - + data_handler.modify_emulator("example_emulator", "Updated System", "launcher", "Updated description", new_properties) func parse_config_to_json(file_path: String) -> Dictionary: var config = {} var current_section = "" - var file = FileAccess.open(file_path, FileAccess.READ) if file == null: print("Failed to open file") return config - + while not file.eof_reached(): var line = file.get_line().strip_edges() - if line.begins_with("[") and line.ends_with("]"): # Start a new section current_section = line.substr(1, line.length() - 2) @@ -227,8 +245,7 @@ func parse_config_to_json(file_path: String) -> Dictionary: var parts = line.split("=") if parts.size() == 2: var key = parts[0].strip_edges() - var value = parts[1].strip_edges() - + var value = parts[1].strip_edges() # Convert value to proper type if value == "true": value = true @@ -242,10 +259,8 @@ func parse_config_to_json(file_path: String) -> Dictionary: config[key] = value else: config[current_section][key] = value - file.close() return config - func config_save_json(config: Dictionary, json_file_path: String) -> void: #var json = JSON.new() diff --git a/tools/configurator/scripts/emulator.gd b/tools/configurator/scripts/emulator.gd index 5b5900ad..4eda2798 100644 --- a/tools/configurator/scripts/emulator.gd +++ b/tools/configurator/scripts/emulator.gd @@ -1,6 +1,10 @@ extends Resource -class_name Emulator +class_name Emulator + @export var name: String @export var description: String +@export var launch: String +@export var url: String +@export var system: String @export var properties: Array[EmulatorProperty] diff --git a/tools/configurator/scripts/emulator_property.gd b/tools/configurator/scripts/emulator_property.gd index 51ef7670..07d7a673 100644 --- a/tools/configurator/scripts/emulator_property.gd +++ b/tools/configurator/scripts/emulator_property.gd @@ -1,4 +1,5 @@ extends Resource + class_name EmulatorProperty @export var borders: bool @@ -8,3 +9,4 @@ class_name EmulatorProperty @export var ask_to_exit: bool @export var multi_user_config_dir: String @export var universal_dyn_input: bool +@export var quick_resume: bool diff --git a/tools/configurator/scripts/link.gd b/tools/configurator/scripts/link.gd index e3a4b774..5e598d3e 100644 --- a/tools/configurator/scripts/link.gd +++ b/tools/configurator/scripts/link.gd @@ -1,5 +1,7 @@ extends Resource + class_name Link + @export var description: String @export var name: String @export var url: String diff --git a/tools/configurator/tk_about.gd b/tools/configurator/tk_about.gd index dddde099..cf107e8c 100644 --- a/tools/configurator/tk_about.gd +++ b/tools/configurator/tk_about.gd @@ -13,11 +13,33 @@ rd_credits_button,rd_donate_button,rd_contactus_button,rd_licenses_button] func _ready(): #tk_about = class_functions.import_csv_data("res://tk_about.txt") - app_data = data_handler.app_data - #_get_nodes() _connect_signals() - for but in bArray: - %GridContainer.add_child(but) + create_buttons() + +func _connect_signals() -> void: + rd_web_button.pressed.connect(_about_button_pressed.bind("rd_web", rd_web_button)) + rd_changelog_button.pressed.connect(_about_button_pressed.bind("rd_changelog", rd_changelog_button)) + rd_wiki_button.pressed.connect(_about_button_pressed.bind("rd_wiki",rd_wiki_button)) + rd_credits_button.pressed.connect(_about_button_pressed.bind("rd_credits", rd_credits_button)) + rd_donate_button.pressed.connect(_about_button_pressed.bind("rd_donate", rd_donate_button)) + rd_contactus_button.pressed.connect(_about_button_pressed.bind("rd_contactus", rd_contactus_button)) + rd_licenses_button.pressed.connect(_about_button_pressed.bind("rd_licenses", rd_licenses_button)) + +func _about_button_pressed(id: String, button: Button) -> void: + match id: + "rd_web", "rd_changelog", "rd_wiki", "rd_credits", "rd_donate", "rd_contactus", "rd_licenses": + class_functions.log_parameters[2] = class_functions.log_text + "Loading website for " + id + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + OS.shell_open(button.editor_description) + _: + class_functions.log_parameters[2] = class_functions.log_text + "Loading website - no matching ID found" + class_functions.execute_command(class_functions.wrapper_command,class_functions.log_parameters, false) + print ("Website ID/Link not found") + +func create_buttons() -> void: + app_data = data_handler.app_data + for button in bArray: + %GridContainer.add_child(button) for id in app_data.about_links: var web_data: Link = app_data.about_links[id] match id: @@ -70,31 +92,3 @@ func _ready(): rd_licenses_button.editor_description = web_data.url rd_licenses_button.icon_alignment = HORIZONTAL_ALIGNMENT_CENTER rd_licenses_button.vertical_icon_alignment = VERTICAL_ALIGNMENT_TOP - -func _connect_signals() -> void: - rd_web_button.pressed.connect(_about_button_pressed.bind("rd_web")) - rd_changelog_button.pressed.connect(_about_button_pressed.bind("rd_changelog")) - rd_wiki_button.pressed.connect(_about_button_pressed.bind("rd_wiki")) - rd_credits_button.pressed.connect(_about_button_pressed.bind("rd_credits")) - rd_donate_button.pressed.connect(_about_button_pressed.bind("rd_donate")) - rd_contactus_button.pressed.connect(_about_button_pressed.bind("rd_contactus")) - rd_licenses_button.pressed.connect(_about_button_pressed.bind("rd_licenses")) - -func _about_button_pressed(id: String) -> void: - match id: - "rd_web": - OS.shell_open(rd_web_button.editor_description) - "rd_changelog": - OS.shell_open(rd_changelog_button.editor_description) - "rd_wiki": - OS.shell_open(rd_wiki_button.editor_description) - "rd_credits": - OS.shell_open(rd_credits_button.editor_description) - "rd_donate": - OS.shell_open(rd_donate_button.editor_description) - "rd_contactus": - OS.shell_open(rd_contactus_button.editor_description) - "rd_licenses": - OS.shell_open(rd_licenses_button.editor_description) - _: - print ("Website ID/Link not found")