Scoreboards Overview
Scoreboards Overview
Section titled “Scoreboards Overview”DaisyCore scoreboards are sidebar-first. The current baseline focuses on clean API shape, keyed lines, and refresh-safe sessions.
val sidebar = sidebar { title(DaisyText.plain("Skyblock")) line("balance") { DaisyText.plain("Coins: 1,250") } blank() line("online") { DaisyText.plain("Online: 42") } }What you get
Section titled “What you get”- per-player sidebar sessions
- keyed lines
- conditional visibility
- placeholder-aware render context
- clean shutdown when the platform closes
Current behavior
Section titled “Current behavior”The current sidebar implementation is intentionally focused. It supports title rendering, keyed lines, blank lines, invalidate-by-key updates, and clean session ownership. It does not try to expose packet-level tricks as part of the public API.
Learn next
Section titled “Learn next”- Tutorial: First Scoreboard
- API reference: Sidebar DSL