mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
416 B
C++
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;
|
|
}
|
|
|