Files
CartoonFPS/Library/PackageCache/com.unity.render-pipelines.core@2be5e7224a10/Runtime/Stripping/IStripper.cs

13 lines
223 B
C#
Raw Normal View History

2025-08-05 09:30:40 +01:00
#if UNITY_EDITOR
namespace UnityEngine.Rendering
{
public interface IStripper
{
/// <summary>
/// Returns if the stripper is active
/// </summary>
bool active { get; }
}
}
#endif