Updated phone UI

This commit is contained in:
2026-06-03 21:42:24 +03:00
parent 07c323752a
commit f2fcd42edf
21 changed files with 531 additions and 17 deletions
@@ -0,0 +1,26 @@
// © 2025 Naked People Team. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "CommonUserWidget.h"
#include "PhoneStatusBar.generated.h"
class UCommonTextBlock;
UCLASS()
class NAKEDDESIRE_API UPhoneStatusBar : public UCommonUserWidget
{
GENERATED_BODY()
UPROPERTY(meta = (BindWidget))
TObjectPtr<UCommonTextBlock> TimeText;
protected:
virtual void NativeTick(const FGeometry& MyGeometry, float InDeltaTime) override;
private:
// Last HH:MM string pushed to TimeText; the tick re-reads the clock each frame but only
// touches the widget when the displayed minute actually changes.
FString CachedTimeString;
};