From d8f8ebd336dc86b0802c3a6e81d62ff2b923fc5b Mon Sep 17 00:00:00 2001 From: tian <11429339@qq.com> Date: Thu, 18 Jun 2026 19:50:39 +0800 Subject: [PATCH] =?UTF-8?q?ModelManager.Update=E2=86=92UpdateModel?= =?UTF-8?q?=EF=BC=88=E9=81=BF=E5=85=8D=E4=B8=8E=20MonoBehaviour.Update=20?= =?UTF-8?q?=E5=86=B2=E7=AA=81=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Unity/Assets/Scripts/Managers/ModelManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Unity/Assets/Scripts/Managers/ModelManager.cs b/src/Unity/Assets/Scripts/Managers/ModelManager.cs index 49fd7c4..471c56c 100644 --- a/src/Unity/Assets/Scripts/Managers/ModelManager.cs +++ b/src/Unity/Assets/Scripts/Managers/ModelManager.cs @@ -32,7 +32,7 @@ namespace CounterDrone.Unity public void Delete(string id) => _service.DeleteModel(id); public List GetAll() => _service.GetAllModels(); public ModelInfo Get(string id) => _service.GetModel(id); - public ModelInfo Update(ModelInfo model) => _service.UpdateModel(model); + public ModelInfo UpdateModel(ModelInfo model) => _service.UpdateModel(model); [ContextMenu("Verify")] void Verify()