DRG-Femboy-Voice/Source/FSD/Private/ZipLineProjectile.cpp
2025-04-15 12:39:31 -07:00

16 lines
445 B
C++
Executable file

#include "ZipLineProjectile.h"
#include "Components/TimelineComponent.h"
void AZipLineProjectile::OnTimelineTick(float NewValue) {
}
AZipLineProjectile::AZipLineProjectile() {
this->Timeline = CreateDefaultSubobject<UTimelineComponent>(TEXT("LightTimeLine"));
this->LightIntensity = 2500.00f;
this->MaterialGlow = 10.00f;
this->LightCurve = NULL;
this->OnUseStatusEffect = NULL;
this->OnReleaseStatusEffect = NULL;
}