October3d55/M/WidgetFunctionLibrary/Source/WidgetFunctionLibraryEditor/Private/K2Nodes/K2Node_WidgetSafeBoxSlotCas...

18 lines
529 B
C++
Raw Normal View History

2025-07-21 18:21:43 +08:00
// Copyright 2022 Just2Devs. All Rights Reserved.
#include "K2Node_WidgetSafeBoxSlotCast.h"
#include "WidgetFL.h"
#include "Components/SafeZoneSlot.h"
void UK2Node_WidgetSafeBoxSlotCast::ExpandNode(FKismetCompilerContext& CompilerContext, UEdGraph* SourceGraph)
{
FunctionName = GET_MEMBER_NAME_CHECKED(UWidgetFL, CastSafeBoxSlot);
Super::ExpandNode(CompilerContext, SourceGraph);
}
void UK2Node_WidgetSafeBoxSlotCast::AllocateDefaultPins()
{
PinSlotType = USafeZoneSlot::StaticClass();
Super::AllocateDefaultPins();
}