![]() |
Flecs v4.0
A fast entity component system (ECS) for C & C++
|
Macros | |
| #define | ecs_lookup_from(world, parent, path) ecs_lookup_path_w_sep(world, parent, path, ".", NULL, true) |
| #define | ecs_get_path_from(world, parent, child) ecs_get_path_w_sep(world, parent, child, ".", NULL) |
| #define | ecs_get_path(world, child) ecs_get_path_w_sep(world, 0, child, ".", NULL) |
| #define | ecs_get_path_buf(world, child, buf) ecs_get_path_w_sep_buf(world, 0, child, ".", NULL, buf) |
| #define | ecs_new_from_path(world, parent, path) ecs_new_from_path_w_sep(world, parent, path, ".", NULL) |
| #define | ecs_add_path(world, entity, parent, path) ecs_add_path_w_sep(world, entity, parent, path, ".", NULL) |
| #define | ecs_add_fullpath(world, entity, path) ecs_add_path_w_sep(world, entity, 0, path, ".", NULL) |
| #define ecs_add_fullpath | ( | world, | |
| entity, | |||
| path ) ecs_add_path_w_sep(world, entity, 0, path, ".", NULL) |
| #define ecs_add_path | ( | world, | |
| entity, | |||
| parent, | |||
| path ) ecs_add_path_w_sep(world, entity, parent, path, ".", NULL) |
| #define ecs_get_path | ( | world, | |
| child ) ecs_get_path_w_sep(world, 0, child, ".", NULL) |
| #define ecs_get_path_buf | ( | world, | |
| child, | |||
| buf ) ecs_get_path_w_sep_buf(world, 0, child, ".", NULL, buf) |
| #define ecs_get_path_from | ( | world, | |
| parent, | |||
| child ) ecs_get_path_w_sep(world, parent, child, ".", NULL) |
| #define ecs_lookup_from | ( | world, | |
| parent, | |||
| path ) ecs_lookup_path_w_sep(world, parent, path, ".", NULL, true) |
| #define ecs_new_from_path | ( | world, | |
| parent, | |||
| path ) ecs_new_from_path_w_sep(world, parent, path, ".", NULL) |