Files
2024-11-20 15:21:28 +01:00

16 lines
292 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace LuxURPEssentials
{
public class DecalManager : MonoBehaviour
{
public bool Gizmos = true;
public static bool DrawDecalGizmos = true;
void OnValidate() {
DrawDecalGizmos = Gizmos;
}
}
}