getModelInfo: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}") |
(formatting and cleaned up see also) |
||
Line 1: | Line 1: | ||
{{RV|type=command | {{RV|type=command | ||
| arma3 | |game1= arma3 | ||
|1.50 | |version1= 1.50 | ||
|gr1= Object Manipulation | |gr1= Object Manipulation | ||
| Returns object's model info | |descr= Returns object's model info. Model path is suitable for use with [[createSimpleObject]] command. | ||
| '''getModelInfo''' object | |s1= '''getModelInfo''' object | ||
| [[Array]] - [modelName, modelPath, hasSkeleton] | |p1= object: [[Object]] | ||
|r1= [[Array]] - Array in format [modelName, modelPath, hasSkeleton] | |||
|x1= <code>_modelInfo = [[getModelInfo]] [[player]]; {{cc|["b_soldier_03.p3d", "a3\characters_f\blufor\b_soldier_03.p3d", true]}}</code> | |||
|x2= <code>_modelInfo = [[getModelInfo]] [[cursorObject]];</code> | |x2= <code>_modelInfo = [[getModelInfo]] [[cursorObject]];</code> | ||
|seealso= [[cursorObject]] | |seealso= [[cursorObject]] [[cursorTarget]] [[createSimpleObject]] [[getObjectType]] [[getObjectTextures]] [[objectParent]] | ||
}} | }} | ||
Revision as of 16:55, 21 March 2021
Description
- Description:
- Returns object's model info. Model path is suitable for use with createSimpleObject command.
- Groups:
- Object Manipulation
Syntax
- Syntax:
- getModelInfo object
- Parameters:
- object: Object
- Return Value:
- Array - Array in format [modelName, modelPath, hasSkeleton]
Examples
- Example 1:
_modelInfo = getModelInfo player; // ["b_soldier_03.p3d", "a3\characters_f\blufor\b_soldier_03.p3d", true]
- Example 2:
_modelInfo = getModelInfo cursorObject;
Additional Information
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note