Skip to content

Commit

Permalink
Revert "add builtin pipeline passes (#17985)"
Browse files Browse the repository at this point in the history
This reverts commit aa3b926.
  • Loading branch information
star-e committed Feb 5, 2025
1 parent 6d189bd commit b691aa4
Show file tree
Hide file tree
Showing 10 changed files with 725 additions and 780 deletions.
326 changes: 0 additions & 326 deletions editor/assets/default_renderpipeline/builtin-bloom-pass.ts

This file was deleted.

This file was deleted.

14 changes: 7 additions & 7 deletions editor/assets/default_renderpipeline/builtin-dof-pass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,19 +71,19 @@ export class BuiltinDepthOfFieldPass extends BuiltinPipelinePassBuilder
renderOrder = 150;

@property
protected _enableDof = false;
private _enableDof = false;
@property
protected _material: Material | null = null;
private _material: Material | null = null;
@property
protected _minRange = 0;
private _minRange = 0;
@property
protected _maxRange = 2;
private _maxRange = 2;
@property
protected _blurRadius = 1;
private _blurRadius = 1;
@property
protected _intensity = 1;
private _intensity = 1;
@property
protected _focusPos = new Vec3(0, 0, 0);
private _focusPos = new Vec3(0, 0, 0);

// DepthOfField
@property({
Expand Down
Loading

0 comments on commit b691aa4

Please sign in to comment.