Flecs v3.1
A fast entity component system (ECS) for C & C++
Loading...
Searching...
No Matches
entity_view.inl
Go to the documentation of this file.
1
6const char* doc_name() {
7 return ecs_doc_get_name(m_world, m_id);
8}
9
10const char* doc_brief() {
11 return ecs_doc_get_brief(m_world, m_id);
12}
13
14const char* doc_detail() {
15 return ecs_doc_get_detail(m_world, m_id);
16}
17
18const char* doc_link() {
19 return ecs_doc_get_link(m_world, m_id);
20}
21
22const char* doc_color() {
23 return ecs_doc_get_color(m_world, m_id);
24}
FLECS_API const char * ecs_doc_get_name(const ecs_world_t *world, ecs_entity_t entity)
Get human readable name from entity.
FLECS_API const char * ecs_doc_get_color(const ecs_world_t *world, ecs_entity_t entity)
Get color from entity.
FLECS_API const char * ecs_doc_get_link(const ecs_world_t *world, ecs_entity_t entity)
Get link to external documentation from entity.
FLECS_API const char * ecs_doc_get_detail(const ecs_world_t *world, ecs_entity_t entity)
Get detailed description from entity.
FLECS_API const char * ecs_doc_get_brief(const ecs_world_t *world, ecs_entity_t entity)
Get brief description from entity.