MTA:Eir/functions/engineGetActiveStreamingEntities
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 [-]
ClientThis 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 );