summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-08-01refactor(ecs): add & use component metadata structHampusM
2024-07-30refactor(ecs): give archetype component IDs once in component storageHampusM
2024-07-29docs(ecs): make examples work correctlyHampusM
2024-07-29feat(ecs): add fn to prepare world without using the event_loop fnHampusM
2024-07-29refactor(ecs): rename system::Param handle_pre_run fn to prepareHampusM
2024-07-28refactor(ecs): move ArchetypeComponentsHash to archetype::IdHampusM
2024-06-29chore(ecs): remove weak queriesHampusM
2024-06-29refactor(ecs): pass World ref to system run & param new functionsHampusM
2024-06-22feat(engine): add support for drawing objects as a bundleHampusM
2024-06-22fix(ecs): disable system param compatability checks by defaultHampusM
2024-06-22feat(ecs): add tuple method to pop the last elementHampusM
2024-06-22feat(util-macros): allow passing extra args to sub macro callbacksHampusM
2024-06-22feat(ecs): add query options filter entitiesHampusM
2024-06-22feat(engine): add ability to change polygon mode per objectHampusM
2024-06-20refactor(ecs): move down ArchetypeRefIter struct & impls in moduleHampusM
2024-06-20refactor(ecs): fix Clippy lintsHampusM
2024-06-20chore: use Position struct instead of removed Transform structHampusM
2024-06-20refactor(engine): replace Transform with Position & Scale structsHampusM
2024-06-20refactor(engine): remove matrix new function Copy boundHampusM
2024-06-20feat(engine): make the matrix struct publicHampusM
2024-06-17doc: add fixing ecs crate 'extension' example to todo listHampusM
2024-06-16fix(ecs): update archetype lookups when entity is spawned with ActionsHampusM
2024-06-16fix(ecs): create new archetype when archetype lookup entry is emptyHampusM
2024-06-16fix(ecs): prevent archetype creation from causing oob memory accessesHampusM
2024-06-16chore(ecs-macros): add id function to component implsHampusM
2024-06-16refactor(ecs): add component ID structHampusM
2024-06-15perf(ecs): store components using archetypesHampusM
2024-06-07refactor(ecs): make tuple reduce operation more genericHampusM
2024-06-06refactor(ecs): rename tuple filter to tuple reduceHampusM
2024-06-06refactor(ecs): move ComponentStorage to it's own moduleHampusM
2024-06-06chore(ecs-macros): remove component macro drop_last attributeHampusM
2024-06-06chore(ecs): remove support for specifying component to be dropped lastHampusM
2024-06-05docs: update todo listHampusM
2024-06-02feat(engine): add cube mesh creationHampusM
2024-05-25fix: enable multisampling with 8 samplesHampusM
2024-05-25docs(glfw): add documentation comments to Hint variantsHampusM
2024-05-24fix(engine): enable OpenGL debug context when debug feature is enabledHampusM
2024-05-24fix(engine): use window creation hint value enumHampusM
2024-05-24refactor(glfw): add window creation hint enumHampusM
2024-05-24fix(engine): enable OpenGL multisampling on renderer initHampusM
2024-05-24feat(glfw): add support for double buffer window creation hintHampusM
2024-05-24refactor(engine): remove useless match on window creation hintHampusM
2024-05-24refactor(glfw): make Hint non-exhaustiveHampusM
2024-05-24feat(glfw): add support for samples window hintHampusM
2024-05-24fix: make point light have correct positionHampusM
2024-05-24refactor(engine): make PointLight have a positionHampusM
2024-05-24feat(ecs): add component name to component locking panic messageHampusM
2024-05-24fix(ecs): prevent unnecessary locking in Sequence::from_componentsHampusM
2024-05-23feat(engine): add directional lightHampusM
2024-05-23refactor(engine): pass vertex data to fragment shader with structHampusM