Axiom.Graphics.CompositorInstance.OnMaterialRender C# (CSharp) Method

OnMaterialRender() public method

Notify listeners of a material render.
public OnMaterialRender ( CompositorInstanceMaterialEventArgs args ) : void
args CompositorInstanceMaterialEventArgs
return void
		public void OnMaterialRender( CompositorInstanceMaterialEventArgs args )
		{
			if ( MaterialRender != null )
			{
				MaterialRender( this, args );
			}
		}