Add MinCount and MaxCount to Collection attribute

This commit is contained in:
Wojtek Figat
2024-02-15 18:26:12 +01:00
parent b5e23f0096
commit 5fc7c6e190
2 changed files with 27 additions and 12 deletions

View File

@@ -61,6 +61,16 @@ namespace FlaxEngine
/// </summary>
public float Spacing;
/// <summary>
/// The minimum size of the collection.
/// </summary>
public int MinCount;
/// <summary>
/// The maximum size of the collection. Zero if unlimited.
/// </summary>
public int MaxCount;
/// <summary>
/// The collection background color.
/// </summary>