├── .gitattributes ├── .gitignore ├── LICENSE ├── Main.gd ├── Main.tscn ├── README.md ├── TexturesCom_SoilCracked0079_1_seamless_N.png ├── TexturesCom_SoilCracked0079_1_seamless_N.png.import ├── TexturesCom_SoilCracked0079_1_seamless_S.jpg ├── TexturesCom_SoilCracked0079_1_seamless_S.jpg.import ├── addons └── Sky │ ├── sky.png │ ├── sky.png.import │ ├── sky_render.shader │ ├── sky_render.tscn │ ├── sky_texture.gd │ └── sky_texture.tscn ├── camera_control.gd ├── default_env.tres ├── icon.png ├── icon.png.import ├── milkywaypan_brunier_2048.jpg ├── milkywaypan_brunier_2048.jpg.import └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/Main.gd -------------------------------------------------------------------------------- /Main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/Main.tscn -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/README.md -------------------------------------------------------------------------------- /TexturesCom_SoilCracked0079_1_seamless_N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/TexturesCom_SoilCracked0079_1_seamless_N.png -------------------------------------------------------------------------------- /TexturesCom_SoilCracked0079_1_seamless_N.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/TexturesCom_SoilCracked0079_1_seamless_N.png.import -------------------------------------------------------------------------------- /TexturesCom_SoilCracked0079_1_seamless_S.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/TexturesCom_SoilCracked0079_1_seamless_S.jpg -------------------------------------------------------------------------------- /TexturesCom_SoilCracked0079_1_seamless_S.jpg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/TexturesCom_SoilCracked0079_1_seamless_S.jpg.import -------------------------------------------------------------------------------- /addons/Sky/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/addons/Sky/sky.png -------------------------------------------------------------------------------- /addons/Sky/sky.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/addons/Sky/sky.png.import -------------------------------------------------------------------------------- /addons/Sky/sky_render.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/addons/Sky/sky_render.shader -------------------------------------------------------------------------------- /addons/Sky/sky_render.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/addons/Sky/sky_render.tscn -------------------------------------------------------------------------------- /addons/Sky/sky_texture.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/addons/Sky/sky_texture.gd -------------------------------------------------------------------------------- /addons/Sky/sky_texture.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/addons/Sky/sky_texture.tscn -------------------------------------------------------------------------------- /camera_control.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/camera_control.gd -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/default_env.tres -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/icon.png.import -------------------------------------------------------------------------------- /milkywaypan_brunier_2048.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/milkywaypan_brunier_2048.jpg -------------------------------------------------------------------------------- /milkywaypan_brunier_2048.jpg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/milkywaypan_brunier_2048.jpg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BastiaanOlij/godot-sky-asset/HEAD/project.godot --------------------------------------------------------------------------------