About

Deus-Ex-The-Fall

Deus Ex: The Fall is the start of a new journey in the award winning Deus Ex game series for Android phones and tablets.

Assassin's Creed Identity

The Game Made With Unity 3D.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Lara Croft: Relic Run

Lara Croft: Relic Run is the new free action adventure for Lara Croft fans.

Search This Blog

Sunday, March 13, 2016

LARA CROFT: RELIC RUN

Lara Croft: Relic Run


Developer:
Genre(s):
Action, Endless Runner
Lara Croft: Relic Run is the new free action adventure for Lara Croft fans. Run, swing, drive, and dive through beautiful and challenging locations collecting clues to uncover ancient relics. There’s no time to waste - how long can you survive?
Key features:
· 3 incredible locations – Jungle Temple, Desert and the new Mountain Pass - each filled with secrets and danger.
· Progress through the campaign map to collect relics and advance the Relic Run story.
· Endless mode for non stop action and the chance to rack up big rewards.
· Power up Lara’s arsenal of weapons and engage in frantic combat.
· Use parkour moves to create death-defying last minute escapes.
· Master fast-paced vehicles like ATVs and motorcycles to give Lara more ways to conquer the terrain.
· Epic Boss Fights – defeat iconic enemies including the return of the infamous T-Rex!
· Swap and upgrade equipment to give Lara the edge.
· Choose from a wardrobe of classic Lara outfits, each with its own gameplay perks.
· Earn bragging rights on the leaderboards.
· Outsmart and sabotage your friends by Cursing their Relic Run Each location features unique gameplay elements and brand new challenges!


    Download for free today!

Tuesday, October 6, 2015

Application Quit In Unity 3D

Application Quit In Unity 3D


public void QuitGame ()
{
#if UNITY_EDITOR
UnityEditor.EditorApplication.isPlaying = false;
#else
Application.Quit ();
#endif
}

Monday, August 24, 2015

Use Accelerometer for Roll-a-ball Movement in unity 3d






  1. using UnityEngine;
  2. using System.Collections;
  3. public class PlayerController : MonoBehaviour
  4. {
  5. // Using same speed reference in both, desktop and other devices
  6. public float speed =1000;
  7. void Main ()
  8. {
  9. // Preventing mobile devices going in to sleep mode
  10. //(actual problem if only accelerometer input is used)
  11. Screen.sleepTimeout = SleepTimeout.NeverSleep;
  12. }
  13. void Update()
  14. {
  15. if (SystemInfo.deviceType == DeviceType.Desktop)
  16. {
  17. // Exit condition for Desktop devices
  18. if (Input.GetKey("escape"))
  19. Application.Quit();
  20. }
  21. else
  22. {
  23. // Exit condition for mobile devices
  24. if (Input.GetKeyDown(KeyCode.Escape))
  25. Application.Quit();
  26. }
  27. }
  28. void FixedUpdate ()
  29. {
  30. if (SystemInfo.deviceType == DeviceType.Desktop)
  31. {
  32. // Player movement in desktop devices
  33. // Definition of force vector X and Y components
  34. float moveHorizontal = Input.GetAxis("Horizontal");
  35. float moveVertical = Input.GetAxis("Vertical");
  36. // Building of force vector
  37. Vector3 movement = new Vector3 (moveHorizontal,0.0f,moveVertical);
  38. // Adding force to rigidbody
  39. rigidbody.AddForce(movement * speed * Time.deltaTime);
  40. }
  41. else
  42. {
  43. // Player movement in mobile devices
  44. // Building of force vector
  45. Vector3 movement = new Vector3 (Input.acceleration.x, 0.0f, Input.acceleration.y);
  46. // Adding force to rigidbody
  47. rigidbody.AddForce(movement * speed * Time.deltaTime);
  48. }
  49. }
  50. }

  51. Read more

Friday, February 27, 2015

3rd person shooter Demo With Unity 3d

3rd person shooter Demo : Shoot the hovering orb repeatedly to make it break and go into a frenzy before finally exploding.
Besides particle effects, physics, ragdolls, and more, this demo shows animation techniques such as realistic foot placement, procedural aiming and head turning, and how to smoothly turn procedural adjustments on and off while reloading.


For Download Free Demo

Wednesday, December 10, 2014

Survival Shooter game in Unity 3d

PROJECT: SURVIVAL SHOOTER

Learn how to make an isometric survival shooter game with this project from Unite training day 2014.

You can download the Project here.

Monday, December 8, 2014

Third person stealth game in Unity 3d

      PROJECT: STEALTH


Create a fully functioning level of a third person stealth game, learn about player characters, enemies, game logic & management systems.


Stealth