TileCount

How many tiles should the resulting movie render be broken into? A tile should be no larger than the maximum texture resolution supported by your graphics card (likely 16k), so NumTiles should be ceil(Width/MaxTextureSize).

Windows
MacOS
Linux

Syntax

[UPROPERTY](Programming/UnrealArchitecture/Reference/Properties)(EditAnywhere, BlueprintReadWrite, Meta=(UIMin="1", ClampMin="1", UIMax="16"),
          Category="Render Settings")
int32 TileCount

Remarks

How many tiles should the resulting movie render be broken into? A tile should be no larger than the maximum texture resolution supported by your graphics card (likely 16k), so NumTiles should be ceil(Width/MaxTextureSize). More tiles mean more individual passes over the whole scene at a smaller resolution which may help with gpu timeouts. Requires at least 1 tile. Tiling is applied evenly to both X and Y.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss