BOZZA sviluppo nuove tipologie di parametri

- tipo di parametro "Combo"
- nuovo campo sNameNge che verrà scritto nelle info nel Processing
This commit is contained in:
andrea.villa
2024-11-22 12:56:12 +01:00
parent 2586407ec9
commit b0f26bdea2
3 changed files with 12 additions and 3 deletions
+3 -1
View File
@@ -346,8 +346,10 @@ function BeamLib.LoadCustomParametersInStrategy( CustomParameters)
Parameters[CustomParameters[i].sName] = CustomParameters[i].sValue == 'true'
elseif CustomParameters[i].Type == 'd' then
Parameters[CustomParameters[i].sName] = tonumber( CustomParameters[i].sValue)
else -- CustomParameters.Type == 's'
elseif CustomParameters[i].Type == 's' then
Parameters[CustomParameters[i].sName] = CustomParameters[i].sValue
else -- CustomParameters.Type == 'c'
Parameters[CustomParameters[i].sName][CustomParameters[i].sValue] = true
end
end
end