Files
FlaxEngine/Source/Editor/CustomEditors/Elements/Container/VerticalPanelElement.cs

26 lines
641 B
C#

// Copyright (c) Wojciech Figat. All rights reserved.
using FlaxEngine;
using FlaxEngine.GUI;
namespace FlaxEditor.CustomEditors.Elements
{
/// <summary>
/// The vertical panel element.
/// </summary>
/// <seealso cref="FlaxEditor.CustomEditors.LayoutElement" />
public class VerticalPanelElement : LayoutElementsContainer
{
/// <summary>
/// The panel.
/// </summary>
public readonly VerticalPanel Panel = new VerticalPanel
{
Pivot = Float2.Zero,
};
/// <inheritdoc />
public override ContainerControl ContainerControl => Panel;
}
}