-
Notifications
You must be signed in to change notification settings - Fork 0
AssetBridge
AzureDoom edited this page Jun 8, 2026
·
1 revision
The plugin automatically adds the AssetBridge library dependency:
dependencies {
implementation 'com.azuredoom.hytale:hytale-asset-editor-runtime:0.2.0'
}This dependency is:
- added automatically via the
hytaleBundledRuntimeconfiguration - available on
implementation
By default, the runtime is bundled into your mod jar (similar to a lightweight shading step without requiring an external plugin).
You can disable this behavior:
hytaleTools {
bundleAssetEditorRuntime = false
}When disabled:
- the dependency is still available at
compile/runtime - it is not included inside the final
jar
You can override the default version:
dependencies {
hytaleBundledRuntime 'com.azuredoom.hytale:hytale-asset-editor-runtime:0.x.0'
}Declaring a dependency manually will replace the plugin’s default.