赞 | 1 |
VIP | 116 |
好人卡 | 40 |
积分 | 4 |
经验 | 19804 |
最后登录 | 2017-12-13 |
在线时间 | 4175 小时 |
Lv2.观梦者
- 梦石
- 0
- 星屑
- 432
- 在线时间
- 4175 小时
- 注册时间
- 2010-6-26
- 帖子
- 6474
|
本帖最后由 eve592370698 于 2012-3-7 11:09 编辑
请问您想在哪个位置加?有两种方法,简单的就是直接修改现有的内容,把对话框改大内容改多,另一个方法很麻烦,绝对是自己添加.对了,颠狂侠客的Dkrm的输入名称对话是支持拼音输入法的,您要的是那个吗?
‘‘──eve592370698于2012-3-4 22:10补充以下内容
首先找到癫狂侠客那个DKRM帖子,
http://rpg.blue/thread-221104-1-1.html
里面支持拼音输入(常用字还可以,繁体字,少用字不支持),找到
Window_NameInput类下面那个- #--------------------------------------------------------------------------
- # ● 刷新画面
- #--------------------------------------------------------------------------
- def refresh
- # 描绘键盘
- self.contents.font.color = Color.new(255,255,255,255)
- for i in 0 ...KEYBOARD.size
- c = KEYBOARD[i]
- if i >=0 and i< 9
- self.contents.draw_text(i * 60 + 10, 10, 40, 40, c)
- elsif i ==9 or i == 10
- self.contents.draw_text(i * 50 + 80, 10, 40, 40, c)
- elsif i >= 11 and i < 21
- self.contents.draw_text((i-11) * 60 + 10, 60, 40, 40, c)
- elsif i >= 21 and i < 30
- self.contents.draw_text((i-21) * 60 + 30, 110, 40, 40, c)
- elsif i >= 30 and i < 37
- self.contents.draw_text((i-30) * 60 + 50, 160, 40, 40, c)
- elsif i == 37
- self.contents.draw_text(450, 160, 140, 32, c)
- end
- end
- # 描绘说明
- self.contents.font.color = Color.new(255,150,150,255)
- self.contents.draw_text(0,220,608,32,"按动键盘\"F5\"键,可确定名称",1)
- end
复制代码 其中有这么个命令
self.contents.font.color = Color.new(红色深度,绿色深度,蓝色深度,透明度)
self.contents.draw_text(x坐标,y坐标,宽度,高度,"内容两边一定要加上半角双引号",对齐方式代号1是居中0是左对齐)
这个是一组,可以自己来设定添加到(注解描绘说明下面)
’’ |
|