The Genealogy module provides a visual canvas for mapping the family connections between characters in your world. Rather than tracking lineages through text notes or relationship lists, you can drag entities onto a shared canvas, let Chronos Atlas resolve their existing relationships into edges, and build a clear picture of bloodlines, dynasties, and kinship networks across your project.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Fixius50/WorlBuilding-Writting-App/llms.txt
Use this file to discover all available pages before exploring further.
Building a Family Tree
TheGenealogyView component renders a full-screen interactive canvas powered by the UniversalCanvas component. Family trees are built through direct drag-and-drop — no separate tree editor is needed.
Open the Genealogy module
Navigate to the Genealogy section from the left sidebar. The canvas loads empty, ready for you to populate it.
Browse entities in the sidebar panel
The left panel lists all entities in the current project, sourced from
entityService.getAllByProject(projectId). These are the draggable building blocks of your tree.Drag an entity onto the canvas
Drag any entity from the list and drop it onto the canvas at your chosen position. Chronos Atlas automatically resolves all direct relationships for that entity and places connected entities nearby in a spiral layout around the drop point.
Continue expanding
Drag additional entities to bring in more branches. Edges between any two entities that share a
Relacion record are drawn automatically whenever both endpoints are present on the canvas.Reposition nodes
Drag any node on the canvas to reposition it. The new coordinates are saved immediately via
onNodeDragEnd, keeping your layout persistent within the session.handleDropNode function:
- Adds the main entity as a canvas node at the drop
(x, y)position. - Queries
allRelationshipsfor everyRelacionwhereorigen_idordestino_idmatches the entity. - Collects the IDs of all neighbor entities and places them in a tight spiral (
radius = 200 + floor(index / 3) * 200) around the drop point. - Recomputes all edges between every node currently on the canvas.
Relationships on the Canvas
The Genealogy canvas visualizes relationships that already exist in the database. All relationships are stored asRelacion records — the same records used by the Relationship Graph module. The tipo field is a free-form string label you define, so you can use any naming convention that fits your world (parent, child, sibling, spouse, or any other kinship term).
Relacion records, which means they are also visible in the Relationship Graph module and in each entity’s relationship list in the World Bible.
Tree Navigation
Once entities are placed on the canvas, you can explore the family tree fluidly:- Pan — click and drag on empty canvas space to scroll through large trees.
- Zoom — scroll up/down to zoom in on a particular branch or zoom out for a full-dynasty view.
- Inspect a node — click any node to open the entity’s inline inspection panel, which shows its name, type, and a summary of its relationships.
- Navigate to full profile — from the node inspection panel, follow the link to the entity’s complete World Bible entry where all attributes, custom fields, and notes are visible.
Advanced genealogy features — including complex lineages (e.g., half-siblings, adoptions), noble house systems, and multi-generational inheritance tracking — are planned for a future release.