Writing Custom Parameters for Plugins

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;"

Keywords can be anything right?
But the values have to be in an order? Same order as in plugin? How does it work?

Oh, nevermind. I just had to look at the fresh template again to get it :wink:

Edit: And it works :wink:

1 Like