赞 | 0 |
VIP | 0 |
好人卡 | 3 |
积分 | 1 |
经验 | 4293 |
最后登录 | 2014-8-3 |
在线时间 | 41 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 50
- 在线时间
- 41 小时
- 注册时间
- 2010-7-10
- 帖子
- 111
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
http://rpg.blue/forum.php?mod=vi ... p;page=1&extra=
“如题,整个游戏窗口大小是1024*768,但我想把map限制在800*640,剩下的地方放地图啊、人物头像啊、按钮什么的,咋整?”
哥做的:- class Spriteset_Map
- #--------------------------------------------------------------------------
- # ● 生成显示端口
- #--------------------------------------------------------------------------
- def create_viewports
-
- height=416 #宽度
- width=544 #高度
- @viewport1 = Viewport.new((Graphics.width-width)/2,(Graphics.height-height/2),width,height)
- @viewport2 = Viewport.new((Graphics.width-width)/2,(Graphics.height-height/2),width,height)
- @viewport3 = Viewport.new((Graphics.width-width)/2,(Graphics.height-height/2),width,height)
- @viewport2.z = 50
- @viewport3.z = 100
- end
- end
复制代码 |
|