opacity & additive & curvature works

This commit is contained in:
galister
2025-11-13 15:40:08 +09:00
parent d435fdb473
commit 595324814a
13 changed files with 397 additions and 56 deletions

View File

@@ -83,6 +83,10 @@ impl TaskContainer {
}
}
pub fn transfer_from(&mut self, other: &mut TaskContainer) {
self.tasks.append(&mut other.tasks);
}
pub fn enqueue(&mut self, task: TaskType) {
self.tasks.push(AppTask {
not_before: Instant::now(),