aboutsummaryrefslogtreecommitdiffstats
path: root/doc/qtdesignstudio/examples/Optimal3DScene/asset_imports/Quick3DAssets/Merged/Merged.qml
blob: 449de07b72edfc23f9a64feb74b5c7b2ff911143 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick 2.15
import QtQuick3D 1.15

Node {
    id: rootNode

    Model {
        id: roomBaseLow_002
        eulerRotation.x: -90
        scale.x: 800
        scale.y: 800
        scale.z: 800
        source: "meshes/roomBaseLow_002.mesh"

        DefaultMaterial {
            id: colormap_material
            diffuseMap: element
            diffuseColor: "#ffffff"

            Texture {
                id: element
                source: "colormap.png"
            }
        }
        materials: [
            colormap_material
        ]
    }
}

/*##^##
Designer {
    D{i:0;active3dScene:0}
}
##^##*/