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.
27 lines
806 B
27 lines
806 B
namespace UnityEditor.Rendering.Universal.Internal |
|
{ |
|
/// <summary> |
|
/// Contains a database of built-in resource GUIds. These are used to load built-in resource files. |
|
/// </summary> |
|
public static class ResourceGuid |
|
{ |
|
/// <summary> |
|
/// GUId for the <c>ScriptableRendererFeature</c> template file. |
|
/// </summary> |
|
public static readonly string rendererTemplate = "51493ed8d97d3c24b94c6cffe834630b"; |
|
} |
|
} |
|
|
|
namespace UnityEditor.Rendering.Universal |
|
{ |
|
static partial class EditorUtils |
|
{ |
|
internal enum Unit { Metric, Percent } |
|
|
|
internal class Styles |
|
{ |
|
//Measurements |
|
public static float defaultLineSpace = EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; |
|
} |
|
} |
|
}
|
|
|