- UID
- 3975
- 积分
- 16
- 帖子
- 9
- 主题
- 1
- 论坛币
- 37
- 威望
- 0
- EP值
- 4
- MP值
- 0
- 阅读权限
- 50
- 注册时间
- 2017-7-29
- 在线时间
- 3 小时
- 最后登录
- 2017-12-2
|
在一个大大写的代码中经常看见这段
这段表示的是什么意思啊
xres, yres = _G.aegisub.video_size() if xres == nil then x_rat = 1 y_rat = 1 else x_rat = xres/1024 y_rat = x_rat end if (xres and xres ~= meta.res_x) or (yres and yres ~= meta.res_y) then _G.aegisub.debug.out(2, "Warning: script resolution %dx%d does not match with loaded video resolution %dx%d resample script resolution", meta.res_x, meta.res_y, xres, yres) end |
|