Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. QML and Qt Quick
  4. Qml 3D Camera customization
Qt 6.11 is out! See what's new in the release blog

Qml 3D Camera customization

Scheduled Pinned Locked Moved Unsolved QML and Qt Quick
1 Posts 1 Posters 496 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • code_genC Offline
    code_genC Offline
    code_gen
    wrote on last edited by
    #1

    Hello, guys.

    Here is the BaseCamera.qml file code from official wireframe example:

    import Qt3D.Core 2.0
    import Qt3D.Render 2.0

    Camera {
    id: mainCamera
    projectionType: CameraLens.PerspectiveProjection
    fieldOfView: 22.5
    aspectRatio: _window.width / _window.height
    nearPlane: 0.01
    farPlane: 1000.0
    viewCenter: Qt.vector3d( 0.0, 0.0, 0.0 )
    upVector: Qt.vector3d( 0.0, 1.0, 0.0 )
    }

    The question: is there a way to increase camera`s viewing speed when pressing keyboard direction buttons?

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved