SunsetHigh.BGMusic.setLooping C# (CSharp) Метод

setLooping() публичный статический Метод

Sets whether a song should loop upon ending (true by default)
public static setLooping ( bool looping ) : void
looping bool True if the song should loop, false otherwise
Результат void
        public static void setLooping(bool looping)
        {
            if (fadeInOut != null)
                fadeInOut.setLooping(looping);
        }