Cargo Features
[dependencies]
planck_ecs = { version = "1.2.1", default-features = false, features = ["parallel", "big_systems", "profiler", "keysize16", "keysize20", "keysize24", "keysize32", "ser"] }
- default = keysize16
-
The
keysize16
feature is set by default wheneverplanck_ecs
is added without
somewhere in the dependency tree.default-features = false - parallel
-
Enables parallel of world_dispatcher
- big_systems
-
Enables big_systems of world_dispatcher
- profiler
-
Enables profiler of world_dispatcher
- keysize16 default
-
Enables keysize16 of entity_component
entity_component:
Allows for 2^16 entities
- keysize20
-
Enables keysize20 of entity_component
entity_component:
Allows for 2^20 entities
- keysize24
-
Enables keysize24 of entity_component
entity_component:
Allows for 2^24 entities
- keysize32
-
Enables keysize32 of entity_component
entity_component:
Allows for 2^32 entities
- ser
-
Enables ser of entity_component
planck_ecs has 9 features without comments.