Project1

标题: 怎么做图片血条和魔条(全局)? [打印本页]

作者: 冰舞蝶恋    时间: 2010-11-6 19:35
标题: 怎么做图片血条和魔条(全局)?
想知道能不能把角色状态(血、魔、名字)啥的去掉,直接放在角色行走图下面~~用的是约束横版。。
作者: Rion幻音    时间: 2010-11-7 10:10
这是图片显示血……(魔的话更改脚本中的hp为mp就可以了,坐标之类的自己写吧~不会的话直接放范例给你,要等一段时间~)


  1.   def draw_actor_hp(actor, x, y)
  2.     back = Cache.system("Meter_Back")   
  3.     cw = back.width  
  4.     ch = back.height
  5.     src_rect = Rect.new(0, 0, cw, ch)   
  6.     self.contents.blt(x + 65, y - ch + 30, back, src_rect)
  7.     meter = Cache.system("HP_Meter")   
  8.     cw = meter.width  * actor.hp / actor.maxhp
  9.     ch = meter.height
  10.     src_rect = Rect.new(0, 0, cw, ch)
  11.     self.contents.blt(x + 65, y - ch + 30, meter, src_rect)
  12.     text = Cache.system("HP_Text")   
  13.     cw = text.width  
  14.     ch = text.height
  15.     src_rect = Rect.new(0, 0, cw, ch)
  16.     self.contents.blt(x + 35, y - ch + 30, text, src_rect)
  17.     self.contents.font.color = Color.new(255,255,255,255)
  18.     self.contents.draw_text(x + 81, y - 1, 48, 32, actor.hp.to_s, 2)
  19.     self.contents.font.color = Color.new(255,255,255,255)
  20.     self.contents.draw_text(x + 80, y - 2, 48, 32, actor.hp.to_s, 2)   
  21.   end
复制代码

作者: 冰舞蝶恋    时间: 2010-11-7 10:14
本帖最后由 冰舞蝶恋 于 2010-11-7 10:20 编辑

回复 Rion幻音 的帖子

谢谢幻哥~~还是放个范例吧,毕竟咱比较懒0.0
作者: Rion幻音    时间: 2010-11-7 10:21
回复 冰舞蝶恋 的帖子

是哥……!
范例的话等我一会吧~
作者: 冰舞蝶恋    时间: 2010-11-7 10:26
回复 Rion幻音 的帖子

好的~~谢谢喽
作者: Rion幻音    时间: 2010-11-7 11:36
本帖最后由 Rion幻音 于 2010-11-7 11:41 编辑

回复 冰舞蝶恋 的帖子

LZ……我已经尽力了……无法完成啊~
魔力方面的话……

  def draw_actor_mp(actor, x, y)
    back = Cache.system("Meter_Back")   
    cw = back.width  
    ch = back.height
    src_rect = Rect.new(0, 0, cw, ch)   
    self.contents.blt(x + 65, y - ch + 30, back, src_rect)
    meter = Cache.system("MP_Meter")   
    cw = meter.width  * actor.mp / actor.maxmp
    ch = meter.height
    src_rect = Rect.new(0, 0, cw, ch)
    self.contents.blt(x + 65, y - ch + 30, meter, src_rect)
    text = Cache.system("MP_Text")   
    cw = text.width  
    ch = text.height
    src_rect = Rect.new(0, 0, cw, ch)
    self.contents.blt(x + 35, y - ch + 30, text, src_rect)
    self.contents.font.color = Color.new(255,255,255,255)
    self.contents.draw_text(x + 81, y - 1, 48, 32, actor.mp.to_s, 2)
    self.contents.font.color = Color.new(255,255,255,255)
    self.contents.draw_text(x + 80, y - 2, 48, 32, actor.mp.to_s, 2)   
  end
作者: 冰舞蝶恋    时间: 2010-11-7 12:42
回复 Rion幻音 的帖子

谢谢,测试中
作者: 冰舞蝶恋    时间: 2010-11-7 12:46
回复 Rion幻音 的帖子

战斗的话角色状态栏会出错呐~~
作者: 捣蛋    时间: 2010-11-7 13:51
楼主就不要数值的血条了?就直接用血条表示?
看不到血的数值?就只有一条血条在角色下面?
作者: 冰舞蝶恋    时间: 2010-11-7 14:23
回复 捣蛋 的帖子

要数值。。另外为何幻兄的一战斗就会出错
作者: Rion幻音    时间: 2010-11-7 18:56
  1. class Window_Base
  2.   def draw_actor_hp(actor, x, y)
  3.     back = Cache.system("Meter_Back")   
  4.     cw = back.width  
  5.     ch = back.height
  6.     src_rect = Rect.new(0, 0, cw, ch)   
  7.     self.contents.blt(x + 65, y - ch + 30, back, src_rect)
  8.     meter = Cache.system("HP_Meter")   
  9.     cw = meter.width  * actor.hp / actor.maxhp
  10.     ch = meter.height
  11.     src_rect = Rect.new(0, 0, cw, ch)
  12.     self.contents.blt(x + 65, y - ch + 30, meter, src_rect)
  13.     text = Cache.system("HP_Text")   
  14.     cw = text.width  
  15.     ch = text.height
  16.     src_rect = Rect.new(0, 0, cw, ch)
  17.     self.contents.blt(x + 35, y - ch + 30, text, src_rect)
  18.     self.contents.font.color = Color.new(255,255,255,255)
  19.     self.contents.draw_text(x + 81, y - 1, 48, 32, actor.hp.to_s, 2)
  20.     self.contents.font.color = Color.new(255,255,255,255)
  21.     self.contents.draw_text(x + 80, y - 2, 48, 32, actor.hp.to_s, 2)   
  22.   end
  23.   def draw_actor_mp(actor, x, y)
  24.     back = Cache.system("Meter_Back")   
  25.     cw = back.width  
  26.     ch = back.height
  27.     src_rect = Rect.new(0, 0, cw, ch)   
  28.     self.contents.blt(x + 65, y - ch + 30, back, src_rect)
  29.     meter = Cache.system("MP_Meter")   
  30.     cw = meter.width  * actor.mp / actor.maxmp
  31.     ch = meter.height
  32.     src_rect = Rect.new(0, 0, cw, ch)
  33.     self.contents.blt(x + 65, y - ch + 30, meter, src_rect)
  34.     text = Cache.system("MP_Text")   
  35.     cw = text.width  
  36.     ch = text.height
  37.     src_rect = Rect.new(0, 0, cw, ch)
  38.     self.contents.blt(x + 35, y - ch + 30, text, src_rect)
  39.     self.contents.font.color = Color.new(255,255,255,255)
  40.     self.contents.draw_text(x + 81, y - 1, 48, 32, actor.mp.to_s, 2)
  41.     self.contents.font.color = Color.new(255,255,255,255)
  42.     self.contents.draw_text(x + 80, y - 2, 48, 32, actor.mp.to_s, 2)   
  43.   end
  44. end
复制代码
写的不完整……望见谅……
作者: 冰舞蝶恋    时间: 2010-11-7 19:12
回复 Rion幻音 的帖子

一战斗battlestatus就出错

作者: Rion幻音    时间: 2010-11-7 22:48
回复 冰舞蝶恋 的帖子

rect.y 后的全部删掉……
作者: 冰舞蝶恋    时间: 2010-11-8 12:50
回复 Rion幻音 的帖子

怎么删?




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1