Interface IGraphValue
Represent an indexed value in an ImporterGraph.
Namespace: UnityEngine.Importer
Assembly: Unity.Importer.dll
Syntax
public interface IGraphValue
  Remarks
It is used by the ImportResult<T> struct to gather all results from the ResultEdge after a graph is executed.
Properties
Id
The id used to reference this Value.
Declaration
string Id { get; }
  Property Value
| Type | Description | 
|---|---|
| string | 
Type
The type of this Value.
Declaration
Type Type { get; }
  Property Value
| Type | Description | 
|---|---|
| Type | 
Value
The current value associated with its Id.
Declaration
object Value { get; }
  Property Value
| Type | Description | 
|---|---|
| object |