setVehiclePosition

From Bohemia Interactive Community
Revision as of 11:09, 22 June 2015 by Killzone Kid (talk | contribs) (wip, paused, need coffee)
Jump to navigation Jump to search
-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Moves the object to a given position (same as createVehicle placement algorithm). Uses either the position that's defined by the position param, or one of the marker positions from the markers array. The object is placed inside a circle with position as its center and placement as its radius. The type of placement could also be controlled with special
Groups:
Uncategorised

Syntax

Syntax:
object setVehiclePosition [position, markers, placement, special]
Parameters:
object: Object
[position, markers, placement, special]: Array
position: Position, Position2D or Object - Desired placement position
markers: Array - If the markers array contains several marker names, the position of a random one is used. Otherwise, the given position is used.
placement: Number - The vehicle is placed inside a circle with given position as center and placement as its radius
special (Optional): String - "NONE", "FLY", "FORM", "CAN_COLLIDE". "CAN_COLLIDE" creates the vehicle exactly where asked, not checking if others objects can cross its 3D model. Default: "NONE"
Return Value:
Nothing

Examples

Example 1:
player setVehiclePosition [[1000,2000], ["Pos1","Pos2","Pos3"], 0, "CAN_COLLIDE"] Will place the player at either [1000,2000], or one of the three markers positions.

Additional Information

See also:
See also needed

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

Notes

Bottom Section