Axiom.Core.SceneManager.NotifyAutoTrackingSceneNode C# (CSharp) Méthode

NotifyAutoTrackingSceneNode() private méthode

Internal method for notifying the manager that a SceneNode is autotracking.
private NotifyAutoTrackingSceneNode ( SceneNode node, bool autoTrack ) : void
node SceneNode Scene node that is auto tracking another scene node.
autoTrack bool True if tracking, false if it is stopping tracking.
Résultat void
		internal void NotifyAutoTrackingSceneNode( SceneNode node, bool autoTrack )
		{
			if ( autoTrack )
			{
				this.autoTrackingSceneNodes.Add( node );
			}
			else
			{
				autoTrackingSceneNodes.Remove( node.Name );
			}
		}
SceneManager