ExoWest/Source/Exo/Private/Widget/UWBP_HpBar.cpp
2025-04-23 23:03:06 +02:00

15 lines
295 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "Widget/UWBP_HpBar.h"
#include "Components/ProgressBar.h"
#include "Widget/UWBP_RoundProgressBar.h"
void UWBP_HpBar::SetHp(float hp, float hpMax)
{
if (!HPBar)
return;
HPBar->SetPercent(hp/hpMax);
}