Nez.Farseer.FSRigidBody.IUpdatable C# (CSharp) 메소드

IUpdatable() 공개 메소드

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

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