EngineGetModelPhysicalPropertiesGroup: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 9: Line 9:


===Returns===
===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.
Returns '''id''' of physical properties group that requested model uses, in range of ''0-159'', if the object doesn't have a group assigned, ''-1'' is returned. If passed arguments were wrong, error is triggered.


==Example==  
==Example==  

Revision as of 09:30, 18 June 2023

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-159, 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 )

Requirements

This template will be deleted.

See Also