- Информатика
- Подскажите , почему на
Подскажите , почему на юнити не отображаются функции этого скрипта? using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ExitPlay : MonoBehaviour
{
// Start is called before the first frame update
public void Play ()
{
Application.LoadLevel(2);
}
// Update is called once per frame
public void Exit()
{
Application.Quit();
}
}