Files
FlaxEngine/Source/Engine/Scripting/Attributes/Editor/ShowInEditorAttribute.cs
2022-01-14 13:31:12 +01:00

17 lines
450 B
C#

// Copyright (c) 2012-2022 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
{
}
}