BEPUphysics.Vehicle.WheelDrivingMotor.WheelDrivingMotor C# (CSharp) Метод

WheelDrivingMotor() публичный Метод

Constructs a new wheel motor.
public WheelDrivingMotor ( float gripFriction, float maximumForwardForce, float maximumBackwardForce ) : BEPUphysics.Constraints
gripFriction float Friction coefficient of the wheel. Blended with the ground's friction coefficient and normal force to determine a maximum force.
maximumForwardForce float Maximum force that the wheel motor can apply when driving forward (a target speed greater than zero).
maximumBackwardForce float Maximum force that the wheel motor can apply when driving backward (a target speed less than zero).
Результат BEPUphysics.Constraints
        public WheelDrivingMotor(float gripFriction, float maximumForwardForce, float maximumBackwardForce)
        {
            GripFriction = gripFriction;
            MaximumForwardForce = maximumForwardForce;
            MaximumBackwardForce = maximumBackwardForce;
        }

Same methods

WheelDrivingMotor::WheelDrivingMotor ( ) : BEPUphysics.Constraints
WheelDrivingMotor::WheelDrivingMotor ( Wheel wheel ) : BEPUphysics.Constraints