Class GraphParameter
Represents a parameter in the Graph.
Namespace: FlaxEngine
Assembly: FlaxEngine.CSharp.dll
Syntax
[Unmanaged]
public class GraphParameter : Object
Constructors
GraphParameter()
Properties
Identifier
Parameter unique ID
Declaration
[Unmanaged]
public Guid Identifier { get; }
Property Value
System.Guid
|
IsPublic
True if is exposed outside
Declaration
[Unmanaged]
public bool IsPublic { get; set; }
Property Value
System.Boolean
|
Name
Parameter name
Declaration
[Unmanaged]
public string Name { get; }
Property Value
System.String
|
Type
Parameter type
Declaration
[Unmanaged]
public Type Type { get; }
Property Value
System.Type
|
TypeTypeName
Gets the typename of the parameter type (excluding in-build types).
Declaration
[Unmanaged]
public string TypeTypeName { get; }
Property Value
System.String
|
Value
Parameter value
Declaration
[Unmanaged]
public object Value { get; set; }
Property Value
System.Object
|
Methods
GetMetaData(Int32)
Gets the data of the Visject Meta entry assigned to this parameter.
Declaration
[Unmanaged]
public byte[] GetMetaData(int typeID)
Parameters
System.Int32
typeID
Entry type ID |
Returns
System.Byte[]
The entry data or empty if missing or not loaded. |