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.
 
 
 
 
 

19 lines
430 B

using System;
using UnityEngine;
using UnityEditor.Rendering.BuiltIn;
namespace UnityEditor.Rendering.Fullscreen.ShaderGraph
{
[Serializable]
sealed class FullscreenMetaData : ScriptableObject
{
[SerializeField]
FullscreenMode m_FullscreenMode;
public FullscreenMode fullscreenMode
{
get => m_FullscreenMode;
set => m_FullscreenMode = value;
}
}
}