C# 클래스 Axiom.Graphics.CompositorLogic

Implementation base class for compositor logics, which can be automatically bound to compositors, allowing per-compositor logic (such as attaching a relevant listener) to happen automatically.
All methods have empty implementations to not force an implementer into extending all of them.
상속: ICompositorLogic
파일 보기 프로젝트 열기: WolfgangSt/axiom

공개 메소드들

메소드 설명
CompositorInstanceCreated ( CompositorInstance newInstance ) : void

Called when a compositor instance has been created.

This happens after its setup was finished, so the chain is also accessible. This is an ideal method to automatically attach a compositor listener.

CompositorInstanceDestroyed ( CompositorInstance destroyedInstance ) : void

Called when a compositor instance has been destroyed

The chain that contained the compositor is still alive during this call.

메소드 상세

CompositorInstanceCreated() 공개 메소드

Called when a compositor instance has been created.
This happens after its setup was finished, so the chain is also accessible. This is an ideal method to automatically attach a compositor listener.
public CompositorInstanceCreated ( CompositorInstance newInstance ) : void
newInstance CompositorInstance
리턴 void

CompositorInstanceDestroyed() 공개 메소드

Called when a compositor instance has been destroyed
The chain that contained the compositor is still alive during this call.
public CompositorInstanceDestroyed ( CompositorInstance destroyedInstance ) : void
destroyedInstance CompositorInstance
리턴 void