Releases: aztecs-hs/aztecs
Releases · aztecs-hs/aztecs
Release list
v0.17.1
v0.17.0
v0.16.1
v0.16.0
v0.15.0
aztecs-v0.14.0
What's Changed
- refactor: remove
fwrapper fromHSetby @matthunz in #44 - ci: fix caching by @matthunz in #45
- feat: make
Wgeneric over storages by @matthunz in #47 - fix:
HasDuplicateWritesand refactor by @matthunz in #48 - feat:
ComponentHooksby @matthunz in #49 - feat: make
Componenthooks generic and restructure modules by @matthunz in #50 - refactor: pass lints and fmt by @matthunz in #51
- refactor: remove unused
Componentstype family from ECS by @matthunz in #52
Full Changelog: aztecs-v0.13.0...aztecs-v0.14.0
aztecs-v0.13.0
What's Changed
Full Changelog: aztecs-v0.12.0...aztecs-v0.13.0
aztecs-v0.12.0
aztecs-v0.11.1
aztecs-v0.11.0
0.11.0 - 2025-3-7
Breaking changes
-
Replace classes with interpreter pattern (77ed001) (a3c6db6) (9d9c4ca)
-
Remove engine-specific components
- My plan is to move these to other packages down the road, focusing this package on a modular ECS
move :: (Monad m) => QueryT m Position
move = fetch & zipFetchMap (\(Velocity v) (Position p) -> Position $ p + v)