Finished phase 1

This commit is contained in:
2026-05-29 18:57:20 +03:00
parent 01cad5d8da
commit 6e44e9d4e8
11 changed files with 152 additions and 59 deletions
@@ -219,6 +219,12 @@ bool ANakedDesireCharacter::CheckSight(const FVector& StartLocation, const FVect
return bHit;
}
void ANakedDesireCharacter::LogTest()
{
UClothingItemInstance* ClothingItemInstance = ClothingManager->GetSlotClothing(EClothingSlotType::UnderwearTop);
UE_LOG(LogTemp, Warning, TEXT("ANakedDesireCharacter::LogTest %s"), *ClothingItemInstance->GetInstanceId().ToString());
}
void ANakedDesireCharacter::OnClothingEquip(UClothingItemInstance* ClothingItemInstance)
{
if (ClothingItemInstance->GetClothingItem()->HiddenBodyParts.Contains(EBodyPart::Ass))
@@ -191,6 +191,9 @@ private:
bool CheckSight(const FVector& StartLocation, const FVector& EndLocation, FHitResult& HitResult, const AActor* IgnoreActor);
UFUNCTION(Exec)
void LogTest();
UPROPERTY()
TObjectPtr<ANakedDesireHUD> HUD;
};