Singularity/Library/PackageCache/com.unity.render-pipelines..../Editor/UpgradeCommon.cs

47 lines
908 B
C#
Raw Permalink Normal View History

2024-05-06 14:45:45 -04:00
using UnityEngine.Scripting.APIUpdating;
namespace UnityEditor.Rendering.Universal
{
public enum UpgradeSurfaceType
{
Opaque,
Transparent
}
public enum UpgradeBlendMode
{
Alpha,
Premultiply,
Additive,
Multiply
}
public enum SpecularSource
{
SpecularTextureAndColor,
NoSpecular
}
public enum SmoothnessSource
{
SpecularAlpha,
BaseAlpha,
}
public enum ReflectionSource
{
NoReflection,
Cubemap,
ReflectionProbe
}
public struct UpgradeParams
{
public UpgradeSurfaceType surfaceType { get; set; }
public UpgradeBlendMode blendMode { get; set; }
public bool alphaClip { get; set; }
public SpecularSource specularSource { get; set; }
public SmoothnessSource smoothnessSource { get; set; }
}
}