├── .gitattributes ├── Godot3 ├── .gitignore ├── 3D Vertical Dissolve Object Space.shader ├── 3D Vertical Dissolve Object Space.tscn ├── LICENCE ├── README.md ├── default_env.tres ├── icon.png ├── project.godot └── resources │ ├── Godot_icon.svg │ ├── noise.tres │ ├── suzanne.obj │ ├── texture1.png │ ├── texture2.png │ └── transparent.png ├── Godot4 ├── .gitattributes ├── .gitignore ├── 3D Dissolve Object Space with Direction.tscn ├── 3D Dissolve Object Space.tscn ├── M_ObjectSpaceDissolve.tres ├── M_ObjectSpaceDissolveWithDirection.tres ├── ObjectSpaceDissolve.gdshader ├── ObjectSpaceDissolveWithDirection.gdshader ├── icon.svg ├── icon.svg.import ├── project.godot └── resources │ ├── Godot_icon.svg │ ├── Godot_icon.svg.import │ ├── noise.tres │ ├── suzanne.obj │ ├── suzanne.obj.import │ ├── texture1.png │ ├── texture1.png.import │ ├── texture2.png │ ├── texture2.png.import │ ├── transparent.png │ └── transparent.png.import ├── README.md └── doc ├── dissolve-godot3-rotate.mp4 ├── dissolve-godot3.mp4 ├── dissolve-godot4-with-direction.mp4 └── dissolve-godot4.mp4 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/.gitattributes -------------------------------------------------------------------------------- /Godot3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/.gitignore -------------------------------------------------------------------------------- /Godot3/3D Vertical Dissolve Object Space.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/3D Vertical Dissolve Object Space.shader -------------------------------------------------------------------------------- /Godot3/3D Vertical Dissolve Object Space.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/3D Vertical Dissolve Object Space.tscn -------------------------------------------------------------------------------- /Godot3/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/LICENCE -------------------------------------------------------------------------------- /Godot3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/README.md -------------------------------------------------------------------------------- /Godot3/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/default_env.tres -------------------------------------------------------------------------------- /Godot3/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/icon.png -------------------------------------------------------------------------------- /Godot3/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/project.godot -------------------------------------------------------------------------------- /Godot3/resources/Godot_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/resources/Godot_icon.svg -------------------------------------------------------------------------------- /Godot3/resources/noise.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/resources/noise.tres -------------------------------------------------------------------------------- /Godot3/resources/suzanne.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/resources/suzanne.obj -------------------------------------------------------------------------------- /Godot3/resources/texture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/resources/texture1.png -------------------------------------------------------------------------------- /Godot3/resources/texture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/resources/texture2.png -------------------------------------------------------------------------------- /Godot3/resources/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot3/resources/transparent.png -------------------------------------------------------------------------------- /Godot4/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/.gitattributes -------------------------------------------------------------------------------- /Godot4/.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /Godot4/3D Dissolve Object Space with Direction.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/3D Dissolve Object Space with Direction.tscn -------------------------------------------------------------------------------- /Godot4/3D Dissolve Object Space.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/3D Dissolve Object Space.tscn -------------------------------------------------------------------------------- /Godot4/M_ObjectSpaceDissolve.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/M_ObjectSpaceDissolve.tres -------------------------------------------------------------------------------- /Godot4/M_ObjectSpaceDissolveWithDirection.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/M_ObjectSpaceDissolveWithDirection.tres -------------------------------------------------------------------------------- /Godot4/ObjectSpaceDissolve.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/ObjectSpaceDissolve.gdshader -------------------------------------------------------------------------------- /Godot4/ObjectSpaceDissolveWithDirection.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/ObjectSpaceDissolveWithDirection.gdshader -------------------------------------------------------------------------------- /Godot4/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/icon.svg -------------------------------------------------------------------------------- /Godot4/icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/icon.svg.import -------------------------------------------------------------------------------- /Godot4/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/project.godot -------------------------------------------------------------------------------- /Godot4/resources/Godot_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/resources/Godot_icon.svg -------------------------------------------------------------------------------- /Godot4/resources/Godot_icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/resources/Godot_icon.svg.import -------------------------------------------------------------------------------- /Godot4/resources/noise.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/resources/noise.tres -------------------------------------------------------------------------------- /Godot4/resources/suzanne.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/resources/suzanne.obj -------------------------------------------------------------------------------- /Godot4/resources/suzanne.obj.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/resources/suzanne.obj.import -------------------------------------------------------------------------------- /Godot4/resources/texture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/resources/texture1.png -------------------------------------------------------------------------------- /Godot4/resources/texture1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/resources/texture1.png.import -------------------------------------------------------------------------------- /Godot4/resources/texture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/resources/texture2.png -------------------------------------------------------------------------------- /Godot4/resources/texture2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/resources/texture2.png.import -------------------------------------------------------------------------------- /Godot4/resources/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/resources/transparent.png -------------------------------------------------------------------------------- /Godot4/resources/transparent.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/Godot4/resources/transparent.png.import -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/README.md -------------------------------------------------------------------------------- /doc/dissolve-godot3-rotate.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/doc/dissolve-godot3-rotate.mp4 -------------------------------------------------------------------------------- /doc/dissolve-godot3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/doc/dissolve-godot3.mp4 -------------------------------------------------------------------------------- /doc/dissolve-godot4-with-direction.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/doc/dissolve-godot4-with-direction.mp4 -------------------------------------------------------------------------------- /doc/dissolve-godot4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfredbaudisch/GodotShaderCollection/HEAD/doc/dissolve-godot4.mp4 --------------------------------------------------------------------------------