summaryrefslogtreecommitdiffstats
path: root/tests/manual/transforms-qml/RenderableEntity.qml
blob: fd112bfe691deb21a2dbd0fa37ab46f9c8b36fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import Qt3D.Core 2.0
import Qt3D.Render 2.0

Entity {
    id: root

    property Material material: null
    property alias meshSource: mesh.source
    property alias translation: transform.translation
    property alias rotation: transform.rotation
    property alias scale: transform.scale

    components: [ transform, mesh, material ]

    Transform {
        id: transform
    }

    Mesh {
        id: mesh
    }
}