LogicalDevice QML Type

QML frontend for the Qt3DInput::QLogicalDevice C++ 类。 更多...

导入语句: import Qt3D.Input 2.0
Since: Qt 5.6
实例化: QLogicalDevice

特性

详细描述

Allows the user to define a set of actions that they wish to use within an application.

LogicalDevice {
    id: keyboardLogicalDevice
    actions: [
        Action {
            name: "fire"
            inputs: [
                ActionInput {
                    sourceDevice: keyboardSourceDevice
                    keys: [Qt.Key_Space]
                },
                InputChord {
                    tolerance: 10
                    inputs: [
                        ActionInput {
                            sourceDevice: keyboardSourceDevice
                            keys: [Qt.Key_A]
                        },
                        ActionInput {
                            sourceDevice: keyboardSourceDevice
                            keys: [Qt.Key_S]
                        }
                    ]
                }
            ]
        },
        Action {
            name: "reload"
            inputs: [
                ActionInput {
                    sourceDevice: keyboardSourceDevice
                    keys: [Qt.Key_Alt]
                }
            ]
        },
        Action {
            name: "combo"
            inputs: [
                InputSequence {
                    interval: 1000
                    timeout: 10000
                    inputs: [
                        ActionInput {
                            sourceDevice: keyboardSourceDevice
                            keys: [Qt.Key_G]
                        },
                        ActionInput {
                            sourceDevice: keyboardSourceDevice
                            keys: [Qt.Key_D]
                        },
                        ActionInput {
                            sourceDevice: keyboardSourceDevice
                            keys: [Qt.Key_J]
                        }
                    ]
                }
            ]
        }
    ]
}
					

特性文档编制

actions : list < 动作 >

The actions used by this Logical Device


axis : list < Axis >

The axis used by this Logical Device