Axiom.SceneManagers.PortalConnected.DefaultZone.AddNode C# (CSharp) Метод

AddNode() публичный Метод

public AddNode ( PCZSceneNode n ) : void
n PCZSceneNode
Результат void
		public override void AddNode( PCZSceneNode n )
		{
			if ( n.HomeZone == this )
			{
				// add a reference to this node in the "nodes at home in this zone" list
				mHomeNodeList.Add( n );
			}
			else
			{
				// add a reference to this node in the "nodes visiting this zone" list
				mVisitorNodeList.Add( n );
			}
		}