Axiom.Core.SpecialCaseRenderQueue.AddRenderQueue C# (CSharp) Method

AddRenderQueue() public method

Adds an item to the 'special case' render queue list.
Normally all render queues are rendered, in their usual sequence, only varying if a RenderQueueListener nominates for the queue to be repeated or skipped. This method allows you to add a render queue to a 'special case' list, which varies the behaviour. The effect of this list depends on the 'mode' in which this list is in, which might be to exclude these render queues, or to include them alone (excluding all other queues). This allows you to perform broad selective rendering without requiring a RenderQueueListener.
public AddRenderQueue ( RenderQueueGroupID queueId ) : void
queueId RenderQueueGroupID The identifier of the queue which should be added to the /// special case list. Nothing happens if the queue is already in the list.
return void
		public virtual void AddRenderQueue( RenderQueueGroupID queueId )
		{
			_queue.Add( queueId );
		}