赞 | 160 |
VIP | 0 |
好人卡 | 3 |
积分 | 161 |
经验 | 39823 |
最后登录 | 2025-1-12 |
在线时间 | 3998 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 16134
- 在线时间
- 3998 小时
- 注册时间
- 2015-9-14
- 帖子
- 1337
|
rpgmakermv論壇有方法解決置中問題:https://rpgmakermv.co/threads/scripting-centering-drawtextex.1306/
程式我不懂,希望幚到你,
轉載以下,
Code (Text):
Window_Pop.prototype.drawCustomContents = function() {
var popString = WPOP._popString;
var stringWidth = this.textWidth(popString) / 2;
var tx = LTN.Param.windowWidth / 2 - stringWidth;
this.drawTextEx(popString, tx, 0);
}; |
|