├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── icon.png ├── icon.png.import ├── icon.svg ├── icon.svg.import ├── preview ├── sky_day.png ├── sky_day.png.import ├── sky_night.png └── sky_night.png.import ├── project.godot ├── readme.md └── sky ├── assets ├── shooting_star_sampler.png └── shooting_star_sampler.png.import ├── examples ├── day_sky.tres ├── night_sky.tres └── sky.tscn └── stylized_sky.gdshader /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/icon.png.import -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/icon.svg.import -------------------------------------------------------------------------------- /preview/sky_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/preview/sky_day.png -------------------------------------------------------------------------------- /preview/sky_day.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/preview/sky_day.png.import -------------------------------------------------------------------------------- /preview/sky_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/preview/sky_night.png -------------------------------------------------------------------------------- /preview/sky_night.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/preview/sky_night.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/project.godot -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/readme.md -------------------------------------------------------------------------------- /sky/assets/shooting_star_sampler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/sky/assets/shooting_star_sampler.png -------------------------------------------------------------------------------- /sky/assets/shooting_star_sampler.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/sky/assets/shooting_star_sampler.png.import -------------------------------------------------------------------------------- /sky/examples/day_sky.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/sky/examples/day_sky.tres -------------------------------------------------------------------------------- /sky/examples/night_sky.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/sky/examples/night_sky.tres -------------------------------------------------------------------------------- /sky/examples/sky.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/sky/examples/sky.tscn -------------------------------------------------------------------------------- /sky/stylized_sky.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gdquest-demos/godot-4-stylized-sky/HEAD/sky/stylized_sky.gdshader --------------------------------------------------------------------------------