qt3d/tests/manual/transforms-qml/RenderableEntity.qml

26 lines
550 B
QML

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