|
Hi Ulanzi team, I would like to request an option to control how many times an animated GIF is played on the Ulanzi Deck. Currently, even when a GIF file is configured to play only once, the Ulanzi Deck appears to continuously restart the animation. It would be useful to have a Loop Count option, for example: - 0 = infinite loop
- 1 = play once and stop on the last frame
- 2 = play twice
- N = play N times
Ideally, this could be supported both in Ulanzi Studio when selecting a GIF icon and in the Plugin SDK. For example, the SDK could support something similar to:
$UD.setGifPathIcon(context, "icon.gif", "", { loopCount: 1});
or:
$UD.setGifPathIcon(context, "icon.gif", "", 1);
After the requested number of loops is completed, the GIF should remain on its last frame instead of restarting. This would be very useful for button animations such as transitions, notifications, activation effects, and animated icons that are intended to run only once. Thank you!
|