├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── addons └── extremely_fast_atmosphere │ ├── atmosphere │ ├── atmosphere.gd │ ├── atmosphere.gd.uid │ ├── atmosphere.tscn │ ├── atmosphere_fbcosentino.gdshader │ └── atmosphere_fbcosentino.gdshader.uid │ ├── atmosphere_icon.png │ ├── atmosphere_icon.png.import │ ├── example │ ├── atmosphere_material_example.tres │ ├── example.tscn │ ├── nasa_blue_marble.png │ └── nasa_blue_marble.png.import │ ├── plugin.cfg │ ├── plugin.gd │ └── plugin.gd.uid ├── docs ├── .gdignore ├── asset_icon.png ├── atmosphere2.gif ├── atmosphere3.gif ├── image01.png ├── image02.png ├── image03.png ├── image04.png ├── image05.png ├── image06.png └── image07.png ├── icon.svg ├── icon.svg.import └── project.godot /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | /android/ 4 | *.bak -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/README.md -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/atmosphere/atmosphere.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/addons/extremely_fast_atmosphere/atmosphere/atmosphere.gd -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/atmosphere/atmosphere.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dke7hpi8qrng7 2 | -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/atmosphere/atmosphere.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/addons/extremely_fast_atmosphere/atmosphere/atmosphere.tscn -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/atmosphere/atmosphere_fbcosentino.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/addons/extremely_fast_atmosphere/atmosphere/atmosphere_fbcosentino.gdshader -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/atmosphere/atmosphere_fbcosentino.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://dsu80023m2ier 2 | -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/atmosphere_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/addons/extremely_fast_atmosphere/atmosphere_icon.png -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/atmosphere_icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/addons/extremely_fast_atmosphere/atmosphere_icon.png.import -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/example/atmosphere_material_example.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/addons/extremely_fast_atmosphere/example/atmosphere_material_example.tres -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/example/example.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/addons/extremely_fast_atmosphere/example/example.tscn -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/example/nasa_blue_marble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/addons/extremely_fast_atmosphere/example/nasa_blue_marble.png -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/example/nasa_blue_marble.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/addons/extremely_fast_atmosphere/example/nasa_blue_marble.png.import -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/addons/extremely_fast_atmosphere/plugin.cfg -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/addons/extremely_fast_atmosphere/plugin.gd -------------------------------------------------------------------------------- /addons/extremely_fast_atmosphere/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dmr6akojjs5hr 2 | -------------------------------------------------------------------------------- /docs/.gdignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/asset_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/docs/asset_icon.png -------------------------------------------------------------------------------- /docs/atmosphere2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/docs/atmosphere2.gif -------------------------------------------------------------------------------- /docs/atmosphere3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/docs/atmosphere3.gif -------------------------------------------------------------------------------- /docs/image01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/docs/image01.png -------------------------------------------------------------------------------- /docs/image02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/docs/image02.png -------------------------------------------------------------------------------- /docs/image03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/docs/image03.png -------------------------------------------------------------------------------- /docs/image04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/docs/image04.png -------------------------------------------------------------------------------- /docs/image05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/docs/image05.png -------------------------------------------------------------------------------- /docs/image06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/docs/image06.png -------------------------------------------------------------------------------- /docs/image07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/docs/image07.png -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/icon.svg.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fbcosentino/godot-extremely-fast-atmosphere/HEAD/project.godot --------------------------------------------------------------------------------