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

GetNumberOfCompoundChildren() public method

public GetNumberOfCompoundChildren ( BulletShape pCompoundShape ) : int
pCompoundShape BulletShape
return int
        public override int GetNumberOfCompoundChildren(BulletShape pCompoundShape)
        {
            CompoundShape compoundshape = (pCompoundShape as BulletShapeXNA).shape as CompoundShape;
            return compoundshape.GetNumChildShapes();
        }
BSAPIXNA