Hey Guys.
I'm currently working on a game and wanted a music file playing in the background. Right now I'm starting it in the constructor of my world
The sound is playing but as soon, as I push the run button to start my code i get really big performance drops and I have to quit my program. I tried the code without music and the music without code and it runs perfectly but the combination is a problem.
Does anybody know about this problem?
public Intro()
{
Greenfoot.playSound("FeverRay.mp3");
}