QAttribute¶
- PyQt5.Qt3DRender.QAttribute
Inherits from QNode.
Description¶
Defines an attribute and how data should be read from a QBuffer.
There are 3 types of attributes.
VertexAttribute: used to define data to be read on a per vertex basis
IndexAttribute: used to define vertex indices when indexed draw calls are to be used
DrawIndirectAttribute: used to specify the DrawIndirect buffer to be used when indirect draw calls are to be used
Note: when an attribute is of type DrawIndirectAttribute, only count, stride and offset are relevant.
When providing your own attributes, it may make sense to name your attribute using helpers such as QAttribute::defaultPositionAttributeName() as that will ensure your geometry will be compatible with picking and the various materials provided in the Qt3DExtras module.
See also
Enums¶
- AttributeType
The type of the attribute.
Member
Value
Description
DrawIndirectAttribute TODO
TODO
IndexAttribute TODO
TODO
VertexAttribute TODO
TODO
- VertexBaseType
The type of the data.
Member
Value
Description
Byte TODO
TODO
Double TODO
TODO
Float TODO
TODO
HalfFloat TODO
TODO
Int TODO
TODO
Short TODO
TODO
UnsignedByte TODO
TODO
UnsignedInt TODO
TODO
UnsignedShort TODO
TODO
Methods¶
- __init__(parent: QNode = None)
Constructs a new QAttribute with parent.
- __init__(QBuffer, VertexBaseType, int, int, offset: int = 0, stride: int = 0, parent: QNode = None)
Constructs a new QAttribute from buf of type, dataSize, count, offset, and stride with parent.
- __init__(QBuffer, str, VertexBaseType, int, int, offset: int = 0, stride: int = 0, parent: QNode = None)
Constructs a new QAttribute named name from buf of type, dataSize, count, offset, and stride with parent.
- attributeType() → AttributeType
See also
- buffer() → QBuffer
See also
- byteOffset() → int
See also
- byteStride() → int
See also
- count() → int
See also
-
@staticmethod
defaultColorAttributeName() → str QAttribute::defaultColorAttributeName Returns the name of the default color attribute
-
@staticmethod
defaultJointIndicesAttributeName() → str QAttribute::defaultJointIndicesAttributeName Returns the name of the default joint indices attribute
-
@staticmethod
defaultJointWeightsAttributeName() → str QAttribute::defaultJointIndicesAttributeName Returns the name of the default joint weights attribute
-
@staticmethod
defaultNormalAttributeName() → str QAttribute::defaultNormalAttributeName Returns the name of the default normal attribute
-
@staticmethod
defaultPositionAttributeName() → str QAttribute::defaultPositionAttributeName Returns the name of the default position attribute
-
@staticmethod
defaultTangentAttributeName() → str QAttribute::defaultTangentAttributeName Returns the name of the default tangent attribute
-
@staticmethod
defaultTextureCoordinate1AttributeName() → str QAttribute::defaultTextureCoordinate1AttributeName Returns the name of the default attribute for the second layer of texture coordinates
-
@staticmethod
defaultTextureCoordinate2AttributeName() → str QAttribute::defaultTextureCoordinate2AttributeName Returns the name of the default attribute for the third layer of texture coordinates
-
@staticmethod
defaultTextureCoordinateAttributeName() → str QAttribute::defaultTextureCoordinateAttributeName Returns the name of the default texture coordinate attribute
- divisor() → int
See also
- name() → str
See also
- setAttributeType(AttributeType)
See also
- setByteOffset(int)
See also
- setByteStride(int)
See also
- setCount(int)
See also
- setDataSize(int)
TODO
- setDataType(VertexBaseType)
TODO
- setDivisor(int)
See also
- setName(str)
See also
- setVertexBaseType(VertexBaseType)
See also
- setVertexSize(int)
See also
- vertexBaseType() → VertexBaseType
See also
- vertexSize() → int
See also
Signals¶
- attributeTypeChanged(AttributeType)
TODO
- bufferChanged(QBuffer)
TODO
- byteOffsetChanged(int)
TODO
- byteStrideChanged(int)
TODO
- countChanged(int)
TODO
- dataSizeChanged(int)
TODO
- dataTypeChanged(VertexBaseType)
TODO
- divisorChanged(int)
TODO
- nameChanged(str)
TODO
- vertexBaseTypeChanged(VertexBaseType)
TODO
- vertexSizeChanged(int)
TODO