Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New features v0.5 #28

Merged
merged 12 commits into from
Dec 15, 2022
3 changes: 3 additions & 0 deletions Content/Data/DT_BlendProfiles.uasset
Git LFS file not shown
4 changes: 2 additions & 2 deletions Content/Data/DT_ConstraintBone.uasset
Git LFS file not shown
4 changes: 2 additions & 2 deletions Content/Data/DT_SkeletonCurves.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Data/DT_SlotGroups.uasset
Git LFS file not shown
4 changes: 2 additions & 2 deletions Content/Data/DT_Sockets.uasset
Git LFS file not shown
4 changes: 2 additions & 2 deletions Content/Data/DT_VirtualBones.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/EditorHooks/BP_ControlRigFunctions.uasset
Git LFS file not shown
4 changes: 2 additions & 2 deletions Content/EditorHooks/BP_SkeletonCurveFunctions.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Structures/ST_TTBlendProfile.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Structures/ST_TTBlendProfile_5.1.uasset
Git LFS file not shown
3 changes: 3 additions & 0 deletions Content/Structures/ST_TTSlotGroup.uasset
Git LFS file not shown
4 changes: 2 additions & 2 deletions Source/TTToolbox/Private/IKRig_ConstraintBones.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ void UIKRig_ConstraintBones::Initialize(const FIKRigSkeleton& IKRigSkeleton)
if (constraintBone == INDEX_NONE)
{
errorsOccurred = true;
UE_LOG(LogTemp, Error, TEXT("Failed get get bone index for constaint bone %s"), *constraint.ConstraintBone.ToString());
UE_LOG(LogTemp, Error, TEXT("Failed get get bone index for ConstraintBone %s"), *constraint.ConstraintBone.ToString());
continue;
}

if (modifiedBone == INDEX_NONE)
{
errorsOccurred = true;
UE_LOG(LogTemp, Error, TEXT("Failed get get bone index for constaint bone %s"), *constraint.ModifiedBone.ToString());
UE_LOG(LogTemp, Error, TEXT("Failed get get bone index for ModifiedBone %s"), *constraint.ModifiedBone.ToString());
continue;
}

Expand Down
Loading