a load of photoshop tutorials (more than 800) covering all styles, usages and techniques

a few very useful links for unity scripting

Unity for Flash Developers - Tutorial 1 on Vimeo (via Vimeo)

Unity Code snipit gathering

limiting the camera position :

var minPosition : float = -10.0; // left border
var maxPosition : float = 10.0; // right border

function Update() {
transform.position.x = Mathf.Clamp(transform.position.x, minPosition, maxPoosition);
}

found here

Distance spy with several objects (close enough)
close to me

1 note

unity user forum