Skip to content

Commit

Permalink
ECS - update EntityStore.RecycleIds docs
Browse files Browse the repository at this point in the history
  • Loading branch information
friflo committed Jul 31, 2024
1 parent feee72d commit 427662a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ECS/EntityStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public sealed partial class EntityStore : EntityStoreBase
[Browse(Never)] public int Capacity => nodes.Length;

/// <summary>
/// If true ids of deleted entities are recycled when creating new entities.<br/>
/// If true (default) ids of deleted entities are recycled when creating new entities.<br/>
/// If false every new entity gets its own unique id. As a result the store capacity will always grow over time.
/// </summary>
[Browse(Never)] public bool RecycleIds { get => recycleIds; set => SetRecycleIds(value); }
Expand Down

0 comments on commit 427662a

Please sign in to comment.