当我尝试在 qml2 中使用 ImageParticle 构建粒子系统时,编译器会出现以下错误:
Non-existent attached object
ImageParticle:{
^
这是我的代码的一部分:
import QtQuick 2.0
import QtQuick.Particles 2.0
Item {
id:particle
anchors.fill: parent
Rectangle{
anchors.fill: parent
ParticleSystem{
id:petalParticleSystem
}
ImageParticle:{
source:"image/Petal.png"
system:petalParticleSystem
}