Custom background color for collections

This commit is contained in:
Crawcik
2021-06-03 13:45:07 +02:00
parent a1f985bc7d
commit e459707b0d
5 changed files with 50 additions and 28 deletions

View File

@@ -34,5 +34,10 @@ namespace FlaxEngine
/// The spacing amount between collection items in the UI.
/// </summary>
public float Spacing;
/// <summary>
/// Background color of the collection.
/// </summary>
public Color BackgroundColor = new Color(1f, 1f, 1f, 0.08f);
}
}