赞 | 0 |
VIP | 1 |
好人卡 | 0 |
积分 | 1 |
经验 | 1773 |
最后登录 | 2014-4-18 |
在线时间 | 8 小时 |
Lv1.梦旅人 ℃ake
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 8 小时
- 注册时间
- 2009-6-6
- 帖子
- 787
|
修改下坐标吧。
- class Window_Base < Window
- def draw_hp_store_bar2(actor,x,y+20)#这个数字可以调整
- width = 100
- w = actor.hp_store
- #描绘白色框条
- self.contents.fill_rect(x+39,y,width+1,1,Color.new(225,225,225,200))
- self.contents.fill_rect(x+39,y+5,width+2,1,Color.new(225,225,225,200))
- self.contents.fill_rect(x+39,y,1,5,Color.new(225,225,225,200))
- self.contents.fill_rect(x+140,y,1,5,Color.new(225,225,225,200))
- #描绘黑色条
- self.contents.fill_rect(x+40,y+1,width,4,Color.new(0,0,0,200))
- #描绘怒气槽
- self.contents.fill_rect(x+40, y+1, w,1, Color.new(255, 96, 96, 255))
- self.contents.fill_rect(x+40, y+2, w,1, Color.new(255, 0, 0, 255))
- self.contents.fill_rect(x+40, y+3, w,1, Color.new(128, 0, 0, 255))
- self.contents.fill_rect(x+40, y+4, w,1, Color.new(0, 0, 0, 255))
-
- end
- end
复制代码 会一点脚本在原有基础上改,不会的话就把上面的插入在MAIN前 |
|