Search Results for

    Show / Hide Table of Contents

    Class GraphParameter

    Represents a parameter in the Graph.

    Inheritance
    System.Object
    Object
    GraphParameter
    VisjectGraphParameter
    Inherited Members
    Object.__unmanagedPtr
    Object.__internalId
    Object.Finalize()
    Object.As<T>()
    Object.NewValue(Type)
    Object.New(String)
    Object.Find<T>(Guid, Boolean)
    Object.Find(Guid, Type, Boolean)
    Object.TryFind<T>(Guid)
    Object.TryFind(Guid, Type)
    Object.Destroy(Object, Single)
    Object.DestroyNow(Object)
    Object.Destroy<T>(T, Single)
    Object.Equals(Object)
    Object.GetUnmanagedPtr(Object)
    Object.GetUnmanagedInterface(Object, Type)
    Object.FromUnmanagedPtr(IntPtr)
    Object.MapObjectID(Guid)
    Object.RemapObjectID(Guid)
    Object.GetHashCode()
    Object.ID
    Object.TypeName
    Namespace: FlaxEngine
    Assembly: FlaxEngine.CSharp.dll
    Syntax
    [Unmanaged]
    public class GraphParameter : Object

    Constructors

    GraphParameter()

    Initializes a new instance of the GraphParameter.

    Declaration
    public 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.

    Extension Methods

    Extensions.ReflectiveCompare<T>(T, T)
    Extensions.DeepClone<T>(T)
    Extensions.RawClone<T>(T)
    In This Article
    Back to top Copyright © 2012-2024 Wojciech Figat