You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a new animation is added using dotLottie.addAnimation, default playback settings such as loop: false, autoplay: false, and direction: 1 are being incorrectly added to the manifest.json file. These settings should not be added unless explicitly specified by the user.
The manifest.json should only contain the fields that are explicitly provided by the user. If no playback settings are specified, they should not be included in the manifest.json.
Current Behavior:
The manifest.json incorrectly includes default playback settings:
loop: false
autoplay: false
direction: 1
...etc
The text was updated successfully, but these errors were encountered:
When a new animation is added using dotLottie.addAnimation, default playback settings such as
loop: false
,autoplay: false
, anddirection: 1
are being incorrectly added to the manifest.json file. These settings should not be added unless explicitly specified by the user.The manifest.json should only contain the fields that are explicitly provided by the user. If no playback settings are specified, they should not be included in the manifest.json.
Current Behavior:
The manifest.json incorrectly includes default playback settings:
loop: false
autoplay: false
direction: 1
...etc
The text was updated successfully, but these errors were encountered: