Axiom.Graphics.CompositorInstance.OnMaterialRender C# (CSharp) Méthode

OnMaterialRender() public méthode

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