├── .gitignore ├── .import ├── .gdignore ├── demo.png-ae37efe57a64cd93633a33db4bb53f9e.md5 ├── demo.png-ae37efe57a64cd93633a33db4bb53f9e.stex ├── icon.png-487276ed1e3a0c39cad0279d744ee560.md5 └── icon.png-487276ed1e3a0c39cad0279d744ee560.stex ├── LICENSE ├── README.md ├── default_env.tres ├── demo.gif ├── demo.png ├── demo.png.import ├── icon.png ├── icon.png.import ├── project.godot └── test.tscn /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/.gitignore -------------------------------------------------------------------------------- /.import/.gdignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.import/demo.png-ae37efe57a64cd93633a33db4bb53f9e.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/.import/demo.png-ae37efe57a64cd93633a33db4bb53f9e.md5 -------------------------------------------------------------------------------- /.import/demo.png-ae37efe57a64cd93633a33db4bb53f9e.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/.import/demo.png-ae37efe57a64cd93633a33db4bb53f9e.stex -------------------------------------------------------------------------------- /.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.md5 -------------------------------------------------------------------------------- /.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/README.md -------------------------------------------------------------------------------- /default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/default_env.tres -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/demo.gif -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/demo.png -------------------------------------------------------------------------------- /demo.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/demo.png.import -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/icon.png.import -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/project.godot -------------------------------------------------------------------------------- /test.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CassianoBelniak/godot-sketch-shader/HEAD/test.tscn --------------------------------------------------------------------------------