Fix using unsigned integer properties in Visual Script editor
This commit is contained in:
@@ -332,7 +332,10 @@ namespace FlaxEditor.Surface
|
||||
/// <seealso cref="FlaxEditor.CustomEditors.CustomEditor" />
|
||||
public class ParametersEditor : CustomEditor
|
||||
{
|
||||
private static readonly Attribute[] DefaultAttributes = { new LimitAttribute(float.MinValue, float.MaxValue, 0.1f) };
|
||||
private static readonly Attribute[] DefaultAttributes =
|
||||
{
|
||||
//new LimitAttribute(float.MinValue, float.MaxValue, 0.1f),
|
||||
};
|
||||
|
||||
/// <inheritdoc />
|
||||
public override DisplayStyle Style => DisplayStyle.InlineIntoParent;
|
||||
|
||||
Reference in New Issue
Block a user