UNPKG

bc-minecraft-bedrock-project

Version:

The typescript library responsible for reading/parsing minecraft bedrock data

12 lines 485 B
import { BaseObject } from 'bc-minecraft-bedrock-types'; import { Defined } from '../../../types'; /** */ export interface Model extends BaseObject { /** If the 0th bone includes a binding assuming that the 0th bone is the root bone as that's how BB exports */ root_bone_uses_binding: boolean; /** The name of all the bones in the model */ bones: Defined; /** The name of all the locators in the model */ locators: Defined; } //# sourceMappingURL=model.d.ts.map