Files
BABA_YAGA/Assets/Opsive/UltimateCharacterController/Scripts/Character/Identifiers/IgnoreFadeIdentifier.cs

15 lines
467 B
C#
Raw Normal View History

2026-06-14 23:57:44 +07:00
/// ---------------------------------------------
/// Ultimate Character Controller
/// Copyright (c) Opsive. All Rights Reserved.
/// https://www.opsive.com
/// ---------------------------------------------
namespace Opsive.UltimateCharacterController.Character.Identifiers
{
using UnityEngine;
/// <summary>
/// Component which specifies that an object should not fade.
/// </summary>
public class IgnoreFadeIdentifier : MonoBehaviour { }
}