Project1

标题: 有在菜单的状态栏那里显示出人物的全身像的吗? [打印本页]

作者: hundanduibuqi    时间: 2012-7-12 16:25
标题: 有在菜单的状态栏那里显示出人物的全身像的吗?
是需要脚本么?
作者: z950828    时间: 2012-7-13 16:52
下个模版回来研究一下就知道了。
作者: king    时间: 2012-7-16 10:38
看看,也许可以帮到你!加油
http://rpg.blue/thread-235451-1-1.html
在主菜单的内部界面中加入图片 [已解决]  

作者: 浮云桑    时间: 2012-7-16 11:20
嘛,我下载了脚本的。估计是这种
  1. #==============================================================================
  2. # ■ VXAce-RGSS3-14 立ち絵ステータス(2ページ目)  [Ver1.0.0]    by Claimh
  3. #------------------------------------------------------------------------------
  4. # ステータス画面に2ページ目を追加します。
  5. # 2ページ目にはスキルリストを表示します。
  6. #==============================================================================

  7. #==============================================================================
  8. # ■ Window_Status
  9. #==============================================================================
  10. class Window_Status < Window_Selectable
  11.   MAX_PAGE = 2 # 最大ページ(page)数
  12.   #--------------------------------------------------------------------------
  13.   # ● リフレッシュ(1ページ目)
  14.   #--------------------------------------------------------------------------
  15.   alias refresh_picst refresh
  16.   def refresh
  17.     @page = 0
  18.     refresh_picst
  19.   end
  20.   #--------------------------------------------------------------------------
  21.   # ● 次のページへ
  22.   #--------------------------------------------------------------------------
  23.   def next_page
  24.     case ((@page + 1) % MAX_PAGE)
  25.     when 0; refresh
  26.     when 1; refresh2
  27.     end
  28.   end
  29.   #--------------------------------------------------------------------------
  30.   # ● リフレッシュ(2ページ目)
  31.   #--------------------------------------------------------------------------
  32.   def refresh2
  33.     @page = 1
  34.     contents.clear
  35.     draw_actor_picture(@actor, 0, contents_height-288)
  36.     draw_block1_picture(line_height * 0)
  37.     draw_horz_line     (line_height * 1)
  38.     draw_page2_block2  (line_height * 2)
  39.   end
  40.   #--------------------------------------------------------------------------
  41.   # ● 2ページ目 block2 (スキルリスト)
  42.   #--------------------------------------------------------------------------
  43.   def draw_page2_block2(y)
  44.     max = (contents_height - y) / line_height
  45.     @actor.skills.each_index do |i|
  46.       yy = y + i * line_height
  47.       return if max >= yy
  48.       draw_item_name(@actor.skills[i], 288, yy)
  49.     end
  50.   end
  51. end


  52. #==============================================================================
  53. # ■ Scene_Status
  54. #==============================================================================
  55. class Scene_Status < Scene_MenuBase
  56.   #--------------------------------------------------------------------------
  57.   # ● 開始処理
  58.   #--------------------------------------------------------------------------
  59.   alias start_picst start
  60.   def start
  61.     start_picst
  62.     @status_window.set_handler(:ok,   method(:next_page))
  63.   end
  64.   #--------------------------------------------------------------------------
  65.   # ● 次のページへ
  66.   #--------------------------------------------------------------------------
  67.   def next_page
  68.     @status_window.next_page
  69.     @status_window.activate
  70.   end
  71. end
复制代码

作者: hcm    时间: 2012-7-16 12:27
http://rpg.blue/thread-226295-1-1.html
或者这种?




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