we can do a "cheap fix" here by adding the "IgnoreTypePromotion" metadata to the date time functions, but there are some underlying issues with the FindBestMatching func in this case causing it to f ...
There is a one-line fix for this in a shader file, see their PR on GitHub:https://github.com/EpicGames/UnrealEngine/pull/10251/files ...
The time field of a subtitle is incremented incorrectly at runtime. This is caused by the wrong array being modified by the subtitle manager when queuing subtitles. A fix is provided by the licensee ...
Box select always selects skeletal meshes in ortho viewports, even when not touching the actor. Switching on Strict Box Selection fixes it as a workaround. ...
A crash can occur in FMediaPlayerBase::TickPlayer in Shipping builds. This is because FMediaPlayerBase::NativePlayer is not a thread-safe shared pointer. The fix is to make it ESPMode::ThreadSafe. ...
Continuation of [Link Removed] Previous ticket addressed the crash. However, it didn't fix the FScoedLevelCollectionContextSwitch to allow for demo commands to be run from Execute Console Commands. ...
Reproduced in 4.19.0 CL 3944462 and 4.20 Main Unable to reproduce in 4.18.3 CL 3832480. This is a regression. ...
Attempting to package a project that has nativization enabled for a function that takes a delegate-type variable as an input results in failure. Regression?: No This occurred in 4.19 ...
Retarget source doesn't affect DDC key, so it causes incorrect result. Changing the anim sequence DDC key generation to include it fixes this issue. ...
Events in subscenes can be skipped if playback skips over the end of the subscene before evaluating the event. ECS allows for determinism fences which can fix this issue. ...