SunsetHigh.BGMusic.setLooping C# (CSharp) Method

setLooping() public static method

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
return void
        public static void setLooping(bool looping)
        {
            if (fadeInOut != null)
                fadeInOut.setLooping(looping);
        }