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
Name | Type |
---|---|
bone_index | UInt32 |
value | Vec3 |
orientations?
optional orientations: {
bone_index: UInt32;
value: Quat;
}[];
Defined in: node_modules/@3dverse/livelink.core/dist/_prebuild/messages/gateway/commands/SendSkeletonPoseCommand.d.ts:10
Name | Type |
---|---|
bone_index | UInt32 |
value | Quat |
scales?
optional scales: {
bone_index: UInt32;
value: Vec3;
}[];
Defined in: node_modules/@3dverse/livelink.core/dist/_prebuild/messages/gateway/commands/SendSkeletonPoseCommand.d.ts:14
Name | Type |
---|---|
bone_index | UInt32 |
value | Vec3 |