Files
Outline-Toolkit/Runtime/Scripts/OutlineFilterMode.cs
2025-07-20 21:01:09 +08:00

16 lines
295 B
C#

// Copyright (C) 2019-2021 Alexander Bogarsukov. All rights reserved.
// See the LICENSE.md file in the project root for more information.
using System;
using UnityEngine;
namespace UnityFx.Outline
{
internal enum OutlineFilterMode
{
None,
UseLayerMask,
UseRenderingLayerMask,
}
}