Skip to content

Commit

Permalink
Build 108
Browse files Browse the repository at this point in the history
β™» Update readmes

πŸ› Fix 4.27

✨ Add better mesh card generation

β™» Add VOXEL_UE5_EA

πŸ› Fix mesh importer on dedicated servers

β™» Remove distance field instances logic

β™» Experiment with distance field instances

✨ Add support for editor only distance fields

β™» Push missing file

πŸ› Fix more math nodes

πŸ› Fix FVoxelIntBox::Count overflowing

β™» Add experimental mesh card support

β™» Add TVoxelMeshKeyBase

β™» Remove FVoxelUtilities::Get

β™» Mesh metadata -> mesh attribute

✨ Start adding mesh cards support

πŸ› Fix GetComplexCubicIds

πŸ› Fix 4.24

β™» Add complex cubic material functions

Merge branch 'master' of github.com:Phyronnaz/VoxelPrivate

β™» Start fixing up foliage densities

β™» Reuse textures to avoid creating too many objects

πŸ› Fix cubes being gray when recompiling parent BP

✨ Add cube class to the tags, allowing to see a cube asset class in its tooltip
β™» Remove BaseColor from CubeAsset
✨ Add support for scalar parameters

✨ Show cube class in the cube asset editor

πŸ› Fix voxel graph macros always being dirtied

✨ Add property-based texture arrays

✨ Add cubic texture arrays

Merge branch 'master' of github.com:Phyronnaz/VoxelPrivate

β™» Update Build.ps1
  • Loading branch information
Phyronnaz committed Jun 8, 2021
1 parent 34bf947 commit cd33102
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
8 changes: 8 additions & 0 deletions Source/Voxel/Public/VoxelEngineVersionHelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down
2 changes: 1 addition & 1 deletion VoxelFree.uplugin
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit cd33102

Please sign in to comment.