└── addons └── zylann.atmosphere ├── LICENSE.md ├── blue_noise.png ├── blue_noise.png.import ├── demo ├── avatar.gd ├── flying_avatar.tscn ├── mouse_look.gd ├── planet_atmosphere_test.tscn ├── space_background.webp └── space_background.webp.import ├── noise_cubemap.gd ├── optical_depth_baker.gd ├── planet_atmosphere.gd ├── planet_atmosphere.tscn ├── shaders ├── include │ ├── atmosphere_common.gdshaderinc │ ├── atmosphere_funcs_v1.gdshaderinc │ ├── atmosphere_funcs_v2.gdshaderinc │ ├── cloud_funcs.gdshaderinc │ ├── planet_atmosphere_main.gdshaderinc │ ├── planet_common.gdshaderinc │ └── util.gdshaderinc ├── optical_depth.gdshader ├── planet_atmosphere_clouds.gdshader ├── planet_atmosphere_clouds_high.gdshader ├── planet_atmosphere_clouds_high_rm.gdshader ├── planet_atmosphere_no_clouds.gdshader ├── planet_atmosphere_v1_clouds.gdshader ├── planet_atmosphere_v1_clouds_high.gdshader └── planet_atmosphere_v1_no_clouds.gdshader ├── tools ├── noise_cubemap_inspector_plugin.gd ├── plugin.cfg └── plugin.gd ├── white.png └── white.png.import /addons/zylann.atmosphere/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/LICENSE.md -------------------------------------------------------------------------------- /addons/zylann.atmosphere/blue_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/blue_noise.png -------------------------------------------------------------------------------- /addons/zylann.atmosphere/blue_noise.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/blue_noise.png.import -------------------------------------------------------------------------------- /addons/zylann.atmosphere/demo/avatar.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/demo/avatar.gd -------------------------------------------------------------------------------- /addons/zylann.atmosphere/demo/flying_avatar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/demo/flying_avatar.tscn -------------------------------------------------------------------------------- /addons/zylann.atmosphere/demo/mouse_look.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/demo/mouse_look.gd -------------------------------------------------------------------------------- /addons/zylann.atmosphere/demo/planet_atmosphere_test.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/demo/planet_atmosphere_test.tscn -------------------------------------------------------------------------------- /addons/zylann.atmosphere/demo/space_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/demo/space_background.webp -------------------------------------------------------------------------------- /addons/zylann.atmosphere/demo/space_background.webp.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/demo/space_background.webp.import -------------------------------------------------------------------------------- /addons/zylann.atmosphere/noise_cubemap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/noise_cubemap.gd -------------------------------------------------------------------------------- /addons/zylann.atmosphere/optical_depth_baker.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/optical_depth_baker.gd -------------------------------------------------------------------------------- /addons/zylann.atmosphere/planet_atmosphere.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/planet_atmosphere.gd -------------------------------------------------------------------------------- /addons/zylann.atmosphere/planet_atmosphere.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/planet_atmosphere.tscn -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/include/atmosphere_common.gdshaderinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/include/atmosphere_common.gdshaderinc -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/include/atmosphere_funcs_v1.gdshaderinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/include/atmosphere_funcs_v1.gdshaderinc -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/include/atmosphere_funcs_v2.gdshaderinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/include/atmosphere_funcs_v2.gdshaderinc -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/include/cloud_funcs.gdshaderinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/include/cloud_funcs.gdshaderinc -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/include/planet_atmosphere_main.gdshaderinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/include/planet_atmosphere_main.gdshaderinc -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/include/planet_common.gdshaderinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/include/planet_common.gdshaderinc -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/include/util.gdshaderinc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/include/util.gdshaderinc -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/optical_depth.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/optical_depth.gdshader -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/planet_atmosphere_clouds.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/planet_atmosphere_clouds.gdshader -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/planet_atmosphere_clouds_high.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/planet_atmosphere_clouds_high.gdshader -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/planet_atmosphere_clouds_high_rm.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/planet_atmosphere_clouds_high_rm.gdshader -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/planet_atmosphere_no_clouds.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/planet_atmosphere_no_clouds.gdshader -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/planet_atmosphere_v1_clouds.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/planet_atmosphere_v1_clouds.gdshader -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/planet_atmosphere_v1_clouds_high.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/planet_atmosphere_v1_clouds_high.gdshader -------------------------------------------------------------------------------- /addons/zylann.atmosphere/shaders/planet_atmosphere_v1_no_clouds.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/shaders/planet_atmosphere_v1_no_clouds.gdshader -------------------------------------------------------------------------------- /addons/zylann.atmosphere/tools/noise_cubemap_inspector_plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/tools/noise_cubemap_inspector_plugin.gd -------------------------------------------------------------------------------- /addons/zylann.atmosphere/tools/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/tools/plugin.cfg -------------------------------------------------------------------------------- /addons/zylann.atmosphere/tools/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/tools/plugin.gd -------------------------------------------------------------------------------- /addons/zylann.atmosphere/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/white.png -------------------------------------------------------------------------------- /addons/zylann.atmosphere/white.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zylann/godot_atmosphere_shader/HEAD/addons/zylann.atmosphere/white.png.import --------------------------------------------------------------------------------