Я писал скрипт, и вот я когда хочу запустить корутину вот ошибка,( сразу после сохранение роботы появляеться)
Assets\Scripts\LuckyGame.cs(34,17): error CS0542: 'LuckyGame': member names cannot be the same as their enclosing type
Вот скрипт, помогите чем сможете
using System.Collections;
using System.Collections.Generic;
using UnityEngine.UI;
using UnityEngine;
using System;
using UnityEngine.Monetization;
using UnityEngine.SceneManagement;
public class LuckyGame : MonoBehaviour
{
public int price;
public Text priceText;
public void StartGame()
{
if(Main.money > 4)
{
StartCoroutine(LuckyGame());
}
}
void Update()
{
priceText.text = price + "";
}
IEnumerator LuckyGame()
{
price = Random.Range(0, 11);
Main.money += price;
yield return new WaitForSeconds(0.5f);
price = 0;
}
}