Skip to content

Commit

Permalink
Merge pull request #69 from ydrive/ue5.2
Browse files Browse the repository at this point in the history
Upgrade to UE 5.2
  • Loading branch information
NikolaJov96 authored Dec 11, 2023
2 parents 5a2ef87 + 5adc0dd commit 2b59955
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
Binary file modified Content/EasySynthMoviePipelineConfig.uasset
Binary file not shown.
Binary file modified Content/M_PlainColor.uasset
Binary file not shown.
6 changes: 3 additions & 3 deletions EasySynth.uplugin
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"FileVersion": 3,
"Version": 4,
"VersionName": "3.0.0",
"EngineVersion" : "5.1.0",
"Version": 5,
"VersionName": "4.0.0",
"EngineVersion" : "5.2",
"FriendlyName": "EasySynth",
"Description": "An Unreal Engine plugin for easy creation of image datasets",
"Category": "Other",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "ImageWriteQueue.h"
#include "MoviePipeline.h"
#include "MoviePipelineImageQuantization.h"
#include "MoviePipelineMasterConfig.h"
#include "MoviePipelinePrimaryConfig.h"
#include "IOpenExrRTTIModule.h"
#include "Modules/ModuleManager.h"
#include "MoviePipelineUtils.h"
Expand Down Expand Up @@ -396,7 +396,7 @@ void UMoviePipelineImageSequenceOutput_EXRLocal::OnReceiveImageDataImpl(FMoviePi
FModuleManager::Get().LoadModule(RTTIExtensionModuleName);


UMoviePipelineOutputSetting* OutputSettings = GetPipeline()->GetPipelineMasterConfig()->FindSetting<UMoviePipelineOutputSetting>();
UMoviePipelineOutputSetting* OutputSettings = GetPipeline()->GetPipelinePrimaryConfig()->FindSetting<UMoviePipelineOutputSetting>();
check(OutputSettings);

// EXR only supports one resolution per file, but in certain scenarios we can get layers with different resolutions. To solve this, we're
Expand Down
4 changes: 2 additions & 2 deletions Source/EasySynth/Private/SequenceRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ TSharedPtr<FRendererTarget> FRendererTargetOptions::RendererTarget(
}

USequenceRenderer::USequenceRenderer() :
EasySynthMoviePipelineConfig(DuplicateObject<UMoviePipelineMasterConfig>(
LoadObject<UMoviePipelineMasterConfig>(nullptr, *FPathUtils::DefaultMoviePipelineConfigPath()), nullptr)),
EasySynthMoviePipelineConfig(DuplicateObject<UMoviePipelinePrimaryConfig>(
LoadObject<UMoviePipelinePrimaryConfig>(nullptr, *FPathUtils::DefaultMoviePipelineConfigPath()), nullptr)),
bCurrentlyRendering(false),
ErrorMessage("")
{
Expand Down
4 changes: 2 additions & 2 deletions Source/EasySynth/Public/SequenceRenderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class ULevelSequence;
class UMoviePipelineExecutorBase;
class UMoviePipelineMasterConfig;
class UMoviePipelinePrimaryConfig;
class UMoviePipelineQueueSubsystem;


Expand Down Expand Up @@ -160,7 +160,7 @@ class USequenceRenderer : public UObject

/** Default movie pipeline config file provided with the plugin content */
UPROPERTY()
UMoviePipelineMasterConfig* EasySynthMoviePipelineConfig;
UMoviePipelinePrimaryConfig* EasySynthMoviePipelineConfig;

/** Points to the user-created level sequence */
UPROPERTY()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ struct FSemanticClass
FString Name;

/** The semantic class color */
UPROPERTY(EditAnywhere, Category = "Semantic Class Properties")
UPROPERTY(EditAnywhere, Category = "Semantic Class Properties", meta = (IgnoreForMemberInitializationTest))
FColor Color;

/** Reference to the plain color material instance */
Expand Down

0 comments on commit 2b59955

Please sign in to comment.