You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[FYI] Paul.McLaurin review-33657663 [at]Thomas.Sarkanen [CL 33664929 by frederick lupien in ue5-main branch]
19 lines
786 B
C++
19 lines
786 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "AnimBlueprintExtension_LinkedInputPose.h"
|
|
#include "AnimGraphNode_Base.h"
|
|
#include "AnimGraphNode_LinkedInputPose.h"
|
|
#include "IAnimBlueprintCompilerCreationContext.h"
|
|
#include "IAnimBlueprintCompilationContext.h"
|
|
#include "IAnimBlueprintGeneratedClassCompiledData.h"
|
|
|
|
void UAnimBlueprintExtension_LinkedInputPose::HandlePreProcessAnimationNodes(TArrayView<UAnimGraphNode_Base*> InAnimNodes, IAnimBlueprintCompilationContext& InCompilationContext, IAnimBlueprintGeneratedClassCompiledData& OutCompiledData)
|
|
{
|
|
for(UAnimGraphNode_Base* AnimNode : InAnimNodes)
|
|
{
|
|
if(UAnimGraphNode_LinkedInputPose* LinkedInputPose = Cast<UAnimGraphNode_LinkedInputPose>(AnimNode))
|
|
{
|
|
LinkedInputPose->AnalyzeLinks(InAnimNodes);
|
|
}
|
|
}
|
|
} |