Skip to content

Commit

Permalink
fix: add blur_degree to VirtualBackgroundSource
Browse files Browse the repository at this point in the history
  • Loading branch information
LichKing-2234 committed Dec 23, 2021
1 parent 30a9f36 commit f7d7b35
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/common/Classes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1776,15 +1776,19 @@ export class VirtualBackgroundSource {
*/
source?: string;

blur_degree?: VirtualBackgroundBlurDegree;

constructor(params?: {
backgroundSourceType?: VirtualBackgroundSourceType;
color?: Color;
source?: string;
blur_degree?: VirtualBackgroundBlurDegree;
}) {
if (params) {
this.backgroundSourceType = params.backgroundSourceType;
this.color = params.color;
this.source = params.source;
this.blur_degree = params.blur_degree;
}
}
}
Expand Down

0 comments on commit f7d7b35

Please sign in to comment.