-
Notifications
You must be signed in to change notification settings - Fork 4
From StreamCore To WebAudio
Vurv edited this page May 4, 2021
·
8 revisions
This guide will help you convert your Streamcore contraptions / code to WebAudio easily!
# StreamCore
E:streamStart(1, "<URL>")# WebAudio
local Stream = webAudio("<URL>")
Stream:setParent(E) # or use parentTo
Stream:play()# StreamCore
streamVolume(1, 0.5)# WebAudio
Stream:setVolume(50)