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
Показать файл Открыть проект

Открытые методы

Метод Описание
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