EngineRestreamModel

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

ADDED/UPDATED IN VERSION 1.7.0 r25613:
This function re-streams a specific model in the GTA world.

Syntax

bool engineRestreamModel ( int modelId )

Returns

Returns true if the re-stream was successful, false otherwise.

Example

This function can be used after a model (or more) is loaded with engineImageLinkDFF:

addEventHandler ("onClientResourceStart", resourceRoot, function ()
    engineRestreamModel (445)
end)

See Also