Files
Outline-Toolkit/Runtime/Scripts/OutlineFilterMode.cs

16 lines
295 B
C#
Raw Normal View History

2025-07-20 21:01:09 +08:00
// 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,
}
}