refactor: SimpleLite 迁移到 Simple3,插件窗体改用 FairyView ForceFloat

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
黄兆尉
2026-08-26 11:18:40 +08:00
co-authored by Cursor
parent ad83008d9c
commit 3b4f505ac5
62 changed files with 264 additions and 281 deletions
@@ -9,8 +9,8 @@ using System.Threading.Tasks;
using LessokajiWeaverUtilities.MagicAttributes;
using LessokajiWeaverUtilities.Utilities;
using Newtonsoft.Json;
using SimpleLite.RCS;
using SimpleLite.RCS.CarTypes;
using Simple3.RCS;
using Simple3.RCS.CarTypes;
using SimpleCore;
using SimpleCore.Library;
using SimpleCore.PropType;
@@ -580,7 +580,7 @@ namespace StandardScene.ExtendDevice.Door
// 这里固定从门控制器基类所在程序集查找
// 跨程序集发现:门控制器具体类型可能位于卫星插件 dllStandardScene.Devices.Door),
// 用内核同款全域类型发现替代仅扫基类所在程序集。
var allControllerTypes = SimpleLite.Utils.UiTypeDiscovery.AllTypes()
var allControllerTypes = Simple3.Utils.UiTypeDiscovery.AllTypes()
.Where(t => t.IsClass
&& !t.IsAbstract
&& t.Namespace == typeof(BasicDoorController).Namespace