QTextureData露
- PyQt5.Qt3DRender.QTextureData
Description露
The QTextureData class stores texture information such as the target, height, width, depth, layers, wrap, and if mipmaps are enabled.
Methods露
- __init__()
Creates a new QTextureData instance.
- __init__(QTextureData)
TODO
- addImageData(QTextureImageData)
Adds an extra image layer to the texture using imageData.
Note: The texture image should be loaded with the size specified on the texture. However, if no size is specified, the size of the first texture image file is used as default.
- comparisonFunction() → ComparisonFunction
Returns the current comparison function.
See also
- comparisonMode() → ComparisonMode
Returns the current comparison mode.
See also
- depth() → int
Returns the texture depth.
See also
- format() → TextureFormat
Returns the texture format
See also
- height() → int
Returns the texture height.
See also
- imageData() → List[QTextureImageData]
Returns the data of the images used by this texture.
- isAutoMipMapGenerationEnabled() → bool
Returns whether the texture has auto mipmap generation enabled.
- layers() → int
Returns the texture layers.
See also
- magnificationFilter() → Filter
Returns the current magnification filter.
See also
- maximumAnisotropy() → float
Returns the current maximum anisotropy.
See also
- minificationFilter() → Filter
Returns the current minification filter.
See also
- setAutoMipMapGenerationEnabled(bool)
Sets whether the texture has automatic mipmap generation enabled, to autoMipMap.
See also
- setComparisonFunction(ComparisonFunction)
TODO
- setComparisonMode(ComparisonMode)
TODO
- setDepth(int)
Sets the texture depth to depth
See also
- setFormat(TextureFormat)
TODO
- setHeight(int)
Sets the target height to height.
See also
- setLayers(int)
Sets the texture layers to layers.
See also
- setMagnificationFilter(Filter)
TODO
- setMaximumAnisotropy(float)
Sets the maximum anisotropy to maximumAnisotropy.
See also
- setMinificationFilter(Filter)
TODO
- setTarget(Target)
TODO
- setWidth(int)
Sets the texture width to width.
See also
- setWrapModeX(WrapMode)
TODO
- setWrapModeY(WrapMode)
TODO
- setWrapModeZ(WrapMode)
TODO
- target() → Target
Returns the texture data target.
See also
- width() → int
Returns the texture width.
See also
- wrapModeX() → WrapMode
Returns the current wrap mode X.
See also
- wrapModeY() → WrapMode
Returns the current wrap mode Y.
See also
- wrapModeZ() → WrapMode
Returns the current wrap mode Z.
See also