|
1 |
| -# Kinematic rigidbodies |
| 1 | +# Kinematic Bodies |
2 | 2 |
|
3 |
| -Sometimes you want to move [rigidbodies](rigid-bodies.md) in a specific way rather than have other objects move them. For example, you might control an elevator with a script, via its `Transform` property, rather than have other objects push and pull it. This is a **kinematic** rigidbody. |
| 3 | +Sometimes you want to move [bodies](rigid-bodies.md) in a specific way rather than have physics apply outside forces, like drag, inertia, etc. For example, you might control an elevator directly through its `LinearVelocity` property, rather than have other objects push and pull it. This is a **kinematic** body. |
4 | 4 |
|
5 |
| -Although kinematic rigidbodies aren't moved by physics, other objects can still collide with them. For example, in the case of the elevator, objects placed inside won't fall through the elevator floor. |
| 5 | +Although kinematic bodies aren't bound by physics, other objects can still collide with them. For example, in the case of the elevator, objects placed inside won't fall through the elevator floor. |
6 | 6 |
|
7 | 7 | 
|
8 | 8 |
|
9 |
| -## Make a kinematic rigidbody |
| 9 | +## Make a Kinematic Body |
10 | 10 |
|
11 |
| -1. Select the entity you want to be a kinematic rigidbody. |
| 11 | +1. Select the entity you want to be a kinematic body. |
12 | 12 |
|
13 |
| -2. In the **Property Grid**, under the **Rigidbody** component properties, select **Is kinematic**. |
| 13 | +2. In the **Property Grid**, under the **Body** component properties, select `Kinematic`. |
14 | 14 |
|
15 | 15 | 
|
16 | 16 |
|
17 |
| -## Scripting kinematic rigidbodies |
| 17 | +## Scripting Kinematic Bodies |
18 | 18 |
|
19 |
| -You can script the **Is kinematic** property to turn on and off on certain events. For example, imagine our kinematic elevator's suspension cables are cut. You can script the **Is kinematic** property to change to *false* when this happens. The elevator becomes subject to the usual forces of physics, and falls. |
| 19 | +You can script the `Kinematic` property to turn on and off on certain events. For example, imagine our kinematic elevator's suspension cables are cut. You can script the **Kinematic** property to change to *false* when this happens. The elevator becomes subject to the usual forces of physics, and falls. |
20 | 20 |
|
21 | 21 | 
|
22 | 22 |
|
23 | 23 | ## See also
|
24 | 24 |
|
25 |
| -* [Rigidbodies](rigid-bodies.md) |
26 |
| -* [Static colliders](static-colliders.md) |
| 25 | +* [bodies](rigid-bodies.md) |
| 26 | +* [Statics](static-colliders.md) |
27 | 27 | * [Characters](characters.md)
|
28 | 28 | * [Collider shapes](collider-shapes.md)
|
29 | 29 | * [Triggers](triggers.md)
|
0 commit comments