12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using UnityEngine;
- using ET;
- using LitJson;
- namespace GFGGame
- {
- public class GameGlobal
- {
- public static bool isVisitor = false;
- public static bool isFirstEntry = false;
- public static string cfgName;
- //防沉迷开关
- public static bool antiAddiction = true;
- public static long userId = 0;
- public static int userAge = 0;
- public static bool skipGuide;
- public static bool skipCheckOpen;//跳过功能开启检查
- public static bool isEnterGame = false;
- public static string loginApiUrl;
- //ET
- public static Scene zoneScene;
- public static Unit myUnit;
- public static NumericComponent myNumericComponent;
-
- //平台
- public static int platformId = 1;
- public static void Init()
- {
- cfgName = LauncherConfig.cfgName + "_in";
- }
- public static string version
- {
- get
- {
- return Application.version + "." + VEngine.Versions.ManifestsVersion;
- }
- }
- public static void InitData(string json)
- {
- var result = JsonMapper.ToObject<Result>(json);
- loginApiUrl = result.loginApiUrl;
- ConstValue.LoginAddress = loginApiUrl;
- }
- private struct Result
- {
- public string loginApiUrl;
- }
- }
- }
|