EngineRestoreModelPhysicalPropertiesGroup

From Multi Theft Auto: Wiki
Revision as of 17:17, 7 November 2024 by Fernando187 (talk | contribs) (Remove obsolete Requirements section)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function restores original physical properties group used by given model.

Syntax

bool engineRestoreModelPhysicalPropertiesGroup ( int modelID )

Required Arguments

  • modelID: the id of model which you wish to restore original physical properties group of.

Returns

Returns true if there were no issues, if passed arguments were invalid an error is raised.

Example

Click to collapse [-]
Client
function restoreID(_, id)
    engineRestoreModelPhysicalPropertiesGroup(tonumber(id))
end
addCommandHandler ( "restoreID", restoreID )

See Also