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.
26 lines
895 B
26 lines
895 B
using UnityEngine;
|
|
|
|
namespace UnityEditor.Rendering
|
|
{
|
|
public static partial class CameraUI
|
|
{
|
|
public static partial class Environment
|
|
{
|
|
/// <summary>
|
|
/// Styles
|
|
/// </summary>
|
|
public static class Styles
|
|
{
|
|
/// <summary>
|
|
/// Header of the section
|
|
/// </summary>
|
|
public static readonly GUIContent header = EditorGUIUtility.TrTextContent("Environment", "These settings control what the camera background looks like.");
|
|
|
|
/// <summary>
|
|
/// Volume layer mask content
|
|
/// </summary>
|
|
public static readonly GUIContent volumeLayerMask = EditorGUIUtility.TrTextContent("Volume Mask", "This camera will only be affected by volumes in the selected scene-layers.");
|
|
}
|
|
}
|
|
}
|
|
}
|