Method |
Description |
|
CreateBody ( World world, Vector2 position = newVector2(), float rotation, BodyType bodyType = BodyType.Static, object userData = null ) : Body |
|
|
CreateBreakableBody ( World world, IEnumerable shapes, Vector2 position = newVector2(), float rotation ) : BreakableBody |
|
|
CreateBreakableBody ( World world, Vertices vertices, float density, Vector2 position = newVector2(), float rotation ) : BreakableBody |
|
|
CreateCapsule ( World world, float height, float endRadius, float density, Vector2 position = newVector2(), float rotation, BodyType bodyType = BodyType.Static, object userData = null ) : Body |
|
|
CreateCapsule ( World world, float height, float topRadius, int topEdges, float bottomRadius, int bottomEdges, float density, Vector2 position = newVector2(), float rotation, BodyType bodyType = BodyType.Static, object userData = null ) : Body |
|
|
CreateChainShape ( World world, Vertices vertices, Vector2 position = newVector2(), object userData = null ) : Body |
|
|
CreateCircle ( World world, float radius, float density, Vector2 position = newVector2(), BodyType bodyType = BodyType.Static, object userData = null ) : Body |
|
|
CreateCompoundPolygon ( World world, List list, float density, Vector2 position = newVector2(), float rotation, BodyType bodyType = BodyType.Static, object userData = null ) : Body |
|
|
CreateEdge ( World world, Vector2 start, Vector2 end, object userData = null ) : Body |
|
|
CreateEllipse ( World world, float xRadius, float yRadius, int edges, float density, Vector2 position = newVector2(), float rotation, BodyType bodyType = BodyType.Static, object userData = null ) : Body |
|
|
CreateGear ( World world, float radius, int numberOfTeeth, float tipPercentage, float toothHeight, float density, Vector2 position = newVector2(), float rotation, BodyType bodyType = BodyType.Static, object userData = null ) : Body |
|
|
CreateLineArc ( World world, float radians, int sides, float radius, bool closed = false, Vector2 position = newVector2(), float rotation, BodyType bodyType = BodyType.Static ) : Body |
|
|
CreateLoopShape ( World world, Vertices vertices, Vector2 position = newVector2(), object userData = null ) : Body |
|
|
CreatePolygon ( World world, Vertices vertices, float density, Vector2 position = newVector2(), float rotation, BodyType bodyType = BodyType.Static, object userData = null ) : Body |
|
|
CreateRectangle ( World world, float width, float height, float density, Vector2 position = newVector2(), float rotation, BodyType bodyType = BodyType.Static, object userData = null ) : Body |
|
|
CreateRoundedRectangle ( World world, float width, float height, float xRadius, float yRadius, int segments, float density, Vector2 position = newVector2(), float rotation, BodyType bodyType = BodyType.Static, object userData = null ) : Body |
|
|
CreateSolidArc ( World world, float density, float radians, int sides, float radius, Vector2 position = newVector2(), float rotation, BodyType bodyType = BodyType.Static ) : Body |
|
|