Hi Leppiz,
You can do a right click on the Template (In the Templates Outliner) and edit the template.
Then search the line matching the attribute you want to modify, for instance the
Create Ground:
Code:createGround = @createGround | 1 | Boolean | Create Ground
and change it to that:
Code:createGround = @createGround | 0 | Boolean | Create Ground
It will make it
False by default.
If you want to get rid of an option you can delete the line completely but you WILL NEED to update the hook with a value, for the
@createGround hook you will need to change the following line:
Code:var createGround = @createGround;
to
Code:var createGround = 0;
or
Code:var createGround = 1;
depending if you want the ground or not

Now speaking about that, sIBL_GUI 4 (Not yet out in a stable built release) is storing the Templates settings (Per template and per template version).
Voila

KS