mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
13 lines
295 B
C#
13 lines
295 B
C#
namespace AssetRipper.Core.Classes.GraphicsSettings
|
|
{
|
|
/// <summary>
|
|
/// <see href="https://github.com/Unity-Technologies/UnityCsReference/blob/master/Runtime/Export/Graphics/GraphicsEnums.cs"/>
|
|
/// </summary>
|
|
public enum BuiltinShaderMode
|
|
{
|
|
None = 0,
|
|
Builtin = 1,
|
|
Custom = 2,
|
|
}
|
|
}
|