16 lines
373 B
C#
16 lines
373 B
C#
// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved.
|
|
|
|
using System;
|
|
|
|
namespace FlaxEngine
|
|
{
|
|
/// <summary>
|
|
/// Makes a property to not use undo/redo when modifying it in Editor.
|
|
/// </summary>
|
|
[Serializable]
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
public sealed class NoUndoAttribute : Attribute
|
|
{
|
|
}
|
|
}
|