MTA:Eir/functions/engineGetActiveStreamingEntities

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

This function returns a table of MTA entities that have a streaming garbage collection node allocated. Those entities can be deallocated once GTA:SA has reached its maximum streaming memory (the setting in your Video options tab). Certain types of entities can only render if they have a streaming node allocated.

Syntax

table engineGetActiveStreamingEntities ()

Returns

Returns a table of all MTA entities that reside inside of the streaming garbage collector.

Example

Click to collapse [-]
Client

This snippet makes every entity inside of the streaming garbage collector transparent.

addCommandHandler( "alpha_test",
    function()
        local entities = engineGetActiveStreamingEntities();

        for m,n in ipairs( entities ) do
            setElementAlpha( n, 101 );
        end
    end
);