赞 | 1 |
VIP | 0 |
好人卡 | 5 |
积分 | 2 |
经验 | 7383 |
最后登录 | 2024-7-21 |
在线时间 | 166 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 197
- 在线时间
- 166 小时
- 注册时间
- 2009-5-2
- 帖子
- 300
|
- module Graphics
- @@ori = method("transition")
- def self.transition(*args)
- StartNowLondingTr.stop
- @@ori.call(*args)
- end
- end
- module StartNowLondingTr
- def self.start
- @start = Thread.new do
- @nowLsprite = Sprite.new
- @nowLbitmap = Bitmap.new(640,480)
- @nowLsprite.bitmap = @nowLbitmap
- @nowLsprite.bitmap.fill_rect(0,0,640,480,Color.new(0,0,0,255))
- @nowLsprite.x = 0
- @nowLsprite.y = 0
- @nowLsprite.z = 99999999
- @nowLsprite.visible = true
- @nowLsprite.bitmap.draw_text(400,420,200,60,"载入中")
- loop do
- sleep 0.001
- Graphics.update
- end
- end
- end
- def self.stop
- @start.exit
- @nowLsprite.dispose
- @nowLsprite.bitmap.dispose
- end
- end
- class Class
- alias ori_new new
- def new(*args)
- if self.method_defined? :main
- StartNowLondingTr.start
- @obj = ori_new(*args)
- return @obj
- else
- return ori_new(*args)
- end
- end
- end
复制代码 应该是很简单的问题,把color删掉,加入图片,可偶就不会:lol |
|