├── .gitattributes ├── .gitignore ├── CONTRIBUTORS.md ├── Images ├── Animation.gif ├── base_noise.png ├── base_noise.png.import ├── day_sky.png ├── day_sky.png.import ├── distort.png ├── distort.png.import ├── night_sky.png └── night_sky.png.import ├── README.md ├── SkyShader ├── Main.gd ├── StylizedSky.gdshader └── StylizedSkyMaterial.tres ├── Textures ├── UV_texture.jpg ├── UV_texture.jpg.import ├── Voronoi.png ├── Voronoi.png.import ├── secondary_noise.png └── secondary_noise.png.import ├── icon.png ├── icon.png.import ├── main.tscn └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Images/Animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Images/Animation.gif -------------------------------------------------------------------------------- /Images/base_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Images/base_noise.png -------------------------------------------------------------------------------- /Images/base_noise.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Images/base_noise.png.import -------------------------------------------------------------------------------- /Images/day_sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Images/day_sky.png -------------------------------------------------------------------------------- /Images/day_sky.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Images/day_sky.png.import -------------------------------------------------------------------------------- /Images/distort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Images/distort.png -------------------------------------------------------------------------------- /Images/distort.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Images/distort.png.import -------------------------------------------------------------------------------- /Images/night_sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Images/night_sky.png -------------------------------------------------------------------------------- /Images/night_sky.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Images/night_sky.png.import -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/README.md -------------------------------------------------------------------------------- /SkyShader/Main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/SkyShader/Main.gd -------------------------------------------------------------------------------- /SkyShader/StylizedSky.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/SkyShader/StylizedSky.gdshader -------------------------------------------------------------------------------- /SkyShader/StylizedSkyMaterial.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/SkyShader/StylizedSkyMaterial.tres -------------------------------------------------------------------------------- /Textures/UV_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Textures/UV_texture.jpg -------------------------------------------------------------------------------- /Textures/UV_texture.jpg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Textures/UV_texture.jpg.import -------------------------------------------------------------------------------- /Textures/Voronoi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Textures/Voronoi.png -------------------------------------------------------------------------------- /Textures/Voronoi.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Textures/Voronoi.png.import -------------------------------------------------------------------------------- /Textures/secondary_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Textures/secondary_noise.png -------------------------------------------------------------------------------- /Textures/secondary_noise.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/Textures/secondary_noise.png.import -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/icon.png.import -------------------------------------------------------------------------------- /main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/main.tscn -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paddy-exe/GodotStylizedSkyShader/HEAD/project.godot --------------------------------------------------------------------------------