Skip to content

Commit 19f20da

Browse files
committed
fix(base): added resolution to base generator
1 parent 7f30aec commit 19f20da

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/baseGenerator.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export abstract class Generator {
77
protected frameRate: number;
88
protected clipName: string;
99
protected options: Options;
10+
protected resolution: string | null;
1011

1112

1213
constructor(project: Project, options: Options) {
@@ -20,6 +21,7 @@ export abstract class Generator {
2021
}
2122
this.frameRate = this.project.frameRate;
2223
this.clipName = this.layer.sourceFile;
24+
this.resolution = this.project.resolution;
2325
}
2426

2527

0 commit comments

Comments
 (0)