using UnityEngine; using System.Collections; public class FinishedTransaction : MonoBehaviour { public UILabel Label; public void SetLabelText() { Label.text = string.Format(Localization.instance.Get("scores.next"), LevelsManager.Instance.CurrentLevelIndex + 1); } }