Catagories

Animation (1) Camera (1) Camera Script (2) GUI (2) Lerpz (1) Moving Objects (1) Platform (1) Script (1) Sied Scrolling (1) Third Person (1) Unity (1)
Showing posts with label Platform. Show all posts
Showing posts with label Platform. Show all posts

Friday, 10 December 2010

Side Scrolling Camera

Script for simple side scrolling camera. Attach the script to your main camera.

var Target : Transform;

function Update () {
transform.position = Target.position + Vector3(0, 0, -3);

}