├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── source ├── Assets ├── Fonts │ └── Inter │ │ ├── Inter-VariableFont_slnt,wght.ttf │ │ ├── Inter-VariableFont_slnt,wght.ttf.import │ │ ├── OFL.txt │ │ ├── README.txt │ │ └── static │ │ ├── Inter-Black.ttf │ │ ├── Inter-Black.ttf.import │ │ ├── Inter-Bold.ttf │ │ ├── Inter-Bold.ttf.import │ │ ├── Inter-ExtraBold.ttf │ │ ├── Inter-ExtraBold.ttf.import │ │ ├── Inter-ExtraLight.ttf │ │ ├── Inter-ExtraLight.ttf.import │ │ ├── Inter-Light.ttf │ │ ├── Inter-Light.ttf.import │ │ ├── Inter-Medium.ttf │ │ ├── Inter-Medium.ttf.import │ │ ├── Inter-Regular.ttf │ │ ├── Inter-Regular.ttf.import │ │ ├── Inter-SemiBold.ttf │ │ ├── Inter-SemiBold.ttf.import │ │ ├── Inter-Thin.ttf │ │ └── Inter-Thin.ttf.import ├── Materials │ ├── GasGiant.gdshader │ ├── GasGiant.material │ ├── GasGiant.material.depren │ ├── Venus.gdshader │ ├── Venus.material │ └── Venus.material.depren └── Textures │ ├── 2x2.png │ ├── 2x2.png.import │ ├── Background.png │ ├── Background.png.import │ ├── Mercury_512.png │ ├── Mercury_512.png.import │ ├── Neptune_512x256.png │ ├── Neptune_512x256.png.import │ ├── Venus_512x256.png │ └── Venus_512x256.png.import ├── Game.tscn ├── Scenes ├── Planets │ ├── GasGiant.tscn │ ├── LightRotate.gd │ └── Venus.tscn └── Title │ ├── LoadingAnimation.gd │ ├── LoadingAnimation.tscn │ ├── Sprites │ ├── planet.png │ ├── planet.png.import │ ├── sun.png │ ├── sun.png.import │ ├── tail.png │ └── tail.png.import │ ├── Title.gd │ └── Title.tscn ├── Singletons └── Loader.gd ├── icon.svg ├── icon.svg.import ├── icon_monochrome_dark.svg ├── icon_monochrome_dark.svg.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/README.md -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/Inter-VariableFont_slnt,wght.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/Inter-VariableFont_slnt,wght.ttf -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/Inter-VariableFont_slnt,wght.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/Inter-VariableFont_slnt,wght.ttf.import -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/OFL.txt -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/README.txt -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Black.ttf -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Black.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Black.ttf.import -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Bold.ttf -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Bold.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Bold.ttf.import -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-ExtraBold.ttf -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-ExtraBold.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-ExtraBold.ttf.import -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-ExtraLight.ttf -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-ExtraLight.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-ExtraLight.ttf.import -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Light.ttf -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Light.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Light.ttf.import -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Medium.ttf -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Medium.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Medium.ttf.import -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Regular.ttf -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Regular.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Regular.ttf.import -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-SemiBold.ttf -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-SemiBold.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-SemiBold.ttf.import -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Thin.ttf -------------------------------------------------------------------------------- /source/Assets/Fonts/Inter/static/Inter-Thin.ttf.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Fonts/Inter/static/Inter-Thin.ttf.import -------------------------------------------------------------------------------- /source/Assets/Materials/GasGiant.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Materials/GasGiant.gdshader -------------------------------------------------------------------------------- /source/Assets/Materials/GasGiant.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Materials/GasGiant.material -------------------------------------------------------------------------------- /source/Assets/Materials/GasGiant.material.depren: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Materials/GasGiant.material.depren -------------------------------------------------------------------------------- /source/Assets/Materials/Venus.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Materials/Venus.gdshader -------------------------------------------------------------------------------- /source/Assets/Materials/Venus.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Materials/Venus.material -------------------------------------------------------------------------------- /source/Assets/Materials/Venus.material.depren: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Materials/Venus.material.depren -------------------------------------------------------------------------------- /source/Assets/Textures/2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Textures/2x2.png -------------------------------------------------------------------------------- /source/Assets/Textures/2x2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Textures/2x2.png.import -------------------------------------------------------------------------------- /source/Assets/Textures/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Textures/Background.png -------------------------------------------------------------------------------- /source/Assets/Textures/Background.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Textures/Background.png.import -------------------------------------------------------------------------------- /source/Assets/Textures/Mercury_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Textures/Mercury_512.png -------------------------------------------------------------------------------- /source/Assets/Textures/Mercury_512.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Textures/Mercury_512.png.import -------------------------------------------------------------------------------- /source/Assets/Textures/Neptune_512x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Textures/Neptune_512x256.png -------------------------------------------------------------------------------- /source/Assets/Textures/Neptune_512x256.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Textures/Neptune_512x256.png.import -------------------------------------------------------------------------------- /source/Assets/Textures/Venus_512x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Textures/Venus_512x256.png -------------------------------------------------------------------------------- /source/Assets/Textures/Venus_512x256.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Assets/Textures/Venus_512x256.png.import -------------------------------------------------------------------------------- /source/Game.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Game.tscn -------------------------------------------------------------------------------- /source/Scenes/Planets/GasGiant.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Planets/GasGiant.tscn -------------------------------------------------------------------------------- /source/Scenes/Planets/LightRotate.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Planets/LightRotate.gd -------------------------------------------------------------------------------- /source/Scenes/Planets/Venus.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Planets/Venus.tscn -------------------------------------------------------------------------------- /source/Scenes/Title/LoadingAnimation.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Title/LoadingAnimation.gd -------------------------------------------------------------------------------- /source/Scenes/Title/LoadingAnimation.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Title/LoadingAnimation.tscn -------------------------------------------------------------------------------- /source/Scenes/Title/Sprites/planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Title/Sprites/planet.png -------------------------------------------------------------------------------- /source/Scenes/Title/Sprites/planet.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Title/Sprites/planet.png.import -------------------------------------------------------------------------------- /source/Scenes/Title/Sprites/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Title/Sprites/sun.png -------------------------------------------------------------------------------- /source/Scenes/Title/Sprites/sun.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Title/Sprites/sun.png.import -------------------------------------------------------------------------------- /source/Scenes/Title/Sprites/tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Title/Sprites/tail.png -------------------------------------------------------------------------------- /source/Scenes/Title/Sprites/tail.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Title/Sprites/tail.png.import -------------------------------------------------------------------------------- /source/Scenes/Title/Title.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Title/Title.gd -------------------------------------------------------------------------------- /source/Scenes/Title/Title.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Scenes/Title/Title.tscn -------------------------------------------------------------------------------- /source/Singletons/Loader.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/Singletons/Loader.gd -------------------------------------------------------------------------------- /source/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/icon.svg -------------------------------------------------------------------------------- /source/icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/icon.svg.import -------------------------------------------------------------------------------- /source/icon_monochrome_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/icon_monochrome_dark.svg -------------------------------------------------------------------------------- /source/icon_monochrome_dark.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/icon_monochrome_dark.svg.import -------------------------------------------------------------------------------- /source/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMeadow1/Enterprise-splash-screen-loading/HEAD/source/project.godot --------------------------------------------------------------------------------