summaryrefslogtreecommitdiffstats
path: root/tests/manual/transforms-qml/RenderableEntity.qml
blob: 5934c3cb900049b46b5c491c9cf492e1ffb85bdc (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 BSD-3-Clause

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
    }
}