Files
UnrealEngineUWP/Engine/Plugins/Experimental/RenderPages/Source/RenderPagesDeveloper/Private/Blueprints/RenderPagesBlueprintCompiler.cpp
Patrick Vane dc161aa173 First usable version of the render pages plugin.
#preflight 62a2981eff22b2aef9d1d325

[CL 20589277 by Patrick Vane in ue5-main branch]
2022-06-09 21:57:02 -04:00

12 lines
383 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Blueprints/RenderPagesBlueprintCompiler.h"
bool UE::RenderPages::FRenderPagesBlueprintCompiler::CanCompile(const UBlueprint* Blueprint)
{
return false;
}
void UE::RenderPages::FRenderPagesBlueprintCompiler::Compile(UBlueprint* Blueprint, const FKismetCompilerOptions& CompileOptions, FCompilerResultsLog& Results) {}