Implement weight-based topological sort for timeline blocks

This commit is contained in:
Ian Gulliver
2026-02-23 14:59:45 -08:00
parent 8dcd695f84
commit 6c3eb67fb3
3 changed files with 79 additions and 9 deletions

View File

@@ -19,6 +19,8 @@ type Block struct {
Track string `json:"track,omitempty"`
Name string `json:"name"`
Loop bool `json:"loop,omitempty"`
weight uint64
}
type Trigger struct {