feat(wallpaper engine): add option to disable start animation

This commit is contained in:
Haoyu Xu
2023-06-23 12:28:03 -04:00
parent 20f23aa31e
commit 0209cf538d
2 changed files with 11 additions and 0 deletions

View File

@@ -38,6 +38,7 @@ localization:
ui_music_selection: Music
ui_music_volume: Volume
ui_music_offset: Offset
ui_useStartAnimation_title: Use Start Animation
zh-chs:
ui_notice_title: <hr><h4>📝 通知</h4><hr>
ui_notice_changelog: <span><b>已添加新背景和音乐! </b></span>
@@ -76,6 +77,7 @@ localization:
ui_music_selection: 音乐
ui_music_volume: 音量
ui_music_offset: 弥补
ui_useStartAnimation_title: 使用开始动画
properties:
- key: notice_title
value:
@@ -266,6 +268,11 @@ properties:
step: 0.01
max: 1
min: 0
- key: useStartAnimation
value:
text: ui_useStartAnimation_title
type: bool
value: true
- key: position
value:
text: ui_position_title

View File

@@ -131,5 +131,9 @@ window.wallpaperPropertyListener = {
window.settings.positionPadding("bottom", properties.paddingbottom.value)
window.settings.functionInsights("positionPaddingBottom", Object.keys(properties) !== 1)
}
if (properties.useStartAnimation) {
window.settings.useStartAnimation = properties.useStartAnimation.value
window.settings.functionInsights("useStartAnimation", Object.keys(properties) !== 1)
}
},
};