예제 #1
0
 public static FinColor Random()
 {
     var(r, g, b) = FinRandom.Bytes3();
     return(FinColor.FromRgbB(r, g, b));
 }
        private void PlayAtRandomPitch_(IAudioBuffer sound)
        {
            var pitch = (float)(.9f + .2f * FinRandom.Double());

            this.source_.Play(sound, false, pitch);
        }