This commit is contained in:
2025-07-20 21:01:09 +08:00
commit d2b8ce01f8
110 changed files with 6418 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
// 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,
}
}