CreateRevoluteJoint
Description
Creates a revolute joint between two sprites. The revolute joint allows the sprites to only rotate around the given point. Specify a single anchor point in world coordinates with the sprites already at the desired relative position. The anchor point can be offset from the sprite center positions.
A joint may be deleted by the system if any of the sprites it connects are deleted.
This joint supports motors and limits.
Definition
CreateRevoluteJoint( iJointIndex, iSpriteIndex1, iSpriteIndex2, x, y, colConnected )
void agk::CreateRevoluteJoint( UINT iJointIndex, UINT iSpriteIndex1, UINT iSpriteIndex2, float x, float y, int colConnected )
integer CreateRevoluteJoint( iSpriteIndex1, iSpriteIndex2, x, y, colConnected )
UINT agk::CreateRevoluteJoint( UINT iSpriteIndex1, UINT iSpriteIndex2, float x, float y, int colConnected )
Parameters
- iJointIndex - The ID to use for this joint.
- iSpriteIndex1 - The ID of the first sprite to join.
- iSpriteIndex2 - The ID of the second sprite to join.
- x - The x coordinate of the anchor point.
- y - The y coordinate of the anchor point.
- colConnected - Set whether the two sprites connected by the joint can collide with one another, 0=no, 1=yes.