private static FractalNoise Get()
 {
     if (s_Noise == null)
     {
         s_Noise = new FractalNoise(1.27f, 2.04f, 8.36f);
     }
     return(s_Noise);
 }
		private static FractalNoise Get()
		{
			if (SmoothRandom.s_Noise == null)
			{
				SmoothRandom.s_Noise = new FractalNoise(1.27f, 2.04f, 8.36f);
			}
			return SmoothRandom.s_Noise;
		}
Beispiel #3
0
 private static FractalNoise Get()
 {
     if (SmoothRandom.s_Noise == null)
     {
         SmoothRandom.s_Noise = new FractalNoise(1.27f, 2.04f, 8.36f);
     }
     return(SmoothRandom.s_Noise);
 }
 private static FractalNoise Get()
 {
     if (s_Noise == null)
     {
         s_Noise = new FractalNoise(1.27f, 2.04f, 8.36f);
     }
     return s_Noise;
 }