FreeKill/packages/test/qml/Test.qml
notify afb537a661 Merge 'standard' (#53)
* todo

* todo.md

* doc for move cards

* weapons excluding qinggang

* equip sound and emotion

* remove silence on the starting of using skill

* add audio skill for TMD equip

* fixbug: running and observing

* when PreUseCard is broken, jump to move cards to discardPile

* doc for diy

* addToPile

* viewPile (WIP)

* fix git bug

* auto update packages when md5 fail

* use thread when updating pack

* correct status() handling

* update fkp

* remove PKGBUILD since it's presented in AUR repo

* fix fkp md5 bug

* extensible qml

* set bigAnim's z to 999

* nioh sheild

* lijian

* now mod can return nil

* if dmg.nature == nil then = normal

* disable notifyUI when qWarning

* fix lijian and gender problem
2023-02-21 13:44:24 +08:00

22 lines
305 B
QML

import QtQuick
Item {
Text {
id: txt
anchors.centerIn: parent
text: "Hello, world!"
font.pixelSize: 64
}
PropertyAnimation {
target: txt
property: "opacity"
to: 0.3
duration: 2000
running: true
onFinished: {
roomScene.bigAnim.source = "";
}
}
}