16 lines
295 B
C#
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,
|
|
}
|
|
}
|