We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f30aec commit 19f20daCopy full SHA for 19f20da
1 file changed
src/baseGenerator.ts
@@ -7,6 +7,7 @@ export abstract class Generator {
7
protected frameRate: number;
8
protected clipName: string;
9
protected options: Options;
10
+ protected resolution: string | null;
11
12
13
constructor(project: Project, options: Options) {
@@ -20,6 +21,7 @@ export abstract class Generator {
20
21
}
22
this.frameRate = this.project.frameRate;
23
this.clipName = this.layer.sourceFile;
24
+ this.resolution = this.project.resolution;
25
26
27
0 commit comments