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

Macros

#define ecs_lookup_path(world, parent, path)    ecs_lookup_path_w_sep(world, parent, path, ".", NULL, true)
 
#define ecs_lookup_fullpath(world, path)    ecs_lookup(world, path)
 
#define ecs_get_path(world, parent, child)    ecs_get_path_w_sep(world, parent, child, ".", NULL)
 
#define ecs_get_fullpath(world, child)    ecs_get_path_w_sep(world, 0, child, ".", NULL)
 
#define ecs_get_fullpath_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_new_from_fullpath(world, path)    ecs_new_from_path_w_sep(world, 0, 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 596 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 593 of file flecs_c.h.

◆ ecs_get_fullpath

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

Definition at line 581 of file flecs_c.h.

◆ ecs_get_fullpath_buf

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

Definition at line 584 of file flecs_c.h.

◆ ecs_get_path

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

Definition at line 578 of file flecs_c.h.

◆ ecs_lookup_fullpath

#define ecs_lookup_fullpath ( world,
path )    ecs_lookup(world, path)

Definition at line 575 of file flecs_c.h.

◆ ecs_lookup_path

#define ecs_lookup_path ( 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_fullpath

#define ecs_new_from_fullpath ( world,
path )    ecs_new_from_path_w_sep(world, 0, path, ".", NULL)

Definition at line 590 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 587 of file flecs_c.h.