////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void Awake() { instance = this; imgMission.enabled = false; textMission.enabled = false; currentMission = PlayingObjectManager.GetLevelMission(); }
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// void SetContents() { if (PlayingObjectManager.GetLevelMission() == PlayingObjectManager.MissionType.Normal) { image.sprite = image_despeja; text.text = LanguageManager.GetText("id_infoclear"); } else if (PlayingObjectManager.GetLevelMission() == PlayingObjectManager.MissionType.Animals) { image.sprite = image_animales; text.text = LanguageManager.GetText("id_info_animals"); } else { Debug.Log("ERROR: El tipo de mision no existe"); } }