mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
596 B
C++
19 lines
596 B
C++
#include "FortDecoHelper.h"
|
|
|
|
AFortDecoHelper::AFortDecoHelper() {
|
|
this->DecoPreview = NULL;
|
|
this->PlacementActorClass = NULL;
|
|
this->DecoToolReach = 512.00f;
|
|
this->CurrentAttachmentType = ATTACH_None;
|
|
this->CurrentPlacementType = EPlacementType::Free;
|
|
this->DecoItemDefinition = NULL;
|
|
this->ScaleData[0] = 0.00f;
|
|
this->ScaleData[1] = 0.00f;
|
|
this->bInFallbackPosition = false;
|
|
this->FallbackTinyScale = 0.00f;
|
|
this->CanPlaceState = EFortDecoPlacementQueryResults::NoLocation;
|
|
this->DesiredRelativeRotation = 0.00f;
|
|
this->GridSnapSize = 0.00f;
|
|
}
|
|
|