Skip to content

Commit

Permalink
textover 增加遮罩和遮罩颜色 (#54)
Browse files Browse the repository at this point in the history
textover 增加遮罩和遮罩颜色
  • Loading branch information
niehongxu116 authored Jan 8, 2025
1 parent da7a423 commit a3c09d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion client/py/yidong/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,7 @@ class VoiceoverEditorConfig(FontBase):
display: bool = True
position_x: float = 0
position_y: float = 1
style: str = "mask"
stroke_color: str = ""
mask_type: str = "roll_mask"
mask_color: str = "#800080"
Expand All @@ -226,7 +227,9 @@ class TextoverEditorConfig(FontBase):
position_x: float = 0
position_y: float = -1
stroke_color: str = ""
style: str = "no_effect"
mask_type: str = "no_effect"
mask_color: str = ""
style: str = "mask"
style_value: str = ""
in_effect: EffectBase = EffectBase()
on_effect: EffectBase = EffectBase()
Expand Down

0 comments on commit a3c09d3

Please sign in to comment.