// the find
sideeffects/HoudiniEngineForUnreal
Houdini Engine Plugin for Unreal Engine.
Official SideFX plugin that connects Houdini's procedural cooking engine to Unreal Engine, letting artists adjust HDA parameters interactively in the editor without baking first. It's the bridge between Houdini's node-based procedural pipeline and UE5's runtime — useful for terrain generation, instancing, chaos physics setups, and anything else you'd build as an HDA. Requires a licensed Houdini install on the machine running the editor.
The scope of translator coverage is genuinely impressive — dedicated translators for skeletal meshes, landscapes, splines, foliage, geometry collections, data tables, PCG, and PDG workflows, not just static meshes. Async cooking runs in a separate thread so the editor stays responsive while heavy HDAs cook. The Python API surface (15+ example scripts in Content/Python) means pipeline TDs can automate batch baking and asset processing without touching C++. Active maintenance with a push as recently as yesterday and explicit UE5.5/5.6/5.7 support.
Linux is officially unsupported — you can build from source and it might work, but SideFX won't help when it doesn't. The PCG integration depends on Epic's PCG plugin which is still marked experimental, so the recommended path for Houdini 21.0 adds an experimental dependency to what is otherwise a production tool. Version matching between Houdini and the plugin is strict and manual — the build number is hardcoded in Build.cs and a mismatch produces confusing failures, not a clear error. Test coverage is minimal: there's one test file (HoudiniCoreTests.cpp) for a codebase spanning 150+ source files.