Declaration


public string BuildType { get; }

Description


Gets the “type” the build is set as by you.

Example


private void OnEnable()
{
		var buildInfo = AssetAccessor.GetAsset<BuildInformation>();
		Debug.Log(buildInfo.BuildType);
}