Releases: AlecTroemel/junk-drawer
Releases · AlecTroemel/junk-drawer
v0.0.7
Added created
field to messages, which are set to the os/time when the entity is created. This allows you to sort messages in your systems
(def-system reciever-sys
{wld :world
msgs [:message :my-tag]}
(when (> (length msgs) 0)
(each [msg] (sorted-by |(get-in $ [0 :created]) msgs)
(pp (msg :content))
(messages/consume msg))))
v0.0.6
def-component redesign
creating entites returns ent id
v0.0.4 return the entities ID from create
Simple Tweens + ECS bug fixes
v0.0.3 update description of tweens in readme
v0.0.2: Merge pull request #10 from pepe/api-proposal
- use struct in the ecs/def-system and fsm/define binding
- fix some bugs in timer
- improved examples
first release
0.0.1 fix imports in examples