working on toc

This commit is contained in:
David Allemang
2026-06-17 11:06:41 -04:00
parent 3f637373f5
commit c063b72c41
7 changed files with 159 additions and 65 deletions

View File

@@ -9,4 +9,5 @@
= Interleaved vs Sequential Channels
= Chained vs Shared Reference
= Broadcast and Multicast
= Entity Batching

View File

@@ -5,6 +5,18 @@
title: [Core Mechanics],
)
#tip[
Until version 26.2, this only works on multiplayer servers. See @singleplayer.
]
#note[
Until version 26.2, this only works on multiplayer servers. See @singleplayer.
]
#warn[
Until version 26.2, this only works on multiplayer servers. See @singleplayer.
]
= Entity IDs
= Stationary Item Optimization
= Observable Drop Delay

15
content/toc.typ Normal file
View File

@@ -0,0 +1,15 @@
#import "/docs.typ": docs-page, note, tip, warn
#show: docs-page.with(
route: "/toc/",
title: [Contents],
)
#context for doc in query(document) {
let target = selector(heading).within(doc.location())
show outline.entry: it => {
}
outline(depth: 1, target: target, title: link(doc.location(), doc.title))
}