FArchive broke operator<< for bool in Editor builds

UE - Foundation - Core - Feb 16, 2017

Looks like CL-3215392 added changes in FArchive where the operator<< method for bool is a member operator in Editor (as opposed to a global operator in non-editor and old builds). This causes shado ...

Engine Crashes when saving a project to disk space is full

UE - Foundation - Core - Feb 14, 2017

I ran out of space in my D drive and my project autosaved and received the attached error message This is NOT a regression ...

Access Violation in delegatesignatureimpl.inl after HotReload

UE - Foundation - Core - Jan 27, 2017

This is the third different callstack in an attempt to repro a HotReload crash I am experiencing. The other two are:[Link Removed]: Nullptr Ensure and crash after HotReloading[Link Removed]: Assert ...

Assert in EditorEngine.cpp after HotReload

UE - Foundation - Core - Jan 27, 2017

This occurred when I tried to repro an ensure and crash the resulted in [Link Removed]. In the crash group on the Crashreport website I noticed that KimK had the same callstack as this one. She wrot ...

Nullptr Ensure and crash after HotReloading

UE - Foundation - Core - Jan 26, 2017

Following my repro, I hit an ensure and crash. The two times I tried to repro after my first crash resulted in different call stacks. I'll comment the other Jiras once I have them in. One of my cra ...

Out of date info and typo in comments for DDC in BaseEngine.ini

UE - Foundation - Core - Jan 25, 2017

In BaseEngine.ini,Comment says "DerivedDataBackendGraph is the default graph" - this information needs to be updated to mention that launcher installs of the engine would use "InstalledDerivedDataB ...

FMonitoredProcess does not properly support -nothreading mode

UE - Foundation - Core - Jan 19, 2017

For single threaded mode, we need to update FMonitoredProcess to handle processing in a single threaded fashion. Currently, we are continuing before the process has completed, which could result in ...

Vectorized and Non-Vectorized FTransform Accumulate are inconsistent with Blendweights

UE - Foundation - Core - Jan 11, 2017

The vectorized version of FTransform::Accumulate and FTransform::AccumulateWithAdditiveScale3D only blend the rotation, but not the translation or scale. This is divergent behavior from the non-vec ...

IsTickableInEditor is ignored

UE - Foundation - Core - Jan 10, 2017

Changing IsTickableInEditor to false does not prevent an object from ticking while in editor mode. ...