├── .gitignore ├── Assets ├── Sphere │ ├── Base.png │ ├── Shade.png │ └── Sphere.mesh ├── Spree │ ├── Spree.obj │ ├── accent.material │ ├── bellybutton_unshaded.material │ ├── black_unshaded.material │ ├── boots.material │ ├── clavicle_unshaded.material │ ├── clothes.material │ ├── hair.material │ ├── iris_dark_unshaded.material │ ├── iris_highlight_unshaded.material │ ├── iris_light_unshaded.material │ ├── iris_mid_unshaded.material │ ├── libs_unshaded.material │ ├── nose.material │ ├── skin.material │ └── white_unshaded.material ├── Tree │ ├── Tree.obj │ ├── black_unshaded.material │ ├── leaf.material │ └── wood.material └── TwistedTorus │ ├── TwistedTorus.mesh │ └── twistedtorus.material ├── LICENSE.txt ├── README.md ├── Scene └── Game.tscn ├── Scripts └── rotate_mesh.gd ├── Shaders ├── cel.shader └── outline.shader ├── icon.png ├── preview.png └── project.godot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Sphere/Base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Sphere/Base.png -------------------------------------------------------------------------------- /Assets/Sphere/Shade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Sphere/Shade.png -------------------------------------------------------------------------------- /Assets/Sphere/Sphere.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Sphere/Sphere.mesh -------------------------------------------------------------------------------- /Assets/Spree/Spree.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/Spree.obj -------------------------------------------------------------------------------- /Assets/Spree/accent.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/accent.material -------------------------------------------------------------------------------- /Assets/Spree/bellybutton_unshaded.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/bellybutton_unshaded.material -------------------------------------------------------------------------------- /Assets/Spree/black_unshaded.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/black_unshaded.material -------------------------------------------------------------------------------- /Assets/Spree/boots.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/boots.material -------------------------------------------------------------------------------- /Assets/Spree/clavicle_unshaded.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/clavicle_unshaded.material -------------------------------------------------------------------------------- /Assets/Spree/clothes.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/clothes.material -------------------------------------------------------------------------------- /Assets/Spree/hair.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/hair.material -------------------------------------------------------------------------------- /Assets/Spree/iris_dark_unshaded.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/iris_dark_unshaded.material -------------------------------------------------------------------------------- /Assets/Spree/iris_highlight_unshaded.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/iris_highlight_unshaded.material -------------------------------------------------------------------------------- /Assets/Spree/iris_light_unshaded.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/iris_light_unshaded.material -------------------------------------------------------------------------------- /Assets/Spree/iris_mid_unshaded.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/iris_mid_unshaded.material -------------------------------------------------------------------------------- /Assets/Spree/libs_unshaded.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/libs_unshaded.material -------------------------------------------------------------------------------- /Assets/Spree/nose.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/nose.material -------------------------------------------------------------------------------- /Assets/Spree/skin.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/skin.material -------------------------------------------------------------------------------- /Assets/Spree/white_unshaded.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Spree/white_unshaded.material -------------------------------------------------------------------------------- /Assets/Tree/Tree.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Tree/Tree.obj -------------------------------------------------------------------------------- /Assets/Tree/black_unshaded.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Tree/black_unshaded.material -------------------------------------------------------------------------------- /Assets/Tree/leaf.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Tree/leaf.material -------------------------------------------------------------------------------- /Assets/Tree/wood.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/Tree/wood.material -------------------------------------------------------------------------------- /Assets/TwistedTorus/TwistedTorus.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/TwistedTorus/TwistedTorus.mesh -------------------------------------------------------------------------------- /Assets/TwistedTorus/twistedtorus.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Assets/TwistedTorus/twistedtorus.material -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/README.md -------------------------------------------------------------------------------- /Scene/Game.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Scene/Game.tscn -------------------------------------------------------------------------------- /Scripts/rotate_mesh.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Scripts/rotate_mesh.gd -------------------------------------------------------------------------------- /Shaders/cel.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Shaders/cel.shader -------------------------------------------------------------------------------- /Shaders/outline.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/Shaders/outline.shader -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/icon.png -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/preview.png -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EXPWorlds/Godot-Cel-Shader/HEAD/project.godot --------------------------------------------------------------------------------