Mail.ruПочтаМой МирОдноклассникиВКонтактеИгрыЗнакомстваНовостиКалендарьОблакоЗаметкиВсе проекты

Этот C# скрипт будет работать? Unity

Богдан Васильевич Ученик (95), на голосовании 4 месяца назад
 using System.Collections; 
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;

public class AchievementsMenu : MonoBehaviour
{
public int TotalMoney;
[SerializeField] Button firstAch;
[SerializeField] bool isFirst;
void Start()
{
TotalMoney = PlayerPrefs.GetInt("TotalMoney");
if (TotalMoney >= 1)
{
firstAch.Complete.Text = "✔";
firstAch.Complete.Color = "0, 255, 0";
}
else
{
firstAch.Complete.Text = "X";
firstAch.Complete.Color = "255, 0, 0";
}
}

public void Back()
{
SceneManager.LoadScene(0);
}

// Update is called once per frame
void Update()
{

}
}
Голосование за лучший ответ
♡$ⴎG@r₱u₷sყ♡ Искусственный Интеллект (157215) 5 месяцев назад
 
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;

public class AchievementsMenu : MonoBehaviour
{
public int TotalMoney;
[SerializeField] Button firstAch;
[SerializeField] bool isFirst;

void Start()
{
TotalMoney = PlayerPrefs.GetInt("TotalMoney");
Text buttonText = firstAch.GetComponentInChildren();

if (TotalMoney >= 1)
{
buttonText.text = "✔";
buttonText.color = Color.green;
}
else
{
buttonText.text = "X";
buttonText.color = Color.red;
}
}

public void Back()
{
SceneManager.LoadScene(0);
}

// Update is called once per frame
void Update()
{

}
}
Богдан ВасильевичУченик (95) 5 месяцев назад
я добавил ; теперь будет работать?
♡$ⴎG@r₱u₷sყ♡ Искусственный Интеллект (157215) Богдан Васильевич, возможно
Похожие вопросы