Skip to content

Commit bcd106e

Browse files
committed
started intermediate tutorial
1 parent 10f3c58 commit bcd106e

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Pyglet is a python library for writing graphics in python. Cocos2D is built on t
2828
To install it, run either `pip install pyglet` or `sudo pip install pyglet` depending on whether you are using venv or not.
2929

3030
###NumPy
31-
NumPy is a python package that deals with complex mathematics and scientific commputing. You'll need this for particle support.
31+
NumPy is a python package that deals with complex mathematics and scientific computing. You'll need this for particle support.
3232

3333
On Mac, installation is made easy thanks to Homebrew. If you don't have it installed, run `ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
3434
` in terminal. Then you can simply run `brew install numpy` and `brew install scipy` to make sure you have the full SciPy package.

intermediate/intermediate.md

Whitespace-only changes.

intermediate/mapmaking.xml

Whitespace-only changes.

intermediate/maps.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Imports as usual
2+
from cocos.tiles import load
3+
4+
# Check mapmaking.xml
5+
loaded_map = load("mapmaking.xml")

0 commit comments

Comments
 (0)