Skip to content
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

Update README.md #1

Merged
merged 12 commits into from
Sep 7, 2021
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

![Logo](s2p.svg)
# Scratch2Python
Scratch2Python is a Python program that converts Scratch projects to Pygame code.
Expand Down Expand Up @@ -31,4 +32,8 @@ The files in the project are:
Always use `mixedCase` (first letter is always lowercase) for variable and function names.
Use `Uppercase` for class names.

Note: Use underscores if the name may become unclear. For example: use `sb3_unpack` instead of `sb3Unpack`
Note: Use underscores if the name may become unclear. For example: use `sb3_unpack` instead of `sb3Unpack`
## How to use
Assuming that you installed all necessary requirements, place your sb3 files in the scratch2python folder where main.py is located.
Then, change the projectToLoad variable to your project file.
Now, just run `python3 main.py` and the project will start!