├── .gitignore ├── README.md ├── Resources └── Icon128.png ├── ShaderPatcher.uplugin └── Source └── ShaderPatcherEditor ├── Classes ├── HotShaderPatchCommandlet.cpp └── HotShaderPatchCommandlet.h ├── Private ├── ShaderPatch │ ├── FExportShaderPatchSettings.cpp │ ├── FlibShaderPatchHelper.cpp │ └── ShaderPatchProxy.cpp ├── ShaderPatcherEditor.cpp └── Slate │ └── SShaderPatchWidget.cpp ├── Public ├── ShaderPatch │ ├── FExportShaderPatchSettings.h │ ├── FlibShaderPatchHelper.h │ └── ShaderPatchProxy.h ├── ShaderPatcherEditor.h └── Slate │ └── SShaderPatchWidget.h └── ShaderPatcherEditor.Build.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /ShaderPatcher.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/ShaderPatcher.uplugin -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Classes/HotShaderPatchCommandlet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Classes/HotShaderPatchCommandlet.cpp -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Classes/HotShaderPatchCommandlet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Classes/HotShaderPatchCommandlet.h -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Private/ShaderPatch/FExportShaderPatchSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Private/ShaderPatch/FExportShaderPatchSettings.cpp -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Private/ShaderPatch/FlibShaderPatchHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Private/ShaderPatch/FlibShaderPatchHelper.cpp -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Private/ShaderPatch/ShaderPatchProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Private/ShaderPatch/ShaderPatchProxy.cpp -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Private/ShaderPatcherEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Private/ShaderPatcherEditor.cpp -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Private/Slate/SShaderPatchWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Private/Slate/SShaderPatchWidget.cpp -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Public/ShaderPatch/FExportShaderPatchSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Public/ShaderPatch/FExportShaderPatchSettings.h -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Public/ShaderPatch/FlibShaderPatchHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Public/ShaderPatch/FlibShaderPatchHelper.h -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Public/ShaderPatch/ShaderPatchProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Public/ShaderPatch/ShaderPatchProxy.h -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Public/ShaderPatcherEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Public/ShaderPatcherEditor.h -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/Public/Slate/SShaderPatchWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/Public/Slate/SShaderPatchWidget.h -------------------------------------------------------------------------------- /Source/ShaderPatcherEditor/ShaderPatcherEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hxhb/ShaderPatcherUE/HEAD/Source/ShaderPatcherEditor/ShaderPatcherEditor.Build.cs --------------------------------------------------------------------------------