Crate fbx

Source
Expand description

This crate lets you read FBX files.

Structs§

File
Represents an FBX file.
InvalidMagic
The FBX file header should contain a particular sequence of bytes. This byte sequence is often referred to as the “magic string”. This error is returned when the magic is not what it should be. This can happen when the input is not actually a valid binary FBX file.
Node
UnknownArrayEncoding
Returned when deserializing an array property of which the encoding is not known.
UnknownPropertyKind
Returned when deserializing a property of which the kind (type) is not known.
UnknownVersion
The FBX file header contains a version number. The number that was read is not a known or supported version.

Enums§

DeserializationError
The DeserializationError enum represents an error that occurred during deserialization of an FBX file.
Error
The Error enum wraps the io and deserialization errors.
Property
A piece of data from an FBX file. Properties belong to a Node.
Version
An FBX file version. This does not cover all FBX file versions ever, just the ones that we recognize.

Type Aliases§

Result
Convenient result alias.