Skip to content

EffectBevel

src.helpers.effects.EffectBevel

Bases: TypedDict

Layer Effect: Bevel

Source code in src\helpers\effects.py
74
75
76
77
78
79
80
81
82
83
84
85
class EffectBevel(TypedDict):
    """Layer Effect: Bevel"""
    type: Literal['bevel']
    highlight_opacity: NotRequired[Union[float, int]]
    highlight_color: NotRequired[Union[SolidColor, list[int]]]
    shadow_opacity: NotRequired[Union[float, int]]
    shadow_color: NotRequired[Union[SolidColor, list[int]]]
    rotation: NotRequired[Union[float, int]]
    altitude: NotRequired[Union[float, int]]
    depth: NotRequired[Union[float, int]]
    size: NotRequired[Union[float, int]]
    softness: NotRequired[Union[float, int]]