Uploaded image for project: 'Qt Design Studio'
  1. Qt Design Studio
  2. QDS-14638

The texture is not correctly displayed in both the 2D and 3D views.

    XMLWordPrintable

Details

    • Bug
    • Resolution: Unresolved
    • P2: Important
    • None
    • QDS 4.6.1
    • 3D View
    • None

    Description

      【Overview】

      When specifying a QML component such as Rectangle as the source for a texture, the display does not update correctly in both 2D and 3D views.

       

      【Steps to Reproduce】

      1. Set a Rectangle component as the texture source item.
      2. 2. Assign that texture to the base color of a material.
      3. 3. Apply the material to a model.

      Textures are not displayed correctly in 2D and 3D views (they are displayed during rendering)

      Textures are displayed at some point in 2D, but not immediately after setting.

       

      【Expected Result】

      The texture set as the source item should be correctly displayed in both 2D and 3D views.

       

       

      Rectangle {
          width: Constants.width
          height: Constants.height    color: Constants.backgroundColor    View3D {
              id: view3D
              anchors.fill: parent        environment: sceneEnvironment        SceneEnvironment {
                  id: sceneEnvironment
                  antialiasingMode: SceneEnvironment.MSAA
                  antialiasingQuality: SceneEnvironment.High
              }        Node {
                  id: scene
                  DirectionalLight {
                      id: directionalLight
                      x: 255.038
                      y: 0
                      z: 0
                      eulerRotation.z: 0.00001
                      eulerRotation.y: 21.99319
                      eulerRotation.x: -0
                  }            PerspectiveCamera {
                      id: sceneCamera
                      z: 350
                  }            Model {
                      id: plane
                      source: "#Rectangle"
                      eulerRotation.z: 0
                      eulerRotation.y: -31.2744
                      eulerRotation.x: -32.41562
                      materials: defaultMaterial
                  }            Model {
                      id: plane1
                      x: 0
                      y: -54.644
                      source: "#Rectangle"
                      z: 0
                      materials: defaultMaterial
                  }
              }
          }    Item {
              id: __materialLibrary__
              PrincipledMaterial {
                  id: defaultMaterial
                  baseColorMap: _texture
                  objectName: "Default Material"
                  baseColor: "#ffffff"
              }        Texture {
                  id: _texture
                  objectName: "Texture"
                  sourceItem: rectangleAAA
              }        Rectangle {
                  id: rectangleAAA
                  width: 512
                  height: 512
                  color: "#ff6400"
              }
          }    Text {
              text: qsTr("Hello UntitledProject73")
              anchors.top: parent.top
              anchors.horizontalCenter: parent.horizontalCenter
              anchors.topMargin: 100
              font.family: Constants.font.family
          }
      } 

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            mabadri Mahmoud Badri
            kiyo Kiyokazu Katagishi
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:

              Gerrit Reviews

                There are no open Gerrit changes