Axiom.Core.Entity.NotifyAttached C# (CSharp) Method

NotifyAttached() private method

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
return 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 );
			}
		}