Struct ImportResult<T>
Represent one result of the execution of an ImporterGraph.
Implements
Inherited Members
Namespace: UnityEngine.Importer
Assembly: Unity.Importer.dll
Syntax
public struct ImportResult<T> : IGraphValue
Type Parameters
Name | Description |
---|---|
T | The Type of the ImportResult. |
Remarks
The execution of an ImporterGraph will always generate a list of ImportResult, each one corresponding to one ResultEdge declared in that graph.
Properties
Id
The id used to reference this Value.
Declaration
public readonly string Id { get; }
Property Value
Type | Description |
---|---|
string |
Type
The type of this Value.
Declaration
public Type Type { get; }
Property Value
Type | Description |
---|---|
Type |
Value
The current value associated with its Id.
Declaration
public T Value { get; }
Property Value
Type | Description |
---|---|
T |