赞 | 8 |
VIP | 50 |
好人卡 | 9 |
积分 | 7 |
经验 | 25417 |
最后登录 | 2023-1-15 |
在线时间 | 224 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 676
- 在线时间
- 224 小时
- 注册时间
- 2006-12-7
- 帖子
- 839
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
打算用blt读取图片做图形菜单,试了下莫名其妙有些图片能显示有些却是空的- Window_Base.prototype.drawButton = function(faceName, x, y, width, height) {
- var bitmap = ImageManager.loadSystem(faceName);
- this.contents.blt(bitmap, 0, 0, width, height, x, y);
- };
- Window_ActorCommand.prototype.drawItem = function(index)
- {
- this.drawIcon(12, 10,10,100,32); // for testing purpose
- var bitmap = 'Balloon';
- this.drawButton(bitmap, 10, 10, 300, 300); // test loading image
- };
复制代码 扩大了战斗菜单选项框,然后测试drawIcon毫无问题
然后如法炮制了一个drawButton打算画图片,但是很莫名读了几个system文件夹的图 有的可以读有的不显示,没有报错的
是有啥限制还是图片必须特定规格的?同样的函数啊换了图片就不行了。。。 |
|