Axiom.Core.SceneManager.NotifyAutoTrackingSceneNode C# (CSharp) 메소드

NotifyAutoTrackingSceneNode() 개인적인 메소드

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