12 lines
325 B
C++
Executable file
12 lines
325 B
C++
Executable file
#include "CameraSpringSettings.h"
|
|
|
|
FCameraSpringSettings::FCameraSpringSettings() {
|
|
this->SpringEnabled = false;
|
|
this->StepThreshold = 0.00f;
|
|
this->RetractStrength = 0.00f;
|
|
this->RetractDownReduction = 0.00f;
|
|
this->ShowDebug = false;
|
|
this->LastSpeedZ = 0.00f;
|
|
this->bSpringInitialized = false;
|
|
}
|
|
|