/cecs

A delicious entity component system

Primary LanguageRustMIT LicenseMIT

Cecs 🍪

Cecs, pronounced [ˈkɛks] is an ECS implementation supporting Cao-Lo.

There are many like it, but this one is mine.

Heavily inspired by Bevy and Hexops

Minimum supported Rust version is 1.77 nightly

Features

  • Functions as systems
  • Query interface
  • Unique data, called Resources
  • Cloning of the entire database (optional)
  • Serialization/Deserialization of select components (optional)
  • Work-stealing based parallel scheduler (optional)
  • "View" systems. Allows running systems that only read data on an immutable reference to the World.
  • Explicit ordering between systems in the same stage.