Skip to content

Commit

Permalink
j
Browse files Browse the repository at this point in the history
j
  • Loading branch information
jpalenz77 committed Oct 22, 2024
1 parent 86dab2b commit 32d40c5
Show file tree
Hide file tree
Showing 37,767 changed files with 149,045 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
15 changes: 15 additions & 0 deletions 3rdparty/lottie/lottie.min.js

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions 3rdparty/lottie/lottie.qml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import QtQuick 2.0
import Qt.labs.lottieqt 1.0

LottieAnimation {
source: ""
quality: LottieAnimation.MediumQuality
autoPlay: true
loops: LottieAnimation.Infinite
onStatusChanged: {
console.log("Lottie Status changed");
if (status === LottieAnimation.Ready) {
gotoAndPlay(0);
console.log("Lottie Status Ready");
}
if (status === LottieAnimation.Error) {
console.log("Lottie Status Error");
}
if (status === LottieAnimation.Loading) {
console.log("Lottie Status Loading");
}
}
onFinished: {
console.log("Lottie Finished Playing")
}
}
Loading

0 comments on commit 32d40c5

Please sign in to comment.