Performance is the crucial thing while you are dealing with game development for hand held devices! Before going optimized and performance oriented game development, one should understand key terms for measuring device performance. The major unit(yes we can say Unit) for device performance is FPS and Draw Call.
Tuesday, September 9, 2014
Subscribe to:
Posts (Atom)
Popular Posts
-
using UnityEngine; using System.Collections; public class CameraShake : MonoBehaviour { public Transform camTransform; public float sh...
-
var camera : Camera; var shake : float = 0; var shakeAmount : float = 0.7; var decreaseFactor : float = 1.0; function Update() { ...
-
Most important thing need to keep in mind while using Coroutine is that, Coroutine is affected by Timescale . ...