0

当我尝试在 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
}
4

1 回答 1

1

为什么你没有冒号

ParticleSystem{

Rectangle{

但你这里有吗?

ImageParticle:{

我认为这就是错误消息的含义。

于 2013-11-11T09:32:51.933 回答