From d01cd5e7c25c239cfe517eec1c5de1a30c5afd4e Mon Sep 17 00:00:00 2001 From: "Tomoya Matsuura(MacBookPro)" Date: Sun, 20 Aug 2023 11:38:31 +0900 Subject: [PATCH] [obsidian] vault backup: 2023-08-20 11:38:31[ --- content/otopoiesis.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/otopoiesis.md b/content/otopoiesis.md index 51f2df1d..e1883b76 100644 --- a/content/otopoiesis.md +++ b/content/otopoiesis.md @@ -43,12 +43,16 @@ struct UI<'a>{ state: &'a mut State } impl<'a> egui::Widget for UI<'a>{ - fn ui + fn ui(self, ui: &mut egui::Ui) -> egui::Response { + ///... + } } ``` eguiはimmiditate モードだから毎フレームこのUI型を生成している(egui標準のSliderとかもこの方式) +オーディオプロセッサーもこのやり方にできるか? + ## 開発メモ