Universe.Physics.BulletSPlugin.BSAPIXNA.SetCcdSweptSphereRadius C# (CSharp) Method

SetCcdSweptSphereRadius() public method

public SetCcdSweptSphereRadius ( BulletBody pCollisionObject, float pCcdSweptSphereRadius ) : void
pCollisionObject BulletBody
pCcdSweptSphereRadius float
return void
        public override void SetCcdSweptSphereRadius(BulletBody pCollisionObject, float pCcdSweptSphereRadius)
        {
            CollisionObject collisionObject = (pCollisionObject as BulletBodyXNA).body;
            collisionObject.SetCcdSweptSphereRadius(pCcdSweptSphereRadius);
        }
BSAPIXNA