AxisAccumulator QML Type

QML frontend for the Qt3DInput::QAxisAccumulator C++ class. More...

Import Statement: import Qt3D.Input 2.0
Since: Qt 5.8
Instantiates: QAxisAccumulator

Properties

Detailed Description

An Axis reports the current position of an axis on an input device. When the axis is returned to its neutral position the value of that axis returns to 0. Often, it is required to have the input from an axis control a variable in other ways, for example treating the value from the Axis as a velocity (first derivative with respect to time) or as an acceleration (second derivative with respect to time). This can be done with user code or with a FrameAction but those approached are not ideal as they add more work to the main thread and are inherently imperative. The AxisAccumulator class allows for this common task to be performed on the Qt 3D backend and be specified in a declarative manner.

Property Documentation

sourceAxis : Axis

The Axis for which the accumulator should integrate axis values.


sourceAxisType : SourceAxisType

The sourceAxisType property specifies how the accumulator treats the values from the source axis.


value : real

The amount to scale the axis value by when accumulating. This can be thought of as the maximum velocity or acceleration the axis can control.


© 2019 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.