Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 708 Bytes

File metadata and controls

17 lines (13 loc) · 708 Bytes

AssetSearchUtility

static class in AdvancedSceneManager.Utility

Description

Provides utility functions for searching ASM assets.

Static Methods

Member Description
T Find<T>(string q) Finds the T with the specified name.
T Find<T>(T[] list, string q) _No documentation available._
T Find<T>(IEnumerable<T> list, string q) _No documentation available._
bool TryFind<T>(string q, out T result) Finds the T with the specified name.
bool TryFind<T>(T[] list, string q, out T result) _No documentation available._
bool TryFind<T>(IEnumerable<T> list, string q, out T result) _No documentation available._