update content

This commit is contained in:
2026-07-12 19:46:46 -04:00
parent d901fc45d8
commit 6d339e1396
3 changed files with 26 additions and 22 deletions

View File

@@ -50,13 +50,13 @@ p 0 0 0
#todo[fix tileset naming. the tileset is the *structure*. the particular sequence is just one instance of that tileset]
A *tile sequence* is a chain of redstone components which all update in the tile tick phase.
A *tile sequence* is a chain of redstone components that all update in the tile tick phase.
The fundamental principle here is to use tile-tick priority (TTP) to set a global order.
#link("https://youtu.be/sLftwVwqPQE")[See Charlie's great video on TTP for details].
A *tile set* is a system of constructing tile sequences which enforce a particular global ordering.
A *tile set* is a system of constructing tile sequences that enforces a particular global ordering.
Components which activate later in the sequence have a stronger effect on the order, so to match our
Components that activate later in the sequence have a stronger effect on the order, so to match our
left-to-right reading convention, we diagram tile sequences so the signal flows right-to-left.
=== The Tile Tick Priority Queue