Project1
标题:
如何在制作时间条的同时插入怒气槽?
[打印本页]
作者:
-_-川
时间:
2009-8-29 22:25
标题:
如何在制作时间条的同时插入怒气槽?
本帖最后由 -_-川 于 2009-9-12 22:23 编辑
因为发现时间条的位置和怒气槽的都在一起啊……………………
作者:
奶油Da蛋糕
时间:
2009-8-30 09:24
修改下坐标吧。
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前
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1