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

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