Layouts are stored in simple JSON files. To add your own layouts, create a "layouts" folder in the folder containing the ComicCreator executable and add your layouts with the .json extension.
Example:
{
"tags" : ["My Layouts"],
"layout" : [
{
"type" : "rect",
"data" : {
"x" : 0,
"y" : 0,
"width" : 1,
"height" : 0.10
}
},
{
"type" : "rect",
"data" : {
"x" :0,
"y" : 0.12,
"width" : 1,
"height" : 0.43
}
},
{
"type" : "rect",
"data" : {
"x" : 0.34,
"y" : 0.57,
"width" : 0.66,
"height" : 0.43
}
},
{
"type" : "rect",
"data" : {
"x" : 0,
"y" : 0.57,
"width" : 0.32,
"height" : 0.43
}
}
]
}