Interface ITransformManager
Interface for the transform manager
Namespace: DelsysAPI.Contracts
Assembly: DelsysAPI.dll
Syntax
public interface ITransformManager
Properties
TransformList
Gets the list of transform attributes
Declaration
List<Transform> TransformList { get; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<Transform> |
Methods
AddInputChannel(Transform, Channel)
Adds an input channel to the specified transform
Declaration
void AddInputChannel(Transform t, Channel channel)
Parameters
| Type | Name | Description |
|---|---|---|
| Transform | t | Target transform |
| Channel | channel | channel type |
AddOutputChannel(Transform, Channel)
Adds an output channel to the specified transform
Declaration
void AddOutputChannel(Transform t, Channel channel)
Parameters
| Type | Name | Description |
|---|---|---|
| Transform | t | Target transform |
| Channel | channel | channel type |
AddTransform(Transform)
Adds a new transform onto the transform processing tree.
Declaration
void AddTransform(Transform transform)
Parameters
| Type | Name | Description |
|---|---|---|
| Transform | transform |
RemoveTransform(Transform)
Delete the transform from the transform processing tree
Declaration
void RemoveTransform(Transform transform)
Parameters
| Type | Name | Description |
|---|---|---|
| Transform | transform |