Files
FlaxEngine/Source/Editor/SceneGraph/Actors/SkyNode.cs
2024-02-26 19:00:48 +01:00

21 lines
455 B
C#

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