feat: added htrace

This commit is contained in:
Chris
2026-01-02 23:27:08 -05:00
parent dfff4e6f1d
commit 20f1fbb211
203 changed files with 17634 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
//pipelinedefine
#define H_URP
using System;
using HTraceSSGI.Scripts.Globals;
using UnityEngine;
namespace HTraceSSGI.Scripts.Data.Public
{
[Serializable]
public class DebugSettings
{
public bool ShowBowels = false;
public bool ShowFullDebugLog = false;
public LayerMask HTraceLayer = ~0;
public bool TestCheckBox1;
public bool TestCheckBox2;
public bool TestCheckBox3;
}
}