├── .gitignore ├── LICENSE ├── README.md ├── default_env.tres ├── dofshader.shader ├── dofshadermat.tres ├── example └── img.png ├── icon.png ├── icon.png.import ├── main.tscn ├── particledof_tex.png ├── particledof_tex.png.import └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/README.md -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/default_env.tres -------------------------------------------------------------------------------- /dofshader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/dofshader.shader -------------------------------------------------------------------------------- /dofshadermat.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/dofshadermat.tres -------------------------------------------------------------------------------- /example/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/example/img.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/icon.png.import -------------------------------------------------------------------------------- /main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/main.tscn -------------------------------------------------------------------------------- /particledof_tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/particledof_tex.png -------------------------------------------------------------------------------- /particledof_tex.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/particledof_tex.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bauxitedev/godot-particle-dof/HEAD/project.godot --------------------------------------------------------------------------------