All Projects → SRombauts → Ue4proceduralmesh

SRombauts / Ue4proceduralmesh

UE4.7 Procedural Mesh Generation plugin

Projects that are alternatives of or similar to Ue4proceduralmesh

Runtimemeshcomponent
Unreal Engine 4 plugin component for rendering runtime generated content.
Stars: ✭ 903 (+514.29%)
Mutual labels:  procedural-generation, unreal-engine-4
Dungeontemplatelibrary
🌏: Dungeon free resources (terrain & roguelike generation)
Stars: ✭ 595 (+304.76%)
Mutual labels:  procedural-generation, unreal-engine-4
ProceduralDungeon
This is an Unreal Engine 4/5 plugin to generate procedural dungeon.
Stars: ✭ 95 (-35.37%)
Mutual labels:  procedural-generation, unreal-engine-4
Fworldgenerator
Procedural world generator (plugin) for Unreal Engine 4
Stars: ✭ 45 (-69.39%)
Mutual labels:  procedural-generation, unreal-engine-4
Grid
An UE4 plugin for grid-based game
Stars: ✭ 122 (-17.01%)
Mutual labels:  unreal-engine-4
Erics Magicavoxel Shaders
Shaders for MagicaVoxel including Terrain Generator, Life Game, Waterflow Emulator, Advanced Flood System etc.
Stars: ✭ 99 (-32.65%)
Mutual labels:  procedural-generation
Psrealvehicle
Plugin for Unreal Engine 4 with simple force-driven vehicle simulation
Stars: ✭ 92 (-37.41%)
Mutual labels:  unreal-engine-4
Unrealclr
Unreal Engine 4 .NET 5 integration
Stars: ✭ 1,275 (+767.35%)
Mutual labels:  unreal-engine-4
Stsmapgen
Procedural map generator inspired by Slay the Spire.
Stars: ✭ 136 (-7.48%)
Mutual labels:  procedural-generation
Graphmesh
Graph-based mesh modifiers.
Stars: ✭ 128 (-12.93%)
Mutual labels:  procedural-generation
Gamedev4noobs
Olá, sejam bem-vindos ao repositório _gamedev4noobs_ do Estúdio Vaca Roxa. O propósito desse repositório, além de contribuir para o projeto 4noobs, é ensinar o básico do desenvolvimento de jogos para iniciantes. Apresentando boas práticas e insumos para criar games incríveis.
Stars: ✭ 122 (-17.01%)
Mutual labels:  unreal-engine-4
Hermit
A man. A horse. A nature.
Stars: ✭ 105 (-28.57%)
Mutual labels:  procedural-generation
Epitaph
https://mkremins.itch.io/epitaph
Stars: ✭ 123 (-16.33%)
Mutual labels:  procedural-generation
Ai fps
AI system to simulate combat behaviors in a FPS game using Behavior Trees (UE4)
Stars: ✭ 96 (-34.69%)
Mutual labels:  unreal-engine-4
Anothercraft
A Minecraft clone demo
Stars: ✭ 130 (-11.56%)
Mutual labels:  procedural-generation
Buoyancysystem
A system for buoyancy and boat physics in Unreal Engine 4.
Stars: ✭ 87 (-40.82%)
Mutual labels:  unreal-engine-4
Rock Generator
C# rock generator
Stars: ✭ 118 (-19.73%)
Mutual labels:  procedural-generation
Astraea
A planet generator inspired by Planetarium.
Stars: ✭ 126 (-14.29%)
Mutual labels:  procedural-generation
Wfc python
An implementation of mxgmn/WaveFunctionCollapse in Python
Stars: ✭ 114 (-22.45%)
Mutual labels:  procedural-generation
Proceduraltoolkit
Procedural generation library for Unity
Stars: ✭ 1,729 (+1076.19%)
Mutual labels:  procedural-generation

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

  • UProceduralMeshComponent, using FProceduralMeshTriangle, composed of FProceduralMeshVertex
  • AProceduralTriangleActor spwaning an simple triangle mesh with UV and a base color material applied that can be changed at runtime
  • AProceduralLatheActor spwaning an example "Lathe" mesh from rotating a Polyline, with another base color applied

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)

  • BP_ProceduralTriangle
  • BP_ProceduralLathe

Level Blueprint

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

Level Blueprint spawning a GameGeneratedActor

Result

GameGeneratedActor

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].