Files
FlaxEngine/Source/Editor/SceneGraph/Actors/SkyNode.cs

21 lines
445 B
C#

// Copyright (c) Wojciech Figat. All rights reserved.
using FlaxEngine;
namespace FlaxEditor.SceneGraph.Actors
{
/// <summary>
/// Scene tree node for <see cref="Sky"/> actor type.
/// </summary>
/// <seealso cref="ActorNodeWithIcon" />
[HideInEditor]
public sealed class SkyNode : ActorNodeWithIcon
{
/// <inheritdoc />
public SkyNode(Actor actor)
: base(actor)
{
}
}
}