Browse Source

Upgraded GameModule layout

James Peret 2 years ago
parent
commit
7a0a250833
1 changed files with 4 additions and 4 deletions
  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)
         {