class in UnityEngine
/
Inherits from:Component
/
Implemented in:UnityEngine.Physics2DModule
Switch to ManualRigidbody physics component for 2D sprites.
The Rigidbody2D class essentially provides the same functionality in 2D that the Rigidbody class provides in 3D. Adding a Rigidbody2D component to a sprite puts it under the control of the physics engine. By itself, this means that the sprite will be affected by gravity and can be controlled from scripts using forces. By adding the appropriate collider component, the sprite will also respond to collisions with other sprites. This behaviour comes entirely from Unity's physics system; very little code is required to get impressive and authentic physical behaviour and allows for "emergent" gameplay that was not explicitly coded into the game.
See Also: Rigidbody class, SpriteRenderer class, Collider2D class, Joint2D class.
angularDrag | Coefficient of angular drag. |
angularVelocity | Angular velocity in degrees per second. |
attachedColliderCount | Returns the number of Collider2D attached to this Rigidbody2D. |
bodyType | The physical behaviour type of the Rigidbody2D. |
centerOfMass | The center of mass of the rigidBody in local space. |
collisionDetectionMode | The method used by the physics engine to check if two objects have collided. |
constraints | Controls which degrees of freedom are allowed for the simulation of this Rigidbody2D. |
drag | Coefficient of drag. |
freezeRotation | Controls whether physics will change the rotation of the object. |
gravityScale | The degree to which this object is affected by gravity. |
inertia | The rigidBody rotational inertia. |
interpolation | Physics interpolation used between updates. |
isKinematic | Should this rigidbody be taken out of physics control? |
mass | Mass of the Rigidbody. |
position | The position of the rigidbody. |
rotation | The rotation of the rigidbody. |
sharedMaterial | The PhysicsMaterial2D that is applied to all Collider2D attached to this Rigidbody2D. |
simulated | Indicates whether the rigid body should be simulated or not by the physics system. |
sleepMode | The sleep state that the rigidbody will initially be in. |
useAutoMass | Should the total rigid-body mass be automatically calculated from the [[Collider2D.density]] of attached colliders? |
useFullKinematicContacts | Should kinematic/kinematic and kinematic/static collisions be allowed? |
velocity | Linear velocity of the Rigidbody in units per second. |
worldCenterOfMass | Gets the center of mass of the rigidBody in global space. |
AddForce | Apply a force to the rigidbody. |
AddForceAtPosition | Apply a force at a given position in space. |
AddRelativeForce | Adds a force to the rigidbody2D relative to its coordinate system. |
AddTorque | Apply a torque at the rigidbody's centre of mass. |
Cast | All the Collider2D shapes attached to the Rigidbody2D are cast into the Scene starting at each Collider position ignoring the Colliders attached to the same Rigidbody2D. |
ClosestPoint | Returns a point on the perimeter of all enabled Colliders attached to this Rigidbody that is closest to the specified position. |
Distance | Calculates the minimum distance of this collider against all Collider2D attached to this Rigidbody2D. |
GetAttachedColliders | Returns all Collider2D that are attached to this Rigidbody2D. |
GetContacts | Retrieves all contact points for all of the Collider(s) attached to this Rigidbody. |
GetPoint | Get a local space point given the point point in rigidBody global space. |
GetPointVelocity | The velocity of the rigidbody at the point Point in global space. |
GetRelativePoint | Get a global space point given the point relativePoint in rigidBody local space. |
GetRelativePointVelocity | The velocity of the rigidbody at the point Point in local space. |
GetRelativeVector | Get a global space vector given the vector relativeVector in rigidBody local space. |
GetVector | Get a local space vector given the vector vector in rigidBody global space. |
IsAwake | Is the rigidbody "awake"? |
IsSleeping | Is the rigidbody "sleeping"? |
IsTouching | Checks whether the collider is touching any of the collider(s) attached to this rigidbody or not. |
IsTouchingLayers | Checks whether any of the collider(s) attached to this rigidbody are touching any colliders on the specified layerMask or not. |
MovePosition | Moves the rigidbody to position. |
MoveRotation | Rotates the Rigidbody to angle (given in degrees). |
OverlapCollider | Get a list of all Colliders that overlap all Colliders attached to this Rigidbody2D. |
OverlapPoint | Check if any of the Rigidbody2D colliders overlap a point in space. |
SetRotation | Sets the rotation of the Rigidbody2D to angle (given in degrees). |
Sleep | Make the rigidbody "sleep". |
WakeUp | Disables the "sleeping" state of a rigidbody. |
gameObject | The game object this component is attached to. A component is always attached to a game object. |
tag | The tag of this game object. |
transform | The Transform attached to this GameObject. |
hideFlags | Should the object be hidden, saved with the Scene or modifiable by the user? |
name | The name of the object. |
BroadcastMessage | Calls the method named methodName on every MonoBehaviour in this game object or any of its children. |
CompareTag | Is this game object tagged with tag ? |
GetComponent | Returns the component of Type type if the game object has one attached, null if it doesn't. |
GetComponentInChildren | Returns the component of Type type in the GameObject or any of its children using depth first search. |
GetComponentInParent | Returns the component of Type type in the GameObject or any of its parents. |
GetComponents | Returns all components of Type type in the GameObject. |
GetComponentsInChildren | Returns all components of Type type in the GameObject or any of its children. |
GetComponentsInParent | Returns all components of Type type in the GameObject or any of its parents. |
SendMessage | Calls the method named methodName on every MonoBehaviour in this game object. |
SendMessageUpwards | Calls the method named methodName on every MonoBehaviour in this game object and on every ancestor of the behaviour. |
TryGetComponent | Gets the component of the specified type, if it exists. |
GetInstanceID | Returns the instance id of the object. |
ToString | Returns the name of the object. |
Destroy | Removes a GameObject, component or asset. |
DestroyImmediate | Destroys the object obj immediately. You are strongly recommended to use Destroy instead. |
DontDestroyOnLoad | Do not destroy the target Object when loading a new Scene. |
FindObjectOfType | Returns the first active loaded object of Type type. |
FindObjectsOfType | Returns a list of all active loaded objects of Type type. |
Instantiate | Clones the object original and returns the clone. |
bool | Does the object exist? |
operator != | Compares if two objects refer to a different object. |
operator == | Compares two object references to see if they refer to the same object. |