dyb
(Marcin Dybaś)
1
Is there any documentation on how a custom parameter string should be formatted?
I have 3 value (float) fields and 3 boolean checkboxes.
I have it like this right now. But where and why do i put the boolean values?
(
{
Filter = "className;float1;float2;float3;";
}
)
Booleans are stored as 0
or 1
. And you can also add keywords:
Filter = "className;First=float1;Second=float2;Third=float3;"
dyb
(Marcin Dybaś)
3
Keywords can be anything right?
But the values have to be in an order? Same order as in plugin? How does it work?
dyb
(Marcin Dybaś)
4
Oh, nevermind. I just had to look at the fresh template again to get it 
Edit: And it works 
1 Like