Frent 0.3.3.3-beta

This is a prerelease version of Frent.
dotnet add package Frent --version 0.3.3.3-beta                
NuGet\Install-Package Frent -Version 0.3.3.3-beta                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Frent" Version="0.3.3.3-beta" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Frent --version 0.3.3.3-beta                
#r "nuget: Frent, 0.3.3.3-beta"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Frent as a Cake Addin
#addin nuget:?package=Frent&version=0.3.3.3-beta&prerelease

// Install Frent as a Cake Tool
#tool nuget:?package=Frent&version=0.3.3.3-beta&prerelease                

Frent

NuGet NuGet GitHub commit activity (branch) GitHub Repo stars

A high preformance archetyped based ECF/ECS library for C#.

Whaaaat?! Aren't there enough ECS libraries out there!

While Frent's implementation is an archetype based ECS, thats not why Frent was made. Frent is primarily an ECF - Entity Component Framework - that allows you to easily use composition for code reuse rather than inheritance with minimal boilerplate. Think Unity's Monobehavior powered by the principles and speed of an ECS, as well as less boilerplate.

[!CAUTION] Frent is still in beta and is not completely stable.

Quick Example

using Frent;
using Frent.Components;
using System.Numerics;

using World world = new World();
Entity entity = world.Create<Position, Velocity>(new(Vector2.Zero), new(Vector2.One));

//Call Update to run the update functions of your components
world.Update();

// Position is { Value = <1, 1> }
Console.WriteLine(entity.Get<Position>());

record struct Position(Vector2 Value);
record struct Velocity(Vector2 Delta) : IComponent<Position>
{
    public void Update(ref Position position) => position.Value += Delta;
}

Wanna learn more? Check out the docs!

Features

Implemented

  • Entity struct the size of a 64 bits
  • Up to 16 components per entity
  • Getting, Adding, and Removing components
  • Classes as components
  • Structs as components
  • Deconstructing entities
  • Component memory stored contiguously (when using structs)
  • All entity functions are O(1) and highly optimised
  • Pass in uniform data e.g., deltaTime
  • Deconstructing entities
  • Zero reflection
  • AOT Compatible
  • Built in Uniform Provider implementation
  • Non-Generic Entity Creation
  • Entity Tags
  • World Update Filtering
  • Multithreading
  • Command buffer
  • Events

Future

  • Comprehensive docs
  • 100% Test coverage
  • More samples, examples, & explanations!

Contributing

Wanna help?

Report bugs, suggest APIs, and give general feedback. Just open an issue before starting a large feature.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.3.3.3-beta 40 2/3/2025
0.3.3.2-beta 36 1/31/2025
0.3.3.1-beta 33 1/30/2025
0.3.3-beta 33 1/30/2025
0.3.2-beta 38 1/20/2025
0.3.1-beta 43 1/20/2025
0.3.0-beta 32 1/20/2025
0.2.3-alpha 48 1/5/2025
0.2.2-alpha 52 1/5/2025
0.2.1-alpha 44 1/5/2025
0.2.0-alpha 55 1/4/2025
0.1.4-alpha 52 1/4/2025
0.1.3-alpha 55 1/4/2025
0.1.2-alpha 58 1/1/2025
0.1.1-alpha 56 1/1/2025
0.1.0-alpha 69 12/31/2024