UnityGame/Library/PackageCache/com.unity.render-pipelines.core/Runtime/Stripping/IStripper.cs

13 lines
223 B
C#
Raw Normal View History

2024-10-27 10:53:47 +03:00
#if UNITY_EDITOR
namespace UnityEngine.Rendering
{
public interface IStripper
{
/// <summary>
/// Returns if the stripper is active
/// </summary>
bool active { get; }
}
}
#endif