-
-
Notifications
You must be signed in to change notification settings - Fork 383
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A worker is always created #131
Comments
I did address this here: #112 (comment) TL;DR: The current behavior, including the error you see, is intended behavior. It is necessary to provide the best performance in most situations. More specifically, here are the specific considerations:
|
Alright. I'm not a fan of having an error in the console by default but I understand your choices. By the way I modified the library to remove the web worker code and to use a dynamic framerate with |
Hi,
Thanks for your library, it's great !
I use it on an application with some strict Content Security Policy, disallowing web workers from blobs. It works because it fails back to the no worker version, and I can also specificy
useWorker
to false with thecreate
function.However the library always attempt to create a worker because its default function uses a worker. Do you think it could be possible to not create this worker without braking the API ?
The text was updated successfully, but these errors were encountered: