Skip to content

Commit

Permalink
Merging Release 0.5.14-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
thygrrr committed Oct 30, 2024
1 parent 337bf53 commit 6269e68
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion misc/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,10 @@ var found3 = mystream.FirstOrDefault((tuple) => tuple.Item2 > mousePosition).Ite
- `UniformEntitySpanAction<in U>` - process a Span of Entities with a uniform parameter
</details>

## Version 0.5.14-beta

- Merged [PR #29](https://github.com/outfox/fennecs/pull/29), fixing a significant corruption issue due to a Bug in `Join<...>.Iterate()`. Huge thanks to [Lilith Schier](https://github.com/Naalunth)!

## Version 0.5.13-beta

- Implemented [Issue #22](https://github.com/outfox/fennecs/issues/22) Adding typeless .Has() and .Get() methods for entity.
Expand All @@ -135,7 +139,7 @@ var found3 = mystream.FirstOrDefault((tuple) => tuple.Item2 > mousePosition).Ite
/// Typeless API: Check if the entity/entities has a Component of a specific backing type, with optional match expression for relations.
/// </summary>
/// <remarks>
/// ⚠️ To differentiate from its overloads for Object Links, use default or Match.Plain for match, or Wildcards like Match.Any, Match.Plain, etc.
/// ⚠️ To differentiate from its overloads for Object Links, use default or Match.Plain for match, or Wildcards like Entity.Any, Match.Any, etc.
/// </remarks>
public bool Has(Type type, Match match);

Expand Down

0 comments on commit 6269e68

Please sign in to comment.