QSkyboxEntity¶
QSkyboxEntity
is a convenienceQEntity
subclass that can be used to insert a skybox in a 3D scene. More…
Synopsis¶
Functions¶
def
baseName
()def
extension
()def
isGammaCorrectEnabled
()
Slots¶
def
setBaseName
(path)def
setExtension
(extension)def
setGammaCorrectEnabled
(enabled)
Signals¶
def
baseNameChanged
(path)def
extensionChanged
(extension)def
gammaCorrectEnabledChanged
(enabled)
Detailed Description¶
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” + extensionBy 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.
- class PySide2.Qt3DExtras.Qt3DExtras.QSkyboxEntity([parent=None])¶
- param parent:
Constructs a new
QSkyboxEntity
object withparent
as parent.
- PySide2.Qt3DExtras.Qt3DExtras.QSkyboxEntity.baseName()¶
- Return type:
str
Contains the base name of the Skybox.
- PySide2.Qt3DExtras.Qt3DExtras.QSkyboxEntity.baseNameChanged(path)¶
- Parameters:
path – str
- PySide2.Qt3DExtras.Qt3DExtras.QSkyboxEntity.extension()¶
- Return type:
str
Contains the extension of the filename for the skybox image, including the leading ‘.’.
The default value is: .png
- PySide2.Qt3DExtras.Qt3DExtras.QSkyboxEntity.extensionChanged(extension)¶
- Parameters:
extension – str
- PySide2.Qt3DExtras.Qt3DExtras.QSkyboxEntity.gammaCorrectEnabledChanged(enabled)¶
- Parameters:
enabled – bool
- PySide2.Qt3DExtras.Qt3DExtras.QSkyboxEntity.isGammaCorrectEnabled()¶
- Return type:
bool
A boolean indicating whether gamma correction is enabled.
- PySide2.Qt3DExtras.Qt3DExtras.QSkyboxEntity.setBaseName(path)¶
- Parameters:
path – str
Contains the base name of the Skybox.
- PySide2.Qt3DExtras.Qt3DExtras.QSkyboxEntity.setExtension(extension)¶
- Parameters:
extension – str
Contains the extension of the filename for the skybox image, including the leading ‘.’.
The default value is: .png
- PySide2.Qt3DExtras.Qt3DExtras.QSkyboxEntity.setGammaCorrectEnabled(enabled)¶
- Parameters:
enabled – bool
A boolean indicating whether gamma correction is enabled.
© 2022 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.