disableCollisionWith: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *((\[\[[a-zA-Z0-9_ |()]+\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
m (Text replacement - " <dd class="notedate">" to " <dt><dt> <dd class="notedate">")
Line 31: Line 31:
<dl class='command_description'>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
 
<dt><dt>
<dd class="notedate">Posted on April 4, 2015 - 12:03 (UTC)</dd>
<dd class="notedate">Posted on April 4, 2015 - 12:03 (UTC)</dd>
<dt class="note">[[User:Ranwer|Ranwer]]</dt>
<dt class="note">[[User:Ranwer|Ranwer]]</dt>
Line 46: Line 46:
On a side note: this can come in handy a lot if you want a unit to sit on the back of a car or on top of a container
On a side note: this can come in handy a lot if you want a unit to sit on the back of a car or on top of a container
</dd>
</dd>
 
<dt><dt>
<dd class="notedate">Posted on May 29, 2018 - 06:58 (UTC)</dd>
<dd class="notedate">Posted on May 29, 2018 - 06:58 (UTC)</dd>
<dt class="note">[[User:bloodwyn1756|bloodwyn1756]]</dt>
<dt class="note">[[User:bloodwyn1756|bloodwyn1756]]</dt>

Revision as of 01:09, 6 April 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
Object Manipulation

Syntax

Syntax:
Syntax needed
Parameters:
object: Object
object: Object
Return Value:
Return value needed

Examples

Example 1:
[_veh1, _veh2] remoteExecCall ["disableCollisionWith", 0, _veh1];

Additional Information

See also:
enableCollisionWith

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 April 4, 2015 - 12:03 (UTC)
Ranwer
disableCollisionWith is basically a script that when you apply it to an object, and your unit can go through it like a ghost. However, if you wish the object to be solid again, you may wish to use enableCollisionWith.
An example for this is: // name of unit in editor such as player1 // name of object in editor such as barrel1 barrel1 disableCollisionWith player1; // to make the barrel solid again, do this as vice versa if you know what you are doing! barrel1 enableCollisionWith player1; On a side note: this can come in handy a lot if you want a unit to sit on the back of a car or on top of a container
Posted on May 29, 2018 - 06:58 (UTC)
bloodwyn1756
This command does not disable the roadway LOD.