Files
Test-Multiplayer/Library/PackageCache/com.unity.render-pipelines.universal@bc6f352be672/Runtime/RenderPipelineResources/UniversalRenderPipelineEditorAssets.cs
pelpanagiotis 329b7d3183 First Commit
2025-12-21 18:31:02 +02:00

25 lines
755 B
C#

#if UNITY_EDITOR
using System;
namespace UnityEngine.Rendering.Universal
{
[Serializable]
[SupportedOnRenderPipeline(typeof(UniversalRenderPipelineAsset))]
[Categorization.CategoryInfo(Name = "R: Editor Assets", Order = 1000), HideInInspector]
class UniversalRenderPipelineEditorAssets : IRenderPipelineResources
{
public int version => 0;
[SerializeField]
[ResourcePath("Editor/Volume/DefaultVolumeProfile.asset")]
private VolumeProfile m_DefaultSettingsVolumeProfile;
public VolumeProfile defaultVolumeProfile
{
get => m_DefaultSettingsVolumeProfile;
set => this.SetValueAndNotify(ref m_DefaultSettingsVolumeProfile, value);
}
}
}
#endif