mirror of
https://github.com/projectM-visualizer/projectm.git
synced 2026-03-02 05:25:41 +00:00
disable 3d perlin
git-svn-id: https://projectm.svn.sourceforge.net/svnroot/projectm/trunk@1093 6778bc44-b910-0410-a7a0-be141de4315d
This commit is contained in:
@ -39,7 +39,7 @@ PerlinNoise::PerlinNoise()
|
||||
for (int x = 0; x < 32;x++)
|
||||
for (int y = 0; y < 32;y++)
|
||||
for (int z = 0; z < 32;z++)
|
||||
noise_hq_vol[x][y][z] = perlin_noise_3d(x,y,z,6121,7,seed3,0.5,64);
|
||||
noise_hq_vol[x][y][z] = noise(x,y,z);//perlin_noise_3d(x,y,z,6121,7,seed3,0.5,64);
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user