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

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