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

AddChildShapeToCompoundShape() public method

public AddChildShapeToCompoundShape ( BulletShape shape, BulletShape addShape, System.Vector3 pos, Quaternion rot ) : void
shape BulletShape
addShape BulletShape
pos System.Vector3
rot Quaternion
return void
        public override void AddChildShapeToCompoundShape(BulletShape shape, BulletShape addShape, Vector3 pos,
            Quaternion rot)
        {
            BulletShapeUnman shapeu = shape as BulletShapeUnman;
            BulletShapeUnman addShapeu = addShape as BulletShapeUnman;
            BSAPICPP.AddChildShapeToCompoundShape2(shapeu.ptr, addShapeu.ptr, pos, rot);
        }
BSAPIUnman