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

Showing posts with label Free Projects. Show all posts
Showing posts with label Free Projects. Show all posts

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