Singularity/Library/PackageCache/com.unity.render-pipelines..../Editor/Camera/UniversalRenderPipelineCame...
2024-05-06 11:45:45 -07:00

19 lines
1021 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using UnityEngine;
namespace UnityEditor.Rendering.Universal
{
static partial class UniversalRenderPipelineCameraUI
{
public class Styles
{
public static GUIContent cameraType = EditorGUIUtility.TrTextContent("Render Type", "Defines if a camera renders directly to a target or overlays on top of another cameras output. Overlay option is not available when Deferred Render Data is in use.");
public static readonly string pixelPerfectInfo = L10n.Tr("Projection settings have been overriden by the Pixel Perfect Camera.");
// Stack cameras
public static GUIContent stackSettingsText = EditorGUIUtility.TrTextContent("Stack", "The list of overlay cameras assigned to this camera.");
public static GUIContent cameras = EditorGUIUtility.TrTextContent("Cameras", "The list of overlay cameras assigned to this camera.");
public static string inspectorOverlayCameraText = L10n.Tr("Inspector Overlay Camera");
}
}
}