Nez.Farseer.FSRigidBody.setFixedRotation C# (CSharp) Method

setFixedRotation() public method

public setFixedRotation ( bool fixedRotation ) : FSRigidBody
fixedRotation bool
return FSRigidBody
		public FSRigidBody setFixedRotation( bool fixedRotation )
		{
			if( body != null )
				body.fixedRotation = fixedRotation;
			else
				_bodyDef.fixedRotation = fixedRotation;
			return this;
		}