Hi everybody!
First there is one thing I wanted to tell the makers of Scratch: Scratch is awesome! *__* Thanks for making it possible for me and all the other Scratchers to create Games and other stuff!!
Ok, while I was working on my project an idea occured to me:
You should make a block that makes it possible to let a sound (or better: a piece of music) fade to another piece of music, like ...
[play sound "music1"]
[wait until score = 5]
[fade to sound "music2"]
Offline
What would
keep playing [music3 v]Do?
Last edited by ImagineIt (2012-03-27 12:42:05)
Offline
ImagineIt wrote:
What would
keep playing [music3 v]Do?
When it gets to the end of the sound clip, it'll replay it, I presume.
That can be easily replicated though;
forever play sound [music v] until done end
Offline
RedRocker227 wrote:
ImagineIt wrote:
What would
keep playing [music3 v]Do?When it gets to the end of the sound clip, it'll replay it, I presume.
That can be easily replicated though;forever play sound [music v] until done end![]()
Thats actually right but if I stop the music and then start another song, both the first and the second one are played 3= Thats why I would like more possibilities, the fade-block is actually more important
Offline
xJira wrote:
RedRocker227 wrote:
ImagineIt wrote:
What would
keep playing [music3 v]Do?When it gets to the end of the sound clip, it'll replay it, I presume.
That can be easily replicated though;forever play sound [music v] until done end![]()
Thats actually right but if I stop the music and then start another song, both the first and the second one are played 3= Thats why I would like more possibilities, the fade-block is actually more important
![]()
The fade block can be created like this:
repeat until <(timer) > [10]> play sound [sound 1 v] end repeat [10] change volume by [-10] wait [0.1] secs end repeat [10] change volume by [10] wait [0.1] secs end forever play sound [sound 2 v] endNote, this script is untested. It possibly (definitely) has errors.
Last edited by bobbybee (2012-03-28 16:19:35)
Offline