MTA:Eir/functions/engineIsStreamingNodeStealingAllowed

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

This function returns whether Streaming GC node stealing is performed by GTA:SA. This is the functionality that directly causes world flickering if the engine encounters Streaming GC node shortage. It is recommended to disable this functionality and use garbage collection instead.

By default, Streaming GC node stealing is allowed.

Syntax

bool engineIsStreamingNodeStealingAllowed ()

Returns

Returns true if the GTA:SA engine is allowed to take away Streaming GC nodes from on-screen/visible entities, false otherwise.

Example

Click to collapse [-]
Client

This snippet turns on garbage collection if Streaming node stealing is found enabled.

if ( engineIsStreamingNodeStealingAllowed() ) then
    engineAllowStreamingNodeStealing( false );
    engineStreamingSetGCOnDemandEnabled( true );
end