Entity Crisis
The blog of Simon Wittber.
Wednesday, February 04, 2009
Global Game Jam - Final Games
Here are some screenshots and links to the final games produced at the
Global Game Jam in Perth
.
Little Big Forts
Under One Roof
Zeppelin Escape
Little Shop of Farters
Brown Cloud
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Popular Posts
SOCKS proxy using SSH
I've just seen and used a brilliant ssh option. The command: sudo ssh -D localport user@externalhost will set up a local SOCKS proxy l...
Unity3D WheelCollider and motorTorque.
So, you've created a car prefab using WheelCollider components, and now you can apply a motorTorque to make the whole thing move along. ...
...??!!
Really Really Easy Multithreading in Unity3D.
When you start working with threads in your Unity3D project, you will discover that many things need to be done in the main loop. For exampl...
Convert CSV to TSV
import csv open("output.tsv", "w").write("\n".join("\t".join(e.strip() for e in i) for i in csv.rea...
Ripple Shader
Thank to Adrian Boeing I was inspired this morning to hack together a ripple shader for Unity3D. Thanks for the math Adrian. You can see t...
Take a Unity Screenshot with Alpha
This script takes a screenshot and saves it to the user desktop. It has options to use an alpha background, and also upscale the image. Usef...
Spatial Hashing
Often, when building a game, you need to test if objects are colliding. The objects could be spaceships, rocks, mouse pointers, laser beams....
Procedural Space Skybox for Unity3D.
Space is awesome. Especially when it is generated using Perlin noise, and some cool shaders. You can try it out over here.
Controlling an IP Camera from Unity3D.
I recently bought an IP camera, which I discovered has a HTTP interface which lets me pan, tilt, take pictures etc. Of course, I had to use ...
No comments:
Post a Comment