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

DuplicateCollisionShape() public method

public DuplicateCollisionShape ( BulletWorld world, BulletShape srcShape, uint id ) : BulletShape
world BulletWorld
srcShape BulletShape
id uint
return BulletShape
        public override BulletShape DuplicateCollisionShape(BulletWorld world, BulletShape srcShape, uint id)
        {
            BulletWorldUnman worldu = world as BulletWorldUnman;
            BulletShapeUnman srcShapeu = srcShape as BulletShapeUnman;
            return new BulletShapeUnman(BSAPICPP.DuplicateCollisionShape2(worldu.ptr, srcShapeu.ptr, id), srcShape.shapeType);
        }
BSAPIUnman