MTA:Eir/functions/engineSetInfiniteStreamingEnabled

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This function enables or disables heap allocation of streaming garbage collector nodes. The allocation behavior order is changed using engineSetStrictStreamingNodeDistributionEnabled. If enabled, GTA:SA can keep an theoretically infinite amount of entities inside of the streaming garbage collector. This also means that an theoretically infinite amount of entities can render on-screen at a time.

By default, infinite streaming is disabled.

Syntax

bool engineSetInfiniteStreamingEnabled ( bool enabled )

Arguments

  • enabled: a boolean deciding whether heap allocating of Streaming GC nodes is a viable option.

Returns

Returns true if enabled is passed as valid bool, false otherwise.

Example

Click to collapse [-]
Client

This snippet ultimatively fixes the world flickering.

engineSetStrictStreamingNodeDistributionEnabled( false );
engineSetInfiniteStreamingEnabled( true );