Declaration


public static SerialzableDate BuildDate { get; }

Description


Gets the date that the last build was made.

Example


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