1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +00:00
QB64-PE/internal/help/_SNDOPENRAW__1111111111.txt
Roland Heyder aeb9c0668b Updates help files for use with new Wiki parser (2nd try)
Note: Many files were removed (not yet existing/empty pages). The parser will try to download them on demand and will auto-generate text for missing pages (eg. most _gl pages).
2022-05-21 00:18:31 +02:00

40 lines
943 B
Plaintext

{{QBDLDATE:05-20-2022}}
{{QBDLTIME:23:11:00}}
{{DISPLAYTITLE:_SNDOPENRAW}}
The [[_SNDOPENRAW]] function opens a new channel to fill with _SNDRAW content to manage multiple dynamically generated sounds.
{{PageSyntax}}
: {{Parameter|pipeHandle&}} = [[_SNDOPENRAW]]
{{PageDescription}}
* You can manage multiple dynamically generated sounds at once without having to worry about mixing.
* Use [[_SNDCLOSE]] to remove the pipe sound handles from memory.
{{PageExamples}}
''Example:'' Combining 2 sounds without worrying about mixing:
{{CodeStart}}
a = {{Cl|_SNDOPENRAW}}
b = {{Cl|_SNDOPENRAW}}
{{Cl|FOR...NEXT|FOR}} x = 1 {{Cl|TO}} 100000
{{Cl|_SNDRAW}} {{Cl|SIN}}(x / 10), , a 'fill with a tone
{{Cl|_SNDRAW}} {{Cl|RND}} * 1 - 0.5, , b 'fill with static
{{Cl|NEXT}}
{{Cl|_SNDCLOSE}} a
{{Cl|_SNDCLOSE}} b
{{CodeEnd}}{{small|Code by Galleon}}
{{PageSeeAlso}}
* [[_SNDRAWDONE]]
* [[_SNDRAW]]
* [[_SNDCLOSE]]
{{PageNavigation}}