14 lines
225 B
C#
14 lines
225 B
C#
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
namespace AllIn13DShader
|
|
{
|
|
[CustomEditor(typeof(URPSettingsUserPref))]
|
|
public class URPSettingsUserPrefCustomEditor : Editor
|
|
{
|
|
public override void OnInspectorGUI()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |