

Physics Engine
Rigid Body Dynamics
Torque X's rigid body dynamics simulate Newtonian physics and models all the standard bells and whistles, including inertia, linear velocity, angular velocity, friction, restitution, relaxation, and damping, and has an easy method for applying impulse-forces and torque. Configuring objects is as easy as enabling automatic collision response for the object, and setting up the object's physics parameters. These parameters include friction, restitution, relaxation, damping, density, and a force scaling factor. The first four are the coefficients used to model the object's physics properties, density is used to calculate the object's mass based on the area of its collision polygon, and force scaling is used to lessen or heighten the net force applied to the object at any time. Additional physics parameters, such as maximum and minimum linear and angular velocities, can be configured as well. They can also be affected by an individual, constant gravitation force, or be set up to automatically rotate at a given pace. With Torque X you can setup physics and collision properties that can be used by multiple objects ahead of time, which can be a real development time-saver.
Customizable Collision Response System
Of course, you're not forced to use Torque X's impressive default physics and collision response system since they are both components that can be enabled or disabled. For a Torque X object which you want to be fully a part of the default physics simulation, you'd enable the physics component. For an object which you didn't want to be part of the physics simulation at all, you'd disable it. If you wanted an object to be able to cause automated physical reactions in other objects, but not be affected by default physics itself, you would disable its physics response and make it immovable. You'd do the opposite if you wanted an object which could react to other objects using the default physics system, but that wouldn't initiate default physical responses with other objects itself. In this way, you can completely (or partially) detach any object from Torque X's default physics system. You are then totally free to implement your own physics response component in C# or to customize the existing system.
Physics-Based Object Mounts
Torque X allows you to mount, or attach, objects to other objects. When you mount one object to another,
the two objects can automatically move around together. Setting up mounts is quick and multiple objects
can attach to another, at any point on the object and at any distance. And mounted objects can have one
or more objects mounted to them. So, it's easy to create long chains and big webs of mounted objects.
In addition, you can specify whether a mount should be rigid (such that the mounted object always stays
the same distance from its parent), or use mount forces. With a mount force, you can dictate that a mounted
object should move with its parent after the specified force is being exerted on the mount connection.
When the parent object moves, a mounted object with a mount force will lag behind the parent's movement,
catching up if/when the parent comes to rest.








