Description
Hytalor - Asset Patcher
Hytalor is an asset patching framework designed to reduce mod conflicts by allowing multiple plugins to modify the same base game asset, without overwriting each other.
Instead of overwriting entire JSON files, Hytalor allows smaller patches which are merged together into a final asset at runtime.
This mod does nothing on its own!
Features
- Allows other mods to define Patch jsons, which are combined with the base game asset at runtime.
- Supports full hot-reload functionality, like any other asset.
Patch JSON
Each patch file targets a single base asset:
{
"_BaseAssetPath": "Server/Weathers/Zone1/Zone1_Sunny.json",
"Clouds": [
{
"_index": 0,
"_op": "merge",
"Speed": 0.7
}
]
}
More info, and Guides can be found on the GitHub
