summaryrefslogtreecommitdiffstats
path: root/tests/auto/quick3d/quick3dnodeinstantiator/data/createNone.qml
blob: c2ea5b65097e1c47ac076eaa8f1f4a8364a68016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQml 2.1
import Qt3D 2.0

NodeInstantiator {
    model: 0
    property bool success: true
    Entity {
        property bool success: true
        property int idx: index
    }
    onObjectChanged: success = false;//Don't create intermediate objects
    onCountChanged: success = false;//Don't create intermediate objects
}