Skip to content
Snippets Groups Projects
Commit c4968a0e authored by Christian Strømme's avatar Christian Strømme
Browse files

Update plugins.qmltypes


Change-Id: Ib131ed865aab6d8cf100a35c8d511540f2df6ed8
Reviewed-by: default avatarTomi Korpipää <tomi.korpipaa@qt.io>
parent 1f1f6890
No related branches found
No related tags found
No related merge requests found
...@@ -869,38 +869,13 @@ Module { ...@@ -869,38 +869,13 @@ Module {
exports: ["QtQuick3D/Object3D 1.14"] exports: ["QtQuick3D/Object3D 1.14"]
isCreatable: false isCreatable: false
exportMetaObjectRevisions: [0] exportMetaObjectRevisions: [0]
Enum {
name: "Type"
values: {
"Unknown": 0,
"SceneEnvironment": 1,
"Node": 2,
"Layer": 3,
"Light": 4,
"Camera": 5,
"Model": 6,
"DefaultMaterial": 7,
"PrincipledMaterial": 8,
"Image": 9,
"Effect": 10,
"Text": 11,
"CustomMaterial": 12,
"RenderPlugin": 13,
"Lightmaps": 14,
"Geometry": 15,
"Item2D": 16,
"LastKnownGraphObjectType": 17
}
}
Property { name: "parent"; type: "QQuick3DObject"; isPointer: true } Property { name: "parent"; type: "QQuick3DObject"; isPointer: true }
Property { name: "data"; type: "QObject"; isList: true; isReadonly: true } Property { name: "data"; type: "QObject"; isList: true; isReadonly: true }
Property { name: "resources"; type: "QObject"; isList: true; isReadonly: true } Property { name: "resources"; type: "QObject"; isList: true; isReadonly: true }
Property { name: "children"; type: "QQuick3DObject"; isList: true; isReadonly: true } Property { name: "children"; type: "QQuick3DObject"; isList: true; isReadonly: true }
Property { name: "type"; type: "QQuick3DObject::Type"; isReadonly: true }
Property { name: "states"; type: "QQuickState"; isList: true; isReadonly: true } Property { name: "states"; type: "QQuickState"; isList: true; isReadonly: true }
Property { name: "transitions"; type: "QQuickTransition"; isList: true; isReadonly: true } Property { name: "transitions"; type: "QQuickTransition"; isList: true; isReadonly: true }
Property { name: "state"; type: "string" } Property { name: "state"; type: "string" }
Signal { name: "sceneManagerChanged" }
Method { name: "update" } Method { name: "update" }
Method { Method {
name: "setParentItem" name: "setParentItem"
...@@ -1536,6 +1511,21 @@ Module { ...@@ -1536,6 +1511,21 @@ Module {
Parameter { name: "depthPrePassEnabled"; type: "bool" } Parameter { name: "depthPrePassEnabled"; type: "bool" }
} }
} }
Component {
name: "QQuick3DShaderApplyDepthValue"
prototype: "QQuick3DShaderUtilsRenderCommand"
exports: ["QtQuick3D/DepthInput 1.15"]
exportMetaObjectRevisions: [0]
Property { name: "param"; type: "QByteArray" }
}
Component {
name: "QQuick3DShaderUtilsApplyValue"
prototype: "QQuick3DShaderUtilsRenderCommand"
exports: ["QtQuick3D/SetUniformValue 1.15"]
exportMetaObjectRevisions: [0]
Property { name: "target"; type: "QByteArray" }
Property { name: "value"; type: "QVariant" }
}
Component { Component {
name: "QQuick3DShaderUtilsBlending" name: "QQuick3DShaderUtilsBlending"
prototype: "QQuick3DShaderUtilsRenderCommand" prototype: "QQuick3DShaderUtilsRenderCommand"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment