- 鐵幣
- 2069 元
- 文章
- 576 篇
- 聲望
- 125 枚
- 上次登入
- 10-3-7
- 精華
- 0
- 註冊時間
- 03-10-19
- UID
- 17119
|
我用RGSS設定成功了一部分
不過還是有問題...
就是匯出的槽不能符合大小
#-------------------------------------------------------------------------
#★描繪AP槽
#--------------------------------------------------------------------------
def draw_hp_store_bar2(actor,x,y)
width = 100
w = actor.hp_store
這樣寫OK~不過超過100(一=一像素)就會爆表
不想爆就把他改成下面:
w = width * actor.hp_store / [actor.maxhp_store,1].max
這個地方會出錯...不過用在設定SP跟HP就不會有問題
#描绘白色框条
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))
#描绘AP槽
self.contents.fill_rect(x+40, y+1, w,1, Color.new(96, 255, 96, 255))
self.contents.fill_rect(x+40, y+2, w,1, Color.new(96, 255, 0, 255))
self.contents.fill_rect(x+40, y+3, w,1, Color.new(0, 128, 0, 255))
self.contents.fill_rect(x+40, y+4, w,1, Color.new(0, 0, 0, 255))
end |
|