Skip to content

The minimal source code for creating a custom mesh component and using it in Unreal Engine 4. This is an example project published with a series of articles that cover the topic.

License

Notifications You must be signed in to change notification settings

asdlei99/CustomMeshComponent

 
 

Repository files navigation

CustomUMeshComponent

A minimal Unreal Engine 4 project that contains all the needed source code for a custom mesh component and showcases its usage. This is an example project published with a series of articles that cover the process of creating custom mesh components in UE4.

The intro for the series can be found here

UDeformMeshComponent

The example mesh component created in this project is a deform mesh component that can be deformed using a secondary/deform transform. The deformation is very simple; rotation and scale are interpolated by the distace between the vertex position and the secondary transform origin position (Both in world space) Here's how it looks:

DeformMeshComponentDemo

Modules

1. DeformMesh

Contains all the source code for the DeformMeshComponent.

Classes and Structs:

  • UDeformMeshComponent
  • FDeformMeshSection
  • FDeformMeshVertexFactory
  • FDeformMeshVertexFactoryShaderParameters
  • FDeformMeshSceneProxy
  • FDeformMeshSectionProxy

2. CustomUMeshComponent

The primary game module for the project. Contains an actor that uses the DeformMeshComponent to render a mesh and deform it.

Classes and Structs:

  • ADeformMeshActor

Shaders

  • LocalVertexFactory.ush: A copy of the engine's LocalVertexFactory.ush but with modifications to support the deform mesh vertex factory logic.

About

The minimal source code for creating a custom mesh component and using it in Unreal Engine 4. This is an example project published with a series of articles that cover the topic.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 94.5%
  • C# 5.3%
  • C 0.2%