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

SetCenterOfMassByPosRot() public method

public SetCenterOfMassByPosRot ( BulletBody obj, System.Vector3 pos, Quaternion rot ) : void
obj BulletBody
pos System.Vector3
rot Quaternion
return void
        public override void SetCenterOfMassByPosRot(BulletBody obj, Vector3 pos, Quaternion rot)
        {
            BulletBodyUnman bodyu = obj as BulletBodyUnman;
            BSAPICPP.SetCenterOfMassByPosRot2(bodyu.ptr, pos, rot);
        }
BSAPIUnman