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

SetInterpolationVelocity() public method

public SetInterpolationVelocity ( BulletBody obj, System.Vector3 linearVel, System.Vector3 angularVel ) : void
obj BulletBody
linearVel System.Vector3
angularVel System.Vector3
return void
        public override void SetInterpolationVelocity(BulletBody obj, Vector3 linearVel, Vector3 angularVel)
        {
            BulletBodyUnman bodyu = obj as BulletBodyUnman;
            BSAPICPP.SetInterpolationVelocity2(bodyu.ptr, linearVel, angularVel);
        }
BSAPIUnman