attachTo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " " to " ")
m (Text replacement - "\| *arma2 * * *\| *([0-1]\.[0-9]{2}) * \|game2" to "|game1= arma2 |version1= $1 |game2")
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma2
|game1= arma2
|1.00
|version1= 1.00


|game2= arma2oa
|game2= arma2oa
Line 19: Line 19:
|gr1= Object Manipulation
|gr1= Object Manipulation


| Attaches an object to another object.
|descr= Attaches an object to another object.
* The offset is applied to the object center unless a memory point is provided, in which case the offset will be applied to the memory point position.
* The offset is applied to the object center unless a memory point is provided, in which case the offset will be applied to the memory point position.
* If no offset is specified, the current offset between the two objects will be used.
* If no offset is specified, the current offset between the two objects will be used.
Line 25: Line 25:
{{Feature | Informative | Using [[setDir]] on an [[attachedObjects|attached object]] sets its direction '''relative''' to the reference object's direction, e.g '''0''' will make it face the same direction as the reference object, '''90''' face to the right, '''180''' face to the back, etc.<br>
{{Feature | Informative | Using [[setDir]] on an [[attachedObjects|attached object]] sets its direction '''relative''' to the reference object's direction, e.g '''0''' will make it face the same direction as the reference object, '''90''' face to the right, '''180''' face to the back, etc.<br>
Attached triggers only follow the direction of the object to which they are attached, not pitch or roll.}}
Attached triggers only follow the direction of the object to which they are attached, not pitch or roll.}}
|mp= use {{ic|_attachedObj [[setPosASL]] [[getPosASL]] _attachedObj}} after [[setDir]] to synchronise set direction over the network (see [[setDir|setDir's page]] for its MP behaviour).
|mp= use {{ic


|object1 [[attachTo]] [object2, offset, memPoint, followBoneRotation]
|descr=_attachedObj [[setPosASL]] [[getPosASL]] _attachedObj}} after [[setDir]] to synchronise set direction over the network (see [[setDir|setDir's page]] for its MP behaviour).
 
|s1= object1 [[attachTo]] [object2, offset, memPoint, followBoneRotation]


|p1= object1: [[Object]] - object to attach
|p1= object1: [[Object]] - object to attach
Line 39: Line 41:
|p5= followBoneRotation: [[Boolean]] - (Optional) follows the memory point's rotation (if attached to one) {{Since|arma3|2.01.147011|y}}
|p5= followBoneRotation: [[Boolean]] - (Optional) follows the memory point's rotation (if attached to one) {{Since|arma3|2.01.147011|y}}


| [[Nothing]]
|r1=[[Nothing]]


|x1= <code>[[player]] [[attachTo]] [car, [0, 0, 1]]; </code>
|x1= <code>[[player]] [[attachTo]] [car, [0, 0, 1]];</code>


|x2= <code>[[player]] [[attachTo]] [tank, [0, -1, 0], "Usti hlavne"];</code>
|x2= <code>[[player]] [[attachTo]] [tank, [0, -1, 0], "Usti hlavne"];</code>
Line 64: Line 66:


<dl class="command_description">
<dl class="command_description">
<dt><dt>
<dt><dt>
<dd class="notedate">Posted on September 17, 2011 - 19:20</dd>
<dd class="notedate">Posted on September 17, 2011 - 19:20</dd>
Line 109: Line 112:
Vehicles may start flipping with no mass calculation (ie tank might fly), player object might gain infinite Z-vector velocity on any interaction with terrain relief and other objects.
Vehicles may start flipping with no mass calculation (ie tank might fly), player object might gain infinite Z-vector velocity on any interaction with terrain relief and other objects.
</dd>
</dd>
<dt><dt>
<dt><dt>
<dd class="notedate">Posted on August 13, 2019 - 12:55 (UTC)</dd>
<dd class="notedate">Posted on August 13, 2019 - 12:55 (UTC)</dd>
Line 118: Line 122:
</dl>
</dl>


{{GameCategory|arma2|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}
{{GameCategory|tkoh|Scripting Commands}}

Revision as of 01:18, 14 June 2021

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, in which case the offset will be applied to the memory point position.
  • If no offset is specified, the current offset between the two objects will be used.
Using setDir on an attached object sets its direction relative to the reference object's direction, e.g 0 will make it face the same direction as the reference object, 90 face to the right, 180 face to the back, etc.
Attached triggers only follow the direction of the object to which they are attached, not pitch or roll.
Multiplayer:
use -No code provided- after setDir to synchronise set direction over the network (see setDir's page for its MP behaviour).
Groups:
Object Manipulation

Syntax

Syntax:
object1 attachTo [object2, offset, memPoint, followBoneRotation]
Parameters:
object1: Object - object to attach
object2: Object - object to attach to
offset: Array - (Optional) format PositionRelative
memPoint: String - (Optional) see ArmA: Selection Translations for czech selections names
followBoneRotation: Boolean - (Optional) follows the memory point's rotation (if attached to one) Template:Since
Return Value:
Nothing

Examples

Example 1:
player attachTo [car, [0, 0, 1]];
Example 2:
player attachTo [tank, [0, -1, 0], "Usti hlavne"];
Example 3:
Automatic offset: ammoCrate attachTo [player];
Example 4:
To set orientation of attached object use setVectorDirAndUp command:
Sbomber.jpg
_expl1 = "DemoCharge_Remote_Ammo" createVehicle position player;
_expl1 attachTo [player, [-0.1, 0.1, 0.15], "Pelvis"];
_expl1 setVectorDirAndUp [[0.5, 0.5, 0], [-0.5, 0.5, 0]];
_expl2 = "DemoCharge_Remote_Ammo" createVehicle position player;
_expl2 attachTo [player, [0, 0.15, 0.15], "Pelvis"];
_expl2 setVectorDirAndUp [[1, 0, 0], [0, 1, 0]];
_expl3 = "DemoCharge_Remote_Ammo" createVehicle position player;
_expl3 attachTo [player, [0.1, 0.1, 0.15], "Pelvis"];
_expl3 setVectorDirAndUp [[0.5, -0.5, 0], [0.5, 0.5, 0]];

Additional Information

See also:
attachObjectattachedObjectsattachedTowaypointAttachVehiclewaypointAttachedVehiclelightAttachObjecttriggerAttachVehicleattachedObjectdetachsetVectorDirsetVectorUpsetVectorDirAndUpmodelToWorldBIS_fnc_transformVectorDirAndUp

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 September 17, 2011 - 19:20
teaCup
Some objects you cannot attach anything to. To be more precise, you can attach objects to them, but the behaviour is unexpected. For instance: SuitcaseObject attachTo [FoldingTableObject, [0,0,0]]; You would expect the suitcase to jump to the pivot point of the table, and stick to it.
Instead, the suitcase will freeze in it is original position. Even if the table is moved, the suitcase will be unaffected: it will not follow the table, it will not even respond to actions it reacted to prior to being attached: pushing, being shot at, etc.. It's just an object frozen in space. In MP it is even weirder, the suitcase would turn invisible.
Dodgy objects when it comes to attaching things to them: most in Objects (small), Objects (signs), all of Objects (helpers) categories, etc.
Posted on March 28, 2014 - 16:22
Pixinger77
If you attach an explosive charge to an object (e.g. ammobox), the charge will not detonate when you simply set the damage to 1. You must detach it before. private _target = myAmmoBox; // create and attach charge private _charge = "DemoCharge_Remote_Ammo_Scripted" createVehicle position player; _charge attachTo [_target, [0, 0, 0.2]]; _charge setVectorDirAndUp [[0.5,0.5,0], [-0.5,0.5,0]]; // now detonate charge detach _charge; // Important! _charge setDamage 1;
Posted on 1 Jun, 2014 - 2300
ffur2007slx2_5
(Arma 3 ver 1.20) attachTo overwrites setVectorDirAndUp if attached obj was changed to attach another one. _obj attachTo [_logic,[0, 0, 0]]; _obj setVectorDirAndUp [[0, 1, 0], [0, 0, -1]]; _obj attachTo [_logic, [0, 0, 2]]; // vector no changes _obj attachTo [_anotherOne, [0, 0, 0]]; // vector changes to default
Posted on September 25, 2014 - 10:00
ondrejkuzel
Attaching an object does not update the accessibility of a place for the AI. The command should not be used for positioning large static objects - the AI will simply walk through such objects.
Posted on September 1, 2016 - 17:54 (UTC)
Demellion
Using attachTo with objects that have ragdoll physics (such as ammo boxes, containers, etc.) may cause unexpected behaviour. When you do so, if the attached object intersect origin object, origin object may gain some enormous collision properties even if the collision model for the attached object is not present localy to origin object, until detached. Vehicles may start flipping with no mass calculation (ie tank might fly), player object might gain infinite Z-vector velocity on any interaction with terrain relief and other objects.
Posted on August 13, 2019 - 12:55 (UTC)
R3vo
When attaching an unit which is playing an animation to a static object, the animation becomes laggy. Presumably because the update frequency of the static object is used.