diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/AnimationTutorial.qmlproject b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/AnimationTutorial.qmlproject new file mode 100644 index 0000000000000000000000000000000000000000..bf2b4213450d1080d53b5fc8ac554b5d4d139c31 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/AnimationTutorial.qmlproject @@ -0,0 +1,104 @@ +import QmlProject + +Project { + mainFile: "content/App.qml" + + /* Include .qml, .js, and image files from current directory and subdirectories */ + QmlFiles { + directory: "content" + } + + QmlFiles { + directory: "imports" + } + + JavaScriptFiles { + directory: "content" + } + + JavaScriptFiles { + directory: "imports" + } + + ImageFiles { + directory: "content" + } + + Files { + filter: "*.conf" + files: ["qtquickcontrols2.conf"] + } + + Files { + filter: "qmldir" + directory: "." + } + + Files { + filter: "*.ttf;*.otf" + } + + Files { + filter: "*.wav;*.mp3" + } + + Files { + filter: "*.mp4" + } + + Files { + filter: "*.glsl;*.glslv;*.glslf;*.vsh;*.fsh;*.vert;*.frag" + } + + Files { + filter: "*.mesh" + directory: "asset_imports" + } + + Files { + filter: "*.qml" + directory: "asset_imports" + } + + Environment { + QT_QUICK_CONTROLS_CONF: "qtquickcontrols2.conf" + QT_AUTO_SCREEN_SCALE_FACTOR: "1" + QT_LOGGING_RULES: "qt.qml.connections=false" + QT_ENABLE_HIGHDPI_SCALING: "0" + /* Useful for debugging + QSG_VISUALIZE=batches + QSG_VISUALIZE=clip + QSG_VISUALIZE=changes + QSG_VISUALIZE=overdraw + */ + } + + qt6Project: true + + /* List of plugin directories passed to QML runtime */ + importPaths: [ "imports", "asset_imports" ] + + /* Required for deployment */ + targetDirectory: "/opt/AnimationTutorial" + + qdsVersion: "3.5" + + quickVersion: "6.3" + + /* If any modules the project imports require widgets (e.g. QtCharts), widgetApp must be true */ + widgetApp: true + + /* args: Specifies command line arguments for qsb tool to generate shaders. + files: Specifies target files for qsb tool. If path is included, it must be relative to this file. + Wildcard '*' can be used in the file name part of the path. + e.g. files: [ "content/shaders/*.vert", "*.frag" ] */ + ShaderTool { + args: "-s --glsl \"100 es,120,150\" --hlsl 50 --msl 12" + files: [ "content/shaders/*" ] + } + + multilanguageSupport: true + supportedLanguages: ["en"] + primaryLanguage: "en" + +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/CMakeLists.txt b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0655ffc4216c9b95745932860fd38d3285da3e26 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/CMakeLists.txt @@ -0,0 +1,24 @@ +cmake_minimum_required(VERSION 3.18) + +project(AnimationTutorialApp LANGUAGES CXX) + +set(CMAKE_INCLUDE_CURRENT_DIR ON) +set(CMAKE_AUTOMOC ON) + +find_package(Qt6 COMPONENTS Gui Qml Quick) +qt_add_executable(AnimationTutorialApp src/main.cpp) + +qt_add_resources(AnimationTutorialApp "configuration" + PREFIX "/" + FILES + qtquickcontrols2.conf +) + +target_link_libraries(AnimationTutorialApp PRIVATE + Qt${QT_VERSION_MAJOR}::Core + Qt${QT_VERSION_MAJOR}::Gui + Qt${QT_VERSION_MAJOR}::Quick + Qt${QT_VERSION_MAJOR}::Qml +) + +include(${CMAKE_CURRENT_SOURCE_DIR}/qmlmodules) diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/CarbonFiberMaterial.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/CarbonFiberMaterial.qml new file mode 100644 index 0000000000000000000000000000000000000000..600e05d40d96cf35d867b67128922022246bcf92 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/CarbonFiberMaterial.qml @@ -0,0 +1,50 @@ +/**************************************************************************** +** +** Copyright (C) 2022 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Design Studio Material Bundle. +** +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 as published by the Free Software +** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +****************************************************************************/ + +import QtQuick +import QtQuick3D + +PrincipledMaterial { + id: carbonfiber + cullMode: Material.NoCulling + normalMap: fabric004_2K_NormalGL + objectName: "Carbon Fiber" + metalness: 0 + baseColor: "#050505" + transmissionFactor: 0 + roughnessChannel: Material.B + specularAmount: 1 + clearcoatAmount: 1 + roughness: 0 + + Texture { + id: fabric004_2K_NormalGL + source: "images/Fabric004_2K_NormalGL.png" + mipFilter: Texture.Linear + generateMipmaps: true + scaleV: 30 + scaleU: 30 + } +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/ChromeMaterial.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/ChromeMaterial.qml new file mode 100644 index 0000000000000000000000000000000000000000..c9aa8a88657336408b5229cb63c184eb5dd7a401 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/ChromeMaterial.qml @@ -0,0 +1,38 @@ +/**************************************************************************** +** +** Copyright (C) 2022 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Design Studio Material Bundle. +** +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 as published by the Free Software +** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +****************************************************************************/ + +import QtQuick +import QtQuick3D + +PrincipledMaterial { + id: chrome + cullMode: Material.NoCulling + specularAmount: 1 + baseColor: "#c5c5c5" + objectName: "Chrome" + metalness: 1 + roughness: 0.05 + clearcoatAmount: 0 +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/CopperMaterial.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/CopperMaterial.qml new file mode 100644 index 0000000000000000000000000000000000000000..fa219413af1ea93495ce4c5d06118580b3805f25 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/CopperMaterial.qml @@ -0,0 +1,46 @@ +/**************************************************************************** +** +** Copyright (C) 2022 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Design Studio Material Bundle. +** +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 as published by the Free Software +** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +****************************************************************************/ + +import QtQuick +import QtQuick3D + +PrincipledMaterial { + id: copper + cullMode: Material.NoCulling + roughnessMap: roughness + baseColor: "#ffbd7f" + objectName: "Copper" + metalness: 1 + roughness: 0.15 + clearcoatAmount: 0 + + Texture { + id: roughness + source: "images/Metal029_2K_Displacement.jpg" + mipFilter: Texture.Linear + scaleV: 5 + scaleU: 5 + } +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/GoldMaterial.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/GoldMaterial.qml new file mode 100644 index 0000000000000000000000000000000000000000..a02c50dc3caaafe0eea470957e97f91851b110c2 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/GoldMaterial.qml @@ -0,0 +1,47 @@ +/**************************************************************************** +** +** Copyright (C) 2022 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Design Studio Material Bundle. +** +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 as published by the Free Software +** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +****************************************************************************/ + +import QtQuick +import QtQuick3D + +PrincipledMaterial { + id: gold + roughnessMap: roughness + cullMode: Material.NoCulling + specularAmount: 1 + baseColor: "#ffe29b" + metalness: 1 + objectName: "Gold" + roughness: 0.05 + clearcoatAmount: 0 + + Texture { + id: roughness + source: "images/Metal029_2K_Displacement.jpg" + mipFilter: Texture.Linear + scaleV: 5 + scaleU: 5 + } +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/_asset_ref.json b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/_asset_ref.json new file mode 100644 index 0000000000000000000000000000000000000000..707dec72f0232db6de8f21c12518162da2563262 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/_asset_ref.json @@ -0,0 +1,21 @@ +{ + "designer/carbonfiber.metainfo": [ + "CarbonFiberMaterial.qml" + ], + "designer/chrome.metainfo": [ + "ChromeMaterial.qml" + ], + "designer/copper.metainfo": [ + "CopperMaterial.qml" + ], + "designer/gold.metainfo": [ + "GoldMaterial.qml" + ], + "images/Fabric004_2K_NormalGL.png": [ + "CarbonFiberMaterial.qml" + ], + "images/Metal029_2K_Displacement.jpg": [ + "CopperMaterial.qml", + "GoldMaterial.qml" + ] +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/carbonfiber.metainfo b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/carbonfiber.metainfo new file mode 100644 index 0000000000000000000000000000000000000000..2ce765f05720bb778115ace16e1fd27b08f8a91c --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/carbonfiber.metainfo @@ -0,0 +1,20 @@ +MetaInfo { + Type { + name: "ComponentBundles.MaterialBundle.CarbonFiberMaterial" + icon: "images/material16.png" + + Hints { + visibleInNavigator: false + canBeDroppedInNavigator: true + canBeDroppedInFormEditor: false + } + + ItemLibraryEntry { + name: "Carbon Fiber" + category: "Synthetic" + libraryIcon: "images/material.png" + version: "1.0" + requiredImport: "ComponentBundles.MaterialBundle" + } + } +} \ No newline at end of file diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/chrome.metainfo b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/chrome.metainfo new file mode 100644 index 0000000000000000000000000000000000000000..3cb6c2d019d290a8df811b60ddb86fa85d688941 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/chrome.metainfo @@ -0,0 +1,20 @@ +MetaInfo { + Type { + name: "ComponentBundles.MaterialBundle.ChromeMaterial" + icon: "images/material16.png" + + Hints { + visibleInNavigator: false + canBeDroppedInNavigator: true + canBeDroppedInFormEditor: false + } + + ItemLibraryEntry { + name: "Chrome" + category: "Metal" + libraryIcon: "images/material.png" + version: "1.0" + requiredImport: "ComponentBundles.MaterialBundle" + } + } +} \ No newline at end of file diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/copper.metainfo b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/copper.metainfo new file mode 100644 index 0000000000000000000000000000000000000000..cd94fe4d472aeaf5043b8f295d3f90d38f72633f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/copper.metainfo @@ -0,0 +1,20 @@ +MetaInfo { + Type { + name: "ComponentBundles.MaterialBundle.CopperMaterial" + icon: "images/material16.png" + + Hints { + visibleInNavigator: false + canBeDroppedInNavigator: true + canBeDroppedInFormEditor: false + } + + ItemLibraryEntry { + name: "Copper" + category: "Metal" + libraryIcon: "images/material.png" + version: "1.0" + requiredImport: "ComponentBundles.MaterialBundle" + } + } +} \ No newline at end of file diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/gold.metainfo b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/gold.metainfo new file mode 100644 index 0000000000000000000000000000000000000000..0d0d475c7222d946b5809f4706b225ffe8d7285b --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/gold.metainfo @@ -0,0 +1,20 @@ +MetaInfo { + Type { + name: "ComponentBundles.MaterialBundle.GoldMaterial" + icon: "images/material16.png" + + Hints { + visibleInNavigator: false + canBeDroppedInNavigator: true + canBeDroppedInFormEditor: false + } + + ItemLibraryEntry { + name: "Gold" + category: "Metal" + libraryIcon: "images/material.png" + version: "1.0" + requiredImport: "ComponentBundles.MaterialBundle" + } + } +} \ No newline at end of file diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/images/material.png b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/images/material.png new file mode 100644 index 0000000000000000000000000000000000000000..e39bda7944e1f33052608ebbc25eaab614483fa6 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/images/material.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1e1674b239730bcec93be0e2b93c665ecc20e57098be637da401abac4ca05b +size 333 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/images/material16.png b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/images/material16.png new file mode 100644 index 0000000000000000000000000000000000000000..4c22ae9169a60c94f43b32e64fd27a6ca2fb0235 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/images/material16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28dc5a98224ba3418bd64baec84ce3bc9e16dede7838f797f085210d90409497 +size 314 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/images/material@2x.png b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/images/material@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..1a8ea3f84cac620fef4f98266c04aa72a13b5772 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/designer/images/material@2x.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8abe051df801948a8768a405ef6c61ecce60bdcc6c6cbfe68e0b715e12ae25a7 +size 621 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/images/Fabric004_2K_NormalGL.png b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/images/Fabric004_2K_NormalGL.png new file mode 100644 index 0000000000000000000000000000000000000000..199f8972b57b8f9876ed22e539367b078bac167b --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/images/Fabric004_2K_NormalGL.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09718e6145d53ed859481074b31dc66efdde7fce162a3f02f3653185758d76a1 +size 2625162 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/images/Metal029_2K_Displacement.jpg b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/images/Metal029_2K_Displacement.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a975fd704f9ee4c19717001f92d3f799dceb4298 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/images/Metal029_2K_Displacement.jpg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b290046d83b5c7ed13b1bae5130162f2ddaf3bdc67cc8a4ff3741db282fceaef +size 3362437 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/qmldir b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/qmldir new file mode 100644 index 0000000000000000000000000000000000000000..5ae2300c24d27afef3d314a9859a0b684d522c60 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/ComponentBundles/MaterialBundle/qmldir @@ -0,0 +1,5 @@ +module ComponentBundles.MaterialBundle +ChromeMaterial 1.0 ChromeMaterial.qml +CopperMaterial 1.0 CopperMaterial.qml +GoldMaterial 1.0 GoldMaterial.qml +CarbonFiberMaterial 1.0 CarbonFiberMaterial.qml diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.hints b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.hints new file mode 100644 index 0000000000000000000000000000000000000000..5ef26ba572cced6f6e2f7763913d34940b7281ce --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.hints @@ -0,0 +1,3 @@ +visibleInNavigator: true +canBeDroppedInFormEditor: false +canBeDroppedInView3D: true diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.qml new file mode 100644 index 0000000000000000000000000000000000000000..708b3c38bcb5306a1f783db3f4ad9577366ada4a --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.qml @@ -0,0 +1,155 @@ +import QtQuick +import QtQuick3D +import QtQuick.Timeline 1.0 +import ComponentBundles.MaterialBundle 1.0 + +Node { + property Item property0: null + scale.z: 100 + scale.y: 100 + scale.x: 100 + // Materials + // end of Materials + + Node { + id: rOOT + eulerRotation.x: 90 + Model { + id: inner_race + source: "meshes/cylinder_004.mesh" + materials: chrome + } + Model { + id: balls + source: "meshes/cube_006.mesh" + materials: copper + } + Model { + id: retainer + source: "meshes/cube_007.mesh" + materials: gold + } + Model { + id: shield_left + source: "meshes/cylinder_005.mesh" + materials: carbonFiber + } + Model { + id: shield_right + source: "meshes/cylinder_006.mesh" + materials: carbonFiber + } + Model { + id: outer_race + source: "meshes/cylinder_007.mesh" + materials: chrome + } + } + + Node { + id: __materialLibrary__ + + PrincipledMaterial { + id: newMaterial + objectName: "New Material" + } + + ChromeMaterial { + id: chrome + objectName: "Chrome" + } + + CopperMaterial { + id: copper + objectName: "Copper" + } + + GoldMaterial { + id: gold + objectName: "Gold" + } + + CarbonFiberMaterial { + id: carbonFiber + objectName: "Carbon Fiber" + } + } + + Timeline { + id: timeline + currentFrame: property0.value + startFrame: 0 + enabled: true + endFrame: 1000 + + KeyframeGroup { + target: inner_race + property: "y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: 0.5 + frame: 1000 + } + } + + KeyframeGroup { + target: balls + property: "y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: 1 + frame: 1000 + } + } + + KeyframeGroup { + target: retainer + property: "y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: 1.5 + frame: 1000 + } + } + + KeyframeGroup { + target: shield_left + property: "y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: 1.8 + frame: 1000 + } + } + + KeyframeGroup { + target: shield_right + property: "y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: -0.3 + frame: 1000 + } + } + } +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/_importdata.json b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/_importdata.json new file mode 100644 index 0000000000000000000000000000000000000000..3dc655f1a83811c8d8106f53e848f440124f2126 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/_importdata.json @@ -0,0 +1,192 @@ +{ + "import_options": { + "calculateTangentSpace": { + "description": "Calculates the tangents and bitangents for the imported meshes.", + "name": "Calculate Tangent Space", + "type": "Boolean", + "value": false + }, + "dropNormals": { + "description": "Drops normals for all faces of all meshes.", + "name": "Drop Normals", + "type": "Boolean", + "value": false + }, + "fbxPreservePivots": { + "description": "Set whether the fbx importer will preserve pivot points (as extra nodes)", + "name": "FBX: Preserve Pivot Points", + "type": "Boolean", + "value": false + }, + "findDegenerates": { + "description": "This step searches all meshes for degenerate primitives and converts them to proper lines or points.", + "name": "Find Degenerates", + "type": "Boolean", + "value": true + }, + "findInstances": { + "description": "This step searches for duplicate meshes and replaces them with references to the first mesh.", + "name": "Find Instances", + "type": "Boolean", + "value": false + }, + "findInvalidData": { + "description": "This step searches all meshes for invalid data, such as zeroed normal vectors or invalid UV coords and removes/fixes them. This is intended to get rid of some common exporter errors.", + "name": "Find Invalid Data", + "type": "Boolean", + "value": true + }, + "fixInfacingNormals": { + "description": "Tries to determine which meshes have normal vectors that are facing inwards and inverts them.", + "name": "Fix Infacing Normals", + "type": "Boolean", + "value": false + }, + "generateLightmapUV": { + "description": "Unwrap mesh to generate lightmap UV channel", + "name": "Generate lightmap UV channel", + "type": "Boolean", + "value": false + }, + "generateMipMaps": { + "description": "Force all imported texture components to generate mip maps for mip map texture filtering", + "name": "Generate Mip Maps", + "type": "Boolean", + "value": true + }, + "generateNormals": { + "description": "Generates normals for all faces of all meshes", + "name": "Generate Normals", + "type": "Boolean", + "value": false + }, + "generateSmoothNormals": { + "description": "Generates smooth normals for all vertices in the mesh.", + "name": "Generate Smooth Normals", + "type": "Boolean", + "value": true + }, + "globalScale": { + "description": "This step will perform a global scale of the model.", + "name": "Enable Global Scale", + "type": "Boolean", + "value": false + }, + "globalScaleValue": { + "conditions": [ + { + "mode": "Equals", + "property": "globalScale", + "value": true + } + ], + "description": "Global Scale factor.", + "name": "Global Scale Value", + "type": "Real", + "value": 1 + }, + "improveCacheLocality": { + "description": "Reorders triangles for better vertex cache locality.", + "name": "Improve Cache Locality", + "type": "Boolean", + "value": true + }, + "joinIdenticalVertices": { + "description": "Identifies and joins identical vertex data sets within all imported meshes.", + "name": "Join Identical Vertices", + "type": "Boolean", + "value": true + }, + "optimizeGraph": { + "description": "A postprocessing step to optimize the scene hierarchy.", + "name": "Optimize Graph", + "type": "Boolean", + "value": false + }, + "optimizeMeshes": { + "description": "A postprocessing step to reduce the number of meshes.", + "name": "Optimize Meshes", + "type": "Boolean", + "value": false + }, + "preTransformVertices": { + "description": "Removes the node graph and pre-transforms all vertices with the local transformation matrices of their nodes.", + "name": "Pre-transform Vertices", + "type": "Boolean", + "value": false + }, + "removeComponentAnimations": { + "description": "Removes any animation components from meshes.", + "name": "Remove Animation Components", + "type": "Boolean", + "value": false + }, + "removeComponentBoneWeights": { + "description": "Removes any bone weights from meshes.", + "name": "Remove Bone Weight components", + "type": "Boolean", + "value": false + }, + "removeComponentColors": { + "description": "Removes any Color components from meshes.", + "name": "Remove Color Components", + "type": "Boolean", + "value": false + }, + "removeComponentNormals": { + "description": "Removes Normal component from meshes.", + "name": "Remove Normal Components", + "type": "Boolean", + "value": false + }, + "removeComponentTangentsAndBitangents": { + "description": "Removes Tangents and Bitangents components from meshes.", + "name": "Remove Tangent Components", + "type": "Boolean", + "value": false + }, + "removeComponentTextures": { + "description": "Removes any embedded texture components from meshes.", + "name": "Remove Texture Components", + "type": "Boolean", + "value": false + }, + "removeComponentUVs": { + "description": "Removes any UV components from meshes.", + "name": "Remove UV Components", + "type": "Boolean", + "value": false + }, + "removeRedundantMaterials": { + "description": "Searches for redundant/unreferenced materials and removes them.", + "name": "Remove Redundant Materials", + "type": "Boolean", + "value": false + }, + "splitLargeMeshes": { + "description": "Splits large meshes into smaller sub-meshes.", + "name": "Split Large Meshes", + "type": "Boolean", + "value": true + }, + "transformUVCoordinates": { + "description": "This step applies per-texture UV transformations and bakes them into stand-alone vtexture coordinate channels.", + "name": "Transform UV Coordinates", + "type": "Boolean", + "value": false + }, + "useBinaryKeyframes": { + "description": "Record keyframe data as binary files", + "name": "Use Binary Keyframes", + "type": "Boolean", + "value": true + }, + "useFloatJointIndices": { + "description": "Stores joint indices as floating point numbers for GLES 2.0.", + "name": "Use Float Joint Indices", + "type": "Boolean", + "value": false + } + }, + "source_scene": "C:/Users/mahonkam/Downloads/BallBearing1.gltf" +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor.png b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor.png new file mode 100644 index 0000000000000000000000000000000000000000..64ed94bf9e8648e0a563832000e96b79627e3570 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aad4b9ad388f2ff5f0bea9d1b0e22132e6eb0490798f1c7c8a214747cef269a +size 132019 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor_2.png b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor_2.png new file mode 100644 index 0000000000000000000000000000000000000000..dfc78fd71b7f0fdcedf1506d5b07489e0e347ebf --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f598dbe57e745bb03edc2b2763abeab471ca5beb69164826709196dfbb24e7 +size 92012 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_Normal.png b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_Normal.png new file mode 100644 index 0000000000000000000000000000000000000000..6e7bf497ecf20d4771bf41742d8188d523569312 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a74302bc5b3c466c0eed87c1a414e25ea8f7c02a7c69b51724d64c3c369c78b +size 1349591 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_OcclusionRoughnessMetallic.png b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_OcclusionRoughnessMetallic.png new file mode 100644 index 0000000000000000000000000000000000000000..91247ac26dcd7e9eed350730f8b913f1c41c9463 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_OcclusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ff67ae04eba81dd223f6be5e5e95b470170c42366e0ae7e9b31c3fb7c3e398 +size 373698 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_006.mesh b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_006.mesh new file mode 100644 index 0000000000000000000000000000000000000000..65dad5b95d9a6840c4c0b9774872504b523fec18 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_006.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f53b4ba6f4e1d8f64b2936775813e713ae13ecb34289e56de8c0c52a83cb9d +size 186912 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_007.mesh b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_007.mesh new file mode 100644 index 0000000000000000000000000000000000000000..607b841931500d535a6c326306c0e201ff86319e --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_007.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5987615879495ffbeeec12dab990201921bfc101913604112a155831eef57c27 +size 245920 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_004.mesh b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_004.mesh new file mode 100644 index 0000000000000000000000000000000000000000..57bbbdff8578c6dbc01ce5b83b5e88462f9f444f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_004.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe4426dd8b899eed5024ef2e60054a5df3ba96823df4659512f67693fbf49de +size 73792 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_005.mesh b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_005.mesh new file mode 100644 index 0000000000000000000000000000000000000000..50d0dae35ef5710d45c25f72915d9ebccd6acb7f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_005.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253f3af64fd24c4df18b142bc8d3d6ede567cf6509b82418327db7abf06bc7a1 +size 19104 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_006.mesh b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_006.mesh new file mode 100644 index 0000000000000000000000000000000000000000..7daa5267675f3779a069f5e936840497013e7b7b --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_006.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff4928105be3d0825751bb24455c8aef1ba26bede68a1ce03ad24f7ff844e73 +size 19104 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_007.mesh b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_007.mesh new file mode 100644 index 0000000000000000000000000000000000000000..213ff4c55a0111774785048a0c9cc5853c69a985 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_007.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf91d7689b22bfd5ab52830f1dc11f43e08a2fc9523554a4bd2b3461a3eabb8f +size 84096 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/qmldir b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/qmldir new file mode 100644 index 0000000000000000000000000000000000000000..d72bf1bde8985b1785af47f3adc555ccd5c4de5f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/qmldir @@ -0,0 +1,2 @@ +module Quick3DAssets.BallBearing1 +BallBearing1 1.0 BallBearing1.qml diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/App.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/App.qml new file mode 100644 index 0000000000000000000000000000000000000000..61a6b482d4abeafce4736a56904aa04469b3d337 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/App.qml @@ -0,0 +1,46 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 6.3 +import QtQuick.Window 6.3 +import AnimationTutorial + +Window { + width: mainScreen.width + height: mainScreen.height + + visible: true + title: "AnimationTutorial" + + Screen01 { + id: mainScreen + } + +} + diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/CMakeLists.txt b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..6811415f249fc4b4bbf3693ab27e1ec17d60f21e --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/CMakeLists.txt @@ -0,0 +1,13 @@ +### This file is automatically generated by Qt Design Studio. +### Do not change + +qt_add_library(content STATIC) +qt6_add_qml_module(content + URI "content" + VERSION 1.0 + QML_FILES + App.qml + Screen01.ui.qml + RESOURCES + fonts/fonts.txt +) diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/Screen01.ui.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/Screen01.ui.qml new file mode 100644 index 0000000000000000000000000000000000000000..aa6af5648d0d614b7ad17559e969e26882ba9215 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/Screen01.ui.qml @@ -0,0 +1,136 @@ + + +/* +This is a UI file (.ui.qml) that is intended to be edited in Qt Design Studio only. +It is supposed to be strictly declarative and only uses a subset of QML. If you edit +this file manually, you might introduce QML code that is not supported by Qt Design Studio. +Check out https://doc.qt.io/qtcreator/creator-quick-ui-forms.html for details on .ui.qml files. +*/ +import QtQuick 6.3 +import QtQuick.Controls 6.3 +import QtQuick3D 6.3 +import AnimationTutorial +import Quick3DAssets.BallBearing1 1.0 +import QtQuick.Timeline 1.0 + +Rectangle { + width: Constants.width + height: Constants.height + + color: Constants.backgroundColor + + + Image { + id: _4KScartchySurface1 + anchors.fill: parent + source: "images/4KScartchySurface.png" + fillMode: Image.Stretch + } + + View3D { + id: view3D + anchors.fill: parent + + environment: sceneEnvironment + + SceneEnvironment { + id: sceneEnvironment + backgroundMode: SceneEnvironment.Transparent + lightProbe: basicLights3_4K + probeExposure: 10 + antialiasingMode: SceneEnvironment.MSAA + antialiasingQuality: SceneEnvironment.High + } + + Node { + id: scene + + PerspectiveCamera { + id: sceneCamera + z: 350 + } + + BallBearing1 { + id: ballBearing1 + property0: slider + } + } + + Switch { + id: switch1 + x: 906 + y: 192 + } + + DirectionalLight { + id: lightDirectional + } + } + + Item { + id: __materialLibrary__ + DefaultMaterial { + id: defaultMaterial + objectName: "Default Material" + diffuseColor: "#4aee45" + } + + Texture { + id: basicLights3_4K + source: "images/BasicLights3_4K.hdr" + } + + Texture { + id: _4KScartchySurface + source: "images/4KScartchySurface.png" + } + } + + Slider { + id: slider + x: 860 + y: 112 + to: 1000 + value: 0 + } + + Timeline { + id: timeline + animations: [ + TimelineAnimation { + id: timelineAnimation + paused: switch1.checked + duration: 7500 + loops: -1 + running: true + to: 1000 + from: 0 + } + ] + startFrame: 0 + enabled: true + endFrame: 1000 + + KeyframeGroup { + target: ballBearing1 + property: "eulerRotation.y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: 360 + frame: 1000 + } + } + } + +} + +/*##^## +Designer { + D{i:0;formeditorZoom:0.5} +} +##^##*/ + diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/fonts/fonts.txt b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/fonts/fonts.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab96122067450783de407d6200171a97ab3849be --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/fonts/fonts.txt @@ -0,0 +1 @@ +Fonts in this folder are loaded automatically. diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/images/4KScartchySurface.png b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/images/4KScartchySurface.png new file mode 100644 index 0000000000000000000000000000000000000000..e9e430f2285566ba939dc9fe79f41bcde987a68f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/images/4KScartchySurface.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317874bc4404cca1ac23296cef1370bb1877208b7282395758d9573e9ba1e036 +size 2730175 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/images/BasicLights3_4K.hdr b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/images/BasicLights3_4K.hdr new file mode 100644 index 0000000000000000000000000000000000000000..4c81075ce08cb20bf791febdff7f8434aff7e55f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/content/images/BasicLights3_4K.hdr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be31c4e725e4fc269726e9ea0f5015065bb5d5de272441815fa62f426e978e58 +size 4982540 diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/CMakeLists.txt b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ebacfef1cd51fe3956d634a68358666ebe12a5 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/CMakeLists.txt @@ -0,0 +1,18 @@ +### This file is automatically generated by Qt Design Studio. +### Do not change + +qt_add_library(AnimationTutorial STATIC) +set_source_files_properties(Constants.qml + PROPERTIES + QT_QML_SINGLETON_TYPE true + ) + +qt6_add_qml_module(AnimationTutorial + URI "AnimationTutorial" + VERSION 1.0 + QML_FILES + Constants.qml + DirectoryFontLoader.qml + EventListModel.qml + EventListSimulator.qml +) diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/Constants.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/Constants.qml new file mode 100644 index 0000000000000000000000000000000000000000..aeefc3a3ae3ae1bb220c3b5b7b63961463da018f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/Constants.qml @@ -0,0 +1,27 @@ +pragma Singleton +import QtQuick 6.3 +import QtQuick.Studio.Application + +QtObject { + readonly property int width: 1920 + readonly property int height: 1080 + + property string relativeFontDirectory: "fonts" + + /* Edit this comment to add your custom font */ + readonly property font font: Qt.font({ + family: Qt.application.font.family, + pixelSize: Qt.application.font.pixelSize + }) + readonly property font largeFont: Qt.font({ + family: Qt.application.font.family, + pixelSize: Qt.application.font.pixelSize * 1.6 + }) + + readonly property color backgroundColor: "#c2c2c2" + + + property StudioApplication application: StudioApplication { + fontPath: Qt.resolvedUrl("../../content/" + relativeFontDirectory) + } +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/DirectoryFontLoader.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/DirectoryFontLoader.qml new file mode 100644 index 0000000000000000000000000000000000000000..69456b58c8e03f15f9fadd3428e40ce24fba4f8d --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/DirectoryFontLoader.qml @@ -0,0 +1,60 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 6.3 +import Qt.labs.folderlistmodel 6.3 + +QtObject { + id: loader + + property url fontDirectory: Qt.resolvedUrl("../../content/" + relativeFontDirectory) + property string relativeFontDirectory: "fonts" + + function loadFont(url) { + var fontLoader = Qt.createQmlObject('import QtQuick 2.15; FontLoader { source: "' + url + '"; }', + loader, + "dynamicFontLoader"); + } + + property FolderListModel folderModel: FolderListModel { + id: folderModel + folder: loader.fontDirectory + nameFilters: [ "*.ttf", "*.otf" ] + showDirs: false + + onStatusChanged: { + if (folderModel.status == FolderListModel.Ready) { + var i + for (i = 0; i < count; i++) { + loadFont(folderModel.get(i, "fileURL")) + } + } + } + } +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/EventListModel.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/EventListModel.qml new file mode 100644 index 0000000000000000000000000000000000000000..9149787e1235892dca53d8e781f940f5602f1e1e --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/EventListModel.qml @@ -0,0 +1,41 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 6.3 + +ListModel { + id: eventListModel + + ListElement { + eventId: "enterPressed" + eventDescription: "Emitted when pressing the enter button" + shortcut: "Return" + parameters: "Enter" + } +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/EventListSimulator.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/EventListSimulator.qml new file mode 100644 index 0000000000000000000000000000000000000000..9e19eb2cdf040be3acdd10e82ed7d00e2fefe8aa --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/EventListSimulator.qml @@ -0,0 +1,51 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 6.3 +import QtQuick.Studio.EventSimulator 1.0 +import QtQuick.Studio.EventSystem 1.0 + +QtObject { + id: simulator + property bool active: true + + property Timer __timer: Timer { + id: timer + interval: 100 + onTriggered: { + EventSimulator.show() + } + } + + Component.onCompleted: { + EventSystem.init(Qt.resolvedUrl("EventListModel.qml")) + if (simulator.active) + timer.start() + } +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/designer/plugin.metainfo b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/designer/plugin.metainfo new file mode 100644 index 0000000000000000000000000000000000000000..1d2fd47840f62098ab29d2d8fbd28dd95e9090df --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/designer/plugin.metainfo @@ -0,0 +1,13 @@ +MetaInfo { + Type { + name: "AnimationTutorial.EventListSimulator" + icon: ":/qtquickplugin/images/item-icon16.png" + + Hints { + visibleInNavigator: true + canBeDroppedInNavigator: true + canBeDroppedInFormEditor: false + canBeDroppedInView3D: false + } + } +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/qmldir b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/qmldir new file mode 100644 index 0000000000000000000000000000000000000000..b4d169e9ba6fb7440fd89e3fcb9b4e74e993262f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/AnimationTutorial/qmldir @@ -0,0 +1,6 @@ +Module AnimationTutorial +singleton Constants 1.0 Constants.qml +EventListSimulator 1.0 EventListSimulator.qml +EventListModel 1.0 EventListModel.qml +DirectoryFontLoader 1.0 DirectoryFontLoader.qml + diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/CMakeLists.txt b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bf3416e7b025876ddad7420ea44144446f99599 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/imports/CMakeLists.txt @@ -0,0 +1,4 @@ +### This file is automatically generated by Qt Design Studio. +### Do not change + +add_subdirectory(AnimationTutorial) diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/main.qml b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/main.qml new file mode 100644 index 0000000000000000000000000000000000000000..2c4f857df3bb33e29428dd8e11f03237db2719c8 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/main.qml @@ -0,0 +1,8 @@ +/* This file is generated and only relevant for integrating the project into a Qt 6 and cmake based +C++ project. */ + +import QtQuick +import content + +App { +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/qmlmodules b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/qmlmodules new file mode 100644 index 0000000000000000000000000000000000000000..fc9d59903a40b4d7b307a201cc45143700624d43 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/qmlmodules @@ -0,0 +1,17 @@ +### This file is automatically generated by Qt Design Studio. +### Do not change + +qt6_add_qml_module(AnimationTutorialApp + URI "Main" + VERSION 1.0 + NO_PLUGIN + QML_FILES main.qml +) + +add_subdirectory(content) +add_subdirectory(imports) + +target_link_libraries(AnimationTutorialApp PRIVATE + contentplugin + AnimationTutorialplugin +) diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/qtquickcontrols2.conf b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/qtquickcontrols2.conf new file mode 100644 index 0000000000000000000000000000000000000000..87a95d01144526e8cea0ad44d529c98e36deb177 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/qtquickcontrols2.conf @@ -0,0 +1,6 @@ +; This file can be edited to change the style of the application +; Read "Qt Quick Controls 2 Configuration File" for details: +; http://doc.qt.io/qt-5/qtquickcontrols2-configuration.html + +[Controls] +Style=Basic diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/src/app_environment.h b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/src/app_environment.h new file mode 100644 index 0000000000000000000000000000000000000000..14098736aa11059aef08fab742b9975501f35207 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/src/app_environment.h @@ -0,0 +1,14 @@ +/* + * This file is automatically generated by Qt Design Studio. + * Do not change. +*/ + +#include <QGuiApplication> + +void set_qt_environment() +{ + qputenv("QT_AUTO_SCREEN_SCALE_FACTOR", "1"); + qputenv("QT_ENABLE_HIGHDPI_SCALING", "0"); + qputenv("QT_LOGGING_RULES", "qt.qml.connections=false"); + qputenv("QT_QUICK_CONTROLS_CONF", ":/qtquickcontrols2.conf"); +} diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/src/import_qml_plugins.h b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/src/import_qml_plugins.h new file mode 100644 index 0000000000000000000000000000000000000000..42fb8ceb3169f5d898c43141a563eaea64c10000 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/src/import_qml_plugins.h @@ -0,0 +1,9 @@ +/* + * This file is automatically generated by Qt Design Studio. + * Do not change. +*/ + +#include <QtQml/qqmlextensionplugin.h> + +Q_IMPORT_QML_PLUGIN(contentPlugin) +Q_IMPORT_QML_PLUGIN(AnimationTutorialPlugin) diff --git a/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/src/main.cpp b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..aaf18173a1a40d58ca085f3bc7fdf890f57fa7ba --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Completed/AnimationTutorial/src/main.cpp @@ -0,0 +1,62 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include <QGuiApplication> +#include <QQmlApplicationEngine> + +#include "app_environment.h" +#include "import_qml_plugins.h" + +int main(int argc, char *argv[]) +{ + set_qt_environment(); + + QGuiApplication app(argc, argv); + + QQmlApplicationEngine engine; + const QUrl url(u"qrc:Main/main.qml"_qs); + QObject::connect( + &engine, &QQmlApplicationEngine::objectCreated, &app, + [url](QObject *obj, const QUrl &objUrl) { + if (!obj && url == objUrl) + QCoreApplication::exit(-1); + }, + Qt::QueuedConnection); + + engine.addImportPath(QCoreApplication::applicationDirPath() + "/qml"); + engine.addImportPath(":/"); + + engine.load(url); + + if (engine.rootObjects().isEmpty()) { + return -1; + } + + return app.exec(); +} diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/AnimationTutorial.qmlproject b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/AnimationTutorial.qmlproject new file mode 100644 index 0000000000000000000000000000000000000000..bf2b4213450d1080d53b5fc8ac554b5d4d139c31 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/AnimationTutorial.qmlproject @@ -0,0 +1,104 @@ +import QmlProject + +Project { + mainFile: "content/App.qml" + + /* Include .qml, .js, and image files from current directory and subdirectories */ + QmlFiles { + directory: "content" + } + + QmlFiles { + directory: "imports" + } + + JavaScriptFiles { + directory: "content" + } + + JavaScriptFiles { + directory: "imports" + } + + ImageFiles { + directory: "content" + } + + Files { + filter: "*.conf" + files: ["qtquickcontrols2.conf"] + } + + Files { + filter: "qmldir" + directory: "." + } + + Files { + filter: "*.ttf;*.otf" + } + + Files { + filter: "*.wav;*.mp3" + } + + Files { + filter: "*.mp4" + } + + Files { + filter: "*.glsl;*.glslv;*.glslf;*.vsh;*.fsh;*.vert;*.frag" + } + + Files { + filter: "*.mesh" + directory: "asset_imports" + } + + Files { + filter: "*.qml" + directory: "asset_imports" + } + + Environment { + QT_QUICK_CONTROLS_CONF: "qtquickcontrols2.conf" + QT_AUTO_SCREEN_SCALE_FACTOR: "1" + QT_LOGGING_RULES: "qt.qml.connections=false" + QT_ENABLE_HIGHDPI_SCALING: "0" + /* Useful for debugging + QSG_VISUALIZE=batches + QSG_VISUALIZE=clip + QSG_VISUALIZE=changes + QSG_VISUALIZE=overdraw + */ + } + + qt6Project: true + + /* List of plugin directories passed to QML runtime */ + importPaths: [ "imports", "asset_imports" ] + + /* Required for deployment */ + targetDirectory: "/opt/AnimationTutorial" + + qdsVersion: "3.5" + + quickVersion: "6.3" + + /* If any modules the project imports require widgets (e.g. QtCharts), widgetApp must be true */ + widgetApp: true + + /* args: Specifies command line arguments for qsb tool to generate shaders. + files: Specifies target files for qsb tool. If path is included, it must be relative to this file. + Wildcard '*' can be used in the file name part of the path. + e.g. files: [ "content/shaders/*.vert", "*.frag" ] */ + ShaderTool { + args: "-s --glsl \"100 es,120,150\" --hlsl 50 --msl 12" + files: [ "content/shaders/*" ] + } + + multilanguageSupport: true + supportedLanguages: ["en"] + primaryLanguage: "en" + +} diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/CMakeLists.txt b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..0655ffc4216c9b95745932860fd38d3285da3e26 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/CMakeLists.txt @@ -0,0 +1,24 @@ +cmake_minimum_required(VERSION 3.18) + +project(AnimationTutorialApp LANGUAGES CXX) + +set(CMAKE_INCLUDE_CURRENT_DIR ON) +set(CMAKE_AUTOMOC ON) + +find_package(Qt6 COMPONENTS Gui Qml Quick) +qt_add_executable(AnimationTutorialApp src/main.cpp) + +qt_add_resources(AnimationTutorialApp "configuration" + PREFIX "/" + FILES + qtquickcontrols2.conf +) + +target_link_libraries(AnimationTutorialApp PRIVATE + Qt${QT_VERSION_MAJOR}::Core + Qt${QT_VERSION_MAJOR}::Gui + Qt${QT_VERSION_MAJOR}::Quick + Qt${QT_VERSION_MAJOR}::Qml +) + +include(${CMAKE_CURRENT_SOURCE_DIR}/qmlmodules) diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.hints b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.hints new file mode 100644 index 0000000000000000000000000000000000000000..5ef26ba572cced6f6e2f7763913d34940b7281ce --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.hints @@ -0,0 +1,3 @@ +visibleInNavigator: true +canBeDroppedInFormEditor: false +canBeDroppedInView3D: true diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.qml b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.qml new file mode 100644 index 0000000000000000000000000000000000000000..f1591bab3c534132db68cb7e876ff2f182dd7ee4 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/BallBearing1.qml @@ -0,0 +1,134 @@ +import QtQuick +import QtQuick3D +import QtQuick.Timeline 1.0 + +Node { + property Item property0: null + scale.z: 100 + scale.y: 100 + scale.x: 100 + // Materials + // end of Materials + + Node { + id: rOOT + eulerRotation.x: 90 + Model { + id: inner_race + source: "meshes/cylinder_004.mesh" + materials: newMaterial + } + Model { + id: balls + source: "meshes/cube_006.mesh" + materials: newMaterial + } + Model { + id: retainer + source: "meshes/cube_007.mesh" + materials: newMaterial + } + Model { + id: shield_left + source: "meshes/cylinder_005.mesh" + materials: newMaterial + } + Model { + id: shield_right + source: "meshes/cylinder_006.mesh" + materials: newMaterial + } + Model { + id: outer_race + source: "meshes/cylinder_007.mesh" + materials: newMaterial + } + } + + Node { + id: __materialLibrary__ + + PrincipledMaterial { + id: newMaterial + objectName: "New Material" + } + } + + Timeline { + id: timeline + currentFrame: property0.value + startFrame: 0 + enabled: true + endFrame: 1000 + + KeyframeGroup { + target: inner_race + property: "y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: 0.5 + frame: 1000 + } + } + + KeyframeGroup { + target: balls + property: "y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: 1 + frame: 1000 + } + } + + KeyframeGroup { + target: retainer + property: "y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: 1.5 + frame: 1000 + } + } + + KeyframeGroup { + target: shield_left + property: "y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: 1.8 + frame: 1000 + } + } + + KeyframeGroup { + target: shield_right + property: "y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: -0.3 + frame: 1000 + } + } + } +} diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/_importdata.json b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/_importdata.json new file mode 100644 index 0000000000000000000000000000000000000000..3dc655f1a83811c8d8106f53e848f440124f2126 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/_importdata.json @@ -0,0 +1,192 @@ +{ + "import_options": { + "calculateTangentSpace": { + "description": "Calculates the tangents and bitangents for the imported meshes.", + "name": "Calculate Tangent Space", + "type": "Boolean", + "value": false + }, + "dropNormals": { + "description": "Drops normals for all faces of all meshes.", + "name": "Drop Normals", + "type": "Boolean", + "value": false + }, + "fbxPreservePivots": { + "description": "Set whether the fbx importer will preserve pivot points (as extra nodes)", + "name": "FBX: Preserve Pivot Points", + "type": "Boolean", + "value": false + }, + "findDegenerates": { + "description": "This step searches all meshes for degenerate primitives and converts them to proper lines or points.", + "name": "Find Degenerates", + "type": "Boolean", + "value": true + }, + "findInstances": { + "description": "This step searches for duplicate meshes and replaces them with references to the first mesh.", + "name": "Find Instances", + "type": "Boolean", + "value": false + }, + "findInvalidData": { + "description": "This step searches all meshes for invalid data, such as zeroed normal vectors or invalid UV coords and removes/fixes them. This is intended to get rid of some common exporter errors.", + "name": "Find Invalid Data", + "type": "Boolean", + "value": true + }, + "fixInfacingNormals": { + "description": "Tries to determine which meshes have normal vectors that are facing inwards and inverts them.", + "name": "Fix Infacing Normals", + "type": "Boolean", + "value": false + }, + "generateLightmapUV": { + "description": "Unwrap mesh to generate lightmap UV channel", + "name": "Generate lightmap UV channel", + "type": "Boolean", + "value": false + }, + "generateMipMaps": { + "description": "Force all imported texture components to generate mip maps for mip map texture filtering", + "name": "Generate Mip Maps", + "type": "Boolean", + "value": true + }, + "generateNormals": { + "description": "Generates normals for all faces of all meshes", + "name": "Generate Normals", + "type": "Boolean", + "value": false + }, + "generateSmoothNormals": { + "description": "Generates smooth normals for all vertices in the mesh.", + "name": "Generate Smooth Normals", + "type": "Boolean", + "value": true + }, + "globalScale": { + "description": "This step will perform a global scale of the model.", + "name": "Enable Global Scale", + "type": "Boolean", + "value": false + }, + "globalScaleValue": { + "conditions": [ + { + "mode": "Equals", + "property": "globalScale", + "value": true + } + ], + "description": "Global Scale factor.", + "name": "Global Scale Value", + "type": "Real", + "value": 1 + }, + "improveCacheLocality": { + "description": "Reorders triangles for better vertex cache locality.", + "name": "Improve Cache Locality", + "type": "Boolean", + "value": true + }, + "joinIdenticalVertices": { + "description": "Identifies and joins identical vertex data sets within all imported meshes.", + "name": "Join Identical Vertices", + "type": "Boolean", + "value": true + }, + "optimizeGraph": { + "description": "A postprocessing step to optimize the scene hierarchy.", + "name": "Optimize Graph", + "type": "Boolean", + "value": false + }, + "optimizeMeshes": { + "description": "A postprocessing step to reduce the number of meshes.", + "name": "Optimize Meshes", + "type": "Boolean", + "value": false + }, + "preTransformVertices": { + "description": "Removes the node graph and pre-transforms all vertices with the local transformation matrices of their nodes.", + "name": "Pre-transform Vertices", + "type": "Boolean", + "value": false + }, + "removeComponentAnimations": { + "description": "Removes any animation components from meshes.", + "name": "Remove Animation Components", + "type": "Boolean", + "value": false + }, + "removeComponentBoneWeights": { + "description": "Removes any bone weights from meshes.", + "name": "Remove Bone Weight components", + "type": "Boolean", + "value": false + }, + "removeComponentColors": { + "description": "Removes any Color components from meshes.", + "name": "Remove Color Components", + "type": "Boolean", + "value": false + }, + "removeComponentNormals": { + "description": "Removes Normal component from meshes.", + "name": "Remove Normal Components", + "type": "Boolean", + "value": false + }, + "removeComponentTangentsAndBitangents": { + "description": "Removes Tangents and Bitangents components from meshes.", + "name": "Remove Tangent Components", + "type": "Boolean", + "value": false + }, + "removeComponentTextures": { + "description": "Removes any embedded texture components from meshes.", + "name": "Remove Texture Components", + "type": "Boolean", + "value": false + }, + "removeComponentUVs": { + "description": "Removes any UV components from meshes.", + "name": "Remove UV Components", + "type": "Boolean", + "value": false + }, + "removeRedundantMaterials": { + "description": "Searches for redundant/unreferenced materials and removes them.", + "name": "Remove Redundant Materials", + "type": "Boolean", + "value": false + }, + "splitLargeMeshes": { + "description": "Splits large meshes into smaller sub-meshes.", + "name": "Split Large Meshes", + "type": "Boolean", + "value": true + }, + "transformUVCoordinates": { + "description": "This step applies per-texture UV transformations and bakes them into stand-alone vtexture coordinate channels.", + "name": "Transform UV Coordinates", + "type": "Boolean", + "value": false + }, + "useBinaryKeyframes": { + "description": "Record keyframe data as binary files", + "name": "Use Binary Keyframes", + "type": "Boolean", + "value": true + }, + "useFloatJointIndices": { + "description": "Stores joint indices as floating point numbers for GLES 2.0.", + "name": "Use Float Joint Indices", + "type": "Boolean", + "value": false + } + }, + "source_scene": "C:/Users/mahonkam/Downloads/BallBearing1.gltf" +} diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor.png b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor.png new file mode 100644 index 0000000000000000000000000000000000000000..64ed94bf9e8648e0a563832000e96b79627e3570 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aad4b9ad388f2ff5f0bea9d1b0e22132e6eb0490798f1c7c8a214747cef269a +size 132019 diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor_2.png b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor_2.png new file mode 100644 index 0000000000000000000000000000000000000000..dfc78fd71b7f0fdcedf1506d5b07489e0e347ebf --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_BaseColor_2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28f598dbe57e745bb03edc2b2763abeab471ca5beb69164826709196dfbb24e7 +size 92012 diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_Normal.png b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_Normal.png new file mode 100644 index 0000000000000000000000000000000000000000..6e7bf497ecf20d4771bf41742d8188d523569312 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_Normal.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a74302bc5b3c466c0eed87c1a414e25ea8f7c02a7c69b51724d64c3c369c78b +size 1349591 diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_OcclusionRoughnessMetallic.png b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_OcclusionRoughnessMetallic.png new file mode 100644 index 0000000000000000000000000000000000000000..91247ac26dcd7e9eed350730f8b913f1c41c9463 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/maps/BallBearing_BallBearing_OcclusionRoughnessMetallic.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15ff67ae04eba81dd223f6be5e5e95b470170c42366e0ae7e9b31c3fb7c3e398 +size 373698 diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_006.mesh b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_006.mesh new file mode 100644 index 0000000000000000000000000000000000000000..65dad5b95d9a6840c4c0b9774872504b523fec18 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_006.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f53b4ba6f4e1d8f64b2936775813e713ae13ecb34289e56de8c0c52a83cb9d +size 186912 diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_007.mesh b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_007.mesh new file mode 100644 index 0000000000000000000000000000000000000000..607b841931500d535a6c326306c0e201ff86319e --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cube_007.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5987615879495ffbeeec12dab990201921bfc101913604112a155831eef57c27 +size 245920 diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_004.mesh b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_004.mesh new file mode 100644 index 0000000000000000000000000000000000000000..57bbbdff8578c6dbc01ce5b83b5e88462f9f444f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_004.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fe4426dd8b899eed5024ef2e60054a5df3ba96823df4659512f67693fbf49de +size 73792 diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_005.mesh b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_005.mesh new file mode 100644 index 0000000000000000000000000000000000000000..50d0dae35ef5710d45c25f72915d9ebccd6acb7f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_005.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:253f3af64fd24c4df18b142bc8d3d6ede567cf6509b82418327db7abf06bc7a1 +size 19104 diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_006.mesh b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_006.mesh new file mode 100644 index 0000000000000000000000000000000000000000..7daa5267675f3779a069f5e936840497013e7b7b --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_006.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff4928105be3d0825751bb24455c8aef1ba26bede68a1ce03ad24f7ff844e73 +size 19104 diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_007.mesh b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_007.mesh new file mode 100644 index 0000000000000000000000000000000000000000..213ff4c55a0111774785048a0c9cc5853c69a985 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/meshes/cylinder_007.mesh @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf91d7689b22bfd5ab52830f1dc11f43e08a2fc9523554a4bd2b3461a3eabb8f +size 84096 diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/qmldir b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/qmldir new file mode 100644 index 0000000000000000000000000000000000000000..d72bf1bde8985b1785af47f3adc555ccd5c4de5f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/asset_imports/Quick3DAssets/BallBearing1/qmldir @@ -0,0 +1,2 @@ +module Quick3DAssets.BallBearing1 +BallBearing1 1.0 BallBearing1.qml diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/App.qml b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/App.qml new file mode 100644 index 0000000000000000000000000000000000000000..61a6b482d4abeafce4736a56904aa04469b3d337 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/App.qml @@ -0,0 +1,46 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 6.3 +import QtQuick.Window 6.3 +import AnimationTutorial + +Window { + width: mainScreen.width + height: mainScreen.height + + visible: true + title: "AnimationTutorial" + + Screen01 { + id: mainScreen + } + +} + diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/CMakeLists.txt b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..6811415f249fc4b4bbf3693ab27e1ec17d60f21e --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/CMakeLists.txt @@ -0,0 +1,13 @@ +### This file is automatically generated by Qt Design Studio. +### Do not change + +qt_add_library(content STATIC) +qt6_add_qml_module(content + URI "content" + VERSION 1.0 + QML_FILES + App.qml + Screen01.ui.qml + RESOURCES + fonts/fonts.txt +) diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/Screen01.ui.qml b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/Screen01.ui.qml new file mode 100644 index 0000000000000000000000000000000000000000..27c5d84cb2268f8c5708cd75d421be7641eb6e6d --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/Screen01.ui.qml @@ -0,0 +1,115 @@ + + +/* +This is a UI file (.ui.qml) that is intended to be edited in Qt Design Studio only. +It is supposed to be strictly declarative and only uses a subset of QML. If you edit +this file manually, you might introduce QML code that is not supported by Qt Design Studio. +Check out https://doc.qt.io/qtcreator/creator-quick-ui-forms.html for details on .ui.qml files. +*/ +import QtQuick 6.3 +import QtQuick.Controls 6.3 +import QtQuick3D 6.3 +import AnimationTutorial +import Quick3DAssets.BallBearing1 1.0 +import QtQuick.Timeline 1.0 + +Rectangle { + width: Constants.width + height: Constants.height + + color: Constants.backgroundColor + + View3D { + id: view3D + anchors.fill: parent + + environment: sceneEnvironment + + SceneEnvironment { + id: sceneEnvironment + probeExposure: 5 + antialiasingMode: SceneEnvironment.MSAA + antialiasingQuality: SceneEnvironment.High + } + + Node { + id: scene + + PerspectiveCamera { + id: sceneCamera + z: 350 + } + + BallBearing1 { + id: ballBearing1 + property0: slider + } + } + + Switch { + id: switch1 + x: 906 + y: 192 + } + + DirectionalLight { + id: lightDirectional + } + } + + Item { + id: __materialLibrary__ + DefaultMaterial { + id: defaultMaterial + objectName: "Default Material" + diffuseColor: "#4aee45" + } + } + + Slider { + id: slider + x: 860 + y: 112 + to: 1000 + value: 0 + } + + Timeline { + id: timeline + animations: [ + TimelineAnimation { + id: timelineAnimation + paused: switch1.checked + duration: 7500 + loops: -1 + running: true + to: 1000 + from: 0 + } + ] + startFrame: 0 + enabled: true + endFrame: 1000 + + KeyframeGroup { + target: ballBearing1 + property: "eulerRotation.y" + Keyframe { + value: 0 + frame: 0 + } + + Keyframe { + value: 360 + frame: 1000 + } + } + } +} + +/*##^## +Designer { + D{i:0;formeditorZoom:0.5} +} +##^##*/ + diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/fonts/fonts.txt b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/fonts/fonts.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab96122067450783de407d6200171a97ab3849be --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/content/fonts/fonts.txt @@ -0,0 +1 @@ +Fonts in this folder are loaded automatically. diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/CMakeLists.txt b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..f5ebacfef1cd51fe3956d634a68358666ebe12a5 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/CMakeLists.txt @@ -0,0 +1,18 @@ +### This file is automatically generated by Qt Design Studio. +### Do not change + +qt_add_library(AnimationTutorial STATIC) +set_source_files_properties(Constants.qml + PROPERTIES + QT_QML_SINGLETON_TYPE true + ) + +qt6_add_qml_module(AnimationTutorial + URI "AnimationTutorial" + VERSION 1.0 + QML_FILES + Constants.qml + DirectoryFontLoader.qml + EventListModel.qml + EventListSimulator.qml +) diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/Constants.qml b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/Constants.qml new file mode 100644 index 0000000000000000000000000000000000000000..aeefc3a3ae3ae1bb220c3b5b7b63961463da018f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/Constants.qml @@ -0,0 +1,27 @@ +pragma Singleton +import QtQuick 6.3 +import QtQuick.Studio.Application + +QtObject { + readonly property int width: 1920 + readonly property int height: 1080 + + property string relativeFontDirectory: "fonts" + + /* Edit this comment to add your custom font */ + readonly property font font: Qt.font({ + family: Qt.application.font.family, + pixelSize: Qt.application.font.pixelSize + }) + readonly property font largeFont: Qt.font({ + family: Qt.application.font.family, + pixelSize: Qt.application.font.pixelSize * 1.6 + }) + + readonly property color backgroundColor: "#c2c2c2" + + + property StudioApplication application: StudioApplication { + fontPath: Qt.resolvedUrl("../../content/" + relativeFontDirectory) + } +} diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/DirectoryFontLoader.qml b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/DirectoryFontLoader.qml new file mode 100644 index 0000000000000000000000000000000000000000..69456b58c8e03f15f9fadd3428e40ce24fba4f8d --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/DirectoryFontLoader.qml @@ -0,0 +1,60 @@ +/**************************************************************************** +** +** Copyright (C) 2019 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 6.3 +import Qt.labs.folderlistmodel 6.3 + +QtObject { + id: loader + + property url fontDirectory: Qt.resolvedUrl("../../content/" + relativeFontDirectory) + property string relativeFontDirectory: "fonts" + + function loadFont(url) { + var fontLoader = Qt.createQmlObject('import QtQuick 2.15; FontLoader { source: "' + url + '"; }', + loader, + "dynamicFontLoader"); + } + + property FolderListModel folderModel: FolderListModel { + id: folderModel + folder: loader.fontDirectory + nameFilters: [ "*.ttf", "*.otf" ] + showDirs: false + + onStatusChanged: { + if (folderModel.status == FolderListModel.Ready) { + var i + for (i = 0; i < count; i++) { + loadFont(folderModel.get(i, "fileURL")) + } + } + } + } +} diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/EventListModel.qml b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/EventListModel.qml new file mode 100644 index 0000000000000000000000000000000000000000..9149787e1235892dca53d8e781f940f5602f1e1e --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/EventListModel.qml @@ -0,0 +1,41 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 6.3 + +ListModel { + id: eventListModel + + ListElement { + eventId: "enterPressed" + eventDescription: "Emitted when pressing the enter button" + shortcut: "Return" + parameters: "Enter" + } +} diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/EventListSimulator.qml b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/EventListSimulator.qml new file mode 100644 index 0000000000000000000000000000000000000000..9e19eb2cdf040be3acdd10e82ed7d00e2fefe8aa --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/EventListSimulator.qml @@ -0,0 +1,51 @@ +/**************************************************************************** +** +** Copyright (C) 2018 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Designer Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 6.3 +import QtQuick.Studio.EventSimulator 1.0 +import QtQuick.Studio.EventSystem 1.0 + +QtObject { + id: simulator + property bool active: true + + property Timer __timer: Timer { + id: timer + interval: 100 + onTriggered: { + EventSimulator.show() + } + } + + Component.onCompleted: { + EventSystem.init(Qt.resolvedUrl("EventListModel.qml")) + if (simulator.active) + timer.start() + } +} diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/designer/plugin.metainfo b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/designer/plugin.metainfo new file mode 100644 index 0000000000000000000000000000000000000000..1d2fd47840f62098ab29d2d8fbd28dd95e9090df --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/designer/plugin.metainfo @@ -0,0 +1,13 @@ +MetaInfo { + Type { + name: "AnimationTutorial.EventListSimulator" + icon: ":/qtquickplugin/images/item-icon16.png" + + Hints { + visibleInNavigator: true + canBeDroppedInNavigator: true + canBeDroppedInFormEditor: false + canBeDroppedInView3D: false + } + } +} diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/qmldir b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/qmldir new file mode 100644 index 0000000000000000000000000000000000000000..b4d169e9ba6fb7440fd89e3fcb9b4e74e993262f --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/AnimationTutorial/qmldir @@ -0,0 +1,6 @@ +Module AnimationTutorial +singleton Constants 1.0 Constants.qml +EventListSimulator 1.0 EventListSimulator.qml +EventListModel 1.0 EventListModel.qml +DirectoryFontLoader 1.0 DirectoryFontLoader.qml + diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/CMakeLists.txt b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..6bf3416e7b025876ddad7420ea44144446f99599 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/imports/CMakeLists.txt @@ -0,0 +1,4 @@ +### This file is automatically generated by Qt Design Studio. +### Do not change + +add_subdirectory(AnimationTutorial) diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/main.qml b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/main.qml new file mode 100644 index 0000000000000000000000000000000000000000..2c4f857df3bb33e29428dd8e11f03237db2719c8 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/main.qml @@ -0,0 +1,8 @@ +/* This file is generated and only relevant for integrating the project into a Qt 6 and cmake based +C++ project. */ + +import QtQuick +import content + +App { +} diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/qmlmodules b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/qmlmodules new file mode 100644 index 0000000000000000000000000000000000000000..fc9d59903a40b4d7b307a201cc45143700624d43 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/qmlmodules @@ -0,0 +1,17 @@ +### This file is automatically generated by Qt Design Studio. +### Do not change + +qt6_add_qml_module(AnimationTutorialApp + URI "Main" + VERSION 1.0 + NO_PLUGIN + QML_FILES main.qml +) + +add_subdirectory(content) +add_subdirectory(imports) + +target_link_libraries(AnimationTutorialApp PRIVATE + contentplugin + AnimationTutorialplugin +) diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/qtquickcontrols2.conf b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/qtquickcontrols2.conf new file mode 100644 index 0000000000000000000000000000000000000000..87a95d01144526e8cea0ad44d529c98e36deb177 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/qtquickcontrols2.conf @@ -0,0 +1,6 @@ +; This file can be edited to change the style of the application +; Read "Qt Quick Controls 2 Configuration File" for details: +; http://doc.qt.io/qt-5/qtquickcontrols2-configuration.html + +[Controls] +Style=Basic diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/src/app_environment.h b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/src/app_environment.h new file mode 100644 index 0000000000000000000000000000000000000000..14098736aa11059aef08fab742b9975501f35207 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/src/app_environment.h @@ -0,0 +1,14 @@ +/* + * This file is automatically generated by Qt Design Studio. + * Do not change. +*/ + +#include <QGuiApplication> + +void set_qt_environment() +{ + qputenv("QT_AUTO_SCREEN_SCALE_FACTOR", "1"); + qputenv("QT_ENABLE_HIGHDPI_SCALING", "0"); + qputenv("QT_LOGGING_RULES", "qt.qml.connections=false"); + qputenv("QT_QUICK_CONTROLS_CONF", ":/qtquickcontrols2.conf"); +} diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/src/import_qml_plugins.h b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/src/import_qml_plugins.h new file mode 100644 index 0000000000000000000000000000000000000000..42fb8ceb3169f5d898c43141a563eaea64c10000 --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/src/import_qml_plugins.h @@ -0,0 +1,9 @@ +/* + * This file is automatically generated by Qt Design Studio. + * Do not change. +*/ + +#include <QtQml/qqmlextensionplugin.h> + +Q_IMPORT_QML_PLUGIN(contentPlugin) +Q_IMPORT_QML_PLUGIN(AnimationTutorialPlugin) diff --git a/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/src/main.cpp b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/src/main.cpp new file mode 100644 index 0000000000000000000000000000000000000000..aaf18173a1a40d58ca085f3bc7fdf890f57fa7ba --- /dev/null +++ b/tutorial projects/3Dscene tutorial/Start/AnimationTutorial/src/main.cpp @@ -0,0 +1,62 @@ +/**************************************************************************** +** +** Copyright (C) 2021 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of Qt Quick Studio Components. +** +** $QT_BEGIN_LICENSE:GPL$ +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU General Public License Usage +** Alternatively, this file may be used under the terms of the GNU +** General Public License version 3 or (at your option) any later version +** approved by the KDE Free Qt Foundation. The licenses are as published by +** the Free Software Foundation and appearing in the file LICENSE.GPL3 +** included in the packaging of this file. Please review the following +** information to ensure the GNU General Public License requirements will +** be met: https://www.gnu.org/licenses/gpl-3.0.html. +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include <QGuiApplication> +#include <QQmlApplicationEngine> + +#include "app_environment.h" +#include "import_qml_plugins.h" + +int main(int argc, char *argv[]) +{ + set_qt_environment(); + + QGuiApplication app(argc, argv); + + QQmlApplicationEngine engine; + const QUrl url(u"qrc:Main/main.qml"_qs); + QObject::connect( + &engine, &QQmlApplicationEngine::objectCreated, &app, + [url](QObject *obj, const QUrl &objUrl) { + if (!obj && url == objUrl) + QCoreApplication::exit(-1); + }, + Qt::QueuedConnection); + + engine.addImportPath(QCoreApplication::applicationDirPath() + "/qml"); + engine.addImportPath(":/"); + + engine.load(url); + + if (engine.rootObjects().isEmpty()) { + return -1; + } + + return app.exec(); +}