getModelInfo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
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 in format [modelName, modelPath, hasSkeleton]. Model path is suitable for use with [[createSimpleObject]] command.
|descr= Returns object's model info. Model path is suitable for use with [[createSimpleObject]] command.


| '''getModelInfo''' object
|s1= '''getModelInfo''' object
| p1= object: [[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>


|x1= <code>_modelInfo = [[getModelInfo]] [[player]];</code>
|x2= <code>_modelInfo = [[getModelInfo]] [[cursorObject]];</code>
|x2= <code>_modelInfo = [[getModelInfo]] [[cursorObject]];</code>


|seealso= [[cursorObject]], [[cursorTarget]], [[createSimpleObject]], [[getObjectType]], [[getObjectTextures]], [[allMissionObjects]], [[setObjectViewDistance]], [[setObjectViewDistance]], [[objectParent]], [[object]]
|seealso= [[cursorObject]] [[cursorTarget]] [[createSimpleObject]] [[getObjectType]] [[getObjectTextures]] [[objectParent]]
}}
}}
{{GameCategory|arma3|New Scripting Commands}}
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
{{GameCategory|arma3|Scripting Commands}}
<!-- DISCONTINUE Notes -->

Revision as of 17:55, 21 March 2021

Hover & click on the images for description

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

See also:
cursorObject cursorTarget createSimpleObject getObjectType getObjectTextures objectParent

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