16 lines
292 B
C#
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;
|
|
}
|
|
}
|
|
} |