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

SetLocalScaling() public method

public SetLocalScaling ( BulletShape shape, System.Vector3 scale ) : void
shape BulletShape
scale System.Vector3
return void
        public override void SetLocalScaling(BulletShape shape, Vector3 scale)
        {
            BulletShapeUnman shapeu = shape as BulletShapeUnman;
            BSAPICPP.SetLocalScaling2(shapeu.ptr, scale);
        }
BSAPIUnman