Skip to content

Commit

Permalink
Update cRaySchism.fx
Browse files Browse the repository at this point in the history
  • Loading branch information
papadanku committed Nov 1, 2024
1 parent b1375f2 commit ac3139e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shaders/cRaySchism.fx
Original file line number Diff line number Diff line change
Expand Up @@ -178,23 +178,23 @@ uniform float _GradeBalance <
uniform float3 _GradeMixRed <
ui_category = "Color Grading | Channel Mixer";
ui_label = "Red";
ui_type = "slider";
ui_type = "color";
ui_min = 0.0;
ui_max = 1.0;
> = float3(1.0, 0.0, 0.0);

uniform float3 _GradeMixGreen <
ui_category = "Color Grading | Channel Mixer";
ui_label = "Green";
ui_type = "slider";
ui_type = "color";
ui_min = 0.0;
ui_max = 1.0;
> = float3(0.0, 1.0, 0.0);

uniform float3 _GradeMixBlue <
ui_category = "Color Grading | Channel Mixer";
ui_label = "Blue";
ui_type = "slider";
ui_type = "color";
ui_min = 0.0;
ui_max = 1.0;
> = float3(0.0, 0.0, 1.0);
Expand Down

0 comments on commit ac3139e

Please sign in to comment.