(Feat) Add Animation Fps Charater

This commit is contained in:
2026-08-13 22:07:08 +02:00
parent 176beab9fc
commit cca54a5e0d
157 changed files with 850 additions and 148 deletions
@@ -0,0 +1,14 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "PlayerNameplateWidget.h"
#include "Components/TextBlock.h"
void UPlayerNameplateWidget::SetPlayerName(const FText& InName)
{
if (PlayerNameText)
{
PlayerNameText->SetText(InName);
}
}