Declaration


public static T GetAsset<T>() where T : BuildVersionsAsset

Returns


T

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

Description


Gets the asset of the type requested that inherits from BuildVersionsAsset

Example


private void OnEnable()
{
		var info = AssetAccessor.GetAsset<BuildInformation>();
}