Challenge
There is some shadows artefacts in the rendering.
Solution
Shadow Artefact

Profiling
These weapons are skeletal meshes and just like World position offset materials, they generate dynamic virtual shadow maps around them.
This feature can unfortunately generate shadows artefacts.

Cached Page
As dynamics actors can move in runtime, they use dynamic virtual shadow maps.
These ones are calculated using the object’s rendering bounds, so if the actor bounds are too smalls the shadow goes beyond the dynamic area which does not refresh the shadow as the object moves creating those artefacts.

Bounds
This issue is easy to resolve but it is hard to find the source.
Optimization


Details
This project contained a lot of irreversible things like meshes merging, this made the optimization not optimal as it could be.
I have started profiling to identify the bottleneck.
Drawcall and polycount where the main ones.

Polycount
The more polygons a mesh contains the heavier it is to render.



LOD
Note that if the decimation is too heavy for the mesh it can leads to popping between LOD’s transition.

DrawCalls
So if a meshes one material, it will be one drawcall and if a meshes have two materials, it will be three.
The more Drawcalls you have in the scene the more heavier it is to process for the computer.



ISM
This allow the computer to process for one Drawcall several meshes and, consequently, saving performances.
Nevertheless this component can’t make uses of LODs.

HISM


Selector Tool
Using editor utility widget, I can select all identical actors from the current selected actor that allows me to use the build-in Batching tool of unreal.
Plus several filters are available like “only with the same material” or “with a scale of one”.
This tool was very useful for other purpose in other projects.