File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -18,20 +18,21 @@ but can of course be used for other purposes.
1818Made for people who enjoy playing around with modern OpenGL without spending lots of
1919time creating all the tooling to get things up and running.
2020
21- Setting a project with a spinning cube can be done in less than a minute
21+ Creating a project with a spinning cube can be done in less than a minute.
22+ (Assuming you have glfw installed)
2223
2324.. code-block :: shell
2425
2526 pip install demosys-py
2627 demosys-admin createproject myproject
2728 demosys-admin createeffect myproject/cube
2829
29- Now edit ``myproject/settings.py `` and add the effect to the ``EFFECTS `` tuple .
30+ Now edit ``myproject/settings.py `` adding the effect in ``EFFECTS ``.
3031
3132.. code-block :: python
3233
3334 EFFECTS = (
34- ' myproject.cube' ,
35+ ' myproject.cube' , # note the comma!
3536 )
3637
3738 Now run the effect!
You can’t perform that action at this time.
0 commit comments