浏览代码

ApplicationExitAction : Exits play mode when in Editor.

/main
Thomas ICHÉ 5 年前
当前提交
0b6c59d7
共有 2 个文件被更改,包括 5 次插入0 次删除
  1. 1
      CHANGELOG.md
  2. 4
      Runtime/LevelScripting/Actions/ApplicationExitAction.cs

1
CHANGELOG.md


* Fixed LinkGameView not working in play mode when excluding VirtualCameraManager.
* Fixed Performance issue in GameplayIngredientsSettings when having a big list of Excluded managers.
* Fixed ApplicationExitAction : Exits play mode when in Editor.
## 2019.1.2

4
Runtime/LevelScripting/Actions/ApplicationExitAction.cs


{
public override void Execute(GameObject instigator = null)
{
#if UNITY_EDITOR
UnityEditor.EditorApplication.ExitPlaymode();
#else
#endif
}
}
}
正在加载...
取消
保存