├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── data └── face_shadows_node_group.json └── npr_face_shader ├── __init__.py ├── functions.py ├── interface.py ├── nodes.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmuMan/npr-face-shader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmuMan/npr-face-shader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmuMan/npr-face-shader/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmuMan/npr-face-shader/HEAD/__init__.py -------------------------------------------------------------------------------- /data/face_shadows_node_group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmuMan/npr-face-shader/HEAD/data/face_shadows_node_group.json -------------------------------------------------------------------------------- /npr_face_shader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /npr_face_shader/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmuMan/npr-face-shader/HEAD/npr_face_shader/functions.py -------------------------------------------------------------------------------- /npr_face_shader/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmuMan/npr-face-shader/HEAD/npr_face_shader/interface.py -------------------------------------------------------------------------------- /npr_face_shader/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmuMan/npr-face-shader/HEAD/npr_face_shader/nodes.py -------------------------------------------------------------------------------- /npr_face_shader/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmuMan/npr-face-shader/HEAD/npr_face_shader/utils.py --------------------------------------------------------------------------------