Axiom.Core.Entity.NotifyAttached C# (CSharp) Метод

NotifyAttached() приватный Метод

Internal method called to notify the object that it has been attached to a node.
private NotifyAttached ( Node node, bool isTagPoint ) : void
node Node Scene node to which we are being attached.
isTagPoint bool
Результат void
	    internal override void NotifyAttached( Node node, bool isTagPoint )
		{
			base.NotifyAttached( node, isTagPoint );
			// Also notify LOD entities
			foreach ( Entity lodEntity in this.lodEntityList )
			{
				lodEntity.NotifyAttached( node, isTagPoint );
			}
		}