Project1
标题:
我游戏分辨率是1024,如何限制map到800?
[打印本页]
作者:
galaxys
时间:
2012-3-3 20:04
标题:
我游戏分辨率是1024,如何限制map到800?
如题,整个游戏窗口大小是1024*768,但我想把map限制在800*640,剩下的地方放地图啊、人物头像啊、按钮什么的,咋整?
作者:
tseyik
时间:
2012-3-3 20:30
感覺可同遠景解決
遠景表示優先度(Z値高於地圖
作者:
zhangchi5
时间:
2012-3-25 17:43
解决方案:
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
复制代码
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1