|
| #define | ecs_lookup_from(world, parent, path) ecs_lookup_path_w_sep(world, parent, path, ".", NULL, true) |
| | Lookup an entity from a parent.
|
| |
| #define | ecs_get_path_from(world, parent, child) ecs_get_path_w_sep(world, parent, child, ".", NULL) |
| | Get path from a parent.
|
| |
| #define | ecs_get_path(world, child) ecs_get_path_w_sep(world, 0, child, ".", NULL) |
| | Get path from root.
|
| |
| #define | ecs_get_path_buf(world, child, buf) ecs_get_path_w_sep_buf(world, 0, child, ".", NULL, buf, false) |
| | Get path from root, write to buffer.
|
| |
| #define | ecs_new_from_path(world, parent, path) ecs_new_from_path_w_sep(world, parent, path, ".", NULL) |
| | Create a new entity from a path.
|
| |
| #define | ecs_add_path(world, entity, parent, path) ecs_add_path_w_sep(world, entity, parent, path, ".", NULL) |
| | Add a path to an entity.
|
| |
| #define | ecs_add_fullpath(world, entity, path) ecs_add_path_w_sep(world, entity, 0, path, ".", NULL) |
| | Add a full path to an entity.
|
| |