18 lines
533 B
C++
18 lines
533 B
C++
|
|
// Copyright 2022 Just2Devs. All Rights Reserved.
|
|||
|
|
|
|||
|
|
#include "K2Node_WidgetScaleBoxSlotCast.h"
|
|||
|
|
#include "WidgetFL.h"
|
|||
|
|
#include "Components/ScaleBoxSlot.h"
|
|||
|
|
|
|||
|
|
void UK2Node_WidgetScaleBoxSlotCast::ExpandNode(FKismetCompilerContext& CompilerContext, UEdGraph* SourceGraph)
|
|||
|
|
{
|
|||
|
|
FunctionName = GET_MEMBER_NAME_CHECKED(UWidgetFL, CastScaleBoxSlot);
|
|||
|
|
Super::ExpandNode(CompilerContext, SourceGraph);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
void UK2Node_WidgetScaleBoxSlotCast::AllocateDefaultPins()
|
|||
|
|
{
|
|||
|
|
PinSlotType = UScaleBoxSlot::StaticClass();
|
|||
|
|
Super::AllocateDefaultPins();
|
|||
|
|
}
|