Hello Metin2Devs, are there any references of the available types and attributes for UIScript files?
I looked at the Docs but I did not found anything.
I am not sure if I've been made clear so this is an example of what I am looking for:
window = {
"name" : "CubeWindow",
"x" : 430,
"y" : 230,
"style" : ("movable", "float",),
"width" : 400,
"height" : 300,
"children" :
(
{
"name" : "board",
"type" : "board",
"style" : ("attach",),
"x" : 0,
"y" : 0,
"width" : 400,
"height" : 300,
"children" :
(
## Title
{
"name" : "TitleBar",
"type" : "titlebar",
"style" : ("attach",),
"x" : 8,
"y" : 7,
"width" : 378,
"color" : "yellow",
"children" :
(
{ "name":"TitleName", "type":"text", "x":200, "y":3, "text":"synthesis results", "text_horizontal_align":"center"},
),
},
Most of them are self explanatory but I would like to know what is it available for any of those types UI Elements.
Thanks in advance.