Что не так? Пишет:"error CS1001: Identifier expected"
Вот код:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class NewBehaviourScript : MonoBehaviour
{
public bool building;

// Start is called before the first frame update
void Start()
{

}

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

}

void OnMouseEnter()
{
if (building == true)
{
transform.GetChild(0).GetComponent ().color = Color;
}
else
{
transform.GetChild(0).GetComponent ().color = Color.green;
}
}
void OnMouseExit()
{
transform.GetChild(0).GetComponent ().color = Color.;
}
}

skuryan skuryan    1   02.12.2021 14:19    0

Ответы
shabishka shabishka  02.12.2021 14:20

Это же C#.

Верно?

Советую ознакомиться вот с этим:

https://stackoverflow.com/questions/4006164/error-cs1001-identifier-expected

Объяснение:

ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика