mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
12 lines
303 B
C++
12 lines
303 B
C++
#include "SpectatorLensSettings.h"
|
|
|
|
FSpectatorLensSettings::FSpectatorLensSettings() {
|
|
this->bAutoExposureEnabled = false;
|
|
this->ManualExposureBias = 0.00f;
|
|
this->FocalLength = 0.00f;
|
|
this->Aperture = 0.00f;
|
|
this->bAutoFocusEnabled = false;
|
|
this->ManualFocusDistance = 0.00f;
|
|
}
|
|
|