We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add new attribute called renderer in run() function. The attribute should initiate the renderer based on the value passed.
renderer
run()
For example to use vispy: run(renderer="vispy")
run(renderer="vispy")
In future when new renderers are added, they can be initialised using this attribute.
The text was updated successfully, but these errors were encountered:
I want to work on this issue but if I write the code or even try to run it I get this error:
FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\user\\AppData\\Local\\Programs\\Python\\Python38-32\\lib\\site-packages\\p5\\sketch\\shaders\\2d\\default2d.vert'
Sorry, something went wrong.
Can you open a new issue for this? With the code you are trying to run
I have just forked and downloaded this repo to work on this issue. No changes are made
Added support for renderer attribute in run() p5py#213
9c6233c
Merge pull request #230 from galaxyproduction/master
c726e9d
Added support for renderer attribute in run() #213
No branches or pull requests
Add new attribute called
renderer
inrun()
function. The attribute should initiate the renderer based on the value passed.For example to use vispy:
run(renderer="vispy")
In future when new renderers are added, they can be initialised using this attribute.
The text was updated successfully, but these errors were encountered: