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

IsNativeShape() public method

public IsNativeShape ( BulletShape shape ) : bool
shape BulletShape
return bool
        public override bool IsNativeShape(BulletShape shape)
        {
            BulletShapeUnman shapeu = shape as BulletShapeUnman;
            if (shapeu != null && shapeu.HasPhysicalShape)
                return BSAPICPP.IsNativeShape2(shapeu.ptr);
            return false;
        }
BSAPIUnman