object: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\|game([0-9]) ?= (.+) \|version([0-9]) ?= (.+) " to "|game$1= $2 |version$3= $4 ") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
Line 10: | Line 10: | ||
|descr= Returns [[Object]] with given id. Object's id can be checked in mission editor. | |descr= Returns [[Object]] with given id. Object's id can be checked in mission editor. | ||
{{Feature| | {{Feature|important|For later titles, use [[nearestObject]] command family instead.}} | ||
|s1= | |s1= [[object]] id | ||
|p1= id: [[Number]] | |p1= id: [[Number]] | ||
Line 18: | Line 18: | ||
|r1= [[Object]] | |r1= [[Object]] | ||
|x1= <code>_object = | |x1= <code>_object = [[object]] 1; </code> | ||
|seealso= [[nearestObjects]], [[nearObjectsReady]], [[nearObjects]], [[nearestObject]] | |seealso= [[nearestObjects]], [[nearObjectsReady]], [[nearObjects]], [[nearestObject]] |
Revision as of 17:30, 6 June 2021
Description
- Description:
- Returns Object with given id. Object's id can be checked in mission editor.
- Groups:
- Object Detection
Syntax
Examples
- Example 1:
_object = object 1;
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
- Posted on 22:10, 1 August 2006
- Hoz
-
1.75 To check object's id in the Mission Editor click on "Show IDs" and zoom in closely.
1.85 You cannot_object setPos [-10000, 0 ,0];
terrain objects to get them out of the way, but you can use_object setDamage 1;
to get trees or other flora out of the way.
1.08 This command is no longer available due to terrain data streaming, you need to use extended variant of nearestObject instead.