babylon-mmd
Version:
babylon.js mmd loader and runtime
12 lines (11 loc) • 364 B
TypeScript
/**
* Interface for objects that store the state of IK solvers
*/
export interface IIkStateContainer {
/**
* Uint8Array that stores the state of IK solvers
*
* If `ikSolverState[MmdModel.runtimeBones[i].ikSolverIndex]` is 0, IK solver of `MmdModel.runtimeBones[i]` is disabled and vice versa
*/
readonly ikSolverStates: Uint8Array;
}