B1CarMovementSetting
- Movement physics settings for a car-type vehicle, including speed, steering, braking, and acceleration values.
| Property | Type | Description | Metadata |
|---|---|---|---|
| MaxWheelAngle | float | Maximum wheel rotation angle (degrees) when the steering is at full lock; 60 degrees means 30 degrees per side. | Category: B1CarMovementSetting |
| MaxForwardVelocity | float | Maximum forward speed of the vehicle. | Category: B1CarMovementSetting ClampMin: 0 |
| MaxReverseVelocity | float | Maximum reverse speed of the vehicle. | Category: B1CarMovementSetting ClampMin: 0 |
| MaxWheelRotateTime | float | Time in seconds to rotate the steering wheel to full lock. | Category: Steering ClampMin: 0 |
| MaxWheelReturnRotateTime | float | Time in seconds for the steering wheel to return to center from full lock. | Category: Steering ClampMin: 0 |
| SteeringDecelerationRate | float | Speed reduction rate applied during steering; e.g., 0.3 reduces max speed by 30% while turning. | Category: Steering ClampMax: 1 ClampMin: 0 |
| SteeringDecelerationTime | float | Time in seconds to reach full steering deceleration when turning. | Category: Steering ClampMin: 0 |
| HandBrakeDeaccelerationRate | float | Deceleration rate applied when the handbrake is engaged (0.0 to 1.0). | Category: HandBrake ClampMax: 1 ClampMin: 0 |
| HandBrakeDeaccelerationTime | float | Time in seconds for the vehicle to come to a complete stop when the handbrake is engaged. | Category: HandBrake ClampMin: 0 |
| AddSlideAngleOffsetBySpeed | float | Additional angle offset (degrees) added to the slide direction when colliding at high speed. | Category: Slide ClampMin: 0 |
| Acceleration | float | Forward acceleration rate. | Category: Acceleration ClampMin: 0 |
| ReverseAcceleration | float | Reverse acceleration rate. | Category: Acceleration ClampMin: 0 |
| BrakeDeceleration | float | Braking deceleration rate applied when brakes are pressed. | Category: Acceleration ClampMin: 0 |
| NaturalDeceleration | float | Natural deceleration rate when no throttle or brake input is applied. | Category: Acceleration ClampMin: 0 |
| SlideDecelertaion | float | Deceleration rate applied during a slide maneuver. | Category: Acceleration ClampMin: 0 |
| SteeringSensitivity | float | Steering responsiveness multiplier; higher values make steering more reactive. | Category: Steering ClampMin: 0 |