When converting a project to a different version of the engine, the GenerateProjectFiles.command process is not ran as it would be on Windows with GenerateProjectFiles.bat. This can cause issues, es ...
When creating a subclass of World Settings, attempting to use the in-editor compile button to compile the code causes the editor to crash. Found in 4.11 Preview 4. Reproduced in 4.10.2 binary and ...
Console variables such as "t.maxFPS", "CauseHitches", "t.unsteadFPS", and help "help" (these were all tested, there may be more untested with the same behavior) have description text in code howeve ...
If an actor that contains a delegate bound in code is duplicated after being placed in the level, the delegate for the duplicate will also trigger the delegate for the original as well. ...
In Array.h, there are a few typos in comments. In 4.9.2 and 4.10, the typos occur at line 2335 and 2359. *@param InIntem Item to be added. In Main, the typos are located at lines 2471 and 2495. ...
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. ...
Attempting to build the editor from source will fail to compile in VS if the computers Region format / Language is set to Turkish. This is caused by #ifndef Identifiers being translated incorrectly ...
If a block comment is used above the UCLASS Macro, leading spaces before the start of the comment causes UHT to fail and the solution to fail compile with a "Missing 'UCLASS' in Class declaration" e ...
Trying to pass a TAssetPtr to a BlueprintImplementableEvent function will result in a build failure. It appears that the TAssetPtr should be passed as a const reference, but this results in an error ...
The repro case is to create a material with a texture (texture T), apply it to some object, like a basic cube. Save out this level, level A. Create a new level, and add level A as a sublevel, and sa ...