What options do you have if you want vector animations that you can interact with in code with PyQt / PySide?
Unsolved
Qt for Python
-
The QSvgRenderer only works with a static .svg
There's also a qml module Qt.labs.lottieqt, it's my first time using QML, and I couldn't get it to work:
import QtQuick import Qt.labs.lottieqt Rectangle { width: 400 height: 400 color: "sky blue" LottieAnimation { loops: 10 quality: LottieAnimation.MediumQuality source: "C:/Users/name/Downloads/test_lottie.json" autoPlay: true } }