disableCollisionWith

From Bohemia Interactive Community
Revision as of 18:32, 2 September 2017 by AgentRev (talk | contribs) (typo)
Jump to navigation Jump to search
Hover & click on the images for description

Description

Description:
Disable collision between vehicles. This command doesn't disable collision between PhysX objects.
Command has to be executed where objects are local, and as long as they don't change locality, the effect of this command will be global.

If the 2 objects are not local to the same computer, then it has to be executed on both computers to achieve the desired effect.

If one or both objects change locality, the command needs to be executed again on the new owner's machine(s) to maintain the effect.
Groups:
Uncategorised

Syntax

Syntax:
vehicle disableCollisionWith vehicle
Parameters:
vehicle: Object
vehicle: Object
Return Value:
Nothing

Examples

Example 1:

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

Notes

Bottom Section

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 the 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 your 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