Skip to content

Commit

Permalink
fix: remove unneccessary remarks and logs
Browse files Browse the repository at this point in the history
  • Loading branch information
justusmattern27 committed Mar 13, 2024
1 parent 31f2ad8 commit ecbfb53
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
8 changes: 2 additions & 6 deletions packages/core/src/app/Exporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,7 @@ export interface Exporter {
* Finish the rendering process.
*
* @remarks
* Guaranteed to be called after the rendering has finished - no matter the
* result. Can be used to finalize the exporting and perform any necessary
* clean-up.
* Called after rendering the visual elements has finished and audio so that audio track can be merged.
*
* @param result - The result of the rendering.
*/
Expand All @@ -108,10 +106,8 @@ export interface Exporter {
*
* @remarks
* Guaranteed to be called after the rendering has finished - no matter the
* result. Can be used to finalize the exporting and perform any necessary
* clean-up.
* result. Performs clean-up.
*
* @param result - The result of the rendering.
*/
kill?(): Promise<void>;
}
1 change: 0 additions & 1 deletion packages/core/src/app/Renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,6 @@ export class Renderer {
}

private async reloadScenes(settings: RendererSettings) {
console.log('reloadScenes was called');
for (let i = 0; i < this.project.scenes.length; i++) {
const description = this.project.scenes[i];
const scene = this.playback.onScenesRecalculated.current[i];
Expand Down
4 changes: 0 additions & 4 deletions packages/core/src/scenes/Scene.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,10 +338,6 @@ export interface Scene<T = unknown> {

/**
* Get all media assets
*
* @remarks
*
*
*/
getMediaAssets(): Array<AssetInfo>;

Expand Down

0 comments on commit ecbfb53

Please sign in to comment.