Skip to content

Commit

Permalink
Reduce perlin noise scaling
Browse files Browse the repository at this point in the history
  • Loading branch information
bit69tream committed Dec 27, 2023
1 parent f9630df commit 471eefb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sinister.c
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ int main(void) {

Image n = GenImagePerlinNoise(background.x / NEBULAE_NOISE_DOWNSCALE_FACTOR,
background.y / NEBULAE_NOISE_DOWNSCALE_FACTOR,
0, 0, 5);
0, 0, 2);
nebulaNoise = LoadTextureFromImage(n);
SetTextureFilter(nebulaNoise, TEXTURE_FILTER_BILINEAR);
UnloadImage(n);
Expand Down

0 comments on commit 471eefb

Please sign in to comment.