Nez.Farseer.FSRigidBody.IUpdatable C# (CSharp) Méthode

IUpdatable() public méthode

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

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