diff --git a/content/.obsidian/plugins/obsidian-git/data.json b/content/.obsidian/plugins/obsidian-git/data.json index 3596c932..22faf8e7 100644 --- a/content/.obsidian/plugins/obsidian-git/data.json +++ b/content/.obsidian/plugins/obsidian-git/data.json @@ -1,7 +1,7 @@ { "commitMessage": "[obsidian] vault backup: {{date}}", "commitDateFormat": "YYYY-MM-DD HH:mm:ss", - "autoSaveInterval": 10, + "autoSaveInterval": 60, "autoPushInterval": 0, "autoPullInterval": 0, "autoPullOnBoot": true, 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とかもこの方式) +オーディオプロセッサーもこのやり方にできるか? + ## 開発メモ