DecalManager.cs 292 B

12345678910111213141516
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace LuxURPEssentials
  5. {
  6. public class DecalManager : MonoBehaviour
  7. {
  8. public bool Gizmos = true;
  9. public static bool DrawDecalGizmos = true;
  10. void OnValidate() {
  11. DrawDecalGizmos = Gizmos;
  12. }
  13. }
  14. }