2026-03-14 02:30:26 -04:00
|
|
|
using System;
|
2025-01-27 10:29:38 -05:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
2025-06-30 09:25:29 -04:00
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using Sirenix.OdinInspector;
|
2026-03-14 02:30:26 -04:00
|
|
|
using SLSUtilities.General;
|
2025-01-27 10:29:38 -05:00
|
|
|
using UnityEngine;
|
2025-02-26 22:54:53 -05:00
|
|
|
using UnityEngine.Rendering;
|
2025-06-30 09:25:29 -04:00
|
|
|
using UnityEngine.Rendering.Universal;
|
2025-01-27 10:29:38 -05:00
|
|
|
|
2026-03-14 02:30:26 -04:00
|
|
|
namespace Ichni
|
2025-01-27 10:29:38 -05:00
|
|
|
{
|
2026-03-14 02:30:26 -04:00
|
|
|
public class PostProcessingManager : Singleton<PostProcessingManager>
|
2025-01-27 10:29:38 -05:00
|
|
|
{
|
2026-03-26 14:48:04 -04:00
|
|
|
public static Volume GlobalVolume => instance.globalVolume;
|
2025-06-30 09:25:29 -04:00
|
|
|
|
2026-03-26 14:48:04 -04:00
|
|
|
[ShowInInspector, SerializeField]
|
|
|
|
|
private Volume globalVolume;
|
2025-01-27 10:29:38 -05:00
|
|
|
}
|
2025-02-26 22:54:53 -05:00
|
|
|
}
|