mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-26 04:58:49 +03:00
Remove EmojiEmitter
This commit is contained in:
parent
1d204ce94c
commit
425f02b800
1 changed files with 0 additions and 60 deletions
|
@ -1,60 +0,0 @@
|
||||||
import QtQuick 2.0
|
|
||||||
import QtQuick.Particles 2.0
|
|
||||||
|
|
||||||
Item {
|
|
||||||
id: bg
|
|
||||||
|
|
||||||
readonly property int velocity: 50
|
|
||||||
|
|
||||||
ParticleSystem {
|
|
||||||
id: particleSys
|
|
||||||
}
|
|
||||||
|
|
||||||
Emitter {
|
|
||||||
id: particles
|
|
||||||
|
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
|
||||||
anchors.top: parent.top
|
|
||||||
width: parent.width
|
|
||||||
system: particleSys
|
|
||||||
emitRate: 10
|
|
||||||
lifeSpan: (parent.height / bg.velocity) * 1000 //8000
|
|
||||||
lifeSpanVariation: 1000
|
|
||||||
maximumEmitted: 1000
|
|
||||||
size: 5
|
|
||||||
sizeVariation: 15
|
|
||||||
|
|
||||||
velocity: AngleDirection {
|
|
||||||
angle: 90
|
|
||||||
angleVariation: 10
|
|
||||||
magnitude: bg.velocity
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
ItemParticle {
|
|
||||||
id: particle
|
|
||||||
|
|
||||||
system: particleSys
|
|
||||||
delegate: itemDelegate
|
|
||||||
}
|
|
||||||
|
|
||||||
Component {
|
|
||||||
id: itemDelegate
|
|
||||||
|
|
||||||
Item {
|
|
||||||
id: container
|
|
||||||
|
|
||||||
x: bg.width / 2
|
|
||||||
y: 0
|
|
||||||
|
|
||||||
Text {
|
|
||||||
anchors.fill: parent
|
|
||||||
text: "🎉"
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in a new issue