소스 검색

Upgraded GameModule layout

James Peret 2 년 전
부모
커밋
7a0a250833
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      Runtime/AnalyticsModule.cs

+ 4 - 4
Runtime/AnalyticsModule.cs

@@ -14,10 +14,10 @@ namespace KairoEngine.Analytics
     {
         public override string name => "Analytics Module";
 
-        [FoldoutGroup("@name")] public string mixpanelAPIToken = "";
-        [FoldoutGroup("@name")] public bool trackEvents = true;
-        [FoldoutGroup("@name")] public bool debugEvents = true;
-        [FoldoutGroup("@name")] public bool clearEventsOnStart = false;
+        public string mixpanelAPIToken = "";
+        public bool trackEvents = true;
+        public bool debugEvents = true;
+        public bool clearEventsOnStart = false;
 
         public AnalyticsModule(GameConfig config) : base(config)
         {