attachTo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
m (Some wiki formatting)
 
(9 intermediate revisions by 3 users not shown)
Line 23: Line 23:
* 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.


{{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 |  
Attached triggers only follow the direction of the object to which they are attached, not pitch or roll.}}
* All direction commands, such as [[setDir]], [[setVectorDirAndUp]], etc. for an [[attachedObjects|attached object]] should be used '''relative''' to the reference object's direction (i.e. in model space), e.g <sqf inline>_attachedObj setDir 0</sqf> will make it face the same direction as the reference object, '''90''' face to the right, '''180''' face to the back, etc.<br>
|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).
* Attached triggers only follow the direction of the object to which they are attached, not pitch or roll.}}
 
|mp= Use <sqf inline>_attachedObj setPosWorld getPosWorld _attachedObj</sqf> 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]
|s1= object1 [[attachTo]] [object2, offset, memPoint, followBoneRotation]
Line 33: Line 35:
|p2= object2: [[Object]] - object to attach to
|p2= object2: [[Object]] - object to attach to


|p3= offset: [[Array]] - (Optional) format [[Position#PositionRelative|PositionRelative]]
|p3= offset: [[Array]] format [[Position#PositionRelative|PositionRelative]] - (Optional) the position relative to ''object2''<nowiki/>'s position


|p4= memPoint: [[String]] - (Optional) see [[ArmA: Selection Translations]] for czech selections names
|p4= memPoint: [[String]] - (Optional) see {{Link|ArmA: Armed Assault: Selection Translations|Selection Translations}} for czech selections names


|p5= followBoneRotation: [[Boolean]] - (Optional) follows the memory point's rotation (if attached to one)
|p5= followBoneRotation: [[Boolean]] - (Optional) follows the memory point's rotation (if attached to one)
Line 50: Line 52:


|x4= To set orientation of attached object use [[setVectorDirAndUp]] command:<br>
|x4= To set orientation of attached object use [[setVectorDirAndUp]] command:<br>
[[File:Sbomber.jpg|300px|right]]
[[File:Sbomber.jpg|300x200px|right]]
<sqf>
<sqf>
_expl1 = "DemoCharge_Remote_Ammo" createVehicle position player;
_expl1 = "DemoCharge_Remote_Ammo" createVehicle position player;
Line 63: Line 65:
</sqf>
</sqf>


|seealso= [[attachObject]] [[attachedObjects]] [[attachedTo]] [[waypointAttachVehicle]] [[waypointAttachedVehicle]] [[lightAttachObject]] [[triggerAttachVehicle]] [[attachedObject]] [[detach]] [[setVectorDir]] [[setVectorUp]] [[setVectorDirAndUp]] [[modelToWorld]] [[BIS_fnc_transformVectorDirAndUp]]
|x5= [[File:arma3_attachTo-example-worker-drill-and-radio.png|300x200px|right]]
<sqf>
_drill attachTo [_worker, [0.0595885,-0.00950365,-0.13495], "RightForeArmRoll", true];
_drill setVectorDirAndUp [[0.536966,-0.00438141,-0.843605],[0.345872,0.913231,0.215406]];
_radio attachTo [_worker, [-0.100003,0.069064,0.153719], "Spine3", true];
_radio setVectorDirAndUp [[-0.144569,-0.48725,0.861354],[0.039712,0.866938,0.497072]];
</sqf>
 
|seealso= [[attachedTo]] [[attachedObjects]] [[detach]] [[getRelPos]] [[attachObject]] [[attachedObject]] [[waypointAttachVehicle]] [[waypointAttachedVehicle]] [[lightAttachObject]] [[triggerAttachVehicle]] [[setVectorDir]] [[setVectorUp]] [[setVectorDirAndUp]] [[modelToWorld]] [[BIS_fnc_transformVectorDirAndUp]]
}}
}}


<dl class="command_description">
{{Note
 
|user= TeaCup
<dt><dt>
|timestamp= 20110917192000
<dd class="notedate">Posted on September 17, 2011 - 19:20</dd>
|text= Some objects you cannot attach anything to. To be more precise, you can attach objects to them, but the behaviour is unexpected. For instance:
<dt class="note">[[User:TeaCup|teaCup]]</dt>
<dd class="note">
Some objects you cannot attach anything to. To be more precise, you can attach objects to them, but the behaviour is unexpected. For instance:
<sqf>SuitcaseObject attachTo [FoldingTableObject, [0,0,0]];</sqf>
<sqf>SuitcaseObject attachTo [FoldingTableObject, [0,0,0]];</sqf>
You would expect the suitcase to jump to the pivot point of the table, and stick to it.<br>
You would expect the suitcase to jump to the pivot point of the table, and stick to it.<br>
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.<br>
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.<br>
Dodgy objects when it comes to attaching things to them: most in Objects&nbsp;(small), Objects&nbsp;(signs), all of Objects&nbsp;(helpers) categories, etc.
Dodgy objects when it comes to attaching things to them: most in Objects&nbsp;(small), Objects&nbsp;(signs), all of Objects&nbsp;(helpers) categories, etc.
<dt><dt>
}}
<dd class="notedate">Posted on March 28, 2014 - 16:22</dd>
 
<dt class="note">[[User:Pixinger77|Pixinger77]]</dt>
{{Note
<dd class="note">
|user= 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.
|timestamp= 20140328162200
<sqf>private _target = myAmmoBox;
|text= 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.
<sqf>
private _target = myAmmoBox;
// create and attach charge
// create and attach charge
private _charge = "DemoCharge_Remote_Ammo_Scripted" createVehicle position player;
private _charge = "DemoCharge_Remote_Ammo_Scripted" createVehicle position player;
Line 89: Line 98:
// now detonate charge
// now detonate charge
detach _charge; // Important!
detach _charge; // Important!
_charge setDamage 1;</sqf>
_charge setDamage 1;
<dt><dt>
</sqf>
<dd class="notedate">Posted on 1 Jun, 2014 - 2300</dd>
}}
<dt class="note">[[User:ffur2007slx2_5|ffur2007slx2_5]]</dt>
 
<dd class="note">
{{Note
({{arma3}} ver 1.20) [[attachTo]] overwrites [[setVectorDirAndUp]] if attached obj was changed to attach another one.
|user= ffur2007slx2_5
|timestamp= 20140601230000
|text= [[attachTo]] overwrites [[setVectorDirAndUp]] if attached obj was changed to attach another one.
<sqf>
<sqf>
_obj attachTo [_logic,[0, 0, 0]];
_obj attachTo [_logic,[0, 0, 0]];
_obj setVectorDirAndUp [[0, 1, 0], [0, 0, -1]];
_obj setVectorDirAndUp [[0, 1, 0], [0, 0, -1]];
_obj attachTo [_logic, [0, 0, 2]]; // vector no changes
_obj attachTo [_logic, [0, 0, 2]]; // vector no changes
_obj attachTo [_anotherOne, [0, 0, 0]]; // vector changes to default
_obj attachTo [_anotherOne, [0, 0, 0]]; // vector changes to default
</sqf>
</sqf>
<dt><dt>
|game= arma3
<dd class="notedate">Posted on September 25, 2014 - 10:00</dd>
|version= 1.20
<dt class="note">[[User:ondrejkuzel|ondrejkuzel]]</dt>
}}
<dd class="note">
 
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.
{{Note
<dt><dt>
|user= ondrejkuzel
<dd class="notedate">Posted on September 1, 2016 - 17:54 (UTC)</dd>
|timestamp= 20140925100000
<dt class="note">[[User:Demellion|Demellion]]</dt>
|text= 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.
<dd class="note">
}}
Using [[attachTo]] with objects that have ragdoll physics (such as ammo boxes, containers, etc.) may cause unexpected behaviour.
 
{{Note
|user= Demellion
|timestamp= 20160901175400
|text= 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.
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.
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>
}}


<dt><dt>
{{Note
<dd class="notedate">Posted on August 13, 2019 - 12:55 (UTC)</dd>
|user= R3vo
<dt class="note">[[User:R3vo|R3vo]]</dt>
|timestamp= 20190813125500
<dd class="note">
|text= 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.
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.
}}
</dd>
 
</dl>

Latest revision as of 14:22, 13 October 2023

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.
  • All direction commands, such as setDir, setVectorDirAndUp, etc. for an attached object should be used relative to the reference object's direction (i.e. in model space), e.g _attachedObj setDir 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 _attachedObj setPosWorld getPosWorld _attachedObj 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 format PositionRelative - (Optional) the position relative to object2's position
memPoint: String - (Optional) see Selection Translations for czech selections names
since Arma 3 logo black.png2.02
followBoneRotation: Boolean - (Optional) follows the memory point's rotation (if attached to one)
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]];
Example 5:
arma3 attachTo-example-worker-drill-and-radio.png
_drill attachTo [_worker, [0.0595885,-0.00950365,-0.13495], "RightForeArmRoll", true]; _drill setVectorDirAndUp [[0.536966,-0.00438141,-0.843605],[0.345872,0.913231,0.215406]]; _radio attachTo [_worker, [-0.100003,0.069064,0.153719], "Spine3", true]; _radio setVectorDirAndUp [[-0.144569,-0.48725,0.861354],[0.039712,0.866938,0.497072]];

Additional Information

See also:
attachedTo attachedObjects detach getRelPos attachObject attachedObject waypointAttachVehicle waypointAttachedVehicle lightAttachObject triggerAttachVehicle setVectorDir setVectorUp setVectorDirAndUp modelToWorld BIS_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
TeaCup - c
Posted on Sep 17, 2011 - 19:20 (UTC)
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.
Pixinger77 - c
Posted on Mar 28, 2014 - 16:22 (UTC)
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;
ffur2007slx2_5 - c
Posted on Jun 01, 2014 - 23:00 (UTC)

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

ondrejkuzel - c
Posted on Sep 25, 2014 - 10:00 (UTC)
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.
Demellion - c
Posted on Sep 01, 2016 - 17:54 (UTC)
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.
R3vo - c
Posted on Aug 13, 2019 - 12:55 (UTC)
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.