removed ref to unity editor in engine scripts!!

This commit is contained in:
jasonm-unity 2017-08-17 09:44:07 -04:00
Родитель c24bf33cd8
Коммит 2017492bfb
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
using System.Linq;
using UnityEditor;
namespace UnityEngine.FrameRecorder
{
@ -122,7 +121,7 @@ namespace UnityEngine.FrameRecorder
{
var obj = (RecorderInputSetting)ScriptableObject.CreateInstance(type) ;
obj.m_DisplayName = title;
obj.name = GUID.Generate().ToString();
obj.name = Guid.NewGuid().ToString();
return obj;
}