This commit is contained in:
2021-06-13 10:28:03 +02:00
parent eb70603c85
commit df2d24cbd3
7487 changed files with 943244 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
using UnityEngine;
using UnityEngine.Rendering;
using UnityEngine.Rendering.Universal;
namespace UnityEditor.Rendering.Universal
{
[CustomEditor(typeof(PostProcessData), true)]
public class PostProcessDataEditor : Editor
{
SerializedProperty m_Shaders;
SerializedProperty m_Textures;
private void OnEnable()
{
m_Shaders = serializedObject.FindProperty("shaders");
m_Textures = serializedObject.FindProperty("textures");
}
public override void OnInspectorGUI()
{
serializedObject.Update();
// Add a "Reload All" button in inspector when we are in developer's mode
if (EditorPrefs.GetBool("DeveloperMode"))
{
EditorGUILayout.Space();
EditorGUILayout.PropertyField(m_Shaders, true);
EditorGUILayout.PropertyField(m_Textures, true);
if (GUILayout.Button("Reload All"))
{
var resources = target as PostProcessData;
resources.shaders = null;
resources.textures = null;
ResourceReloader.ReloadAllNullIn(target, UniversalRenderPipelineAsset.packagePath);
}
}
serializedObject.ApplyModifiedProperties();
}
}
}