QSkyboxEntity¶
- PyQt5.Qt3DExtras.QSkyboxEntity
Inherits from QEntity.
Description¶
QSkyboxEntity is a convenience QEntity subclass that can be used to insert a skybox in a 3D scene.
By specifying a base name and an extension, QSkyboxEntity will take care of building a TextureCubeMap to be rendered at runtime. The images in the source directory should match the pattern: base name + * “_posx|_posy|_posz|_negx|_negy|_negz” + extension
By default the extension defaults to .png.
Be sure to disable frustum culling in the FrameGraph through which the skybox rendering happens.
Note: Please note that you shouldn’t try to render a skybox with an orthographic projection.
Methods¶
- __init__(parent: QNode = None)
Constructs a new QSkyboxEntity object with parent as parent.
- baseName() → str
Returns the base name of the Skybox.
See also
- extension() → str
Returns the extension
See also
- isGammaCorrectEnabled() → bool
Returns true if gamma correction is enabled for this skybox.
- setBaseName(str)
Sets the base name to baseName.
See also
- setExtension(str)
Sets the extension to extension.
See also
- setGammaCorrectEnabled(bool)
Sets the gamma correction enable state to enabled.
See also