Skip to content

Commit

Permalink
Include the exponent for the fast right click
Browse files Browse the repository at this point in the history
  • Loading branch information
rtldg committed Mar 11, 2024
1 parent d2e3d43 commit bf28079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VRADFix/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ private void luxelsCanvas_MouseClick(object sender, MouseEventArgs e)
surface.lightmapLDR[selectedX, selectedY].r = Convert.ToByte(spinnerR.Value);
surface.lightmapLDR[selectedX, selectedY].g = Convert.ToByte(spinnerG.Value);
surface.lightmapLDR[selectedX, selectedY].b = Convert.ToByte(spinnerB.Value);
//surface.lightmapLDR[selectedX, selectedY].e = Convert.ToSByte(spinnerE.Value);
surface.lightmapLDR[selectedX, selectedY].e = Convert.ToSByte(spinnerE.Value);
}
updateLightmapViewer();

Expand Down

0 comments on commit bf28079

Please sign in to comment.