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. ...
Unexpected behaviour when painting skeletal meshes with small radius brush. This does not occur with static meshes. Confirmed in 4.25 MAIN @ CL 9730599 ...
Importing an fbx file with armature on MAC results in crash Tested: 4.23.1 CL#9631420, 4.25 CL#10889200 ...
Offsetting UVs can result in blurred texture on Android/Quest Confirmation in MAIN 4.25 @ CL 11384989 blocked by [Link Removed] ...
Dynamically created media texture is not applied to assigned meshes. Tested in: 4.23.1 CL#9631420, 4.25 CL#11574810 ...
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. ...