2023-07-29 12:47 PM
Does anyone know how the Elem <> UIPriority is calculated?
I am trying to figure out how the connectionPriority of materials in exported xml files makes sense.
Solved! Go to Solution.
2023-08-01 07:56 AM
Here is the calculation method between Internal and UI priority:
uiPriority = int ((double) priority * 62.0 / 100.0 - 43.0 * 62.0 + 1.5);
Please note that this is an implementation detail surfaced in the XML, the calculation method may change in the future.
2023-08-01 07:56 AM
Here is the calculation method between Internal and UI priority:
uiPriority = int ((double) priority * 62.0 / 100.0 - 43.0 * 62.0 + 1.5);
Please note that this is an implementation detail surfaced in the XML, the calculation method may change in the future.
2023-08-01 09:13 AM
Thank you! I doubt that I would have figured that out on my own...