Fix some editor UI controls visible in Visual Scripting
This commit is contained in:
@@ -16,6 +16,7 @@ namespace FlaxEditor.GUI
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The base class for <see cref="CurveBase{T}"/> editors. Allows to use generic curve editor without type information at compile-time.
|
/// The base class for <see cref="CurveBase{T}"/> editors. Allows to use generic curve editor without type information at compile-time.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[HideInEditor]
|
||||||
public abstract class CurveEditorBase : ContainerControl
|
public abstract class CurveEditorBase : ContainerControl
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ namespace FlaxEditor.GUI.Tabs
|
|||||||
/// Represents control which contains collection of <see cref="Tab"/>.
|
/// Represents control which contains collection of <see cref="Tab"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <seealso cref="FlaxEngine.GUI.ContainerControl" />
|
/// <seealso cref="FlaxEngine.GUI.ContainerControl" />
|
||||||
|
[HideInEditor]
|
||||||
public class Tabs : ContainerControl
|
public class Tabs : ContainerControl
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ namespace FlaxEditor.GUI
|
|||||||
/// The generic keyframes animation editor control.
|
/// The generic keyframes animation editor control.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <seealso cref="FlaxEngine.GUI.ContainerControl" />
|
/// <seealso cref="FlaxEngine.GUI.ContainerControl" />
|
||||||
|
[HideInEditor]
|
||||||
public class KeyframesEditor : ContainerControl
|
public class KeyframesEditor : ContainerControl
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ namespace FlaxEditor.GUI.Timeline
|
|||||||
/// The timeline control that contains tracks section and headers. Can be used to create time-based media interface for camera tracks editing, audio mixing and events tracking.
|
/// The timeline control that contains tracks section and headers. Can be used to create time-based media interface for camera tracks editing, audio mixing and events tracking.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <seealso cref="FlaxEngine.GUI.ContainerControl" />
|
/// <seealso cref="FlaxEngine.GUI.ContainerControl" />
|
||||||
|
[HideInEditor]
|
||||||
public class Timeline : ContainerControl
|
public class Timeline : ContainerControl
|
||||||
{
|
{
|
||||||
private static readonly KeyValuePair<float, string>[] FPSValues =
|
private static readonly KeyValuePair<float, string>[] FPSValues =
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ namespace FlaxEditor.Progress
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Base class for all editor handlers used to report actions progress to the user.
|
/// Base class for all editor handlers used to report actions progress to the user.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[HideInEditor]
|
||||||
public abstract class ProgressHandler
|
public abstract class ProgressHandler
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user