hexiaojie 5 дней назад
Родитель
Сommit
1fb44e23b7

+ 9 - 8
Packages/cn.etetet.yiuireddot/Scripts/Model/Share/ERedDotKeyType.cs

@@ -1,3 +1,4 @@
+using Sirenix.OdinInspector;
 
 namespace ET
 {
@@ -8,28 +9,28 @@ namespace ET
     [UniqueId]
     public static class ERedDotKeyType
     {
-        //[LabelText("无")]
+        [LabelText("无")]
         public const int None = 0;
 
-        //[LabelText("主")]
+        [LabelText("主")]
         public const int Key1 = 1;
 
-       // [LabelText("商店")]
+        [LabelText("商店")]
         public const int Key2 = 2;
 
-       // [LabelText("钻石")]
+        [LabelText("钻石")]
         public const int Key3 = 3;
 
-       // [LabelText("金币")]
+        [LabelText("金币")]
         public const int Key4 = 4;
 
-       // [LabelText("装备")]
+        [LabelText("装备")]
         public const int Key5 = 5;
 
-        //[LabelText("强化")]
+        [LabelText("强化")]
         public const int Key6 = 6;
 
-      //  [LabelText("升级")]
+        [LabelText("升级")]
         public const int Key7 = 7;
     }
 }