Flecs
v4.1
A fast entity component system (ECS) for C & C++
Toggle main menu visibility
Loading...
Searching...
No Matches
entity_view.inl
Go to the documentation of this file.
1
5
15
const
char
*
doc_name
()
const
{
16
return
ecs_doc_get_name
(
world_
,
id_
);
17
}
18
28
const
char
*
doc_brief
()
const
{
29
return
ecs_doc_get_brief
(
world_
,
id_
);
30
}
31
41
const
char
*
doc_detail
()
const
{
42
return
ecs_doc_get_detail
(
world_
,
id_
);
43
}
44
54
const
char
*
doc_link
()
const
{
55
return
ecs_doc_get_link
(
world_
,
id_
);
56
}
57
67
const
char
*
doc_color
()
const
{
68
return
ecs_doc_get_color
(
world_
,
id_
);
69
}
70
80
const
char
*
doc_uuid
()
const
{
81
return
ecs_doc_get_uuid
(
world_
,
id_
);
82
}
ecs_doc_get_name
FLECS_API const char * ecs_doc_get_name(const ecs_world_t *world, ecs_entity_t entity)
Get human-readable name from entity.
ecs_doc_get_color
FLECS_API const char * ecs_doc_get_color(const ecs_world_t *world, ecs_entity_t entity)
Get color from entity.
ecs_doc_get_uuid
FLECS_API const char * ecs_doc_get_uuid(const ecs_world_t *world, ecs_entity_t entity)
Get UUID from entity.
ecs_doc_get_link
FLECS_API const char * ecs_doc_get_link(const ecs_world_t *world, ecs_entity_t entity)
Get link to external documentation from entity.
ecs_doc_get_detail
FLECS_API const char * ecs_doc_get_detail(const ecs_world_t *world, ecs_entity_t entity)
Get detailed description from entity.
ecs_doc_get_brief
FLECS_API const char * ecs_doc_get_brief(const ecs_world_t *world, ecs_entity_t entity)
Get brief description from entity.
flecs::entity_view::doc_name
const char * doc_name() const
Get human-readable name.
Definition
entity_view.inl:15
flecs::entity_view::doc_link
const char * doc_link() const
Get link to external documentation.
Definition
entity_view.inl:54
flecs::entity_view::doc_uuid
const char * doc_uuid() const
Get UUID.
Definition
entity_view.inl:80
flecs::entity_view::doc_detail
const char * doc_detail() const
Get detailed description.
Definition
entity_view.inl:41
flecs::entity_view::doc_brief
const char * doc_brief() const
Get brief description.
Definition
entity_view.inl:28
flecs::entity_view::doc_color
const char * doc_color() const
Get color.
Definition
entity_view.inl:67
flecs::id::id_
flecs::id_t id_
The raw ID value.
Definition
decl.hpp:149
flecs::id::world_
flecs::world_t * world_
World is optional, but guarantees that entity identifiers extracted from the ID are valid.
Definition
decl.hpp:147