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

21 lines
476 B
C#

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