EngineGetModelPhysicalPropertiesGroup

From Multi Theft Auto: Wiki
Revision as of 11:48, 22 December 2019 by Forkerer (talk | contribs) (Initial version (by SublimeText.Mediawiker))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function gets physical properties group id used by given model.

Syntax

int engineGetModelPhysicalPropertiesGroup ( int modelID )

Required Arguments

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

Returns

Returns id of physical properties group that requested model uses, in range of 0-160, if the object doesn't have a group assigned, -1 is returned. If passed arguments were wrong, error is triggered.

Example

Click to collapse [-]
Client
function checkID(_, id)
    outputConsole(engineGetModelPhysicalPropertiesGroup(tonumber(id)))
end
addCommandHandler ( "checkID", checkID )

See Also