lua – 如何在coronasdk中动态缩放屏幕

我当前的配置文件是用于ipad视网膜,它工作得很好,但是当我选择屏幕较小的设备时,图像会变形.
这是我目前的config.lua

application = {
    content = {
        width = 768,--aspectRatio > 1.5 and 800 or math.ceil( 1200 / aspectRatio ),height = 1024,scale = "none",fps = 60,imageSuffix = {
            ["@2x"] = 1.3,}
    }
}

我想知道是否有一种方法可以动态设置宽度或高度,而无需为每个单独的设备硬编码这些数字.

解决方法

我建议你阅读这篇关于 “the ultimate config/modernizing the config”的文章.

Some screens are wider while others are more narrow. If we take
resolution out of the equation,its easier to visualize the screens.
Corona makes it easy to take resolution out of the picture using
Dynamic Scaling. With Dynamic Scaling,you can use a common set of
screen coordinates and Corona will automatically scale the text and
graphics for different resolution screens. It can scale upwards or
downwards depending on your starting point. It also can substitute
higher resolution images when it needs to scale up. This is all
managed by a Lua file in your project folder called config.lua.

Since available resolutions vary considerably,it’s helpful to use the
same scale for each device. It doesn’t matter if you’re on an iPhone
3GS at 320×480 or a Retina iPad at 1536×2048,the location (0,0)
represents the top-left corner and (320,480),in vertical portrait
mode,is the bottom-right corner. The screen center is (160,240).
Each point,in this case,is one pixel on a lower-resolution device
like the 3GS,which has a native screen resolution of 320×480,while
each point is four pixels on a Retina iPad. Don’t worry about the math
— Corona will handle it for you.

Source: 07001

local aspectRatio = display.pixelHeight / display.pixelWidth
application = {
   content = {
      width = aspectRatio > 1.5 and 320 or math.ceil( 480 / aspectRatio ),height = aspectRatio < 1.5 and 480 or math.ceil( 320 * aspectRatio ),scale = "letterBox",fps = 30,imageSuffix = {
         ["@2x"] = 1.3,},}

相关文章

1.github代码实践源代码是lua脚本语言,下载th之后运行thmai...
此文为搬运帖,原帖地址https://www.cnblogs.com/zwywilliam/...
Rime输入法通过定义lua文件,可以实现获取当前时间日期的功能...
localfunctiongenerate_action(params)localscale_action=cc...
2022年1月11日13:57:45 官方:https://opm.openresty.org/官...
在Lua中的table(表),就像c#中的HashMap(哈希表),key和...