Skip to content

AssetBridge

AzureDoom edited this page Jun 8, 2026 · 1 revision

AssetBridge

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 hytaleBundledRuntime configuration
  • available on implementation

Bundling into the final jar

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

Overriding the runtime version

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.



Home | Task Reference | Troubleshooting

Clone this wiki locally