Level thumbnails

This commit is contained in:
2023-08-18 22:01:39 +02:00
parent 7c1c80c111
commit abfc0e5114
36 changed files with 4 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ void AFireworkBase::BeginPlay()
void AFireworkBase::Tick(float DeltaTime)
{
OnTick();
if (IsBurning)
{
WickRemainingTime -= DeltaTime;

View File

@@ -64,4 +64,7 @@ public:
UFUNCTION(BlueprintImplementableEvent, BlueprintCallable)
void ExplodeEffects();
UFUNCTION(BlueprintImplementableEvent)
void OnTick();
};