QTextureImage¶
- PyQt5.Qt3DRender.QTextureImage
Inherits from QAbstractTextureImage.
Description¶
Encapsulates the necessary information to create an OpenGL texture image from an image source.
It contains the necessary information mipmap level, layer, cube face and source URL to load at the proper place data into an OpenGL texture.
Enums¶
- Status
This enumeration specifies the status values for texture image loading.
Member
Value
Description
Error 3
The texture image loading confronted an error.
Loading 1
The texture image loading has started, but not finised.
None 0
The texture image loading has not been started yet.
Ready 2
The texture image loading has finished.
Methods¶
- __init__(parent: QNode = None)
Constructs a new QTextureImage instance with parent as parent.
- isMirrored() → bool
Returns whether mirroring is enabled or not.
- sceneChangeEvent(QSceneChange)
TODO
- setMirrored(bool)
Sets mirroring to mirrored.
Note: This internally triggers a call to update the data generator.
See also
- setSource(QUrl)
Sets the source url of the texture image to source.
Note: This internally triggers a call to update the data generator.
See also
- source() → QUrl
Returns the source url from which data for the texture image will be loaded.
See also
- status() → Status
Returns the current status.
See also