2021-04-06 15:30:36 +08:00
|
|
|
|
using Assets.Scripts.Apis.Models;
|
2021-04-15 15:58:37 +08:00
|
|
|
|
using Assets.Scripts.UI.Prefab.Login;
|
2021-04-15 10:13:01 +08:00
|
|
|
|
using Assets.Scenes.Ride.Scripts.Model;
|
2021-04-02 19:17:23 +08:00
|
|
|
|
using System.Collections;
|
2021-03-25 16:53:39 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
|
|
public static class App
|
|
|
|
|
|
{
|
2021-04-15 15:58:37 +08:00
|
|
|
|
public static string Host = "http://192.168.0.101:5082/";
|
2021-03-25 16:53:39 +08:00
|
|
|
|
|
|
|
|
|
|
public static string AppVersion = "1.0.0";
|
|
|
|
|
|
|
2021-04-01 14:09:23 +08:00
|
|
|
|
public static int RouteIdParam = 0;
|
2021-04-02 19:17:23 +08:00
|
|
|
|
public static UserResultModel CurrentUser { get; set; }
|
2021-04-06 15:30:36 +08:00
|
|
|
|
public static string WxAppId = "wx9e8ca734e024f084";
|
|
|
|
|
|
public static string WxAppSecret = "906abafb2a18bc7a66ccfa5550f859b6";
|
2021-04-14 15:02:33 +08:00
|
|
|
|
|
|
|
|
|
|
public static string MapBoxAccessToken => "pk.eyJ1IjoiYW5keXNqdCIsImEiOiJja2ZhajE5OGwwamRiMnltcW96bHk0ZWFuIn0.GvKanc6UveWSvIjS9HfBPA";
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 场景跳转传值
|
|
|
|
|
|
/// Name,MapListPanel
|
|
|
|
|
|
/// xxx,bbb
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static System.Collections.Generic.Dictionary<string, string> MainSceneParam = new Dictionary<string, string>();
|
2021-04-12 17:35:56 +08:00
|
|
|
|
public static IDictionary<string,Texture> TextureCache = new Dictionary<string, Texture>();
|
2021-04-15 17:09:35 +08:00
|
|
|
|
public static Texture CurrentUserHeadTexture;
|
2021-04-15 10:13:01 +08:00
|
|
|
|
public static SelectParamModel selectParam;
|
2021-03-25 16:53:39 +08:00
|
|
|
|
}
|