From 5d361dd188be9842bd25bbddf546f9edc6781e9a Mon Sep 17 00:00:00 2001 From: ALEXTANG <574809918@qq.com> Date: Sat, 20 May 2023 11:25:09 +0800 Subject: [PATCH] Update BehaviourSingleton.cs --- .../HotFix/GameBase/BehaviourSingleton.cs | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/Assets/GameScripts/HotFix/GameBase/BehaviourSingleton.cs b/Assets/GameScripts/HotFix/GameBase/BehaviourSingleton.cs index 81d3e59b..1f40a15c 100644 --- a/Assets/GameScripts/HotFix/GameBase/BehaviourSingleton.cs +++ b/Assets/GameScripts/HotFix/GameBase/BehaviourSingleton.cs @@ -3,25 +3,6 @@ using System.Collections.Generic; namespace TEngine { - /// - /// 帧更新标签。 - /// - [AttributeUsage(AttributeTargets.Class)] - public class UpdateAttribute : Attribute { } - - /// - /// 后帧更新标签。 - /// - [AttributeUsage(AttributeTargets.Class)] - public class LateUpdateAttribute : Attribute{ } - - /// - /// 物理帧更新标签。 - /// - [AttributeUsage(AttributeTargets.Class)] - public class FixedUpdateAttribute : Attribute{ } - - /// /// 通过LogicSys来驱动且具备Unity完整生命周期的单例(不继承MonoBehaviour)。 ///