This site requires JavaScript, please enable it in your browser!
Greenfoot back
geoffreyguilcapi
geoffreyguilcapi wrote ...

2014/6/16

Song

geoffreyguilcapi geoffreyguilcapi

2014/6/16

#
How would I implement sounds into java? Help!
danpost danpost

2014/6/16

#
Create GreenfootSound objects and call GreenfootSound methods on them.
dizzy27 dizzy27

2014/6/17

#
danpost wrote...
Create GreenfootSound objects and call GreenfootSound methods on them.
dizzy27 dizzy27

2014/6/17

#
dunno help with wat
danpost danpost

2014/6/18

#
danpost wrote...
Create GreenfootSound objects and call GreenfootSound methods on them.
Let's say you had a sound file called "pop.wav":
1
2
GreenfootSound pop = new GreenfootSound("pop.wav"); // create one
pop.play(); // call method on it
You need to login to post a reply.