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

SetMassProps() public method

public SetMassProps ( BulletBody obj, float mass, System.Vector3 inertia ) : void
obj BulletBody
mass float
inertia System.Vector3
return void
        public override void SetMassProps(BulletBody obj, float mass, Vector3 inertia)
        {
            BulletBodyUnman bodyu = obj as BulletBodyUnman;
            BSAPICPP.SetMassProps2(bodyu.ptr, mass, inertia);
        }
BSAPIUnman