attachTo

From Bohemia Interactive Community
Revision as of 15:47, 6 June 2009 by iceshade (talk | contribs) (Added Note syntax)
Jump to navigation Jump to search
Hover & click on the images for description

Description

Description:
Attaches an object to another object. The offset is applied to the object center unless a memory point is provided.
Multiplayer:
Only has to be executed on one client.
Groups:
Uncategorised

Syntax

Syntax:
Object attachTo [TObject,Offset,MemPoint]
Parameters:
Object: Object or player
TObject: Object or player
Offset: Array - format Position
MemPoint: String - (optional)
Return Value:
Nothing

Examples

Example 1:
player attachTo [car,[0,0,1]]; 
Example 2:
player attachTo [tank,[0,-1,0],"Usti hlavne"]; 

Additional Information

See also:
detach

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

Posted on June 6, 2009 - 13:47
IceShade
You can use setDir to change the direction of the attached object. The direction is relative to the object you attach it to, so setDir 180 won't point to the south but to the rear of the object you attach it to. Use setPos to synchronize the direction of the object in a network game. Example code: Object setDir 180; Object setpos getpos Object;

Bottom Section