Qt3DCore¶

The Qt3DCore module contains the core classes to support near-realtime simulation systems for 2D and 3D rendering.

Enums¶

ChangeFlag

The types of change that can be sent and received by Qt3D’s change notification system.

Member

Value

Description

AllChanges

0xFFFFFFFF

Allows an observer to monitor for any of the above changes.

CallbackTriggered

1 << 8

A QNode triggered a callback.

CommandRequested

1 << 7

A QNodeCommand has been sent between a node and its backend.

ComponentAdded

1 << 5

A QComponent has been added to a QEntity.

ComponentRemoved

1 << 6

A QComponent has been removed from a QEntity.

NodeCreated

1 << 0

A new instance of a QNode subclass has been created.

NodeDeleted

1 << 1

A QNode has been deleted.

PropertyUpdated

1 << 2

A QNode property has been updated.

PropertyValueAdded

1 << 3

A QNode has been added to the scene.

PropertyValueRemoved

1 << 4

A QNode has been removed from the scene.

Functions¶

qIdForNode(QNode) → QNodeId

TODO