C# Class Box2D.Dynamics.Joints.JointDef

Joint definitions are used to construct joints.
Afficher le fichier Open project: gerich-home/box2dnet Class Usage Examples

Méthodes publiques

Свойство Type Description
BodyA Body
BodyB Body
CollideConnected bool
Type JointType
UserData object

Méthodes publiques

Méthode Description
JointDef ( )

Method Details

JointDef() public méthode

public JointDef ( )

Property Details

BodyA public_oe property

The first attached body.
public Body BodyA
Résultat Body

BodyB public_oe property

The second attached body.
public Body BodyB
Résultat Body

CollideConnected public_oe property

Set this flag to true if the attached bodies should collide.
public bool CollideConnected
Résultat bool

Type public_oe property

The joint type is set automatically for concrete joint types.
public JointType Type
Résultat JointType

UserData public_oe property

Use this to attach application specific data to your joints.
public object UserData
Résultat object