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

Monday, December 23, 2024

Metal Slug: Awakening – Brought to Life with Unity3D

Metal Slug: Awakening – Brought to Life with Unity3DThe legendary Metal Slug franchise has always held a special place in the hearts of gamers, and its latest iteration, Metal Slug: Awakening, takes the series to new heights. Developed using Unity3D, the game merges nostalgic arcade action with cutting-edge technology to deliver a visually stunning and engaging experience for fans worldwide.Why Unity3D for Metal Slug: Awakening?Unity3D has become...

Pokemon Go Made with Unity3d Game Engine

How Pokémon GO Revolutionized Gaming with Unity3DWhen Pokémon GO launched in July 2016, it was more than just a game—it was a global phenomenon. Millions of players took to the streets, parks, and city centers to "catch 'em all," blending the digital world of Pokémon with real-world exploration. But have you ever wondered how this groundbreaking game was developed? At the core of its magic lies Unity3D, a versatile and powerful game engine. ...

Thursday, August 31, 2017

Satellite Reign

Satellite Reign is a tactical role-playing video game for Microsoft Windows, OS X and Linux. The game is developed by Brisbane based 5 Lives Studios and is labeled as a spiritual successor to the Syndicate series, which co-founder and programmer Mike Diskett had worked on.The game was released on August 28, 2015. On June 28, 2013, Satellite Reign was announced on Kickstarter with...

Sunday, July 31, 2016

Pokémon GO Android And Ios

Pokémon GO Android And Ios  Five years ago, Niantic set out on a path to change the way people interact with the world around them by creating the world’s first “real world gaming” platform. By exploiting the capabilities of smartphones and location technology and through building a unique massively scalable server and global location dataset, we have helped users all around the world have fun, socialize, and get more fit as they play and...

Sunday, March 13, 2016

LARA CROFT: RELIC RUN

Lara Croft: Relic Run Developer: Simutronics 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...

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; ...