This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Resources For Getting Into the Game Industry (Toronto, Ontario, Canada) | |
======================================================================= | |
Game Jams | |
========== | |
- learn by doing | |
- where you make a small simple game over a few days, either alone, or with a group | |
- these should be free (be suspicious if they want to charge you money) | |
List of Game (making) Jams on Itch.io |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Game Jams | |
- learn by doing | |
- where you make a small simple game over a few days, either alone, or with a group | |
- these should be free (be suspicious if they want to charge you money) | |
========= | |
List of Game (making) Jams on Itch.io | |
https://itch.io/jams | |
Toronto Game Jam <-- GREAT!! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from OpenGL.GL import * | |
import Image | |
import numpy | |
imname = 'uv-grey.jpg' | |
# glTexImage2D expects the first element of the image data to be the bottom-left corner of the image. | |
# Subsequent elements go left to right, with subsequent lines going from bottom to top. | |
# | |
# However, the image data was created with PIL Image tostring and numpy's fromstring, which means we |