Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

CarChallenge 3D Demo

 import QtQuick 2.0
 import Felgo 3.0

 MenuScreenBase {
   id: menuCamera

   property alias itemEditor: itemEditor

   Item {
     id: menuContainer
     // make the container a bit bigger than the editor
     width: itemEditor.width*1.1
     height: itemEditor.height*1.1
     anchors.horizontalCenter: parent.horizontalCenter
     anchors.bottom: parent.bottom
     anchors.bottomMargin: 5
     Behavior on opacity{NumberAnimation{}}
     Rectangle {
       anchors.fill: parent
       color: "black"
       opacity: 0.7
     }

     // the ItemEditor can be used to edit the camera settings at runtime on mobile devices with no physical keyboard
     ItemEditor {
       id: itemEditor
       anchors.centerIn: parent
       width: 200
       height: 280
       //anchors.right: parent.right

       onPropertyDelegatePressed: {
         console.debug("ItemEditor sliderPressed:", propertyName)
         menuContainer.opacity = 0.3
       }
       onPropertyDelegateReleased: {
         menuContainer.opacity = 1
       }
     }

Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded