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

IUpdatable() public method

public IUpdatable ( ) : void
return void
		void IUpdatable.update()
		{
			if( body == null || !body.isAwake )
				return;

			_ignoreTransformChanges = true;
			transform.position = FSConvert.simToDisplay * body.position;
			transform.rotation = body.rotation;
			_ignoreTransformChanges = false;
		}