赞 | 0 |
VIP | 465 |
好人卡 | 35 |
积分 | 11 |
经验 | 27106 |
最后登录 | 2020-5-5 |
在线时间 | 404 小时 |
Lv3.寻梦者 永久的旅行者
- 梦石
- 1
- 星屑
- 110
- 在线时间
- 404 小时
- 注册时间
- 2006-12-13
- 帖子
- 3091
|
菜鸟横版,也名行走图横版。
顾名思义,当然是用行走图的。
要转变也只局限于行走图的格式。
你可以把那些经典的战斗图拼成行走图格式。
至于如何切换游戏里原本的行走图和战斗用行走图,有两个。
1. 用事件
2. 改脚本
--〉
脚本1847行左右开始,改成这段:
# ビットマップを取得、設定
if @battler.is_a?(Game_Actor)
@battler_name = @battler.character_name
@battler_hue = @battler.character_hue
#########################################################################################
self.bitmap = RPG::Cache.character(@battler_name+"_battle", @battler_hue) #
########################################################################################
@width = bitmap.width / 4
@height = bitmap.height / 4
else
@battler_name = @battler.battler_name
@battler_hue = @battler.battler_hue
###############################################################################
self.bitmap = RPG::Cache.character(@battler_name, @battler_hue) #
@width = bitmap.width/4 #
@height = bitmap.height/4 #
###############################################################################
end
self.ox = @width / 2
self.oy = @height / 2
@battler.height = @height
@flag = true 战斗时的行走图命名为“角色行走图名_battle” |
|