10000 Update() calls | Unity Blog

void Update() { transform.Translate(0, 0, Time.deltaTime); }For an experienced developer this code is a bit odd. It's not clear how exactly this method is called. It's not clear in what order these methods are called if you have several objects in a scene. This code style doesn't work with in…