├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── LICENSE_FRT.txt ├── LICENSE_GODOT.txt ├── README.md ├── art ├── controller.svg └── system.svg ├── docs ├── AUDIO_ISSUES.md └── VIDEO_ISSUES.md ├── example-images ├── audio-driver-dialog.png ├── drm-kms-driver-dialog.png ├── edit-override-dialog.png ├── emulationstation-retropie-menu.png ├── godot-engine-carbon-theme.png ├── godot-engine-pixel-theme.png ├── gpio-virtual-keyboard-dialog.png ├── install-themes-dialog.png ├── override-dialog.png ├── retropie-godot-banner.jpg ├── select-audio-driver-dialog.png ├── select-drm-kms-driver-dialog.png ├── select-themes-dialog.png ├── select-video-driver-gles2.png └── video-driver-dialog.png ├── godot-engine-settings.cfg ├── override.cfg ├── scriptmodules └── emulators │ └── godot-engine.sh ├── setup-godot-engine-scriptmodule.sh └── themes ├── carbon └── godot-engine │ ├── art │ ├── controller.svg │ └── system.svg │ └── theme.xml └── pixel └── godot-engine ├── console.png ├── logo.png └── theme.xml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_FRT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/LICENSE_FRT.txt -------------------------------------------------------------------------------- /LICENSE_GODOT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/LICENSE_GODOT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/README.md -------------------------------------------------------------------------------- /art/controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/art/controller.svg -------------------------------------------------------------------------------- /art/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/art/system.svg -------------------------------------------------------------------------------- /docs/AUDIO_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/docs/AUDIO_ISSUES.md -------------------------------------------------------------------------------- /docs/VIDEO_ISSUES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/docs/VIDEO_ISSUES.md -------------------------------------------------------------------------------- /example-images/audio-driver-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/audio-driver-dialog.png -------------------------------------------------------------------------------- /example-images/drm-kms-driver-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/drm-kms-driver-dialog.png -------------------------------------------------------------------------------- /example-images/edit-override-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/edit-override-dialog.png -------------------------------------------------------------------------------- /example-images/emulationstation-retropie-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/emulationstation-retropie-menu.png -------------------------------------------------------------------------------- /example-images/godot-engine-carbon-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/godot-engine-carbon-theme.png -------------------------------------------------------------------------------- /example-images/godot-engine-pixel-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/godot-engine-pixel-theme.png -------------------------------------------------------------------------------- /example-images/gpio-virtual-keyboard-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/gpio-virtual-keyboard-dialog.png -------------------------------------------------------------------------------- /example-images/install-themes-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/install-themes-dialog.png -------------------------------------------------------------------------------- /example-images/override-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/override-dialog.png -------------------------------------------------------------------------------- /example-images/retropie-godot-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/retropie-godot-banner.jpg -------------------------------------------------------------------------------- /example-images/select-audio-driver-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/select-audio-driver-dialog.png -------------------------------------------------------------------------------- /example-images/select-drm-kms-driver-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/select-drm-kms-driver-dialog.png -------------------------------------------------------------------------------- /example-images/select-themes-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/select-themes-dialog.png -------------------------------------------------------------------------------- /example-images/select-video-driver-gles2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/select-video-driver-gles2.png -------------------------------------------------------------------------------- /example-images/video-driver-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/example-images/video-driver-dialog.png -------------------------------------------------------------------------------- /godot-engine-settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/godot-engine-settings.cfg -------------------------------------------------------------------------------- /override.cfg: -------------------------------------------------------------------------------- 1 | [audio] 2 | mix_rate=44100 3 | output_latency=15 4 | -------------------------------------------------------------------------------- /scriptmodules/emulators/godot-engine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/scriptmodules/emulators/godot-engine.sh -------------------------------------------------------------------------------- /setup-godot-engine-scriptmodule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/setup-godot-engine-scriptmodule.sh -------------------------------------------------------------------------------- /themes/carbon/godot-engine/art/controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/themes/carbon/godot-engine/art/controller.svg -------------------------------------------------------------------------------- /themes/carbon/godot-engine/art/system.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/themes/carbon/godot-engine/art/system.svg -------------------------------------------------------------------------------- /themes/carbon/godot-engine/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/themes/carbon/godot-engine/theme.xml -------------------------------------------------------------------------------- /themes/pixel/godot-engine/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/themes/pixel/godot-engine/console.png -------------------------------------------------------------------------------- /themes/pixel/godot-engine/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/themes/pixel/godot-engine/logo.png -------------------------------------------------------------------------------- /themes/pixel/godot-engine/theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiulit/RetroPie-Godot-Engine-Emulator/HEAD/themes/pixel/godot-engine/theme.xml --------------------------------------------------------------------------------