Update - 1.9.0.103

EN: 1.9.0.103
CN: 1.9.0.104
JP: 1.9.0.106
KR: 1.9.0.108
This commit is contained in:
SL1900
2026-04-18 00:15:00 +09:00
parent 35fe1f046d
commit e0549005e1
1150 changed files with 941124 additions and 19847 deletions
+12
View File
@@ -969,6 +969,18 @@ end
function CmdInfo.ParseParam_SetBubbleUIType(ctrl, tr, tbParam)
tbParam[1] = ctrl:GetDDIndex(tr, "dd_UIType") + 1
end
function CmdInfo.VisualizedCmd_SetCameraAperture(ctrl, tr, param)
if param == nil then
return {false}
end
ctrl:SetTog(tr, "tog_Visible", param[1])
end
function CmdInfo.TbDataToCfgStr_SetCameraAperture(ctrl, tbParam)
return string.format(" {cmd=\"SetCameraAperture\",param={%s}},", tostring(tbParam[1]))
end
function CmdInfo.ParseParam_SetCameraAperture(ctrl, tr, tbParam)
tbParam[1] = ctrl:GetTog(tr, "tog_Visible")
end
function CmdInfo.VisualizedCmd_SetPhone(ctrl, tr, param)
if param == nil then
return {0, 1}