• RightHandOfIkaros@lemmy.world
    link
    fedilink
    English
    arrow-up
    48
    arrow-down
    1
    ·
    18 days ago

    They used Time.deltatime in FixedUpdate.

    As an experienced Unity developer, its clear that they have literally never developed anything in Unity, ever, and probably just skimmed the documentation.

    This hurts me and its not even my code.

    • Kelly@lemmy.world
      link
      fedilink
      English
      arrow-up
      19
      ·
      18 days ago

      They used Time.deltatime in FixedUpdate.

      To be fair Unity knows this is going to happen and returns Time.fixedDeltaTime to keep things working properly.

      • RightHandOfIkaros@lemmy.world
        link
        fedilink
        English
        arrow-up
        19
        arrow-down
        1
        ·
        18 days ago

        But they could stop that internal call and directly use Time.fixeddeltatime instead. Any person that knows how to use Unity knows to not mix the two. Which is my point.

        Gearbox likely has experience with Unreal only, and have no idea what they’re doin gwith Unity. Or at least, the team they put on RoR2.

      • ggppjj@lemmy.world
        link
        fedilink
        English
        arrow-up
        5
        ·
        17 days ago

        I’ve never used unity either, sounds like they used a property that means “variable time between frames” in a context that is expecting a constant.

        Almost sounds like they were setting up a “thing happens faster if your CPU is faster” type of logical bug that the engine is at least preventing internally.