External textures only work in pixel shaders

UE - Platform - Mobile - Nov 21, 2017

External textures currently only support pixel shaders, presumably because some platforms, such as Android only have pixel shader support. On other platforms this causes a regression though: For exa ...

Audit usage of StaticClass() in AssetMappingTable and AnimationAsset code

OLD - Anim - Jan 24, 2018

A user has pointed out that code in AssetMappingTable.cpp and AnimationAsset.cpp are using the StaticClass() method on pointers. Because StaticClass is a static method, it relies on name hiding to ...

DebugEditor checkLockFreePointerList(TLS.NumPartial >= 0 && ((!!TLS.NumPartial) == (!!TLS.PartialBundle))) fails

UE - Foundation - Core - Feb 6, 2018

Occasionally, the Engine/Editor crashes on startup with an assertion in the lock-free void pointer list. ...

Possible to have a null AudioComponent in ApplySettings

UE - Audio - Mar 5, 2018

User is having issues where they are getting crashes in ApplyVoiceSettings. This should only ever be called from FVoiceEngineImpl::SubmitRemoteVoiceData. In that method, if no SynthComponent is av ...

Cannot compile nativized Blueprints containing a delegate signature that includes a TMap (paired) type as a parameter.

UE - Gameplay - Blueprint - May 15, 2018

Paired types (e.g. TMap) in a delegate signature do not compile after nativizing a Blueprint class containing it due to the macro expansion and comma inside the template spec between key and value t ...

Incorrect render target index assignment in GLSLBackend

UE - Graphics Features - May 18, 2018

While investigating [Link Removed], I have found that GLSLBackend always automatically generates render target location indices, regardless of user-specified ones via SV_TargetX HLSL semantics. Rel ...

Game projects that rely on legacy include paths are not compatible with Blueprint nativization.

UE - Gameplay - Blueprint - Nov 10, 2018

Using legacy-style #include paths in a game project is allowed by UBT by default, but it's currently not compatible with Blueprint nativization, as it does not account for this possibility. Current ...

Duplicate Physics replication call in PhysScene_PhysX.cpp

UE - Simulation - Physics - Nov 27, 2018

There is a duplicated block of physics replication code in PhysScene_PhysX.cpp  https://github.com/EpicGames/UnrealEngine/blob/release/Engine/Source/Runtime/Engine/Private/PhysicsEngine/PhysScene_P ...

AccumulateCurveMetaData unnecessarily marks the package dirty

OLD - Anim - Mar 5, 2019

AccumulateCurveMetaData makes calls to MarkPackageDirty even when the data hasn't changed. ...