You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
480 B
18 lines
480 B
using System;
|
|
using System.Linq.Expressions;
|
|
using System.Reflection;
|
|
using UnityEngine;
|
|
using UnityEngine.Rendering.HighDefinition;
|
|
using UnityEngine.Rendering;
|
|
|
|
namespace UnityEditor.Rendering.HighDefinition
|
|
{
|
|
using CED = CoreEditorDrawer<SerializedHDLight>;
|
|
|
|
static partial class HDLightUI
|
|
{
|
|
static readonly ExpandedState<Expandable, Light> k_ExpandedStatePreset = new(0, "HDRP-preset");
|
|
|
|
public static readonly CED.IDrawer PresetInspector;
|
|
}
|
|
}
|