Declaration


public static T[] GetAssets<T>() where T : BuildVersionsAsset

Returns


T[]

The assets found as the type you want it. As long as its inheriting from BuildVersionsAsset

Description


Gets all the assets of the type requested that inherits from BuildVersionsAsset

Example


private void OnEnable()
{
		var info = AssetAccessor.GetAssets<BuildInformation>()[0];
}