GameMode::InitNewPlayer trims player name at hardcoded 20-symbols limit

UE - Gameplay - Oct 29, 2015

Need to generally address how to clamp player name. InitNewPlayer seems to be the only place where player name length is enforced, and it's enforced in a poor way. Needs to be enforced uniformly acr ...

Crash occurs when unmuting a user while Voice Chat and Network Replays are both active

UE - Networking - Oct 29, 2015

User claims that crash occurs when a new user joins a session and the program attempts to unmute the existing players. This only occurs if Network Replays are active. Note: No reproduction has yet ...

Custom animation node in game module fails to load in -game or packaged project

OLD - Anim - Oct 29, 2015

Not sure if this is an Animation or a Core issue, but a runtime Anim Node will not load properly with "-game" or in a packaged build. The developer that made this sample read this blog post: [Link ...

Uninitialized navmesh actor is created when loading a map without one

UE - AI - Oct 28, 2015

Static navmesh shouldn't be auto created in game world. Can be only loaded in with level. ...

Ribbon issue with local space and source rotation.

UE - Graphics Features - Oct 28, 2015

Issue is detailed in the UDN linked. Investigate and fix. ...

Ribbon Type Particles will not follow Local Space Particles when assigned as Source

UE - Graphics Features - Oct 28, 2015

When set to use another Emitter's Particles as Source, Ribbon Particles ignore movement of particles in the world if they (the source particles) are set to local space. [Image Removed] ...

Specifying a custom UMovementComponent class via SetDefaultSubobjectClass() does not seem to serialize default value edits correctly on the CDO.

UE - Foundation - Core - Oct 28, 2015

Possibly some sort of issue related to SetDefaultSubobjectClass() rather than UMovementComponent specifically. I was able to reproduce in 4.10 release branch and in //UE4/Main with the test project ...

GameMode::AddInactivePlayer memory leak

UE - Gameplay - Oct 28, 2015

AddInactivePlayer does a couple .RemoveAt() calls, should probably destroy the actors when that happens as well. ...

PlayerController leak if GameMode::FindPlayerStart returns nullptr

UE - Gameplay - Oct 28, 2015

In short, if FindPlayerStart returns null (e.g. via a licensee override), UWorld::SpawnPlayActor() will fail and return null even though it actually created a PlayerController successfully. ...

character movement velocity negatively affected by framerate

UE - Gameplay - Oct 28, 2015

Lower framerates directly affect the velocity of a character's movement if that velocity is provided by another source. ...