15 lines
467 B
C#
15 lines
467 B
C#
/// ---------------------------------------------
|
|
/// 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 { }
|
|
} |