Init(args)
Scripting Reference
Loading...
Searching...
No Matches

◆ Any< T >() [2/4]

static bool Sisus.Init.Find.Any< T > ( [NotNullWhen(true), MaybeNullWhen(false)] out T result,
bool includeInactive = false )
static

Returns the first loaded object of type T type.

Template Parameters
TType of the object to find.

Objects match the search criteria if their class is of type T , if their class derives from a base class of type T , or their class implements an interface of type T .

Only objects whose classes derive from Component or ScriptableObject or objects that are wrapped by a IWrapper<T> can be returned.

Parameters
resultWhen this method returns, contains loaded T instance, if found; otherwise, null. This parameter is passed uninitialized.
includeInactiveShould components on inactive GameObjects be included in the search?
Returns
true if an object was found; otherwise, false.