Parcourir la source

Upgraded GameModule layout

James Peret il y a 2 ans
Parent
commit
7a0a250833
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  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)
         {