unrust 0.1.5

The rust side of the unity package to work with rust + bevy in unity!
Documentation
1
2
3
4
5
6
7
8
fn main() -> anyhow::Result<()> {
    if std::env::var_os("UNRUST_DEV").is_none() {
        return Ok(());
    }

    inbuilt::write_csharp_inbuilt("../../unity/sdk/Runtime/InbuiltGenerated.cs")?;
    Ok(())
}