mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
354 B
C++
15 lines
354 B
C++
#include "SourceDriver.h"
|
|
|
|
FSourceDriver::FSourceDriver() {
|
|
this->SourceComponent = EComponentType::None;
|
|
this->UseQuaternion = false;
|
|
this->DrivingCurve = NULL;
|
|
this->Multiplier = 0.00f;
|
|
this->bUseRange = false;
|
|
this->RangeMin = 0.00f;
|
|
this->RangeMax = 0.00f;
|
|
this->RemappedMin = 0.00f;
|
|
this->RemappedMax = 0.00f;
|
|
}
|
|
|