Skip to content

Commit

Permalink
Update cAutoExposure.fx
Browse files Browse the repository at this point in the history
  • Loading branch information
papadanku committed Jul 6, 2024
1 parent aac7529 commit 95924f3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions shaders/cAutoExposure.fx
Original file line number Diff line number Diff line change
Expand Up @@ -19,31 +19,31 @@
uniform float _Frametime < source = "frametime"; >;

uniform float _Scale <
ui_category = "Main Shader: Spot Metering";
ui_category = "Main Shader: Metering";
ui_label = "Area Scale";
ui_type = "slider";
ui_min = 0.0;
ui_max = 1.0;
> = 0.5;

uniform float2 _Offset <
ui_category = "Main Shader: Spot Metering";
ui_category = "Main Shader: Metering";
ui_label = "Area Offset";
ui_type = "slider";
ui_min = -1.0;
ui_max = 1.0;
> = 0.0;

uniform int _Meter <
ui_category = "Main Shader: Spot Metering";
ui_category = "Main Shader: Metering";
ui_label = "Method";
ui_type = "combo";
ui_items = "Average\0Centered\0";
ui_items = "Average\0Spot\0";
> = 0;

uniform bool _Debug <
ui_category = "Main Shader: Spot Metering";
ui_label = "Display Center Metering";
ui_category = "Main Shader: Metering";
ui_label = "Display Spot Metering";
ui_type = "radio";
> = false;

Expand Down

0 comments on commit 95924f3

Please sign in to comment.