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

SetInterpolationLinearVelocity() public method

public SetInterpolationLinearVelocity ( BulletBody obj, System.Vector3 vel ) : void
obj BulletBody
vel System.Vector3
return void
        public override void SetInterpolationLinearVelocity(BulletBody obj, Vector3 vel)
        {
            BulletBodyUnman bodyu = obj as BulletBodyUnman;
            BSAPICPP.SetInterpolationLinearVelocity2(bodyu.ptr, vel);
        }
BSAPIUnman