Unravel Engine C# Reference
|
Represents a collision that occurs between two entities. More...
Public Member Functions | |
override string | ToString () |
Converts the collision to its string representation. | |
string | ToString (string format) |
Converts the collision to its string representation with a specified format. | |
string | ToString (string format, IFormatProvider formatProvider) |
Converts the collision to its string representation with a specified format and format provider. | |
Public Attributes | |
Entity | entity |
Gets the entity involved in the collision. | |
ContactPoint[] | contacts |
Gets the array of contact points where the collision occurred. | |
Represents a collision that occurs between two entities.
Definition at line 15 of file Collision.cs.
override string Unravel.Core.Collision.ToString | ( | ) |
Converts the collision to its string representation.
Definition at line 31 of file Collision.cs.
string Unravel.Core.Collision.ToString | ( | string | format | ) |
Converts the collision to its string representation with a specified format.
format | The format string. |
Definition at line 41 of file Collision.cs.
string Unravel.Core.Collision.ToString | ( | string | format, |
IFormatProvider | formatProvider ) |
Converts the collision to its string representation with a specified format and format provider.
format | The format string. |
formatProvider | An object that supplies culture-specific formatting information. |
Definition at line 52 of file Collision.cs.
ContactPoint [] Unravel.Core.Collision.contacts |
Gets the array of contact points where the collision occurred.
Definition at line 25 of file Collision.cs.
Entity Unravel.Core.Collision.entity |
Gets the entity involved in the collision.
Definition at line 20 of file Collision.cs.