Loopsound doesn't work!
Archives Forums/BlitzPlus Bug Reports/Loopsound doesn't work!
| ||
Global channel=LoadSound("media/track1.mp3")
PlaySound channel
LoopSound channelWhy does this only play the sound once? |
| ||
| Why does this only play the sound once? Because you've done it wrong. Its not a bug.LoopSound first, then PlaySound. |
| ||
| I wish all problems could be so simple to fix :( |
| ||
| I think you'd have had to write |
| ||
| *looking at the date* No, you're wrong. It's as GfK said (4 months ago...): "LoopSound first, then PlaySound." Global channel=LoadSound("media/track1.mp3")
LoopSound channel
PlaySound channel |