您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
23 行
657 B
23 行
657 B
using UnityEngine;
|
|
|
|
namespace UnityConsole.Commands
|
|
{
|
|
/// <summary>
|
|
/// QUIT command. Quit the application.
|
|
/// </summary>
|
|
public static class QuitCommand
|
|
{
|
|
public static readonly string name = "QUIT";
|
|
public static readonly string description = "Quit the application.";
|
|
public static readonly string usage = "QUIT";
|
|
|
|
public static ConsoleCommandResult Execute(params string[] args)
|
|
{
|
|
Application.Quit();
|
|
#if UNITY_EDITOR
|
|
UnityEditor.EditorApplication.isPlaying = false;
|
|
#endif
|
|
return ConsoleCommandResult.Succeeded();
|
|
}
|
|
}
|
|
}
|