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

Entity {
    NodeInstantiator {
        model: 10
        delegate: Entity {
            property bool success: true
            property int idx: index
        }
    }
}