• dill@lemmy.one
    link
    fedilink
    arrow-up
    3
    ·
    1 year ago

    I imagine there is some reason we still see this. Any devs in the Industry lurking?

    • larperdoodle
      link
      fedilink
      arrow-up
      6
      ·
      1 year ago

      I’m not in the industry, but I’ve dabbled in Unity and that’s just kind of how it works by default. You create a game object and it gets an Update() function that is called once per frame. You’re encouraged to perform calculations and update it’s position in that callback.

      You’re supposed to use Time.deltaTime to scale your calculations based on how long it’s been since the last frame.

      But that takes effort and it’s very easy to just not do that and your game will still work fine in most cases.