MTA:Eir/functions/engineIsStreamingNodeStealingAllowed

From Multi Theft Auto: Wiki
Revision as of 07:01, 11 December 2013 by The GTA (talk | contribs) (Created page with "__NOTOC__ This function returns whether Streaming GC node stealing performed by GTA:SA. This is the functionality that directly causes wo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function returns whether Streaming GC node stealing 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