rs_blender/README.org

1.2 KiB

rs_blender

Tools written in Rust to deal with Blender files.

blend_info

> cd blend_info/
> cargo build --release
...
> ./target/release/blend_info --help
blend_info 0.1.0
Jan Walter <jan@janwalter.com>
Print some information about a Blender scene file.

USAGE:
    blend_info <path>

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

ARGS:
    <path>    The path to the file to read

btoa

> cd btoa/
> cargo build --release
...
> ./target/release/btoa --help
btoa 0.1.0
Parse a Blender scene file and export it in Arnold's .ass file format.

USAGE:
    btoa [OPTIONS] <path>

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
    -c, --camera_name <camera-name>            camera name
    -l, --light_scale <light-scale>            global light scaling [default: 1.0]
    -o, --output_filename <output-filename>    output filename (default: "btoa.ass")

ARGS:
    <path>    The path to the file to read