Setup player preview for equipment panel

This commit is contained in:
2026-05-31 15:33:43 +03:00
parent e70b1d757c
commit f59fa8d948
42 changed files with 823 additions and 318 deletions
@@ -0,0 +1,14 @@
// © 2025 Naked People Team. All Rights Reserved.
#include "PlayerPreviewCaptureSubsystem.h"
void UPlayerPreviewCaptureSubsystem::SetPreviewActive(bool bActive)
{
if (bPreviewActive == bActive)
{
return;
}
bPreviewActive = bActive;
OnPreviewCaptureActiveChanged.Broadcast(bPreviewActive);
}