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

SetInterpolationAngularVelocity() public method

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