Files
FlaxEngine/Source/Engine/Scripting/Attributes/Editor/ShowInEditorAttribute.cs
2023-01-10 15:29:37 +01:00

17 lines
450 B
C#

// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using System;
namespace FlaxEngine
{
/// <summary>
/// Makes a variable show up in the editor.
/// </summary>
/// <remarks>
/// If used on a private field/property you may also need to add <see cref="SerializeAttribute"/> to ensure that modified value is being serialized.
/// </remarks>
public sealed class ShowInEditorAttribute : Attribute
{
}
}