Home

Awesome

UE4 Procedural Mesh

Join the chat at https://gitter.im/SRombauts/UE4ProceduralMesh

Note: There is now à better alternative with the Runtime Mesh Component plugin by Koderz (forum), available on Github (Koderz/UE4RuntimeMeshComponent) and on the Marketplace

UE 4.7 Procedural MeshGeneration from the Epic Wiki, using C++ code and Blueprints

This is a very simple demonstration on how to generate procedural meshes and spawn them in game.

It is not to be taken as an example of proper programming technique, but only as an indication to help you generate your own meshes.

C++ Code

Blueprints

Basic blueprints are created from the C++ Procedural Actor classes. This help demonstrating how they can be spawned manually in the level at construction time. Then a new Material can be applied to the generated meshes (the triangle have correct UV for applying textures)

Level Blueprint

Spawnin is done on the Level Blueprint, at the BeginPlay Event :

Level Blueprint spawning a GameGeneratedActor

Result

GameGeneratedActor