StellarXipher/Library/PackageCache/com.unity.render-pipelines.core@540dd21c6cd7/Runtime/Volume/IVolume.cs
2025-02-06 16:45:46 -05:00

21 lines
504 B
C#

using System.Collections.Generic;
namespace UnityEngine.Rendering
{
/// <summary>
/// An interface for Volumes
/// </summary>
public interface IVolume
{
/// <summary>
/// Specifies whether to apply the Volume to the entire Scene or not.
/// </summary>
bool isGlobal { get; set; }
/// <summary>
/// The colliders of the volume if <see cref="isGlobal"/> is false
/// </summary>
List<Collider> colliders { get; }
}
}