/******************************************************************************* * * Nx框架相关定义 * * * * 2021.12.10 ******************************************************************************/ module.exports = { /*** * ********************************************************************* * 键值 * ********************************************************************* */ LK_Language: "TKLanguage", // 当前语种 /*** * ********************************************************************* * 视图 * ********************************************************************* */ // 全局视图原型 ViewFrame: { Name : "Frame", Single : true, VBD : true, Model : [ // 系统数据 { key : "ApkName", value : "", desc : "Apk包名" }, { key : "Platform", value : "", desc : "当前平台" }, { key : "DeviceID", value : "", desc : "设备ID" }, { key : "IDFA", value : "", desc : "IDFA" }, { key : "GUUID", value : "", desc : "唯一ID" }, { key : "NetType", value : "", desc : "网络类型" }, { key : "Simulator", value : false, desc : "模拟器环境" }, { key : "Host", value : "", desc : "本机IP地址" }, { key : "IsLandscape", value : true, desc : "横屏模式" }, { key : "DesignSize", value : [1280,720], desc : "设计尺寸" }, { key : "HeightRate", value : 1, desc : "高度适配比" }, { key : "DesignWHRate", value : 1, desc : "设计宽高比" }, { key : "RuntimeWHRate", value : 1, desc : "运行宽高比" }, { key : "MaxWHRate", value : 1, desc : "最大宽高比支持(缩放填充用)" }, // 基础环境 { key : "LocalLanguage", value : "", desc : "当前语种" }, { key : "LocalFont", value : "", desc : "当前字体" }, { key : "LocalVoice", value : "", desc : "当前发音" }, { key : "BgmVolume", value : 1, desc : "音乐音量" }, { key : "SfxVolume", value : 1, desc : "音效音量" }, { key : "VocVolume", value : 1, desc : "语音音量" }, { key : "hMode", value : false, desc : "H模式开启" }, // 版本信息 { key : "ApkVersion", value : "1.0.1", desc : "Apk版本" }, { key : "HotVersion", value : "1.0.1", desc : "热更版本" }, // 辅助参数 { key : "DebugOpen", value : false, desc : "调试开关" }, { key : "LogLevel", value : 0, desc : "日志输出等级" }, ] }, };