Declaration


public static int BuildNumber { get; }

Description


Gets the current build number, this is the unique number not the player settings number.

Example


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