SideFX Houdini Meets Rust!
SideFx Houdini is a world leading software for creating stunning visual effects for movies and games. Apart from the main graphical interface written in C++ and Python, Houdini also provides a C interface called Houdini Engine or HAPI for short. Its goal is to bring the power of Houdini to other DCCs (Digital Content Creation) software and game engines.
This crate aims to provide idiomatic Rust interface to Houdini Engine and is built on top of hapi-sys.
:exclamation: A valid commercial Houdini Engine license is required to use this crate
```rust use hapirs::Result; use hapirs::session::quicksession; use hapirs::parameter::*;
fn main() -> Result<()> { // Start a standalone engine process let session = quicksession()?; // Load a Houdini Asset and create a node session.loadassetfile("otls/hapigeo.hda")?; let node = session.createnode("Object/hapigeo", None, None)?; // Set the "scale" parameter if let Parameter::Float(parm) = node.parameter("scale")? { parm.setvalue(&[3.0])?; node.cook(None)?; } // Get a reference to the node's internal geometry let geometry = node.geometry()?.expect("geometry"); // Save it to one of the supported geometry formats geometry.saveto_file("/tmp/output.fbx")?; Ok(()) } ```
Check the documentation building section