| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864 |
- MetaInfo {
- Type {
- name: "QtQuick3D.PerspectiveCamera"
- icon: "images/camera16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- }
- ItemLibraryEntry {
- name: "Perspective Camera"
- category: "Cameras"
- libraryIcon: "images/camera.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "z"; type: "int"; value: 500; }
- toolTip: qsTr("A camera that uses perspective projection.")
- }
- }
- Type {
- name: "QtQuick3D.OrthographicCamera"
- icon: "images/camera16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- }
- ItemLibraryEntry {
- name: "Orthographic Camera"
- category: "Cameras"
- libraryIcon: "images/camera.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "z"; type: "int"; value: 500; }
- toolTip: qsTr("A parallel projection Camera, in which an object's perceived scale is unaffected by its distance from the Camera.")
- }
- }
- Type {
- name: "QtQuick3D.FrustumCamera"
- icon: "images/camera16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- }
- ItemLibraryEntry {
- name: "Frustum Camera"
- category: "Cameras"
- libraryIcon: "images/camera.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "z"; type: "int"; value: 500; }
- toolTip: qsTr("A perspective camera with a custom frustum.")
- }
- }
- Type {
- name: "QtQuick3D.CustomCamera"
- icon: "images/camera16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- }
- ItemLibraryEntry {
- name: "Custom Camera"
- category: "Cameras"
- libraryIcon: "images/camera.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "z"; type: "int"; value: 500; }
- toolTip: qsTr("A camera with a custom projection matrix.")
- }
- }
- Type {
- name: "QtQuick3D.CustomMaterial"
- icon: "images/custommaterial16.png"
- Hints {
- visibleInNavigator: false
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Custom Material"
- category: "Materials"
- libraryIcon: "images/custommaterial.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "fragmentShader"; type: "QUrl"; value: "custom_material_default_shader.frag"; }
- ExtraFile { source: "source/custom_material_default_shader.frag" }
- toolTip: qsTr("A material with customizable vertex and fragment shaders.")
- }
- }
- Type {
- name: "QtQuick3D.DefaultMaterial"
- icon: "images/material16.png"
- Hints {
- visibleInNavigator: false
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Default Material"
- category: "Materials"
- libraryIcon: "images/material.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "diffuseColor"; type: "color"; value: "#4aee45"; }
- toolTip: qsTr("A material with a specular/glossiness properties.")
- }
- }
- Type {
- name: "QtQuick3D.PrincipledMaterial"
- icon: "images/material16.png"
- Hints {
- visibleInNavigator: false
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Principled Material"
- category: "Materials"
- libraryIcon: "images/material.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "baseColor"; type: "color"; value: "#4aee45"; }
- toolTip: qsTr("A material with a PBR metal/roughness properties.")
- }
- }
- Type {
- name: "QtQuick3D.SpecularGlossyMaterial"
- icon: "images/material16.png"
- Hints {
- visibleInNavigator: false
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Specular Glossy"
- category: "Materials"
- libraryIcon: "images/material.png"
- version: "6.4"
- requiredImport: "QtQuick3D"
- Property { name: "albedoColor"; type: "color"; value: "#4aee45"; }
- Property { name: "specularColor"; type: "color"; value: "#000000"; }
- toolTip: qsTr("A material with a PBR specular/glossiness properties.")
- }
- }
- Type {
- name: "QtQuick3D.Texture"
- icon: "images/texture16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeContainer: false
- }
- ItemLibraryEntry {
- name: "Texture"
- category: "Textures"
- libraryIcon: "images/texture.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Defines a texture for 3D objects.")
- }
- }
- Type {
- name: "QtQuick3D.CubeMapTexture"
- icon: "images/cubemaptexture16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeContainer: false
- }
- ItemLibraryEntry {
- name: "Cube Map Texture"
- category: "Textures"
- libraryIcon: "images/cubemaptexture.png"
- version: "6.4"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Defines a cube map texture for 3D objects.")
- }
- }
- Type {
- name: "QtQuick3D.DirectionalLight"
- icon: "images/lightdirectional16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- }
- ItemLibraryEntry {
- name: "Directional Light"
- category: "Lights"
- libraryIcon: "images/lightdirectional.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("A light similar to sunlight. It emits light in one direction from an infinitely far away source.")
- }
- }
- Type {
- name: "QtQuick3D.PointLight"
- icon: "images/lightpoint16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- }
- ItemLibraryEntry {
- name: "Point Light"
- category: "Lights"
- libraryIcon: "images/lightpoint.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("A light similar to a light bulb. It emits light equally in all directions from a central source.")
- }
- }
- Type {
- name: "QtQuick3D.SpotLight"
- icon: "images/lightspot16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- }
- ItemLibraryEntry {
- name: "Spotlight"
- category: "Lights"
- libraryIcon: "images/lightspot.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("A spotlight emits light in one direction in a cone shape.")
- }
- }
- Type {
- name: "QtQuick3D.Model"
- icon: "images/model16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- visibleNonDefaultProperties: "materials"
- }
- ItemLibraryEntry {
- name: "Model"
- category: "Components"
- libraryIcon: "images/group.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Allows you to load 3D mesh data.")
- }
- }
- Type {
- name: "QtQuick3D.Model"
- icon: "images/model16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- visibleNonDefaultProperties: "materials"
- }
- ItemLibraryEntry {
- name: "Cube"
- category: "Primitives"
- libraryIcon: "images/cube.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "source"; type: "QUrl"; value: "#Cube"; }
- toolTip: qsTr("A cube model.")
- }
- }
- Type {
- name: "QtQuick3D.Model"
- icon: "images/model16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- visibleNonDefaultProperties: "materials"
- }
- ItemLibraryEntry {
- name: "Sphere"
- category: "Primitives"
- libraryIcon: "images/sphere.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "source"; type: "QUrl"; value: "#Sphere"; }
- toolTip: qsTr("A sphere model.")
- }
- }
- Type {
- name: "QtQuick3D.Model"
- icon: "images/model16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- visibleNonDefaultProperties: "materials"
- }
- ItemLibraryEntry {
- name: "Cylinder"
- category: "Primitives"
- libraryIcon: "images/cylinder.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "source"; type: "QUrl"; value: "#Cylinder"; }
- toolTip: qsTr("A cylinder model.")
- }
- }
- Type {
- name: "QtQuick3D.Model"
- icon: "images/model16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- visibleNonDefaultProperties: "materials"
- }
- ItemLibraryEntry {
- name: "Plane"
- category: "Primitives"
- libraryIcon: "images/plane.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "source"; type: "QUrl"; value: "#Rectangle"; }
- toolTip: qsTr("A plane model.")
- }
- }
- Type {
- name: "QtQuick3D.Model"
- icon: "images/model16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- visibleNonDefaultProperties: "materials"
- }
- ItemLibraryEntry {
- name: "Cone"
- category: "Primitives"
- libraryIcon: "images/cone.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- Property { name: "source"; type: "QUrl"; value: "#Cone"; }
- toolTip: qsTr("A cone model.")
- }
- }
- Type {
- name: "QtQuick3D.Node"
- icon: "images/group16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- }
- ItemLibraryEntry {
- name: "Node"
- category: "Components"
- libraryIcon: "images/group.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("A container to keep several QtQuick3D components or scenes together.")
- }
- }
- Type {
- name: "QtQuick3D.SceneEnvironment"
- icon: "images/scene16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Scene Environment"
- category: "Components"
- libraryIcon: "images/scene.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Configures the render settings for a scene.")
- }
- }
- Type {
- name: "QtQuick3D.View3D"
- icon: "images/view3D16.png"
- ItemLibraryEntry {
- name: "View3D"
- category: "Items"
- libraryIcon: "images/view3D.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- QmlSource { source: "./source/view3D_template.qml" }
- toolTip: qsTr("A 2D surface where a 3D scene can be rendered.")
- }
- }
- Type {
- name: "QtQuick3D.Shader"
- icon: "images/shaderutil16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Shader"
- category: "Custom Shader Utils"
- libraryIcon: "images/shaderutil.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("A container for keeping the vertex or fragment shader codes to be used by post-processing effect.")
- }
- }
- Type {
- name: "QtQuick3D.TextureInput"
- icon: "images/shaderutil16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Texture Input"
- category: "Custom Shader Utils"
- libraryIcon: "images/shaderutil.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Specifies a texture that gets exposed to the shader.")
- }
- }
- Type {
- name: "QtQuick3D.Pass"
- icon: "images/shaderutil16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Pass"
- category: "Custom Shader Utils"
- libraryIcon: "images/shaderutil.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Holds a set of actions combining a list of executable render commands, an output buffer, and a list of shaders to use for rendering effects.")
- }
- }
- Type {
- name: "QtQuick3D.BufferInput"
- icon: "images/shadercommand16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Buffer Input"
- category: "Custom Shader Utils"
- libraryIcon: "images/shadercommand.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("A command that gets added to the list of commands in the Pass of an Effect when executed.")
- }
- }
- Type {
- name: "QtQuick3D.Buffer"
- icon: "images/shaderutil16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Buffer"
- category: "Custom Shader Utils"
- libraryIcon: "images/shaderutil.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Creates or references a color buffer to be used for a pass of an Effect.")
- }
- }
- Type {
- name: "QtQuick3D.SetUniformValue"
- icon: "images/shadercommand16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Set Uniform Value"
- category: "Custom Shader Utils"
- libraryIcon: "images/shadercommand.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("A value that would be set when a single pass actions takes place.")
- }
- }
- Type {
- name: "QtQuick3D.Effect"
- icon: "images/effect16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Effect"
- category: "Components"
- libraryIcon: "images/effect.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- QmlSource { source: "./source/effect_template.qml" }
- ExtraFile { source: "./source/effect_default_shader.frag" }
- toolTip: qsTr("A method to allow the user to implement their post-processing effects on entire View3D.")
- }
- }
- Type {
- name: "QtQuick3D.Repeater3D"
- icon: "images/repeater3d16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- }
- ItemLibraryEntry {
- name: "3D Repeater"
- category: "Components"
- libraryIcon: "images/repeater3d.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Dynamically creates several copies of the same 3D object.")
- }
- }
- Type {
- name: "QtQuick3D.Loader3D"
- icon: "images/loader3d16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- }
- ItemLibraryEntry {
- name: "Loader3D"
- category: "Components"
- libraryIcon: "images/loader3d.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Allows you to load 3D components dynamically.")
- }
- }
- Type {
- name: "QtQuick3D.Skeleton"
- icon: "images/skeleton16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Skeleton"
- category: "Components"
- libraryIcon: "images/skeleton.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Defines a skeletal animation hierarchy.")
- }
- }
- Type {
- name: "QtQuick3D.MorphTarget"
- icon: "images/morphtarget16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Morph Target"
- category: "Components"
- libraryIcon: "images/morphtarget.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Defines the properties of a morph target.")
- }
- }
- Type {
- name: "QtQuick3D.InstanceListEntry"
- icon: "images/instancelistentry16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Instance List Entry"
- category: "Components"
- libraryIcon: "images/instancelistentry.png"
- version: "6.2"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("One instance in an Instance List. The instance includes a set of property specifications.")
- }
- }
- Type {
- name: "QtQuick3D.InstanceList"
- icon: "images/instancelist16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Instance List"
- category: "Components"
- libraryIcon: "images/instancelist.png"
- version: "6.2"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Enables 3D model instancing, a lightweight 3D object replication method.")
- }
- }
- Type {
- name: "QtQuick3D.FileInstancing"
- icon: "images/fileinstancing16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "File Instancing"
- category: "Components"
- libraryIcon: "images/fileinstancing.png"
- version: "6.2"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("A method that allows reading instance tables from XML or Qt-specific binary files.")
- }
- }
- Type {
- name: "QtQuick3D.Joint"
- icon: "images/joint16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- }
- ItemLibraryEntry {
- name: "Joint"
- category: "Components"
- libraryIcon: "images/joint.png"
- version: "6.0"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("A transformable node that connects different parts in a skeletal animation.")
- }
- }
- Type {
- name: "QtQuick3D.ReflectionProbe"
- icon: "images/reflectionProbe16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: true
- }
- ItemLibraryEntry {
- name: "Reflection Probe"
- category: "Components"
- libraryIcon: "images/reflectionProbe.png"
- version: "6.3"
- requiredImport: "QtQuick3D"
- Property { name: "boxSize.x"; type: "int"; value: 1000; }
- Property { name: "boxSize.y"; type: "int"; value: 1000; }
- Property { name: "boxSize.z"; type: "int"; value: 1000; }
- toolTip: qsTr("Reflects the current scene to the objects.")
- }
- }
- Type {
- name: "QtQuick3D.Fog"
- icon: "images/fog16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: false
- }
- ItemLibraryEntry {
- name: "Fog"
- category: "Components"
- libraryIcon: "images/fog.png"
- version: "6.5"
- requiredImport: "QtQuick3D"
- }
- }
- Type {
- name: "QtQuick3D.DebugSettings"
- icon: "images/debugsettings16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: false
- }
- ItemLibraryEntry {
- name: "Debug Settings"
- category: "Components"
- libraryIcon: "images/debugsettings.png"
- version: "6.5"
- requiredImport: "QtQuick3D"
- }
- }
- Type {
- name: "QtQuick3D.Lightmapper"
- icon: "images/lightmapper16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: false
- }
- ItemLibraryEntry {
- // Split the name to avoid ellipsis in UI
- name: "Light Mapper"
- category: "Components"
- libraryIcon: "images/lightmapper.png"
- version: "6.5"
- requiredImport: "QtQuick3D"
- }
- }
- Type {
- name: "QtQuick3D.Skin"
- icon: "images/skin16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: false
- }
- ItemLibraryEntry {
- name: "Skin"
- category: "Components"
- libraryIcon: "images/skin.png"
- version: "6.5"
- requiredImport: "QtQuick3D"
- }
- }
- Type {
- name: "QtQuick3D.ResourceLoader"
- icon: "images/resourceLoader16.png"
- Hints {
- visibleInNavigator: true
- canBeDroppedInNavigator: true
- canBeDroppedInFormEditor: false
- canBeDroppedInView3D: false
- }
- ItemLibraryEntry {
- name: "Resource Loader"
- category: "Components"
- libraryIcon: "images/resourceLoader.png"
- version: "6.2"
- requiredImport: "QtQuick3D"
- toolTip: qsTr("Pre-load resources for 3D scene. It makes sure that large resources are available before rendering a frame.")
- }
- }
- }
|