|
@@ -285,6 +285,7 @@ public class Reporter : MonoBehaviour
|
|
|
public Vector2 size = new Vector2(32, 32);
|
|
|
public float maxSize = 20;
|
|
|
public int numOfCircleToShow = 1;
|
|
|
+ public bool isOpen;
|
|
|
static string[] scenes;
|
|
|
string currentScene;
|
|
|
string filterText = "";
|
|
@@ -1850,7 +1851,7 @@ public class Reporter : MonoBehaviour
|
|
|
#endif
|
|
|
|
|
|
calculateStartIndex();
|
|
|
- if (!show && isGestureDone() && GFGGame.LauncherConfig.onDebug > 0) {
|
|
|
+ if (!show && isGestureDone() && isOpen) {
|
|
|
doShow();
|
|
|
}
|
|
|
|