This commit is contained in:
2025-11-14 18:44:06 +08:00
parent 10156da245
commit 22e867d077
7013 changed files with 2572882 additions and 1804 deletions

View File

@@ -0,0 +1,35 @@
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);
profile.fog.enabled = true;
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);
}
}
}