Considering their size (a few hundred people for the whole studio AFAIK), Remedy consistently punches above their weight when it comes to graphics. Off the top of my head only Remedy and CD Projekt Red are able to compete with the big dogs (Unreal, Unity, EA Frostbite) when it comes to image fidelity and performance. Their GDC/siggraph/etc presentations are fantastic for anyone interested in computer graphics or tech…
> without having the 'every NPC has 10k-poly teeth in their mouth' problem that's currently sabotaging Cities Skylines 2's performance Sad to see an otherwise good comment end with a misconception. The problems with the performance is much grander than just "teeth rendered but not visible" ( https://blog.paavo.me/cities-skylines-2-performance/ ), although I guess it's a illustrative point. Missing LODs and lack of cu…
Northlight technology in Alan Wake 2
151–160 of 274 posts
Re: Northlight technology in Alan Wake 2
#152In the first example it's still really jarring how much their feet slide around on the ground, or sliding in place as they walk into an object without moving. I wonder when this will ever be solved. Don't get me wrong, the engine is incredible and the visuals and systems are some of the best we have seen.
It's always a tradeoff between responsive movement and realistic movement. RDR2 has very realistic animations, with the tradeoff being slightly "floaty" controls. Personally I prefer snappy movement i.e. when I press left the screen character moves left immediately. A more realistic looking animation system introduces a delay while you wait for the feet animation to "catch up" to player input.
They could alter the animation such that feet don't slide across the ground and keep responsive movement. The result would be a worse quality animation, because the movement of the legs would not appear to be pushing the rest of the body around. Instead, it would look more like the feet are following the rest of the body retroactively, while holding onto the ground.
A good example of this is Factorio's spidertron. When the spidertron moves, the legs follow with a walking motion that perfectly tracks the ground below. In this case, it's a great-looking tradeoff, probably because there are so many legs, and not much animation done to the body itself.
Re: Northlight technology in Alan Wake 2
#153Re: Northlight technology in Alan Wake 2
#154I'd be tempted to work on game dev tooling one day if there were more remote work opportunities.
Re: Northlight technology in Alan Wake 2
#155Earlier quoted context omitted.
We were there over a decade ago with Euphoria, but I think they've stopped selling/developing it? GTA 4 used it. https://www.youtube.com/watch?v=HauN98naZ9U
GTA IV's tech was quite ahead of its time (2008), with the integration of Euphoria (which had to be integrated in-house by NaturalMotion engineers inside Rockstar's studio @ Edinburgh). The other comment correctly pointed out that NaturalMotion was acquired by Zynga, who in turn got acquired by Take-Two (parent of Rockstar Games).. So who knows, perhaps we'll still see an updated version in the sixth major instalment…
Characters blended to the hand written, custom, euphoria behaviors in certain situations… it handled falls, stumbles, deaths, etc. Generally it replaced ragdoll physics but wasn’t used during most character movement behaviors.
Re: Northlight technology in Alan Wake 2
#156Earlier quoted context omitted.
Considering you walk around and don’t have a problem with it, I’d wager that putting a more realistic walk model into a game and changing the control scheme to be a bit more natural would lead to a learnable system for control that would achieve both goals. Say ZMP
Of course there is already measurable lag from when your brain tells your hand and fingers to move, to when they actually move! An interesting personal anecdote I have: I damaged my back with bulging disc, which caused horrific sciatica nerve pain. When I was able to walk again, I had some nerve damage. This meant I had lag in my left leg! I’d tell the leg to move instinctively when walking and there would be a delay…
Re: Northlight technology in Alan Wake 2
#157Earlier quoted context omitted.
There was actually a regress in this respect. Some ten years ago there was a "destructible physics" boom in many big games, but nowadays most games abandoned it. There seems to be a trade-off between graphical fidelity and the opportunity for physics-based manipulation of the environment.
Remedy's previous game, Control, had probably one of the most impressive destructive environments. https://www.youtube.com/watch?v=12NORuGfcLc
Re: Northlight technology in Alan Wake 2
#158Man, all these graphical enhancements and they still can't design a proper camera. Off-centre camera systems, aka "over the shoulder" cameras make me motion sick. I need the player to be in the centre of the screen or everything feels lopsided. By all means, do the RE4 zoom thing when the player aims a gun or similar, but while moving the camera should be horizontally centred. Halo tried something similar with giving…
(also i yelled at more than one game that had an option to switch shoulder but not put the character at the center - if you are bothering to implement this why not also add the center option? :-P)
Re: Northlight technology in Alan Wake 2
#159Earlier quoted context omitted.
Inverse kinematics is used but, again, that does not solve the problem of the trade off between response time and realistic movement. It simply "snaps" the feet to the ground.
A lot of the problems occur during movement, when responsiveness doesn't even matter. I still have yet to see a game where it's impossible to get randomly stuck at a fence or rock that instantly stops one's movement for example. Making the character dynamically avoid such minor obstacles would make the game more responsive, not less. And games with fancy animations are often not just less responsive, but also less co…