Flecs v4.0
A fast entity component system (ECS) for C & C++
Loading...
Searching...
No Matches
Collaboration diagram for Entity Names:

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)
 

Detailed Description

Macro Definition Documentation

◆ ecs_add_fullpath

#define ecs_add_fullpath ( world,
entity,
path )    ecs_add_path_w_sep(world, entity, 0, path, ".", NULL)

Definition at line 589 of file flecs_c.h.

◆ ecs_add_path

#define ecs_add_path ( world,
entity,
parent,
path )    ecs_add_path_w_sep(world, entity, parent, path, ".", NULL)

Definition at line 586 of file flecs_c.h.

◆ ecs_get_path

#define ecs_get_path ( world,
child )    ecs_get_path_w_sep(world, 0, child, ".", NULL)

Definition at line 577 of file flecs_c.h.

◆ ecs_get_path_buf

#define ecs_get_path_buf ( world,
child,
buf )    ecs_get_path_w_sep_buf(world, 0, child, ".", NULL, buf)

Definition at line 580 of file flecs_c.h.

◆ ecs_get_path_from

#define ecs_get_path_from ( world,
parent,
child )    ecs_get_path_w_sep(world, parent, child, ".", NULL)

Definition at line 574 of file flecs_c.h.

◆ ecs_lookup_from

#define ecs_lookup_from ( world,
parent,
path )    ecs_lookup_path_w_sep(world, parent, path, ".", NULL, true)

Definition at line 571 of file flecs_c.h.

◆ ecs_new_from_path

#define ecs_new_from_path ( world,
parent,
path )    ecs_new_from_path_w_sep(world, parent, path, ".", NULL)

Definition at line 583 of file flecs_c.h.