Crate fbx

source ·
Expand description

This crate lets you read FBX files.

Structs

  • Represents an FBX file.
  • 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.
  • Returned when deserializing an array property of which the encoding is not known.
  • Returned when deserializing a property of which the kind (type) is not known.
  • The FBX file header contains a version number. The number that was read is not a known or supported version.

Enums

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

Type Aliases

  • Convenient result alias.