The problem appears to occur when the distance from an edge is mixed with positive and negative values in VectorEPA function. The following workaround is suggested that uses absolute values of distances.
FORCEINLINE bool operator>(const VectorTEPAEntry& Other) const { #if 0 return static_cast<bool>(VectorMaskBits(VectorCompareGT(Distance, Other.Distance))); #else //workaround return static_cast<bool>(VectorMaskBits(VectorCompareGT(VectorAbs(Distance), VectorAbs(Other.Distance)))); #endif }
Unnatural EndOverlap occurs
i have this problem UE4CC-Windows-58DC12AF4B97F057BD108FBFF569B2E9_0000
I am not able to find world outliner how to enable it?
What method is used to fill polygonal regions when drawing spline mesh at run time?
How does TextureRenderTarget2D get TArray<uint8> type data?
How does UMG set overlapping layouts?
Undefined sysmbol: typeinfo for AActor when cross-compile linux dedicated server on windows
How to achieve HLSL Multiple Render Target in Material blueprints?
Delay nodes occasionally don't fire the "Completed" output in a nativized build
Why does the REMOVE method of map container remove elements have memory leaks?
There's no existing public thread on this issue, so head over to Questions & Answers just mention UE-237337 in the post.
0 |
Component | UE - Simulation - Physics |
---|---|
Affects Versions | 5.4, 5.5 |
Target Fix | 5.6 |
Created | Jan 8, 2025 |
---|---|
Updated | Jan 24, 2025 |