mini_arcade_core.engine.render.style ==================================== .. py:module:: mini_arcade_core.engine.render.style .. autoapi-nested-parse:: Render styles for entities. Classes ------- .. autoapisummary:: mini_arcade_core.engine.render.style.Stroke mini_arcade_core.engine.render.style.Fill mini_arcade_core.engine.render.style.RenderStyle Module Contents --------------- .. py:class:: Stroke Simple stroke entity. :ivar color: The color of the stroke. :ivar thickness: The thickness of the stroke. .. py:attribute:: color :type: mini_arcade_core.backend.types.Color :value: (255, 255, 255, 255) .. py:attribute:: thickness :type: float :value: 1.0 .. py:class:: Fill Simple fill entity. :ivar color: The color of the fill. .. py:attribute:: color :type: mini_arcade_core.backend.types.Color :value: (255, 255, 255, 255) .. py:class:: RenderStyle Simple render style entity. :ivar stroke: The stroke of the render style. :ivar fill: The fill of the render style. .. py:attribute:: stroke :type: Stroke | None :value: None .. py:attribute:: fill :type: Fill | None :value: None