├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── icon.svg ├── icon.svg.import ├── main.tscn ├── particles.gd └── project.godot /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ark2000/fancy-particles/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Godot 4+ specific ignores 2 | .godot/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ark2000/fancy-particles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ark2000/fancy-particles/HEAD/README.md -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ark2000/fancy-particles/HEAD/icon.svg -------------------------------------------------------------------------------- /icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ark2000/fancy-particles/HEAD/icon.svg.import -------------------------------------------------------------------------------- /main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ark2000/fancy-particles/HEAD/main.tscn -------------------------------------------------------------------------------- /particles.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ark2000/fancy-particles/HEAD/particles.gd -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ark2000/fancy-particles/HEAD/project.godot --------------------------------------------------------------------------------