| 1234567891011121314151617181920212223 |
- /*
- * @Author: dgflash
- * @Date: 2021-07-03 16:13:17
- * @LastEditors: dgflash
- * @LastEditTime: 2022-08-02 14:25:27
- */
- import * as buildTimeConstants from 'cc/env';
- const keys = (Object.keys(buildTimeConstants) as (keyof typeof buildTimeConstants)[]).sort();
- /* 游戏运行环境 */
- export class BuildTimeConstants {
- constructor() {
- const keyNameMaxLen = keys.reduce((len, key) => Math.max(len, key.length), 0);
- var enviroment = `${keys.map((key) => {
- const value = buildTimeConstants[key];
- const valueRep = typeof value === 'boolean' ? (value ? 'true' : 'false') : value;
- return `\n${key.padStart(keyNameMaxLen, ' ')} : ${valueRep}`;
- })}`;
- console.log(enviroment);
- }
- }
|