maint: added htrace ssgi

This commit is contained in:
Chris
2025-12-31 12:44:11 -05:00
parent 90caaa07c4
commit 3a766f7606
203 changed files with 17634 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
//pipelinedefine
#define H_URP
using HTraceSSGI.Scripts.Data.Private;
using UnityEngine;
namespace HTraceSSGI.Scripts.Data.Public
{
/// <summary>
/// Change global HTrace SSGI settings, only for UseVolumes is disabled in HTrace SSGI Renderer Feature
/// </summary>
public static class HTraceSSGISettings
{
private static HTraceSSGIProfile _cachedProfile;
public static HTraceSSGIProfile ActiveProfile
{
get
{
return _cachedProfile;
}
}
public static void SetProfile(HTraceSSGIProfile profile)
{
_cachedProfile = profile;
}
}
}