I am doing some runtime manipulation of data layers and I am running into a check failure due to a zero guid in FLevelInstanceActorGuid::GetGuid during multiplayer testing. When I debug FLevelInsta ...
A crash occurs when using ray tracing with spline meshes preceded by the following ensure : Ensure condition failed: NumCPUVertices <= VertexBufferNumElements File: Engine\Source\Runtime\Renderer\ ...
static FVector PointDirectionPlaneIntersection(const FVector Point, const FVector Direction, const FPlane Plane) { return Point + Direction * ((Plane.W - (Point | Plane)) / (Direction | Plane)) ...
Context Lumen is the default global illumination and reflections system. Lumen renders diffuse interreflection with infinite bounces and indirect specular reflections in large, detailed environments ...
Up vector is not configurable so Foot Placement does support variable gravity cases. ...
This is due to the same reason behind [Link Removed], as the stack object is passed to MARK_PROPERTY_DIRTY rather than the array property's owner. ...
Capsule component renders incorrectly with non-uniform scale because the render uses the minimum between the X and Y values and the collision code uses the maximum between the two. This issue is men ...
The problem here isn't obvious: the native enum, EAnotherEnum, is missing the Flags flag for the UEnum. As a result, K2Node_GetEnumeratorNameAsString returns the max enum when it gets a combined fla ...
While we do have an auto cast function that handles an int to string conversion, bitmask ints use a "bitmask" subcategory which thwarts are ability to find the cast function. ...
This is almost identical to [Link Removed]. The difference is that we need a variant of UEnum::GetNameByValue that supports bitmasks. We'll likely have to run this by Core. ...