赞 | 0 |
VIP | 10 |
好人卡 | 4 |
积分 | 1 |
经验 | 14260 |
最后登录 | 2018-4-10 |
在线时间 | 93 小时 |
Lv1.梦旅人 彩虹天使
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 93 小时
- 注册时间
- 2012-10-2
- 帖子
- 113
|
cryhades 发表于 2012-10-2 17:53
QAQ 还是不行....PNG和JPG都试过了,我以为是脚本冲突,就建了个新工程,结果还是不行呢
这个是什么问题 ...
原來我寫的腳本VA不支持啊
將Scene_Status腳本
改為- #encoding:utf-8
- #==============================================================================
- # ■ Scene_Status
- #------------------------------------------------------------------------------
- # 状态画面
- #==============================================================================
- class Scene_Status < Scene_MenuBase
- #--------------------------------------------------------------------------
- # ● 开始处理
- #--------------------------------------------------------------------------
- def start
- super
- # ● 創建角色圖片
- @actor_sprite = Sprite.new
- @actor_sprite.bitmap = Cache.system(@actor.name)
- # @actor = $game_party.members[@actor_index]
- @status_window = Window_Status.new(@actor)
- @status_window.set_handler(:cancel, method(:return_scene))
- @status_window.set_handler(:pagedown, method(:next_actor))
- @status_window.set_handler(:pageup, method(:prev_actor))
- end
- #--------------------------------------------------------------------------
- # * 程式結束
- #--------------------------------------------------------------------------
- def terminate
- super
- @actor_sprite.dispose
- end
- #--------------------------------------------------------------------------
- # ● 切换角色
- #--------------------------------------------------------------------------
- def on_actor_change
- @status_window.actor = @actor
- @status_window.activate
- end
- end
复制代码 將文件放入System文件夾內
Pictures文件夾不能被識別,不知道樓主滿意不? |
评分
-
查看全部评分
|