in edittime.js, when you set properties, you can't set two properties or more with the same name....
<font color=blue>new</font> cr.Property(ept_integer,<font color=grey> "Size", "40", "Size A"</font>),
<font color=blue>new</font> cr.Property(ept_integer,<font color=grey> "Size", "1", "Size B"</font>)
the first is called in the runtime by this.properties[0], the second by this.properties[1], but in Construct 2 (as in preview/exported project), the 2nd propertie is exactly the same that the 1st one(the initial value of the 2nd properties will be "40" instead of "1", as its description will be "Size B")
I need same name, because my properties works as category.
e.g there is a size used by one function, another by another function...