mirror of
https://github.com/Qsgs-Fans/FreeKill.git
synced 2024-11-16 11:42:45 +08:00
afb537a661
* 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
22 lines
305 B
QML
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 = "";
|
|
}
|
|
}
|
|
}
|