21 lines
494 B
C#
21 lines
494 B
C#
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
using FlaxEngine;
|
|
|
|
namespace FlaxEditor.SceneGraph.Actors
|
|
{
|
|
/// <summary>
|
|
/// Scene tree node for <see cref="EnvironmentProbe"/> actor type.
|
|
/// </summary>
|
|
/// <seealso cref="ActorNodeWithIcon" />
|
|
[HideInEditor]
|
|
public sealed class EnvironmentProbeNode : ActorNodeWithIcon
|
|
{
|
|
/// <inheritdoc />
|
|
public EnvironmentProbeNode(Actor actor)
|
|
: base(actor)
|
|
{
|
|
}
|
|
}
|
|
}
|