# DO NOT EDIT! This file was auto-generated by crates/build/re_types_builder/src/codegen/python/mod.rs
# Based on "crates/store/re_sdk_types/definitions/rerun/components/albedo_factor.fbs".

# You can extend this class by creating a "AlbedoFactorExt" class in "albedo_factor_ext.py".

from __future__ import annotations

from .. import datatypes
from .._baseclasses import (
    ComponentBatchMixin,
    ComponentMixin,
)

__all__ = ["AlbedoFactor", "AlbedoFactorBatch"]


class AlbedoFactor(datatypes.Rgba32, ComponentMixin):
    """**Component**: A color multiplier, usually applied to a whole entity, e.g. a mesh."""

    _BATCH_TYPE = None
    # You can define your own __init__ function as a member of AlbedoFactorExt in albedo_factor_ext.py

    # Note: there are no fields here because AlbedoFactor delegates to datatypes.Rgba32


class AlbedoFactorBatch(datatypes.Rgba32Batch, ComponentBatchMixin):
    _COMPONENT_TYPE: str = "rerun.components.AlbedoFactor"


# This is patched in late to avoid circular dependencies.
AlbedoFactor._BATCH_TYPE = AlbedoFactorBatch  # type: ignore[assignment]
