Ever wanted to make a professional game for Windows, Mac, Linux, iOS, Android, PS3, XBOX or Wii. Well now you can for FREE. With these easy steps, you will be able to make games in no time.
Noteworthy game 'Bad Piggies' was made using Unity!!
- Install Unity Game Developing Software
- When the Unity Software is installed on your machine start to create a 3D World.
- Download and import a vehicle
- Build and Run your game.
How to create a 3D World in Unity:
Create a Terrain- Terrain Menu > Create Terrain
Design the Landscape- Select Terrain in the Hierachy section and click the Raise/ Lower Terrain icon. You can now build hills on your terrain.
Importing a vehicle in Unity:
Delete the First Person Controller
Drag the car onto the scene
Create a new camera- GameObject > CreateOther > Smooth Follow
Drag Car onto the SmoothFollow script on in the Hierachy section.
Coding Concepts required to make a video game:
Move a GameObject on the X (Left/right),Y (Up/Down),Z (Forward/Back) Axis
function Update (}[transform.position. x=transform.position.x+-.01;}
function Update (}[transform.position. y=transform.position.x+-.01;}
function Update (}[transform.position. z=transform.position.x+-.01;}
Move a physics based GameObject
function Update(}[rigidbody. AddForce (2.0.O);}