Actually I'm working on a shooting game, and I want to make the gun reloads. I created a method like
It works but.... the sounds don't play one by one. They play almost simultaneously because the CPU is too fast lol
So... What should I do??
Thankssss!!
public void reload(){ Greenfoot.playSound("clipout.wav"); Greenfoot.playSound("clipin.wav"); Greenfoot.playSound("boltpull.wav"); bulletNum=0; canFire=1; }