赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 0 |
经验 | 1590 |
最后登录 | 2012-5-7 |
在线时间 | 17 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 45
- 在线时间
- 17 小时
- 注册时间
- 2009-7-29
- 帖子
- 141
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
#==============================================================================
# ■ Window_Steps
#------------------------------------------------------------------------------
# 菜单画面显示步数的窗口。
#==============================================================================
class Window_Steps < Window_Base
#--------------------------------------------------------------------------
# ● 初始化对像
#--------------------------------------------------------------------------
def initialize
super(0, 0, 160, 96)
self.contents = Bitmap.new(width - 32, height - 32)
refresh
end
#--------------------------------------------------------------------------
# ● 刷新
#--------------------------------------------------------------------------
def refresh
self.contents.clear
self.contents.font.color = system_color
self.contents.draw_text(4, 30, 120, 32, "声望") #描绘声望字样
self.contents.draw_text(4, 0, 120, 32, "善恶")
self.contents.font.color = normal_color
self.contents.draw_text(4,2,120,32, $game_variables[3].to_s,2)#描绘3号
self.contents.draw_text(4,30,120,32, $game_variables[2].to_s,2) #描绘2号变量,可以自己改~~
end
end
这段声望是XP的,在VX里没有反应,,改哪里啊? |
|