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

NodeInstantiator {
    model: ["alpha", "beta", "gamma", "delta"]
    delegate: Entity {
        property bool success: index == 1 ? datum.length == 4 : datum.length == 5
        property string datum: modelData
    }
}