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.

Search This Blog

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

using UnityEngine; using System.Collections; public class PlayerController : MonoBehaviour { // Using same speed reference in both, desktop and other devices public float speed =1000; void Main () { // Preventing mobile devices going in to sleep mode //(actual problem if only accelerometer input is used) Screen.sleepTimeout = SleepTimeout.NeverSleep; ...

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  Click hear ...