QAbstractCameraController

PyQt5.Qt3DExtras.QAbstractCameraController

Inherits from QEntity.

Inherited by QFirstPersonCameraController, QOrbitCameraController.

Description

The QAbstractCameraController class provides basic functionality for camera controllers.

QAbstractCameraController sets up and handles input from keyboard, mouse, and other devices. QAbstractCameraController is an abstract class and cannot itself be instantiated. It provides a standard interface for camera controllers.

Derived classes need only implement the frameActionTriggered() method to move the camera.

Methods

__init__(parent: QNode = None)

TODO


acceleration() → float

See also

setAcceleration().


camera() → QCamera

See also

setCamera().


deceleration() → float

See also

setDeceleration().


keyboardDevice() → QKeyboardDevice

Provides access to the keyboard device.


linearSpeed() → float

See also

setLinearSpeed().


lookSpeed() → float

See also

setLookSpeed().


mouseDevice() → QMouseDevice

Provides access to the mouse device.


setAcceleration(float)

See also

acceleration().


setCamera(QCamera)

See also

camera().


setDeceleration(float)

See also

deceleration().


setLinearSpeed(float)

See also

linearSpeed().


setLookSpeed(float)

See also

lookSpeed().

Signals

accelerationChanged(float)

TODO


cameraChanged()

TODO


decelerationChanged(float)

TODO


linearSpeedChanged()

TODO


lookSpeedChanged()

TODO