├── .gitignore ├── LICENSE.md ├── README.md ├── __init__.py ├── load_shader_map.py ├── save_shader_map.py ├── textures ├── 38830a2fd2e38a64fe5fd520c363ff8b.jpg ├── ScratchedGold01_4K_Normal.png ├── rui-figueiredo-micro-normal-map.jpg └── seamless-human-skin_640v640.jpg ├── ue_shader_script_compositing_json.json └── ue_shader_script_default_presets_json.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimNyan/UEShaderScript/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimNyan/UEShaderScript/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimNyan/UEShaderScript/HEAD/__init__.py -------------------------------------------------------------------------------- /load_shader_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimNyan/UEShaderScript/HEAD/load_shader_map.py -------------------------------------------------------------------------------- /save_shader_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimNyan/UEShaderScript/HEAD/save_shader_map.py -------------------------------------------------------------------------------- /textures/38830a2fd2e38a64fe5fd520c363ff8b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimNyan/UEShaderScript/HEAD/textures/38830a2fd2e38a64fe5fd520c363ff8b.jpg -------------------------------------------------------------------------------- /textures/ScratchedGold01_4K_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimNyan/UEShaderScript/HEAD/textures/ScratchedGold01_4K_Normal.png -------------------------------------------------------------------------------- /textures/rui-figueiredo-micro-normal-map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimNyan/UEShaderScript/HEAD/textures/rui-figueiredo-micro-normal-map.jpg -------------------------------------------------------------------------------- /textures/seamless-human-skin_640v640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimNyan/UEShaderScript/HEAD/textures/seamless-human-skin_640v640.jpg -------------------------------------------------------------------------------- /ue_shader_script_compositing_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimNyan/UEShaderScript/HEAD/ue_shader_script_compositing_json.json -------------------------------------------------------------------------------- /ue_shader_script_default_presets_json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnimNyan/UEShaderScript/HEAD/ue_shader_script_default_presets_json.json --------------------------------------------------------------------------------