Skip to main content

SkeletonPartialPose

type SkeletonPartialPose = {
positions: {
bone_index: UInt32;
value: Vec3;
}[];
orientations: {
bone_index: UInt32;
value: Quat;
}[];
scales: {
bone_index: UInt32;
value: Vec3;
}[];
};

Defined in: node_modules/@3dverse/livelink.core/dist/_prebuild/messages/gateway/commands/SendSkeletonPoseCommand.d.ts:5

Type declaration

NameType
positions?{ bone_index: UInt32; value: Vec3; }[]
orientations?{ bone_index: UInt32; value: Quat; }[]
scales?{ bone_index: UInt32; value: Vec3; }[]