Class DeferredQuery
Class DeferredQuery.
Namespace: UnityEngine.Industrial.Configuring.Core
Syntax
[Serializable]
public abstract class DeferredQuery
Fields
id
The identifier
Declaration
[Tooltip("This query will use whatever query is found in the current scene that has the same id.")]
public string id
Field Value
Type | Description |
---|---|
String |
Properties
Fetched
Gets or sets a value indicating whether this DeferredQuery is fetched.
Declaration
public abstract bool Fetched { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
|
Methods
Fetch(IEnumerable<QueryNode>)
Fetches the specified search scope.
Declaration
public abstract void Fetch(IEnumerable<QueryNode> searchScope = null)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<QueryNode> | searchScope | Only try to fetch queries with the current id within the given query nodes. Will search everywhere in the active scene otherwise. |