Unity how to make camera shake code example
Example: Unity how to make camera shake
// Add this to a script on the camera
public void StartShake(float dur, float mag)
{
StartCoroutine(Shake(dur, mag));
}
IEnumerator Shake(float duration, float magnitude)
{
Vector3 OriginalPos = transform.position;
float elapsed = 0.0f;
while (elapsed < duration)
{
float x = Random.Range(-1f, 1f) * magnitude;
float y = Random.Range(-1f, 1f) * magnitude;
transform.localPosition = new Vector3(x, y, OriginalPos.z);
elapsed += Time.deltaTime;
yield return null;
}
transform.localPosition = OriginalPos;
}