1
Discussion - EVE / Re: Scale down the Spinner Widget
« on: November 28, 2023, 04:24:00 PM »
Hello,
Yes unfortunately, you would need to create your own spinner widget if you wish to scale it.
Below we have the raw code output for a given CMD_SPINNER (CMD_SPINNER(533, 251, 0, 0)) command:
You can adjust the point sizes via the POINT_SIZE command and alter the vertex commands to reposition the sippner dots.
The MACRO(0) register is updated with the COLOR_A command scaling from 255 - 128 - 64 - 0 and the MACRO(1) register is updated with the vertex point of the dot you wish to highlight in the spinner animation.
Best Regards,
BRT Community
Yes unfortunately, you would need to create your own spinner widget if you wish to scale it.
Below we have the raw code output for a given CMD_SPINNER (CMD_SPINNER(533, 251, 0, 0)) command:
Code: [Select]
CLEAR(1, 1, 1)
VERTEX_FORMAT(2)
POINT_SIZE(240)
BEGIN(POINTS)
COLOR_A(64)
VERTEX2F(1604, 1143)
VERTEX2F(1731, 1091)
VERTEX2F(1783, 964)
VERTEX2F(1731, 836)
VERTEX2F(1604, 784)
VERTEX2F(1476, 836)
VERTEX2F(1424, 964)
VERTEX2F(1476, 1091)
MACRO(0)
MACRO(1)
You can adjust the point sizes via the POINT_SIZE command and alter the vertex commands to reposition the sippner dots.
The MACRO(0) register is updated with the COLOR_A command scaling from 255 - 128 - 64 - 0 and the MACRO(1) register is updated with the vertex point of the dot you wish to highlight in the spinner animation.
Best Regards,
BRT Community