You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
467 B
13 lines
467 B
namespace UnityEngine.Rendering
|
|
{
|
|
/// <summary>
|
|
/// Interface for a class that provides access to the asset used to initialize the default volume profile.
|
|
/// </summary>
|
|
public interface IDefaultVolumeProfileAsset : IRenderPipelineGraphicsSettings
|
|
{
|
|
/// <summary>
|
|
/// The volume profile asset used to initialize Default Volume Profile.
|
|
/// </summary>
|
|
public VolumeProfile defaultVolumeProfile { get; set; }
|
|
}
|
|
}
|