Horje
stop program event in unity code Code Example
stop program event in unity code
public class QuitManager : MonoBehaviour
{
    void Update()
    {
        if (Input.GetKeyDown(KeyCode.Escape))
        {
            Application.Quit();
        }
    }
}




Csharp

Related
search the third word in string in c# Code Example search the third word in string in c# Code Example
add dynamically buttons in loop with events winform c# Code Example add dynamically buttons in loop with events winform c# Code Example
unity string array Code Example unity string array Code Example
c# negative index Code Example c# negative index Code Example
game object find Code Example game object find Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9