Files
FlaxEngine/Source/Editor/SceneGraph/Actors/UIControlNode.cs
2021-01-02 14:28:49 +01:00

30 lines
732 B
C#

// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
using FlaxEngine;
namespace FlaxEditor.SceneGraph.Actors
{
/// <summary>
/// Scene tree node for <see cref="UIControl"/> actor type.
/// </summary>
/// <seealso cref="ActorNode" />
[HideInEditor]
public sealed class UIControlNode : ActorNode
{
/// <inheritdoc />
public UIControlNode(Actor actor)
: base(actor)
{
}
/// <inheritdoc />
public override void OnDebugDraw(ViewportDebugDrawData data)
{
base.OnDebugDraw(data);
if (Actor is UIControl uiControl)
DebugDraw.DrawWireBox(uiControl.Bounds, Color.BlueViolet);
}
}
}