Game does not have focus at launch

Tools - Mar 31, 2015

When running a game in PIE, standalone, or package the game does not gain initial focus. User must click inside the game window to enable input. ...

Assets Named with "~" or placed in Folders with "~" cannot be used

Tools - Mar 27, 2015

Using an asset with a "" character located in its name, will not allow that asset to be assigned to any other asset's input. For example a Texture with a "" in its name cannot be assigned to a Mate ...

Player Capsule angular velocity can launch a player when stepping on/off a physics simulated object

UE - Simulation - Physics - Destruction - Mar 24, 2015

Occasionally the player capsule can be launched due to bImpartBaseAngularVelocity being enabled in the CharacterMovementComponent. Disabling this does not result in the character capsule being launc ...

APEX Destruction works in the Mobile Preview window

UE - Platform - Mobile - Mar 23, 2015

APEX destruction renders when using the Play > Mobile Preview. ...

Material Parameter Collections must be reassigned to access new parameters

UE - Gameplay - Blueprint - Mar 23, 2015

To access newly created parameters in a Material Parameter Collection via the Set Scalar Parameter Value or Set Vector Parameter Value nodes, you must reassign the Collection to the node. Also Repr ...

Dragging Marquee in Orthographic Views results in Selecting Unintended Objects

Tools - Mar 17, 2015

In an orthographic view, dragging the marquee tool to select a group of objects will often result in other objects being selected outside the selection area. ...

"if" node contains extra equal marks in two places

UE - Rendering Architecture - Materials - Mar 17, 2015

There are two extra "=" marks on the "if" node: A>=B A==B This does not match documentation. *See image ...

Line traces don't consistently trigger when colliding between landscape components

UE - Simulation - Physics - Mar 15, 2015

Landscapes do not consistently return "hit" on traces. Lots of AH posts on this topic, and votes on public tracker: [Link Removed] ...

Cannot use a material instance to "Replace Reference" when deleting a material that is assigned to an image widget

UE - Editor - UI Systems - Mar 12, 2015

Material Instances are not given as options when assigning a replacement material to a UMG image widget after the original material was deleted. ...

ShooterGame player death creates Death Anim Timer handler incorrectly

Docs - Samples - Mar 10, 2015

In ShooterCharacter.cpp (line 376) there is a call to FMath::Min(0.1f, DeathAnimDurtation) that always returns 0.1. User suggests changing FMath::Min() to FMath::Max(). ...