Project1

标题: 标题中加载 [打印本页]

作者: 2283522939    时间: 2015-8-26 14:02
标题: 标题中加载
有没有在标题中显示一个加载的进度条(美化作用)
进度条满后显示“开始游戏”什么的
作者: jiahui5592986    时间: 2015-8-26 17:11
看看这个有用没

游戏开始进度条.rar

2.82 MB, 下载次数: 61


作者: 2283522939    时间: 2015-8-27 07:58
jiahui5592986 发表于 2015-8-26 17:11
看看这个有用没

有莫有在标题画面加载的...先加载,再显示选择项
不过有帮助

作者: kuerlulu    时间: 2015-8-27 10:48
插入Main前即可 需要别的特技自己加
RUBY 代码复制
  1. class Object
  2.   def tap
  3.     yield self
  4.     return self
  5.   end
  6. end
  7. class << Color
  8.   def white
  9.     new 255, 255, 255
  10.   end
  11.   def empty
  12.     new 0, 0, 0, 0
  13.   end
  14. end
  15. class Bitmap
  16.   def clear_rect *a
  17.     fill_rect case a.size
  18.     when 1 then a[0]
  19.     when 4 then a
  20.     end, Color.empty
  21.   end
  22. end
  23.  
  24. def sign i, b = true
  25.   i > 0 ? 1 : b ? i < 0 ? -1 : 0 : i == 0 ? 1 : -1
  26. end
  27.  
  28. def dbfd a, b, c
  29.   (a - b).abs < c ? sign(a - b) : (a - b) / c
  30. end
  31.  
  32. def center obj
  33.   obj.x = 320 - obj.src_rect.width / 2
  34.   obj.y = 240 - obj.src_rect.height / 2
  35.   obj
  36. end
  37.  
  38. def sprite_with bitmap, x, y, w, h
  39.   Sprite.new.tap { |s|
  40.     s.bitmap = bitmap
  41.     s.src_rect = Rect.new x, y, w, h
  42.   }
  43. end
  44.  
  45. def white_block w, h
  46.   sprite_with Bitmap.new(w, h).tap { |b|
  47.     b.fill_rect b.rect, Color.white
  48.   }, 0, 0, w, h
  49. end
  50.  
  51. 雪碧条 = center white_block 320, 24
  52. 雪碧条.src_rect.width = 0
  53.  
  54. loop do
  55.   Graphics.update
  56.   Input.update
  57.   break if 雪碧条.src_rect.width == 320
  58.   雪碧条.src_rect.width += dbfd 320, 雪碧条.src_rect.width, 9
  59. end
  60.  
  61. 雪碧条.bitmap.dispose
  62. 雪碧条.dispose

作者: 2283522939    时间: 2015-8-27 14:18
kuerlulu 发表于 2015-8-27 10:48
插入Main前即可 需要别的特技自己加
class Object
  def tap

别的特技怎么加嘞
作者: 2283522939    时间: 2015-8-27 15:20
难不成用脚
我是说给发一个范例啊脚本啊神马的

作者: 2283522939    时间: 2015-8-27 20:27
kuerlulu 发表于 2015-8-27 10:48
插入Main前即可 需要别的特技自己加
class Object
  def tap

好吧,告诉我到底总么用手弄出特技来




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