Crates.io | ira_cli |
lib.rs | ira_cli |
version | 0.3.0 |
source | src |
created_at | 2024-06-14 21:11:16.884652 |
updated_at | 2024-06-24 22:23:58.791767 |
description | Command line interface for preparing assets for Ira. |
homepage | |
repository | |
max_upload_size | |
id | 1272400 |
size | 48,638 |
A command-line interface for the Ira game engine.
Usage: ira <COMMAND>
Commands:
pack Packs various game assets (glTF, etc.) into a single Drum
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
cargo install ira_cli
> ira pack --help
Packs various game assets (glTF, etc.) into a single Drum
Usage: ira pack [OPTIONS] --output <OUTPUT> [ASSETS]...
Arguments:
[ASSETS]... The entry files to pack
Options:
-o, --output <OUTPUT> The output path for the Drum
-i, --irradiance <IRRADIANCE> A path to the irradiance map
-p, --prefiltered <PREFILTERED> A path to the prefiltered map
-b, --brdf <BRDF> A path to the BRDF LUT
-c, --compress Whether to use Block Compression for textures
-s, --srgb Whether the assets are in sRGB color space
-m, --mipmaps [<MIPMAPS>] The number of mipmaps to generate for textures. If not specified, mipmaps will be generated automatically
-h, --help Print help
> ira pack models/bottled_car/scene.gltf -i ibl_irradiance_map.png -p ibl_prefilter_map.png -b ibl_brdf_lut.png --compress --mipmaps -o car.drum --srgb