Class ParametersEntryRegistry
Inheritance
object
ParametersEntryRegistry
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: InsaneScatterbrain.ScriptGraph.Editor.NodeSearch
Syntax
public abstract class ParametersEntryRegistry : IEntryRegistry
Constructors
ParametersEntryRegistry(ScriptGraphParameters)
Declaration
protected ParametersEntryRegistry(ScriptGraphParameters parameters)
Parameters
Type | Name | Description |
---|---|---|
ScriptGraphParameters | parameters |
Properties
Entries
Declaration
public ReadOnlyCollection<SearchTreeEntry> Entries { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ReadOnlyCollection<T><UnityEditor.Experimental.GraphView.SearchTreeEntry> |
GroupTitle
Gets the title of the group entry for this set of parameters.
Declaration
protected abstract string GroupTitle { get; }
Property Value
Type | Description |
---|---|
string |
Paths
Declaration
public ReadOnlyCollection<string> Paths { get; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ReadOnlyCollection<T><string> |
Methods
Build()
Declaration
public void Build()
GetEntryData(IEnumerable<Type>, string)
Gets the entry data based on the given port types and parameter.
Declaration
protected abstract EntryData GetEntryData(IEnumerable<Type> portTypes, string parameterId)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<T><System.Type> | portTypes | The port types. |
string | parameterId | The parameter's ID. |
Returns
Type | Description |
---|---|
EntryData | The parameter's entry data. |