5个版本
0.1.0-alpha.5 | 2024年7月9日 |
---|---|
0.1.0-alpha.3 | 2023年12月18日 |
0.1.0-alpha.2 | 2023年12月5日 |
0.1.0-alpha.1 | 2023年11月30日 |
#462 在 游戏开发
174 每月下载量
在 5 个工具包中使用(通过 magma_app)
27KB
601 行
Magma-ECS
Magma-ECS是Magma3D引擎的实体-组件-系统。
功能
- 简单轻量
- 系统更新功能
允许轻松执行系统
- 并行
所有代码都会自动并行化
免责声明
此项目仍在开发中,尚未准备用于生产。
lib.rs
:
该工具包提供了Magma3D-Engine的实体-组件-系统。
该工具包提供了一个具有Resources
和Entities
的World
结构。实体只是组件存储中的索引。资源类似于全局组件,独立于Entities
。
创建和设置World
的示例
use magma_ecs::World;
let world = World::new();
// register a component type
world.register_component::<u32>();
// add a resource
world.add_resource(10_u32);
// create entity with registered component.
// It is recommended to free read/write locks as quickly as possible. Use scopes to do that.
{
let mut entities = world.entities_write();
entities.create_entity().with_component(20_u32).unwrap();
}
依赖关系
~1.5MB
~25K SLoC