mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
25 lines
693 B
C++
25 lines
693 B
C++
#include "BuildingEditModeSupport.h"
|
|
|
|
void UBuildingEditModeSupport::OnSuccessfulMatchInteractParamUpdate(float NewInteractParamVal) {
|
|
}
|
|
|
|
void UBuildingEditModeSupport::OnSuccessfulMatchInteractComplete() {
|
|
}
|
|
|
|
UBuildingEditModeSupport::UBuildingEditModeSupport() {
|
|
OwnerBuilding = NULL;
|
|
EditingController = NULL;
|
|
PreviewMetadata = NULL;
|
|
ScratchpadMetadata = NULL;
|
|
ExpectedMetadataClass = NULL;
|
|
LastInteractedComp = NULL;
|
|
LastHighlightedComp = NULL;
|
|
PreviewComponent = NULL;
|
|
bCanMirrorMetadataToMatch = false;
|
|
bCanRotateMetadataToMatch = false;
|
|
bEditActionInProgress = false;
|
|
bInitializedTimelines = false;
|
|
bUseAlternateMaterials = false;
|
|
}
|
|
|