您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
34 行
1.3 KiB
34 行
1.3 KiB
using UnityEngine;
|
|
using UnityEngine.PostProcessing;
|
|
using UnityEditor.ProjectWindowCallback;
|
|
using System.IO;
|
|
|
|
namespace UnityEditor.PostProcessing
|
|
{
|
|
public class PostProcessingFactory
|
|
{
|
|
[MenuItem("Assets/Create/Post-Processing Profile", priority = 201)]
|
|
static void MenuCreatePostProcessingProfile()
|
|
{
|
|
var icon = EditorGUIUtility.FindTexture("ScriptableObject Icon");
|
|
ProjectWindowUtil.StartNameEditingIfProjectWindowExists(0, ScriptableObject.CreateInstance<DoCreatePostProcessingProfile>(), "New Post-Processing Profile.asset", icon, null);
|
|
}
|
|
|
|
internal static PostProcessingProfile CreatePostProcessingProfileAtPath(string path)
|
|
{
|
|
var profile = ScriptableObject.CreateInstance<PostProcessingProfile>();
|
|
profile.name = Path.GetFileName(path);
|
|
AssetDatabase.CreateAsset(profile, path);
|
|
return profile;
|
|
}
|
|
}
|
|
|
|
class DoCreatePostProcessingProfile : EndNameEditAction
|
|
{
|
|
public override void Action(int instanceId, string pathName, string resourceFile)
|
|
{
|
|
PostProcessingProfile profile = PostProcessingFactory.CreatePostProcessingProfileAtPath(pathName);
|
|
ProjectWindowUtil.ShowCreatedAsset(profile);
|
|
}
|
|
}
|
|
}
|