- Create blank project
- Create a new widget and add it to viewport
- The widget should contain only a progress bar
- Set the progress bar percent to 1.0
- Add this bind for the progress bar percent:
Expected behavior:
the value should slowly decrease to 0 and the print should be: 0.9, 0.81, 0.729 and so on
Actual behavior:
the progress bar gets stuck at 0.9 and the print always prints: 0.9,0.9,0.9,0.9 and so on
Is this a design choice because the bind doesn’t actually call SetPercent and directly changes the widget or is it a bug?