Universe.Physics.BulletSPlugin.BSAPIUnman.RemoveChildShapeFromCompoundShape C# (CSharp) Method

RemoveChildShapeFromCompoundShape() public method

public RemoveChildShapeFromCompoundShape ( BulletShape shape, BulletShape removeShape ) : void
shape BulletShape
removeShape BulletShape
return void
        public override void RemoveChildShapeFromCompoundShape(BulletShape shape, BulletShape removeShape)
        {
            BulletShapeUnman shapeu = shape as BulletShapeUnman;
            BulletShapeUnman removeShapeu = removeShape as BulletShapeUnman;
            BSAPICPP.RemoveChildShapeFromCompoundShape2(shapeu.ptr, removeShapeu.ptr);
        }
BSAPIUnman