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);
        }