Add support for NotNullItems option in collections editors

#542
This commit is contained in:
Wojtek Figat
2021-06-09 10:58:54 +02:00
parent 0ba4a0cabc
commit 484bc409d4
11 changed files with 64 additions and 57 deletions

View File

@@ -1,7 +1,6 @@
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
using System;
using FlaxEngine.GUI;
namespace FlaxEngine
{
@@ -39,6 +38,6 @@ namespace FlaxEngine
/// <summary>
/// The collection background color.
/// </summary>
public Color BackgroundColor = Style.Current.CollectionBackgroundColor;
public Color? BackgroundColor;
}
}