feat: add variadic render graph logic nodes

Amp-Thread-ID: https://ampcode.com/threads/T-019f9d91-77c1-7206-a60f-ed6554ce92ab

Co-authored-by: Heaust Azure <heaust.azure@gmail.com>
This commit is contained in:
Amp
2026-07-29 10:03:06 +00:00
co-authored by heaust
parent 0e866596c0
commit 90406ae18f
34 changed files with 1031 additions and 273 deletions
+31
View File
@@ -0,0 +1,31 @@
main {
width: 1200px;
}
#results {
display: flex;
min-height: 30px;
gap: 7px;
margin-bottom: 12px;
}
#results span {
padding: 5px 9px;
color: #d7d9de;
background: #292c32;
border: 1px solid #3a3e46;
border-radius: 999px;
font-size: 12px;
}
#results .true {
color: #dafbe1;
background: #183b25;
border-color: #2d6b40;
}
#results .false {
color: #ffd8dc;
background: #472126;
border-color: #76343c;
}
canvas {
width: 1200px;
height: 700px;
}