UNPKG

@pixiv/three-vrm

Version:

VRM file loader for three.js.

9 lines (8 loc) 297 B
import { VRMSchema } from '../types'; import { VRMHumanBone } from './VRMHumanBone'; /** * This object is a object variant of [[VRMHumanBoneArray]], used internally in [[VRMHumanoid]]. */ export declare type VRMHumanBones = { [name in VRMSchema.HumanoidBoneName]: VRMHumanBone[]; };