enableCollisionWith: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) (see also, locality) |
No edit summary |
||
Line 44: | Line 44: | ||
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]] | ||
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]] | [[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]] | ||
<!-- CONTINUE Notes --> | |||
<dl class="command_description"> | |||
<dd class="notedate">Posted on April 5, 2015 - 00:13 (UTC)</dd> | |||
<dt class="note">[[User:Ranwer|Ranwer]]</dt> | |||
<dd class="note"> | |||
'''enableCollisionWith''' is a script that when you apply it to an object, it will be solid and the player will not be able to go through it. However, if you want your unit to go through it, you may want to use the '''disableCollisionWith''' command. | |||
<br> | |||
<br> | |||
An example for this is: | |||
<br> | |||
<code> | |||
//name of unit in editor such as player1 | |||
//name of object in editor such as car1 | |||
<br> | |||
car1 enableCollisionWith player1; | |||
<br> | |||
//to make your unit go through the car, use the below and make sure you know what your doing! | |||
<br> | |||
barrel1 disableCollisionWith player1; | |||
</code> | |||
<br> | |||
<br> | |||
Both commands '''enableCollisionWith''' and '''disableCollisionWith''', are very handy codes and could be used for example: map testing, mission editing and even animation cutscenes. | |||
</dd> | |||
</dl> | |||
<!-- DISCONTINUE Notes --> |
Revision as of 01:13, 5 April 2015
Description
- Description:
- Enable collision between vehicles.
- Groups:
- Uncategorised
Syntax
- Syntax:
- vehicle enableCollisionWith vehicle
- Parameters:
- vehicle: Object
- vehicle: Object
- Return Value:
- Nothing
Examples
- Example 1:
Additional Information
- See also:
- disableCollisionWith
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 5, 2015 - 00:13 (UTC)
- Ranwer
-
enableCollisionWith is a script that when you apply it to an object, it will be solid and the player will not be able to go through it. However, if you want your unit to go through it, you may want to use the disableCollisionWith command.
An example for this is:
//name of unit in editor such as player1 //name of object in editor such as car1
car1 enableCollisionWith player1;
//to make your unit go through the car, use the below and make sure you know what your doing!
barrel1 disableCollisionWith player1;
Both commands enableCollisionWith and disableCollisionWith, are very handy codes and could be used for example: map testing, mission editing and even animation cutscenes.