Class GraphExecutionResult
Represents the result of the execution of a graph.
Inherited Members
Namespace: UnityEngine.Importer
Assembly: Unity.Importer.dll
Syntax
public class GraphExecutionResult
Properties
ExecutionException
An exception that occured during the execution of the graph.
Declaration
public Exception ExecutionException { get; }
Property Value
Type | Description |
---|---|
Exception |
IsSuccess
Was the execution of the graph successful (graph validation and execution).
Declaration
public bool IsSuccess { get; }
Property Value
Type | Description |
---|---|
bool |
Results
Results gathered from the graph execution.
Declaration
public IReadOnlyList<IGraphValue> Results { get; }
Property Value
Type | Description |
---|---|
IReadOnlyList<IGraphValue> |