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

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

Constructs a vehicle.
public Vehicle ( Entity shape ) : System
shape Entity Body of the vehicle.
Результат System
        public Vehicle(Entity shape)
        {
            IsUpdatedSequentially = false;
            Body = shape;
            Body.activityInformation.IsAlwaysActive = true;
            //The body is always active, so don't bother with stabilization either.
            //Stabilization can introduce artifacts as well.
            body.activityInformation.AllowStabilization = false;
        }

Same methods

Vehicle::Vehicle ( Entity shape, IEnumerable wheelList ) : System