Make Custom Event names start with "Event"/Fix "Event Event" issue with overridden Events

UE - Gameplay - Blueprint - Dec 17, 2015

If you name an Event something like "Event Foo", overriding the event in a ChildBP gives you "Event Event Foo" To avoid this, please make Custom Event names Start with "Event" ...

Overridding a function with no return value in a ChildBP produces an event instead of a function

UE - Gameplay - Blueprint - Dec 17, 2015

If you have a BP with a function that has no return value, then override that function in a ChildBP, it becomes an event and cannot be used like a normal function ...

Editor is missing internationalisation data

UE - Editor - UI Systems - Localization - Dec 16, 2015

The editor only has access to the "EFIGSCJK" data, rather than the "All" data. ...

Physics assets in blueprint react differently in sublevels

UE - Gameplay - Dec 16, 2015

Physics assets within a blueprint react improperly when placed in a sublevel. This error can clearly be seen within a user's youtube video located here: [Link Removed] Note: The fan asset attac ...

Text Render component does not render correctly when packaged out from a code project

UE - Foundation - Cpp Tools - Automation Tool - Dec 16, 2015

If a user packages a code project with text render components the render components will show up as hollow rectangles. ...

Player Gets Booted After Immediately Rejoining a Steam Lobby

UE - Online - Dec 16, 2015

Several licensees have reported this issue. It is caused by FSocketSubsystemSteam::UnregisterConnection being called twice - once after the player leaves the game, and once when it is garbage collec ...

Auto Convex Collision will cause crash when using significantly small meshes

UE - Gameplay - Dec 16, 2015

A hard crash can happen when applying auto convex collision to a complex mesh that is below a certain build scale or screen size. The meshes that cause this have higher poly counts and increasing th ...

Declaring a TMap as a UPROPERTY fails to compile with a boolean

UE - Foundation - Core - Dec 16, 2015

Declaring a TMap< [type], bool> will fail to compile if it is declared as a UPROPERTY. The error seems to be with the bool because TMap< [type], int8> will compile as a UPROPERTY. ...

The option to add a component to an Actor Blueprint from inside a child Actor Component BP isn't available

UE - Gameplay - Dec 16, 2015

The option to add a component to an Actor Blueprint from inside a child Actor Component BP isn't available. Using Get Owner inside the Actor Component's Event Graph and then casting to the owning Ac ...