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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
import QtQuick
import QtQuick3D
Item {
width: 640
height: 480
function makeThirdReferToStandaloneSourceItem() {
thirdTexture.sourceItem = standaloneSourceItem;
}
function makeThirdReferToExplicitLayerBasedSourceItem() {
thirdTexture.sourceItem = explicitLayerBasedSourceItem;
}
function makeThirdReferToImageSourceItem() {
thirdTexture.sourceItem = imageSourceItem;
}
function makeThirdReferToSemiTransparentSourceItem() {
thirdTexture.sourceItem = semiTransparentSourceItem;
}
function makeSemiTransparentSourceItemSmaller() {
semiTransparentSourceItem.width /= 2;
semiTransparentSourceItem.height /= 2;
}
Item {
id: standaloneSourceItem
visible: false
width: 100; height: 100
Rectangle {
anchors.fill: parent
color: "red"
}
}
Rectangle {
id: explicitLayerBasedSourceItem
layer.enabled: true
visible: false
width: 100; height: 100
color: "gray"
}
Image {
id: imageSourceItem
visible: false
source: "qt_logo_rect.png"
}
Item {
id: semiTransparentSourceItem
visible: false
width: 100; height: 100
Rectangle {
anchors.fill: parent
color: "transparent"
Rectangle {
width: 25; height: 25
anchors.centerIn: parent
color: "blue"
}
}
}
View3D {
anchors.fill: parent
environment: SceneEnvironment {
backgroundMode: SceneEnvironment.Color
clearColor: "black"
}
PerspectiveCamera { z: 600 }
Model {
source: "#Sphere"
x: -200
materials: PrincipledMaterial {
lighting: PrincipledMaterial.NoLighting
baseColorMap: Texture {
sourceItem: standaloneSourceItem
}
}
}
Model {
source: "#Sphere"
materials: PrincipledMaterial {
lighting: PrincipledMaterial.NoLighting
baseColorMap: Texture {
sourceItem: Rectangle {
width: 100; height: 100
color: "green"
}
}
}
}
Model {
source: "#Sphere"
x: 200
materials: DefaultMaterial {
lighting: PrincipledMaterial.NoLighting
diffuseMap: Texture {
id: thirdTexture
sourceItem: Rectangle {
width: 100; height: 100
color: "blue"
}
}
}
}
}
}
|