ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
## 样式库 - 默认 ``` { 'default': { /*...*/ '__DEFAULT__': { 'face': '{color: "#00BFFF", transparent:0, opacity:0.3, depthTest: 0, }', 'texture': null, 'line': '{color: "#00BFFF", }', }, 'CommonStyle_01': { 'face': '{color: "#4D7AFF", transparent:0, opacity:0.2, depthTest: 0, }', 'texture': '{ path: "./images/texture.png", opacity:1, repeat_x: 40, repeat_y: 10, }', 'line': '{color: "#4D7AFF", }', }, /*...*/ }, } ``` * | 参数 | 说明 | 格式 | 备注 | | --- | --- | --- | --- | --- | | default[key] | 样式集合,key为样式ID<br />必须保留一个__DEFAULT__ | Object | | | default[key].face | 表面样式 | String 或 null | | | default[key].texture | 表面贴图 | String 或 null | | | default[key].line| 边框样式 | String 或 null | |