Skip to content

Commit

Permalink
Add support for Unreal Engine 4.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nxrighthere committed Jun 10, 2021
1 parent e7bbaba commit 798bed6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,11 @@ namespace UnrealCLRFramework {
#define UNREALCLR_COLOR_TO_INTEGER(Color) (Color.A << 24) + (Color.R << 16) + (Color.G << 8) + Color.B

#if ENGINE_MAJOR_VERSION == 4
#define UNREALCLR_BLEND_TYPE 5
#if ENGINE_MINOR_VERSION <= 26
#define UNREALCLR_BLEND_TYPE 5
#elif ENGINE_MINOR_VERSION >= 27
#define UNREALCLR_BLEND_TYPE 6
#endif

#if ENGINE_MINOR_VERSION <= 25
#define UNREALCLR_PIXEL_FORMAT 71
Expand Down
2 changes: 1 addition & 1 deletion Source/Native/UnrealCLR.uplugin
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"FileVersion": 3,
"Version": 1,
"VersionName": "1.29",
"VersionName": "1.30",
"FriendlyName": "UnrealCLR",
"Description": ".NET 5 integration",
"Category": "Scripting",
Expand Down

0 comments on commit 798bed6

Please sign in to comment.