Particle Painters
ItemParticle {
id: particle
system: particleSystem
delegate: itemDelegate
} Component {
id: itemDelegate
Item {
id: container
width: 32*Math.ceil(Math.random()*3); height: width
Image {
anchors.fill: parent
anchors.margins: 4
source: 'assets/'+images[Math.floor(Math.random()*9)]
}
}
}
Last updated