Merge branch 'cooker' into feat/shadps4

This commit is contained in:
XargonWan 2024-08-22 16:23:00 +09:00
commit ca4964ac1c
468 changed files with 11111 additions and 745 deletions

View file

@ -64,33 +64,33 @@ jobs:
id: branch_name
run: echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's|refs/heads/||')" >> $GITHUB_ENV
# if it's a feature branch it will not marked as "latest" cooker version
- name: "Set makeLatest (cooker only)"
run: |
if [[ "$BRANCH_NAME" == 'feat/'* || "$BRANCH_NAME" == 'refs/'* ]]; then
echo "MAKE_LATEST=false" >> $GITHUB_ENV
else
echo "MAKE_LATEST=true" >> $GITHUB_ENV
fi
# if the branch is coming from a PR the tag should be manually built
- name: "Generate version tag"
- name: "Generate version tag and evaluating latest tag"
run: |
# Source the version extractor script to get the manifest version
source automation_tools/version_extractor.sh
MANIFEST_VERSION="$(fetch_manifest_version)"
echo "MANIFEST_VERSION=$MANIFEST_VERSION" >> $GITHUB_ENV
if [[ "$BRANCH_NAME" == 'refs/'* ]]; then
pr_number=$(echo ${{env.BRANCH_NAME}} | awk -F'/' '{print $3}')
# Check if the event is related to a pull request
if [[ "$GITHUB_EVENT_NAME" == "pull_request" || "$GITHUB_EVENT_NAME" == "pull_request_target" ]]; then
pr_number=$(echo "$GITHUB_REF" | awk -F'/' '{print $3}')
source_branch=$(curl -s "https://api.github.com/repos/RetroDECK/RetroDECK/pulls/$pr_number" | jq -r '.head.ref')
source_branch=${source_branch//\//-}
source_branch=${source_branch//\//-} # Replace '/' with '-' in the branch name
echo "[DEBUG] source branch is: $source_branch"
echo "TAG=PR-$pr_number-$source_branch-${{ env.buildid }}" >> $GITHUB_ENV
echo "MAKE_LATEST=false" >> $GITHUB_ENV # if it's a feature branch it will not marked as "latest" cooker version
else
TAG="$MANIFEST_VERSION-${{ env.buildid }}"
echo "TAG=$TAG" >> $GITHUB_ENV
echo "MAKE_LATEST=true" >> $GITHUB_ENV
fi
# Output the manifest version and generated tag for debugging
echo "MANIFEST_VERSION: $MANIFEST_VERSION"
echo "Version TAG: $TAG"
echo "MAKE_LATEST: $MAKE_LATEST"
# backing up manifest in case download fails and hashes must be recalculated
- name: Manifest backup

1
.gitignore vendored
View file

@ -22,6 +22,7 @@ retrodeck-repo
buildid
*.bak
incconfigs/
.github/workflows/cooker-monkeyx.yml
# Python #
##########

View file

@ -1,45 +1,47 @@
{
"about_links": {
"example_site": {
"description": "Updated description.",
"name": "Updated Site",
"url": "https://updated-example.com"
},
"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/"
},
"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"
},
"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/"
},
"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/"
},
"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/"
},
"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/"
},
"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/"
}
"url": "https://retrodeck.readthedocs.io/en/latest/",
"icon": "res://assets/icons/pixelitos/128/internet-web-browser.png"
}
},
"finit_default_options": {
"rd_controller_profile": {
@ -1101,7 +1103,12 @@
"name": "shadps4",
"system": "ps4",
"launch": "shadps4-qt"
},
"es-de": {
"description": "ES-DE Emulation Frontend",
"name": "ES-DE",
"launch": "es-de"
}
}
}

View file

@ -574,7 +574,7 @@ modules:
missing_libs=$(find "${FLATPAK_DEST}/bin" -type f -exec ldd {} + 2>/dev/null | grep "not found" | awk '{print $1}' | sort | uniq)
# for some reason these libraries are not recognized as missing so we mantain this list
manually_imported="libpostproc.so.56 libswscale.so.6 libshaderc_shared.so.1 libbz2.so.1.0 libaio.so.1"
manually_imported="libpostproc.so.56 libswscale.so.6 libshaderc_shared.so.1 libbz2.so.1.0 libaio.so.1 ld-linux.so.2"
missing_libs="$missing_libs $manually_imported"

View file

@ -2,6 +2,16 @@
source /app/libexec/global.sh
# uses jq to extract all the emulators (components) that don't have resettable: false in the features.json and separate them with "|"
resettable_components=$(jq -r '
[(.emulator | to_entries[]) |
select(.value.core == null and .value.resettable != false) |
.key] | sort | join("|")
' "$features")
# uses sed to create, a, list, like, this
pretty_resettable_components=$(echo "$resettable_components" | sed 's/|/, /g')
# Arguments section
for i in "$@"; do
@ -55,19 +65,15 @@ https://retrodeck.net
fi
;;
--reset-component*)
echo "You are about to reset one or more RetroDECK components or emulators."
echo "Available options are: es-de, retroarch, cemu, dolphin, duckstation, gzdoom, melonds, pcsx3, pico8, ppsspp, primehack, rpcs3, ryujinx, xemu, vita3k, mame, all"
read -p "Please enter the component you would like to reset: " component
component=$(echo "$component" | tr '[:upper:]' '[:lower:]')
component="$2"
if [ -z "$component" ]; then
echo "You are about to reset one or more RetroDECK components or emulators."
echo -e "Available options are:\nall, $pretty_resettable_components"
read -p "Please enter the component you would like to reset: " component
component=$(echo "$component" | tr '[:upper:]' '[:lower:]')
fi
# TODO: this is the jq to get all the resettable emulators list, generic component is missing
# jq -r '
# [(.emulator | to_entries[]) |
# select(.value.core == null and .value.resettable != false) |
# .key] | sort | join("|")
# ' "$features"
if [[ "$component" =~ ^(es-de|retroarch|cemu|dolphin|duckstation|gzdoom|mame|melonds|pcsx2|ppsspp|primehack|ryujinx|rpcs3|vita3k|xemu|all)$ ]]; then
if [[ "$component" =~ ^(all|$resettable_components)$ ]]; then
read -p "You are about to reset $component to default settings. Enter 'y' to continue, 'n' to stop: " response
if [[ $response == [yY] ]]; then
prepare_component "reset" "$component" "cli"

View file

@ -1,9 +1,28 @@
extends TabContainer
var icon_width: int = 32
func _ready():
focusFirstFocusableChild() #grab focus on first element to enable controller focusing
%l1_button.visible = true
%TabContainer.add_theme_icon_override("decrement",ResourceLoader.load("res://assets/icons/kenney_input-prompts-pixel-16/Tiles/tile_0797.png"))
%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_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_max_width(2,icon_width)
set_tab_icon(3, ResourceLoader.load("res://assets/icons/pixelitos/128/network-workgroup.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_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)
#
func _input(event):
if (event.is_action_pressed("next_tab")):
self.select_next_available()

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/OpenDyslexic3-Bold.ttf-e08c5bbd6afd96931f6f12
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/OpenDyslexic3-Regular.ttf-64604afa13dc8f16ae6
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/Akrobat-Black.otf-58a387abad411a0ba1e8ede209b
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/Akrobat-Bold.otf-7ca68850824f1de1bfa3f2ae834a
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/Akrobat-ExtraLight.otf-e1e2cfb678c3abe6f88796
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/Akrobat-Light.otf-3d206ad89efef2fbbb8f590de7e
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/Akrobat-Regular.otf-5c1ca00980c7c578431380b56
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/Akrobat-SemiBold.otf-66f337095e525a3276254507
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/akrobat-extrabold-webfont.ttf-d5220fd0d634f9c
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/munro-narrow.ttf-eebb0ff361c143ec171a43475490
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/munro-small.ttf-9be0aa72f914e623b8c93addb3ec9
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

View file

@ -15,6 +15,7 @@ dest_files=["res://.godot/imported/munro.ttf-c45ff1701342af95744d8196bd62e7d3.fo
Rendering=null
antialiasing=1
generate_mipmaps=false
disable_embedded_bitmaps=true
multichannel_signed_distance_field=false
msdf_pixel_range=8
msdf_size=48

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b164ihk8riiwh"
path="res://.godot/imported/space_bground.png-bb7742583aade71dc9220a47d142016b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/graphics/space_bground.png"
dest_files=["res://.godot/imported/space_bground.png-bb7742583aade71dc9220a47d142016b.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cxkbouf1kp5kf"
path="res://.godot/imported/3do.png-5ac164198391b8e57611ff6fe566d0fa.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/3do.png"
dest_files=["res://.godot/imported/3do.png-5ac164198391b8e57611ff6fe566d0fa.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://euks0k4cll18"
path="res://.godot/imported/Mario.png-dab1229aab58342b7d4c874aef5b55b1.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/Mario.png"
dest_files=["res://.godot/imported/Mario.png-dab1229aab58342b7d4c874aef5b55b1.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://myrdrwfgl52m"
path="res://.godot/imported/Mariokart.png-d94e68d182fee2d2a11e62c55128fdde.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/Mariokart.png"
dest_files=["res://.godot/imported/Mariokart.png-d94e68d182fee2d2a11e62c55128fdde.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ceh75c5sgsggy"
path="res://.godot/imported/adam.png-c5d11f127d1d02534a2e9910891c157a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/adam.png"
dest_files=["res://.godot/imported/adam.png-c5d11f127d1d02534a2e9910891c157a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bg0a1nb2d85tf"
path="res://.godot/imported/ags.png-742edd70e7477ca8cf522e752080839a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/ags.png"
dest_files=["res://.godot/imported/ags.png-742edd70e7477ca8cf522e752080839a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bhpq3qhctmkn3"
path="res://.godot/imported/amiga.png-05517277c502cad9916a15f7d0684d91.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/amiga.png"
dest_files=["res://.godot/imported/amiga.png-05517277c502cad9916a15f7d0684d91.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://c0iij8llh4pih"
path="res://.godot/imported/amiga1200.png-26575ffed08211ebb4c652ba33d6a62a.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/amiga1200.png"
dest_files=["res://.godot/imported/amiga1200.png-26575ffed08211ebb4c652ba33d6a62a.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bdvswudufgyna"
path="res://.godot/imported/amiga600.png-bd4b941f8ee80c099ef6b7a4d536faab.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/amiga600.png"
dest_files=["res://.godot/imported/amiga600.png-bd4b941f8ee80c099ef6b7a4d536faab.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bl11ok8rsn8sj"
path="res://.godot/imported/amigacd32.png-7aa6cc12fab765ef4950be7c3150723f.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/amigacd32.png"
dest_files=["res://.godot/imported/amigacd32.png-7aa6cc12fab765ef4950be7c3150723f.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://7h36hcjmtcco"
path="res://.godot/imported/amstradcpc.png-eddb0bd6a1d63f7aea5ff141248132af.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/amstradcpc.png"
dest_files=["res://.godot/imported/amstradcpc.png-eddb0bd6a1d63f7aea5ff141248132af.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://db2yi5v3vasvb"
path="res://.godot/imported/android.png-9da97ab6ba001ff4df9fe2791e9be28b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/android.png"
dest_files=["res://.godot/imported/android.png-9da97ab6ba001ff4df9fe2791e9be28b.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://ceolqdprka3c2"
path="res://.godot/imported/androidapps.png-dd4b387e1af106033fceb477ae47f894.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/androidapps.png"
dest_files=["res://.godot/imported/androidapps.png-dd4b387e1af106033fceb477ae47f894.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d0edj8rq6ayxd"
path="res://.godot/imported/androidgames.png-369ea435c53a8747bd142a5cc93d4e37.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/androidgames.png"
dest_files=["res://.godot/imported/androidgames.png-369ea435c53a8747bd142a5cc93d4e37.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://sp37k8snf8ve"
path="res://.godot/imported/apple2.png-2fa1b706e2bfd6dea7e6b203572a8fea.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/apple2.png"
dest_files=["res://.godot/imported/apple2.png-2fa1b706e2bfd6dea7e6b203572a8fea.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bnmrlgx6hgxje"
path="res://.godot/imported/apple2gs.png-5e2f168351b71fcdffd03e10e506d489.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/apple2gs.png"
dest_files=["res://.godot/imported/apple2gs.png-5e2f168351b71fcdffd03e10e506d489.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bsko26k0kgua4"
path="res://.godot/imported/arcade.png-87594dae479d50208a7add4e027cbfa0.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/arcade.png"
dest_files=["res://.godot/imported/arcade.png-87594dae479d50208a7add4e027cbfa0.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bf4boambvaivc"
path="res://.godot/imported/arcadia.png-9a678b513f0c8abef01a444f043f8943.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/arcadia.png"
dest_files=["res://.godot/imported/arcadia.png-9a678b513f0c8abef01a444f043f8943.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://drg0o2vuo8ytp"
path="res://.godot/imported/archimedes.png-fcc782f8211463640d074fb77f11ac50.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/archimedes.png"
dest_files=["res://.godot/imported/archimedes.png-fcc782f8211463640d074fb77f11ac50.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cbegb1wlma01r"
path="res://.godot/imported/arduboy.png-7af9565c8d2ba93e31c84c982d2f6ebc.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/arduboy.png"
dest_files=["res://.godot/imported/arduboy.png-7af9565c8d2ba93e31c84c982d2f6ebc.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cyjru8ww2ppta"
path="res://.godot/imported/astrocade.png-e1fde029e6ec2692c49b1b72e5cc29c8.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/astrocade.png"
dest_files=["res://.godot/imported/astrocade.png-e1fde029e6ec2692c49b1b72e5cc29c8.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d3c76o7f8yjwa"
path="res://.godot/imported/atari2600.png-da23fd97f9cbf758be613c3a4c1ed365.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/atari2600.png"
dest_files=["res://.godot/imported/atari2600.png-da23fd97f9cbf758be613c3a4c1ed365.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://oitpjqto12vr"
path="res://.godot/imported/atari5200.png-27a1d975b300aff4ad8e25680d559024.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/atari5200.png"
dest_files=["res://.godot/imported/atari5200.png-27a1d975b300aff4ad8e25680d559024.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d17cg3dh664a0"
path="res://.godot/imported/atari7800.png-8e4d08969ce3382ab97fe615906c5533.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/atari7800.png"
dest_files=["res://.godot/imported/atari7800.png-8e4d08969ce3382ab97fe615906c5533.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://l4bt0pgi7w4i"
path="res://.godot/imported/atari800.png-6b4f8d67a6c122f7e3dbe22d0c944492.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/atari800.png"
dest_files=["res://.godot/imported/atari800.png-6b4f8d67a6c122f7e3dbe22d0c944492.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bfiptkdf3w8fy"
path="res://.godot/imported/atarijaguar.png-b4b7889ac3831b75a4de96d9d2765f0b.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/atarijaguar.png"
dest_files=["res://.godot/imported/atarijaguar.png-b4b7889ac3831b75a4de96d9d2765f0b.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bw07a7wh3tgbd"
path="res://.godot/imported/atarijaguarcd.png-ac898e1f0f0da602626795913e1a22fb.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/atarijaguarcd.png"
dest_files=["res://.godot/imported/atarijaguarcd.png-ac898e1f0f0da602626795913e1a22fb.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://burgtj8xa20kc"
path="res://.godot/imported/atarilynx.png-3d3556b1c2a795d5aef13799be6994f7.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/atarilynx.png"
dest_files=["res://.godot/imported/atarilynx.png-3d3556b1c2a795d5aef13799be6994f7.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 6 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cp8nx5ab7h64w"
path="res://.godot/imported/atarist.png-279cf823ca56904d081392e472fa1fd3.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/atarist.png"
dest_files=["res://.godot/imported/atarist.png-279cf823ca56904d081392e472fa1fd3.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b55h46hik2rv6"
path="res://.godot/imported/atarixe.png-5b4a37b9056999746e81e1dc161a100c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/atarixe.png"
dest_files=["res://.godot/imported/atarixe.png-5b4a37b9056999746e81e1dc161a100c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://6abtmqvc7gwx"
path="res://.godot/imported/atomiswave.png-e61400a4422f5ba0e92c2f80bd772ba3.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/atomiswave.png"
dest_files=["res://.godot/imported/atomiswave.png-e61400a4422f5ba0e92c2f80bd772ba3.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cogkw3ycpdu6y"
path="res://.godot/imported/auto-allgames.png-0e3e57d54ce5ac30ffc764332a8ed3d2.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/auto-allgames.png"
dest_files=["res://.godot/imported/auto-allgames.png-0e3e57d54ce5ac30ffc764332a8ed3d2.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://655ah667lkck"
path="res://.godot/imported/auto-favorites.png-72238cdd68b29a94566e72a6d00d0b29.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/auto-favorites.png"
dest_files=["res://.godot/imported/auto-favorites.png-72238cdd68b29a94566e72a6d00d0b29.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dduvw0x1dhhs6"
path="res://.godot/imported/auto-lastplayed.png-b2afd1bb96c6a0a93a8b77c270712e7c.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/auto-lastplayed.png"
dest_files=["res://.godot/imported/auto-lastplayed.png-b2afd1bb96c6a0a93a8b77c270712e7c.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bt1xdi6hrj13u"
path="res://.godot/imported/background.png-a728eb66578a129315ef64c604d2f1e5.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/background.png"
dest_files=["res://.godot/imported/background.png-a728eb66578a129315ef64c604d2f1e5.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://i0qneuct6ckm"
path="res://.godot/imported/bbcmicro.png-2a2941040baeb0fb0d6dbe56e0d29d48.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/bbcmicro.png"
dest_files=["res://.godot/imported/bbcmicro.png-2a2941040baeb0fb0d6dbe56e0d29d48.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://nbh5by7r7aqq"
path="res://.godot/imported/blank.png-684e0aa7002b4fb424e86e2c961939ae.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/blank.png"
dest_files=["res://.godot/imported/blank.png-684e0aa7002b4fb424e86e2c961939ae.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://de3kcswdyc3ai"
path="res://.godot/imported/c64.png-4716764c38064153694c3dedc7d4908e.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/c64.png"
dest_files=["res://.godot/imported/c64.png-4716764c38064153694c3dedc7d4908e.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bu7g2dfl5e36s"
path="res://.godot/imported/cdimono1.png-009385eb0242cbfa56aaca14b34f4356.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://assets/icons/banner/cdimono1.png"
dest_files=["res://.godot/imported/cdimono1.png-009385eb0242cbfa56aaca14b34f4356.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

Some files were not shown because too many files have changed in this diff Show more