All Projects → TriAxis-Games → Runtimemeshcomponent

TriAxis-Games / Runtimemeshcomponent

Licence: other
Unreal Engine 4 plugin component for rendering runtime generated content.

Projects that are alternatives of or similar to Runtimemeshcomponent

ProceduralDungeon
This is an Unreal Engine 4/5 plugin to generate procedural dungeon.
Stars: ✭ 95 (-89.48%)
Mutual labels:  procedural-generation, unreal-engine, ue4, unreal-engine-4
Dungeontemplatelibrary
🌏: Dungeon free resources (terrain & roguelike generation)
Stars: ✭ 595 (-34.11%)
Mutual labels:  procedural-generation, unreal-engine, ue4, unreal-engine-4
RuntimeBPs
This project allows for visual scripting in UE4 similar to Blueprints, but at runtime. The way this is set up does not make use of any UE4 boilerplate and could with a few adjustments be used in another engine.
Stars: ✭ 77 (-91.47%)
Mutual labels:  runtime, unreal-engine, ue4, unreal-engine-4
Kosm-Classic-FPS-Template-UE4
Classic Arena First-Person-Shooter Mechanics for Unreal Engine 4.
Stars: ✭ 38 (-95.79%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
Ue4 Binary Builder
An application designed to create installed Unreal Engine builds (aka Rocket builds) from Unreal Engine GitHub source.
Stars: ✭ 292 (-67.66%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
UT GameEventSystem
A flexible event system in Unreal Engine 4
Stars: ✭ 33 (-96.35%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
tsu
TypeScript plugin for Unreal Engine 4
Stars: ✭ 62 (-93.13%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
Gascontent
Repo to gather all Gameplay Ability System content for UE4
Stars: ✭ 398 (-55.92%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
gamedevguide
Game Development & Unreal Engine Programming Guide
Stars: ✭ 314 (-65.23%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
ue5-style-guide
An attempt to make Unreal Engine 4 projects more consistent
Stars: ✭ 2,892 (+220.27%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
Genericgraph
Generic graph data structure plugin for ue4
Stars: ✭ 256 (-71.65%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
Fmodel
File explorer for UE4 games and with cosmetics icon creation support for Fortnite, Valorant, Battle Breakers, and Spellbreak
Stars: ✭ 299 (-66.89%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
UT Framework
Various advanced tools built for Unreal Engine 4
Stars: ✭ 45 (-95.02%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
LocalizationUE4
Translation Editor for Unreal Engine 4
Stars: ✭ 59 (-93.47%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
libprotobuf ue4
libprotobuf for Unreal Engine 4
Stars: ✭ 81 (-91.03%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
Pbcharactermovement
HL2-style, classic FPS movement for Unreal Engine 4 implemented in C++
Stars: ✭ 582 (-35.55%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
Unreal-Development-Guides-and-Tips
High-level concept explanations, detailed tutorials, performance considerations, shortcuts and other useful content that aims to improve your Unreal Engine 4 development journey.
Stars: ✭ 118 (-86.93%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
DataConfig
Unreal Engine JSON/MsgPack serialization framework
Stars: ✭ 81 (-91.03%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
PsWebServer
Civet web server integration plugin for Unreal Engine 4
Stars: ✭ 24 (-97.34%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4
Unrealcpp
Unreal Engine 4 C++ examples
Stars: ✭ 490 (-45.74%)
Mutual labels:  unreal-engine, ue4, unreal-engine-4

Runtime Mesh Component for Unreal Engine 4


Here you will find the current version of the RMC. At present it only supports UE4.23 and newer.

If you require support for UE4.20-4.22 you'll need to use the v4 release found here: https://github.com/KoderzUnreal/RuntimeMeshComponent/releases/tag/v4.0


For information on installation, usage and everything else, please read the docs!


Join us on Discord

Basic examples of the features of the RMC can be found here! A more advanced example project can be found here!

This project is a labor of love, but unfortunately love doesn't pay the bills! If you've found this project useful, please consider supporting the development! You can support the project here!


The RuntimeMeshComponent or more commonly known as RMC, is a replacement to the ProceduralMeshComponent (aka PMC) found in UE4. The RMC is much more efficient, and carries many more features, while allowing for a much more fine-grained approach for advanced use cases, while being simple to use just like the PMC. It can handle any use case from simply loading models at runtime, to debug views, to modification of existing models all the way up to procedural generation of entire worlds!

The RMC has been around for 4+ years and has an active community of users from individuals, to schools, to Fortune 500 companies, with many released projects. You can also find active support in our Discord server here: https://discord.gg/KGvBBTv


Features (Community Edition):

  • Full Collision Support, both static triangle mesh and dynamic moving objects
  • Variable mesh formats, allowing for tradeoff in needed features and memory/performance overhead
  • Up to 8 Texture Coordinate (UV) channels
  • Normal or High preicision Texture Coordinate (UV) channels
  • Normal or High preicision texture coordinates, supports engine feature for high precision normals
  • LOD Support, alowing engine maximum of 8 LOD levels and full dithering support
  • Full NavMesh support
  • Tessellation support, including generation
  • Full threading support, both internally managing threads and allowing for your external threading safely around the garbage collector.
  • Async collision updates. As collision can be slow to update, the RMC can offload it from the game thread.
  • Separate collision from rendering
  • StaticMesh conversion in game and editor.
  • Tangent generation utility
  • Mesh Slicer

Features (Premium Edition):

  • All features found in RMC-Community!
  • Additional Reversed Indices buffer for inverted views or inverted transforms like negative scaling.
  • Depth Only Indices, allow for a separate index buffer for depth prepass and shadows for improved performance
  • Distance Field support. Supports engine features like DF Shadows, and DF Ambient Occlusion, and material distance queries, and Niagara collision
  • Distance Field generation on CPU. RMC can generate the DF for you on the CPU, GPU implementation coming later.
  • Model loading of many common formats including obj, stl, fbx, x, 3ds, dae, and more through Assimp
  • Optimization-ReIndex, can reindex the mesh to remove redundant vertices.
  • Optimization-VertexOrder, Forsyth algorithm to optimize the order of vertices to improve caching efficiency
  • Optimization-Overdraw, Reducing overdraw of a mesh by rearranging triangles
  • Optimization-VertexFetch, Improve memory coherency by ordering vertex buffer to more efficiently work with triangle order
  • Texture loading support for .jpg/.jpeg, .png, .tga, .bmp, .psd, .gif
  • Texture mipmap generation support

Improvements over PMC:

  • 50-90% Lower memory useage than PMC
  • 30-100% lower render thread cpu time
  • Static draw path for maximum rendering performance
  • Dynamic Draw path for efficient frequent updates.

Supported Engine Versions: v4.1 supports engine versions 4.23+ v4.0 supports engine versions 4.20+ v3.0 supports engine versions 4.17+ v2.0 supports engine versions 4.12+ v1.2 supports engine versions 4.10+

The Runtime Mesh Component should support all UE4 platforms. Collision MAY NOT be available on some platforms (HTML5)

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].