Skip to content

Commit

Permalink
fix punch not affecting Ranged AI & fix punch animation glitch
Browse files Browse the repository at this point in the history
  • Loading branch information
SafakOnol committed Apr 10, 2024
1 parent 3ca7c7f commit 52245c2
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
Git LFS file not shown
4 changes: 2 additions & 2 deletions Content/Unbread/Core/Character/BP_Character.uasset
Git LFS file not shown
4 changes: 2 additions & 2 deletions Content/Unbread/Environment/Interactables/VentFan/Fan.uasset
Git LFS file not shown
4 changes: 2 additions & 2 deletions Content/Unbread/Maps/CoreLevelTest.umap
Git LFS file not shown
2 changes: 1 addition & 1 deletion Source/unbread/Private/SInteractionComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void USInteractionComponent::MeleeInteract()
FRotator Correction (0.0f, 90.0f, 0.f);
FRotator CorrecterRotation = EyeRotation + Correction;
FVector End = EyeLocation + (CorrecterRotation.Vector() * 300);
End.Z += 100.0f;
End.Z = EyeLocation.Z;
// FHitResult Hit;
// bool bBlockingHit = GetWorld()->LineTraceSingleByObjectType(Hit, EyeLocation, End, ObjectQueryParams);

Expand Down

0 comments on commit 52245c2

Please sign in to comment.