kult icon indicating copy to clipboard operation
kult copied to clipboard

:crystal_ball: Lightweight entity/component/system library (C++11)

Results 4 kult issues
Sort by recently updated
recently updated
newest added

I wanted to create a compoent as such: ``` kult::component krenderable ``` The problem is that a unique_ptr is not copyable so the template fails on the merge method within...

Lets say I have three components, position, scale, rotation that updates a matrix component to trasforms a sprite. Is there a way I can detect that position/scale/rotation component has changed...

Hey just so your know..... http://scarff.id.au/blog/2009/c-multi-character-character-constants/ you are relying on lots of UB to make this library unique...I mean it works under like ALL compilers but still at least put...

Under the current implementation of `kult::entities()`, nothing is ever returned. My current method for getting all entities (and deleting them) now is looping through all the component types and purging...