PhysicsVehicle.java | 452 * Apply the given brake force to all wheels, works continuously 455 public void brake(float force) { method in class:PhysicsVehicle 457 brake(i, force); method 462 * Apply the given brake force, works continuously 466 public void brake(int wheel, float force) { method in class:PhysicsVehicle 467 brake(vehicleId, wheel, force); method 470 private native void brake(long vehicleId, int wheel, float force); method in class:PhysicsVehicle
|