Fix too dark colors

This commit is contained in:
Logan Hunt 2022-04-26 17:47:28 -06:00
parent 079cf65682
commit a2e493f142
Signed by untrusted user who does not match committer: simponic
GPG Key ID: 52B3774857EB24B1

View File

@ -29,7 +29,7 @@ const buildRender = (width, height) => gpu.createKernel(function (maxIterations,
const canvasHolder = document.getElementById('canvasHolder');
let render; // The GPU kernel built from buildRender
let state = {
colorMultipliers: [0.01 * Math.random(), 0.03 * Math.random(), 0.02 * Math.random()],
colorMultipliers: [0.01 * Math.random() + 0.005, 0.03 * Math.random() + 0.005, 0.02 * Math.random() + 0.005],
changes: {
centerX: 0,
centerY: 0,