diff --git a/README.md b/README.md index 56280eb2..087ad284 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Voxel Plugin **Voxel Plugin** allows to create fully volumetric, entirely destructible, infinite worlds in **Unreal Engine**. -It is compatible with 4.24, 4.25, 4.26 and Unreal 5. +It is compatible with 4.24, 4.25, 4.26, 4.27 and Unreal 5. **TRAILER**: https://youtu.be/LKg9rU1dXEk diff --git a/Source/Voxel/Public/VoxelEngineVersionHelpers.h b/Source/Voxel/Public/VoxelEngineVersionHelpers.h index 82ddef4b..f625904e 100644 --- a/Source/Voxel/Public/VoxelEngineVersionHelpers.h +++ b/Source/Voxel/Public/VoxelEngineVersionHelpers.h @@ -42,6 +42,14 @@ #define UE_26_ONLY(...) #endif +#if VOXEL_ENGINE_VERSION >= 427 +#define UE_27_SWITCH(Before, AfterOrEqual) AfterOrEqual +#define UE_27_ONLY(...) __VA_ARGS__ +#else +#define UE_27_SWITCH(Before, AfterOrEqual) Before +#define UE_27_ONLY(...) +#endif + #if VOXEL_ENGINE_VERSION >= 500 #define UE_5_SWITCH(Before, AfterOrEqual) AfterOrEqual #define UE_5_ONLY(...) __VA_ARGS__ diff --git a/VoxelFree.uplugin b/VoxelFree.uplugin index 02797498..d9e65e8a 100644 --- a/VoxelFree.uplugin +++ b/VoxelFree.uplugin @@ -1,7 +1,7 @@ { "FileVersion": 3, "Version": 1, - "VersionName": "Free-Beta-f9660cd4d-2021-06-02", + "VersionName": "Free-Beta-415230fff-2021-06-08", "FriendlyName": "Voxel Plugin Free", "Description": "Create fully volumetric, entirely destructible & infinite worlds", "Category": "Terrain",