EngineGetModelPhysicalPropertiesGroup: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Initial version (by SublimeText.Mediawiker))
 
No edit summary
 
(2 intermediate revisions by 2 users not shown)
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==  
Line 20: Line 20:
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
==Requirements==
{{Requirements|n/a|1.5.7-9.19626|}}


==See Also==
==See Also==
{{Client_object_functions}}
{{Engine_functions}}

Latest 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

Minimum server version n/a
Minimum client version 1.5.7-9.19626

Note: Using this feature requires the resource to have the above minimum version declared in the meta.xml <min_mta_version> section. e.g. <min_mta_version client="1.5.7-9.19626" />

See Also