123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System.Collections;
- using System.Collections.Generic;
- using System.IO;
- using UnityEngine;
- public static class GlobalConfig
- {
- /// <summary>
- /// 点击选择的设备
- /// </summary>
- public static string m_SelectDevice;
- /// <summary>
- /// 视频根路径
- /// </summary>
- public static string videoPath = Path.Combine(Application.streamingAssetsPath,"Config","Videos");
- /// <summary>
- /// 音频根路径
- /// </summary>
- public static string audioPath = Path.Combine(Application.streamingAssetsPath, "Config", "Audios");
- /// <summary>
- /// 图片根路径
- /// </summary>
- public static string picturePath = Path.Combine(Application.streamingAssetsPath, "Config", "Pictures");
- /// <summary>
- /// 流程配置表根路径
- /// </summary>
- public static string operateTablePath = Path.Combine(Application.streamingAssetsPath, "Config", "流程配置");
- /// <summary>
- /// 工具配置表根路径
- /// </summary>
- public static string toolConfigTablePath = Path.Combine(Application.streamingAssetsPath, "Config", "工具配置");
- /// <summary>
- /// 缺陷配置表根目录
- /// </summary>
- public static string faultTablePath = Path.Combine(Application.streamingAssetsPath, "Config", "缺陷配置");
- /// <summary>
- /// 内部结构设备配置表根目录
- /// </summary>
- public static string partTablePath = Path.Combine(Application.streamingAssetsPath, "Config", "内部结构设备配置");
- /// <summary>
- /// 表格后缀
- /// </summary>
- public static string excelSuffix = ".xlsx";
- }
|