浏览代码

Disabled File/New Scene from Template for 2020.2 or newer (superseded by built-in scene templates) (#29)

/main
GitHub 3 年前
当前提交
6eab4255
共有 3 个文件被更改,包括 9 次插入0 次删除
  1. 1
      CHANGELOG.md
  2. 4
      Editor/NewSceneWindow/NewSceneWindow.cs
  3. 4
      Editor/NewSceneWindow/SceneTemplateList.cs

1
CHANGELOG.md


#### Fixed
* Disabled File/New Scene from Template for 2020.2 or newer (superseded by built-in scene templates)
* Fixed Welcome screen from showing up on domain reload.
* Fixed Take Screenshot Action : Bad Filename + Added Tooltips
* Fixed property name in NonNullCheck property drawer

4
Editor/NewSceneWindow/NewSceneWindow.cs


const int WindowWidth = 640;
const int WindowHeight = 380;
#if UNITY_2020_2_OR_NEWER
#else
#endif
private void OnEnable()
{

4
Editor/NewSceneWindow/SceneTemplateList.cs


{
public class SceneTemplateList : ScriptableObject
{
#if UNITY_2020_2_OR_NEWER
#else
#endif
public string ListName = "New Template List";
public SceneWindowTemplate[] Templates;

正在加载...
取消
保存