Interface IInstanceApplierFactory
Creates IInstanceApplier instances bound to a specific IInstantiator.
Namespace: GLTFast.Addons
Assembly: glTFast.dll
Syntax
public interface IInstanceApplierFactory
Remarks
One factory may be invoked multiple times during an import to produce an applier per scene instance. Implementations should return null when the supplied IInstantiator is not supported.
Methods
CreateInstanceApplier(IInstantiator)
Creates an IInstanceApplier bound to the given instantiator.
Declaration
IInstanceApplier CreateInstanceApplier(IInstantiator instantiator)
Parameters
| Type | Name | Description |
|---|---|---|
| IInstantiator | instantiator | Instantiator that produced the scene instance the applier will operate on. |
Returns
| Type | Description |
|---|---|
| IInstanceApplier | An applier bound to |