From b3f3f268bf27686916f963b219ffda4e8392b914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=80=9D=E6=B5=B7?= <1464576565@qq.com> Date: Wed, 4 Mar 2026 16:50:30 +0800 Subject: [PATCH] fix --- .../UXComponent/Controller/ControllerStateBase.cs | 14 -------------- Runtime/_InternalVisibleTo.cs | 1 - 2 files changed, 15 deletions(-) diff --git a/Runtime/UXComponent/Controller/ControllerStateBase.cs b/Runtime/UXComponent/Controller/ControllerStateBase.cs index 40d5b7e..7715422 100644 --- a/Runtime/UXComponent/Controller/ControllerStateBase.cs +++ b/Runtime/UXComponent/Controller/ControllerStateBase.cs @@ -62,18 +62,4 @@ namespace AlicizaX.UI Repeat = repeat; } } - - /// - /// Attribute to mark a state as requiring a specific component - /// - [AttributeUsage(AttributeTargets.Class)] - public class RequireComponentAttribute : Attribute - { - public Type RequiredType { get; } - - public RequireComponentAttribute(Type requiredType) - { - RequiredType = requiredType; - } - } } diff --git a/Runtime/_InternalVisibleTo.cs b/Runtime/_InternalVisibleTo.cs index 96fc8da..650f047 100644 --- a/Runtime/_InternalVisibleTo.cs +++ b/Runtime/_InternalVisibleTo.cs @@ -1,3 +1,2 @@ using System.Runtime.CompilerServices; [assembly: InternalsVisibleTo("AlicizaX.UI.Extension.Editor")] -5