01-08-2025, 12:29 AM
I almost have a new build, I needed to test the different new features and there's still a few small things to adjust.
Parameters will now have dropdown lists, checkboxes and radio buttons, example:
And for even more flexibility, it will also be possible to create advanced layouts by erlang term directly:
Parameters will now have dropdown lists, checkboxes and radio buttons, example:
Code:
params {
param "Width" "0.5"
param "Height" "1.0"
checkbox "Use feature" "true"
menu "Type" "cube" {
item "Cube" "cube"
item "Cone" "cone"
}
}
And for even more flexibility, it will also be possible to create advanced layouts by erlang term directly:
Code:
params {
adv_params begin
{vframe, [
{hframe, [
{label, ?__(1,"Label")},
{text, 0.5, [{key,etc}]}
]},
{?__(2,"Checkbox"),true,[{key,key1}]}
]}
end.
}