Skip to content

Commit

Permalink
Update getting-started.en.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vanruesc committed Feb 25, 2024
1 parent 4bda3e8 commit e1419bd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions manual/content/getting-started.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,13 @@ container.prepend(renderer.domElement);

const scene = new Scene();
const camera = new PerspectiveCamera();

const pipeline = new RenderPipeline(renderer);
pipeline.addPass(new ClearPass());
pipeline.addPass(new GeometryPass(scene, camera, { samples: 4 }));
pipeline.addPass(new EffectPass(new BloomEffect()));

pipeline.add(
new ClearPass(),
new GeometryPass(scene, camera),
new EffectPass(new BloomEffect())
);

function onResize(): void {

Expand Down

0 comments on commit e1419bd

Please sign in to comment.