# ui 屏幕限制接口
function SetFrameLimitScreen takes boolean is_limit returns nothing
1
2
2
# 描述
内置默认是 解锁 frame 控件的 屏幕限制的 就是可以随便移动到屏幕之外的位置, 但是有个别用户 依赖这个限制 用网易的接口写了 ui 导致加了内置之后 位置变了, 故此新增这个接口 自行决定是否解锁。
# 参数
类型 | 名字 | 说明 |
---|---|---|
布尔值 | is_limit | 填 true 是锁定 填 false 是解锁 |
# 例子
call SetFrameLimitScreen(true) //重新锁定
1
2
2
local japi = require 'jass.japi'
japi.SetFrameLimitScreen(true) //重新锁定
1
2
3
4
5
6
2
3
4
5
6