ecs_doc_set_name

Function ecs_doc_set_name 

Source
pub unsafe extern "C" fn ecs_doc_set_name(
    world: *mut ecs_world_t,
    entity: ecs_entity_t,
    name: *const c_char,
)
Expand description

Add human-readable name to entity. Contrary to entity names, human readable names do not have to be unique and can contain special characters used in the query language like ‘*’.

@param world The world. @param entity The entity to which to add the name. @param name The name to add.