Axiom.Core.SceneManager.NotifyAutoTrackingSceneNode C# (CSharp) Method

NotifyAutoTrackingSceneNode() private method

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.
return void
		internal void NotifyAutoTrackingSceneNode( SceneNode node, bool autoTrack )
		{
			if ( autoTrack )
			{
				this.autoTrackingSceneNodes.Add( node );
			}
			else
			{
				autoTrackingSceneNodes.Remove( node.Name );
			}
		}
SceneManager