In UE4, "Private" for Blueprint variables was misnamed: its behavior actually meant "Protected". In other words, it can't be read or written to by external objects, but it can be by derived types. A ...
Possibly one of the lesser know features of Blueprints is that we allow the connection of an array of actors to the "self" pin of a function (see pic). This is essentially a shorthand for writing an ...
The fixup code for repairing Widget bindings in UE5 assumes that a compile occurs first. However, saving the asset does not cause a compilation to occur. When we reload the asset and open it in the ...
Compiling a blueprint that is in a level makes that level get marked as dirty/needing saving. [Image Removed] ...
Vector addition wildcard does not cast from integer to float (double-precision) when split apart vector pin is utilized. You can also utilize a Vector2D to get the same results. Repro Rate: 3/3 Te ...
Two conditions for this bug to appear:The new actor class we are re-parenting to overwrites the root component in C++The map is not loaded while re-parenting No current workaround other than to rep ...
Assertion fails when a struct is opened with a class reference stored and with the struct as a variable in the class that's referenced. A restart is required in order to see this occur. Repro Rate: ...
This is not a regression. Splitting a Structure input pin from within a Collapsed node results in duplicate inputs that over ride any data passed into the struct pin. ...