// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using System;
namespace FlaxEngine
{
///
/// Indicates that a member of a class cannot be animated by the scene animations system. This class cannot be inherited.
///
[Serializable]
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Method)]
public sealed class NoAnimateAttribute : Attribute
{
///
/// Initializes a new instance of the class.
///
public NoAnimateAttribute()
{
}
}
}