Skip to content

Commit

Permalink
make property private
Browse files Browse the repository at this point in the history
  • Loading branch information
star-e committed Nov 15, 2024
1 parent 4e3ac68 commit c34d029
Showing 1 changed file with 7 additions and 7 deletions.
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
_enableDof = false;
private _enableDof = false;
@property
_material: Material | null = null;
private _material: Material | null = null;
@property
_minRange = 0;
private _minRange = 0;
@property
_maxRange = 2;
private _maxRange = 2;
@property
_blurRadius = 1;
private _blurRadius = 1;
@property
_intensity = 1;
private _intensity = 1;
@property
_focusPos = new Vec3(0, 0, 0);
private _focusPos = new Vec3(0, 0, 0);

// DepthOfField
@property({
Expand Down

0 comments on commit c34d029

Please sign in to comment.