Files
FNGameProj/Source/FortniteGame/Private/CreativeToolPersistentData.cpp
2024-01-21 00:41:14 +01:00

14 lines
416 B
C++

#include "CreativeToolPersistentData.h"
FCreativeToolPersistentData::FCreativeToolPersistentData() {
this->GridSnapIndex = 0;
this->RotationAxisIndex = 0;
this->SelectedScaleAxis = 0;
this->bShouldUsePrecisionGridSnapping = false;
this->bAllowGravityOnPlace = false;
this->bShouldDestroyPropsWhenPlacing = false;
this->HitTraceRule = 0;
this->bIsScalingInsteadOfRotating = false;
}