├── .gitignore ├── LICENSE ├── README.md ├── background.ogv ├── background.ogv.uid ├── export_presets.cfg ├── fonts ├── DINish-Bold.otf ├── DINish-Bold.otf.import ├── DINish-BoldItalic.otf ├── DINish-BoldItalic.otf.import ├── DINish-Italic.otf ├── DINish-Italic.otf.import ├── DINish-Regular.otf └── DINish-Regular.otf.import ├── game_menu.gd ├── game_menu.gd.uid ├── game_menu.tscn ├── game_menu_theme.tres ├── icon.png ├── icon.png.import ├── icons ├── mute.svg ├── mute.svg.import ├── volume.svg └── volume.svg.import ├── launcher.gd ├── launcher.gd.uid ├── launcher.tscn ├── logo.png ├── logo.png.import ├── project.godot ├── translations.csv ├── translations.csv.import ├── translations.de.translation ├── translations.en.translation └── translations.ru.translation /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/README.md -------------------------------------------------------------------------------- /background.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/background.ogv -------------------------------------------------------------------------------- /background.ogv.uid: -------------------------------------------------------------------------------- 1 | uid://byg13qxyl34rf 2 | -------------------------------------------------------------------------------- /export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/export_presets.cfg -------------------------------------------------------------------------------- /fonts/DINish-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/fonts/DINish-Bold.otf -------------------------------------------------------------------------------- /fonts/DINish-Bold.otf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/fonts/DINish-Bold.otf.import -------------------------------------------------------------------------------- /fonts/DINish-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/fonts/DINish-BoldItalic.otf -------------------------------------------------------------------------------- /fonts/DINish-BoldItalic.otf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/fonts/DINish-BoldItalic.otf.import -------------------------------------------------------------------------------- /fonts/DINish-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/fonts/DINish-Italic.otf -------------------------------------------------------------------------------- /fonts/DINish-Italic.otf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/fonts/DINish-Italic.otf.import -------------------------------------------------------------------------------- /fonts/DINish-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/fonts/DINish-Regular.otf -------------------------------------------------------------------------------- /fonts/DINish-Regular.otf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/fonts/DINish-Regular.otf.import -------------------------------------------------------------------------------- /game_menu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/game_menu.gd -------------------------------------------------------------------------------- /game_menu.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bg3eyuq5y3ipx 2 | -------------------------------------------------------------------------------- /game_menu.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/game_menu.tscn -------------------------------------------------------------------------------- /game_menu_theme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/game_menu_theme.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/icon.png.import -------------------------------------------------------------------------------- /icons/mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/icons/mute.svg -------------------------------------------------------------------------------- /icons/mute.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/icons/mute.svg.import -------------------------------------------------------------------------------- /icons/volume.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/icons/volume.svg -------------------------------------------------------------------------------- /icons/volume.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/icons/volume.svg.import -------------------------------------------------------------------------------- /launcher.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/launcher.gd -------------------------------------------------------------------------------- /launcher.gd.uid: -------------------------------------------------------------------------------- 1 | uid://vpeeky5dcgfk 2 | -------------------------------------------------------------------------------- /launcher.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/launcher.tscn -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/logo.png -------------------------------------------------------------------------------- /logo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/logo.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/project.godot -------------------------------------------------------------------------------- /translations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/translations.csv -------------------------------------------------------------------------------- /translations.csv.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/translations.csv.import -------------------------------------------------------------------------------- /translations.de.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/translations.de.translation -------------------------------------------------------------------------------- /translations.en.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/translations.en.translation -------------------------------------------------------------------------------- /translations.ru.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HLANoVR/HLA-NoVR-Launcher/HEAD/translations.ru.translation --------------------------------------------------------------------------------