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
keysize16feature is set by default wheneverplanck_ecsis added withoutsomewhere in the dependency tree.default-features = false - parallel
-
Enables parallel of world_dispatcher ^1.2.0
world_dispatcher:
Enables the parallel dispatcher.
- big_systems
-
Enables big_systems of world_dispatcher ^1.2.0
world_dispatcher:
Enables conversion of bigger systems. Without
big_systems, we can have up to 12 resources in a system. Withbig_systems, we can have up to 22 resources in a system. - profiler
-
Enables profiler of world_dispatcher ^1.2.0
- 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.