您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
23 行
446 B
23 行
446 B
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.Experimental.Rendering
|
|
{
|
|
public class SettingsDisableScope : IDisposable
|
|
{
|
|
bool enable;
|
|
|
|
public SettingsDisableScope(bool enable)
|
|
{
|
|
this.enable = enable;
|
|
if (!enable)
|
|
GUI.enabled = false;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
if (!enable)
|
|
GUI.enabled = true;
|
|
}
|
|
}
|
|
}
|