Skip to content

Commit

Permalink
Merge pull request #75 from rive-app/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
Batname authored Apr 3, 2024
2 parents 3d9f8bc + 289cd0d commit fbe55b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Rive.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
{
"Name": "RiveRenderer",
"Type": "Runtime",
"Type": "RuntimeNoCommandlet",
"LoadingPhase": "Default",
"WhitelistPlatforms": ["Win64", "Mac", "IOS", "Android"]
},
Expand Down
2 changes: 1 addition & 1 deletion Source/Rive/Private/Rive/RiveFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void URiveFile::PostLoad()
{
AssetImportData->UpdateFilenameOnly(RiveFilePath);
}
else if (!ensure(FPaths::IsSamePath(FullPath, RiveFilePath)))
else if (!FPaths::IsSamePath(FullPath, RiveFilePath))
{
UE_LOG(LogRive, Warning, TEXT("The path of RiveFile '%s' is not matching the AssetImportData, resetting to RiveFilePath. RiveFilePath: '%s' AssetImportData: '%s'"),
*GetFullName(), *RiveFilePath, *FullPath)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
#include "RivePostProcessSceneViewExtension.h"

#include "Engine/TextureRenderTarget2D.h"
#include "ScreenPass.h"
#include "PostProcess/PostProcessMaterialInputs.h"
#include "Runtime/Launch/Resources/Version.h"
#include "ScreenPass.h"
#include "TextureResource.h"

FRivePostProcessSceneViewExtension::FRivePostProcessSceneViewExtension(const FAutoRegister& AutoRegister, UTextureRenderTarget2D& WidgetRenderTarget)
Expand Down

0 comments on commit fbe55b1

Please sign in to comment.