Skip to main content

Type Alias: 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

Properties

positions?

optional positions: {
bone_index: UInt32;
value: Vec3;
}[];

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

NameType
bone_indexUInt32
valueVec3

orientations?

optional orientations: {
bone_index: UInt32;
value: Quat;
}[];

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

NameType
bone_indexUInt32
valueQuat

scales?

optional scales: {
bone_index: UInt32;
value: Vec3;
}[];

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

NameType
bone_indexUInt32
valueVec3