github outfox/fennecs v0.6.8

latest releases: v0.6.10, v0.6.9
2 months ago

This release improves the way Entities can be expressed for Debug purposes; instead of the convoluted functionality of the old ToString(), we now have:

```cs
    /// <inheritdoc/>
    /// <remarks>
    /// This function formerly created what <see cref="Dump"/> returns now.
    /// </remarks>
    public override string ToString() => Id.ToString();
    
    /// <summary>
    /// Returns the raw value of this entity.
    /// </summary>
    public ulong ToRaw() => Id.Value;
    
    /// <summary>
    /// Simple Multiline Dump that lists the attached components. (formerly ToString())
    /// </summary>
    public string Dump()
    {
       //old behaviour of ToString(), lists the components along with the entity state
    }

Don't miss a new fennecs release

NewReleases is sending notifications on new releases.