using UnityEngine; using System.Collections; public class VersionDisplay : MonoBehaviour { void Start() { UILabel label = GetComponent(); label.text = "v"+VersionChecker.BUNDLE_VERSION_NUMBER_FROM_PLAYER_SETTINGS; } }