723| 3
|
[有事请教] 脚本显示文章, 怎么设置文字颜色 |
100星屑
最佳答案// 转义序列增强,支持\C[_RRGGBB]变色
Window_Base.prototype.obtainEscapeParam = function (textState) {
const regExp = /^\[-?\w+\]/; // 转义序列的方括号内支持负整数、字母、下划线
const arr = regExp.exec(textState.text.slice(textState.index));
if (arr) {
textState.index += arr[0].length;
if (arr[0].startsWith('[_')) return arr[0].substring(2, arr[0].length - 1); // 下划线 ...
| ||
| ||
| ||
| ||
站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作
GMT+8, 2024-11-22 20:57
Powered by Discuz! X3.1
© 2001-2013 Comsenz Inc.