设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1374|回复: 0
打印 上一主题 下一主题

[已经过期] 臉圖戰鬥,使用物品

[复制链接]

Lv1.梦旅人

梦石
0
星屑
69
在线时间
41 小时
注册时间
2015-4-6
帖子
2
跳转到指定楼层
1
发表于 2015-5-12 18:28:50 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
請問一下,我使用的臉圖戰鬥腳本,在使用物品時,右邊跳出的是人物的名字來做選擇,而不是人物圖片,像是原本預設的系統一樣


感謝!各位~

附上腳本
RUBY 代码复制
  1. #==============================================================================
  2. # ■ VXAce-RGSS3-10 フロントビュー改 [Ver.1.0.0]            by Claimh
  3. #------------------------------------------------------------------------------
  4. # ・戦闘画面を顔グラフィック表示に変更します。
  5. # ・エネミー選択ウィンドウで残HPを表示します。
  6. #==============================================================================
  7.  
  8.  
  9. #==============================================================================
  10. # ■ Window_BattleStatus
  11. #==============================================================================
  12. class Window_BattleStatus < Window_Selectable
  13.   #--------------------------------------------------------------------------
  14.   # ● HP/MP/TPの行の高さ取得
  15.   #--------------------------------------------------------------------------
  16.   def gauge_line_height
  17.     return 15
  18.   end
  19.   #--------------------------------------------------------------------------
  20.   # ● 桁数の取得
  21.   #--------------------------------------------------------------------------
  22.   def col_max
  23.     return [item_max, 5].max
  24.   end
  25.   #--------------------------------------------------------------------------
  26.   # ● 横に項目が並ぶときの空白の幅を取得
  27.   #--------------------------------------------------------------------------
  28.   def spacing
  29.     return 0
  30.   end
  31.   #--------------------------------------------------------------------------
  32.   # ● 項目を描画する矩形の取得
  33.   #--------------------------------------------------------------------------
  34.   def item_rect(index)
  35.     rect = Rect.new
  36.     rect.width = item_width
  37.     rect.height = contents_height
  38.     rect.x = index % col_max * (item_width + spacing)
  39.     rect.y = index / col_max * contents_height
  40.     rect
  41.   end
  42.   #--------------------------------------------------------------------------
  43.   # ● 基本エリアの矩形を取得
  44.   #--------------------------------------------------------------------------
  45.   def basic_area_rect(index)
  46.     rect = item_rect_for_text(index)
  47.     rect.height -= gauge_area_height
  48.     rect
  49.   end
  50.   #--------------------------------------------------------------------------
  51.   # ● ゲージエリアの矩形を取得
  52.   #--------------------------------------------------------------------------
  53.   def gauge_area_rect(index)
  54.     rect = item_rect_for_text(index)
  55.     rect.y += contents_height - gauge_area_height - 8
  56.     rect.height = gauge_area_height
  57.     rect
  58.   end
  59.   #--------------------------------------------------------------------------
  60.   # ● ゲージエリアの高さを取得
  61.   #--------------------------------------------------------------------------
  62.   def gauge_area_height
  63.     return (gauge_line_height * ($data_system.opt_display_tp ? 3 : 2))
  64.   end
  65.   #--------------------------------------------------------------------------
  66.   # ● 基本エリアの描画
  67.   #--------------------------------------------------------------------------
  68.   def draw_basic_area(rect, actor)
  69. #    draw_actor_name(actor, rect.x, rect.y, 100)
  70.     draw_actor_face(actor, rect.x, rect.y, !actor.dead?)
  71.     draw_actor_icons(actor, rect.x, rect.y, rect.width+8)
  72.   end
  73.   #--------------------------------------------------------------------------
  74.   # ● ゲージエリアの描画(TP あり)
  75.   #--------------------------------------------------------------------------
  76.   def draw_gauge_area_with_tp(rect, actor)
  77.     draw_actor_hp(actor, rect.x, rect.y + gauge_line_height * 0, rect.width)
  78.     draw_actor_mp(actor, rect.x, rect.y + gauge_line_height * 1, rect.width)
  79.     draw_actor_tp(actor, rect.x, rect.y + gauge_line_height * 2, rect.width)
  80.   end
  81.   #--------------------------------------------------------------------------
  82.   # ● ゲージエリアの描画(TP なし)
  83.   #--------------------------------------------------------------------------
  84.   def draw_gauge_area_without_tp(rect, actor)
  85.     draw_actor_hp(actor, rect.x, rect.y + gauge_line_height * 1, rect.width)
  86.     draw_actor_mp(actor, rect.x, rect.y + gauge_line_height * 2, rect.width)
  87.   end
  88. end
  89.  
  90.  
  91. #==============================================================================
  92. # ■ Window_BattleEnemy
  93. #==============================================================================
  94. class Window_BattleEnemy < Window_Selectable
  95.   #--------------------------------------------------------------------------
  96.   # ● 項目の描画
  97.   #--------------------------------------------------------------------------
  98.   alias draw_item_fv draw_item
  99.   def draw_item(index)
  100.     draw_hp(index)
  101.     draw_item_fv(index)
  102.   end
  103.   #--------------------------------------------------------------------------
  104.   # ● HPの描画
  105.   #--------------------------------------------------------------------------
  106.   def draw_hp(index)
  107.     rect = item_rect_for_text(index)
  108.     w = rect.width - 60
  109.     x = rect.x + 30
  110.     hp = $game_troop.alive_members[index].hp_rate
  111.     draw_gauge(x, rect.y, w, hp, hp_gauge_color1, hp_gauge_color2)
  112.   end
  113. end

点评

请问一下,你发布了图片,而不是文字,就像原本你要表达的那样。 以上这句话你看懂没? 因为你看不懂以上那句,所以我也看不懂你到底问了啥。  发表于 2015-5-12 20:30
您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-16 04:52

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表