Project1

标题: 游戏失败时的图片显示 [打印本页]

作者: 黑崎一护    时间: 2011-11-16 23:11
标题: 游戏失败时的图片显示
默认是只显示一张图的,如果想随机显示其他的该怎么做呢?dsu_plus_rewardpost_czw
作者: 月夜神音    时间: 2011-11-16 23:51
Scene_Gameover那里的create_gameover_graphic下面改成
  1.   def create_gameover_graphic
  2.     index = rand(3)
  3.     @sprite = Sprite.new
  4.     @sprite.bitmap = Cache.system("GameOver_#{index}")
  5.   end
复制代码
把那些要显示的图片命名为GameOver_0,GameOver_1,GameOver_2,GameOver_3……
依此推类~图片数量修改红字即可index = rand(3)




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