3004| 3
|
[已经解决] 怎样利用脚本在游戏中初始化游戏数据 |
50星屑
最佳答案# 以下脚本插入到 Main 前
class Game_Party
def clear_items
@items = {}
end
def clear_weapons
@weapons = {}
end
def clear_armors
@armors = {}
end
end
class Game_Actor
def clear_skills
@skills = []
end
end
[/pre]
在游戏中使用如下脚本进行初始化。
# 初始化 1 号角色
$game_actors[1].setup(1)
# 初始化物品/武器/防具(指清空)
$game_party.clear_items
$game_party.clear_wea ...
| ||
点评
感谢,大神
评分 | ||
| ||
站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作
GMT+8, 2024-11-23 08:47
Powered by Discuz! X3.1
© 2001-2013 Comsenz Inc.