// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using FlaxEngine;
namespace FlaxEditor.CustomEditors.Elements
{
///
/// The floating point value editor element.
///
[HideInEditor]
public interface IFloatValueEditor
{
///
/// Gets or sets the value.
///
float Value { get; set; }
///
/// Gets a value indicating whether user is using a slider.
///
bool IsSliding { get; }
///
/// Sets the editor limits from member .
///
/// The limit.
void SetLimits(LimitAttribute limit);
}
}