https://github.com/ajayrandhawa/the-fury-road
This is a 2D Game developed in UNITY (Gaming Engine). The main idea behind the game is that you have to drive as long as you can on a road which has no end and has lots of difficulties. There are mountains (Big & Small) in your way which does not allow you to drive smoothly and creates the problem of going out of fuel. Another difficulty includes mines. Mines are placed in your way and when your car hits the mine it will be thrown into the air and you have to balance the car and make stunts and land it safely. Your car will be crashed if its upper part, bumper or step bumper or trunk lids hits the ground. You have to reach as far as you can before going out of fuel. Also you are provided with boost in your way. The amount of boost is pre-fixed. Taking the boost is the only way to cover a long distance. You are also provided with fuel tanks in your way. Another important part in the game is collection of coins while playing.
https://github.com/ajayrandhawa/the-fury-road
2d 3d boost car coins cross-platform csharp design game gaming html play racing speed unity unityengine
Last synced: 3 months ago
JSON representation
This is a 2D Game developed in UNITY (Gaming Engine). The main idea behind the game is that you have to drive as long as you can on a road which has no end and has lots of difficulties. There are mountains (Big & Small) in your way which does not allow you to drive smoothly and creates the problem of going out of fuel. Another difficulty includes mines. Mines are placed in your way and when your car hits the mine it will be thrown into the air and you have to balance the car and make stunts and land it safely. Your car will be crashed if its upper part, bumper or step bumper or trunk lids hits the ground. You have to reach as far as you can before going out of fuel. Also you are provided with boost in your way. The amount of boost is pre-fixed. Taking the boost is the only way to cover a long distance. You are also provided with fuel tanks in your way. Another important part in the game is collection of coins while playing.
- Host: GitHub
- URL: https://github.com/ajayrandhawa/the-fury-road
- Owner: ajayrandhawa
- Created: 2018-06-10T06:36:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-14T10:57:31.000Z (about 7 years ago)
- Last Synced: 2025-07-12T14:45:02.791Z (5 months ago)
- Topics: 2d, 3d, boost, car, coins, cross-platform, csharp, design, game, gaming, html, play, racing, speed, unity, unityengine
- Language: C#
- Size: 101 MB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The-Fury-Road
This is a 2D Game developed in UNITY (Gaming Engine). The main idea behind the game is that you have to drive as long as you can on a road which has no end and has lots of difficulties. There are mountains (Big & Small) in your way which does not allow you to drive smoothly and creates the problem of going out of fuel. Another difficulty includes mines. Mines are placed in your way and when your car hits the mine it will be thrown into the air and you have to balance the car and make stunts and land it safely. Your car will be crashed if its upper part, bumper or step bumper or trunk lids hits the ground. You have to reach as far as you can before going out of fuel. Also you are provided with boost in your way. The amount of boost is pre-fixed. Taking the boost is the only way to cover a long distance. You are also provided with fuel tanks in your way. Another important part in the game is collection of coins while playing.
# Game View

### Features
- Lots of different vehicles (many different vehicles:truck, car, monster truck, etc.)
- Suspension
- Numerous stages with levels to reach in each
- Scoreboard
- Cool graphics and smooth physics simulation
- Designed to look good on low resolution and high resolution devices
- Mines
- Boosters
- 5+ Levels!
- 5+ Vehicles!
- Fuel
- Coins
### Prerequisites
1. Unity 5.2
2. Mono Develop
3. Windows System
### Installing
1. Download Repo from Github.
2. Extract to folder.
3. Open Project using Unity 5.2.
4. Open Assest/Scenes Folder and Open "Start-Game" Scenes using Unity.
5. Click on Play.
6. Enjoy the Game.
Executeable Version of Game Added in Project "Game" Folder.
# Code
```
//Car Balancing
using UnityEngine;
using System.Collections;
public class CarBalancing : MonoBehaviour {
public float ForwardRotationSpeed;
public float BackwardRotationSpeed;
Rigidbody2D rigidbody2d;
void Start () {
rigidbody2d = GetComponent ();
}
void Update () {
if (Input.GetKey (KeyCode.RightArrow)) {
rigidbody2d.MoveRotation(rigidbody2d.rotation-ForwardRotationSpeed*Time.fixedDeltaTime);
}
if (Input.GetKey (KeyCode.LeftArrow)) {
rigidbody2d.MoveRotation(rigidbody2d.rotation+BackwardRotationSpeed*Time.fixedDeltaTime);
}
}
}
```
```
//Car Movement, Boost Activated etc.
using UnityEngine;
using System.Collections;
public class CarBalancing : MonoBehaviour {
public float ForwardRotationSpeed;
public float BackwardRotationSpeed;
Rigidbody2D rigidbody2d;
void Start () {
rigidbody2d = GetComponent ();
}
void Update () {
if (Input.GetKey (KeyCode.RightArrow)) {
rigidbody2d.MoveRotation(rigidbody2d.rotation-ForwardRotationSpeed*Time.fixedDeltaTime);
}
if (Input.GetKey (KeyCode.LeftArrow)) {
rigidbody2d.MoveRotation(rigidbody2d.rotation+BackwardRotationSpeed*Time.fixedDeltaTime);
}
}
}
```
## Version
2.0
## Authors
Ajay Randhawa
, Bhinderjit Singh Kaler
## Donate
If you appreciate that, please consider donating to the Developer.
[](https://www.paypal.me/ajayrandhawa)
#### Happy Open Source....