16 lines
445 B
C++
Executable file
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;
|
|
}
|
|
|