赞 | 0 |
VIP | 56 |
好人卡 | 0 |
积分 | 1 |
经验 | 6637 |
最后登录 | 2015-4-23 |
在线时间 | 24 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 24 小时
- 注册时间
- 2007-2-9
- 帖子
- 397
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
都知道标准定义步骤是:
def initialize
super.....
end
def refresh
self.contest.clear
...
end
如何才能不显示系统对话框,直接显示“哈哈”呢?
原脚本:
class Window_Kaka < Window_Base
def initialize
super(0, 0, 160, 64)
refresh
end
def refresh
self.contents.clear
self.contents.font.color = system_color
self.contents.draw_text(4, 0, 120, 32, "哈哈",1)
end
end
问2:
state_text = make_battler_state_text(enemy, 112, false)
的具体含义 (重点:(enemy, 112, false))
问3:
rect = Rect.new(4, 32 * index, self.contents.width - 8, 32)
中的rect好像是什么矩形形成什么的,具体使用方法是什么?
问4:
module里面貌似是定义了一些RPG本身的东西,具体介绍一下 此贴于 2008-4-9 0:55:14 被版主水迭澜提醒,请楼主看到后对本贴做出回应。 |
|