mathe/Library/PackageCache/com.unity.render-pipelines.core@14.0.8/Runtime/Debugging/IDebugDisplaySettings.cs

23 lines
557 B
C#
Raw Normal View History

2024-09-20 20:30:10 +02:00
using System;
using UnityEngine;
namespace UnityEngine.Rendering
{
/// <summary>
/// Interface for storing the debug settings
/// </summary>
public interface IDebugDisplaySettings : IDebugDisplaySettingsQuery
{
/// <summary>
/// Reset the stored debug settings
/// </summary>
void Reset();
/// <summary>
/// Executes an action for each element
/// </summary>
/// <param name="onExecute"></param>
void ForEach(Action<IDebugDisplaySettingsData> onExecute);
}
}