LucasArts' 60FPS Force Unleashed II tech demo

A frame-rate upscaler that really works? Digital Foundry investigates.

At the recent SIGGRAPH 2010, LucasArts coder Dmitry Andreev showed off a quite remarkable tech demo based on work he carried out during the development of Star Wars: The Force Unleashed II. In a video demonstration running on Xbox 360, he showed the game operating at its default 30FPS, but then seemingly magically running at 60FPS - with no apparent graphical compromises aside from the removal of motion blur.

It's a demo that you can download and see for yourself right now, either in HD or else in a more bandwidth friendly standard def encode, with Andreev's original presentation also available to view. Two AVI videos (requiring an h264 decoder) are in the package: an original prototype, along with a further, more refined proof-of-concept running in the Star Wars: The Force Unleashed II game engine.

It's safe to say that it's impressive work that has generated a lot of discussion within the games industry.

On a general level, there's a reason why most console games operate at 30FPS as opposed to the more preferable 60: the more time a developer has to render a frame, the more complex and rich it can be. But what if a mixture of clever tech and exploitation of human perception could be used to create a 30FPS engine that looks like it's running at twice the speed?

Andreev and his colleagues have devised a system that gives an uncanny illusion of true 60FPS, and uses less system resources than its existing motion blur code. Swap out the blur for the frame-rate upscaler and you effectively have all the visual advantages of 60FPS for "free", as there's very little need to run full-on multi-sample motion blur if your game is already running at 60FPS.

Andreev first got the idea for the technique by studying 120Hz TVs that interpolate two frames in order to produce an intermediate image, producing a smoother picture. Software filters on some media players (for example Philips' Trimension as seen on the WinDVD player) were also considered. If this approach could be replicated within the game engine, an effect far more pleasing than most motion blur algorithms could be produced. Discussions after SIGGRAPH 2008 soon led to prototyping.

"So as soon as I got back home, I started to play with it and soon after that realised that there are a lot of issues," Andreev reveals.

"Mostly the artifacts of a different kind, that appear in more or less complex scenes, as well as performance issues (it is really slow when done properly). And to better understand the problem, I made a very quick and simple prototype to play with."

The prototype used the same techniques as the available solutions, studying the image for "motion vectors" that showed how elements of the image would move from one frame to the next. The problem was that it added obvious artifacting, because not enough information is available to rebuild the interpolated intermediate image. Additionally, hunting out the motion vectors is incredibly CPU-intensive (hence why decent video encoding takes so long).

Andreev soon realised that the building blocks of the rendering process itself could be re-purposed and used instead.

"We already know how things are moving as we have full control over them. This way we don't need to do any kind of estimation," Andreev says.

"Moreover, when we do the interpolation, we can handle different things differently, depending on the kind of quality we are happy with. On top of that, we can use different interpolation techniques for different parts of the image, such as layers of transparency, shadows, reflections and even entire characters."

But why interpolate at all? After all, there are some pretty impressive 60FPS titles on the market already. The reason is that dropping down to a capped 30FPS brings a whole range of new rendering technologies within reach for developers. Deferred lighting on the scale seen in games like Killzone 2, Blur and the forthcoming Need for Speed: Hot Pursuit can only really work on console with that extra rendering time available. It also makes life a hell of a lot easier for the basic process of building a game.

"It is not impossible to make a 60FPS game, obviously, but it requires a lot more strict production process for art, design and engineering," Andreev shares.

"It is fair to say that in a lot of cases, during pre-production, studios try to see what it would take to make a 60FPS game. Then, they get something that doesn't look very pretty when running at 60, realising that all the art has to be produced very carefully as well as level and game design."

One solution for making a solid 30FPS title smoother is to use motion blur, and there have been some pretty decent implementations that make the image seem much more realistic and more fluid. Motion blur requires the generation of a so-called velocity buffer, which defines the movement. However, rather than using it for creation of the motion blur, the buffer is repurposed to produce an interpolated, intermediate image that is drawn at the mid-point between two frames.

"Render the velocity buffer as we would do for motion blur. Build the middle frame. And present it at the moment in time it was intended for," Andreev says.

"Note that in case of 30 to 60FPS conversion, the inner frame has to be presented at the middle of the frame. This is all it is, no more, no less. The rest is implementation itself, which is rather tricky."

The key is to re-use as much of the available processing as possible. In the case of Andreev's demo, the depth buffer and velocity map for the next full frame are generated, but directly after this, midway through the processing, this data, combined with elements from the last frame, is used to interpolate the intermediate image before calculations on the next real frame continue.

You'd think that this technique would cause lag, but as the interpolated image is being generated using elements from the next "real" frame, it actually reduces latency. Andreev's technique is single-frame based rather than dual-frame. The latter approach would require buffering two images so has a big memory and latency overhead, while the technique Andreev used effectively interpolates on the fly using past and future rendering elements.

"The most simple and efficient solution is to do the interpolation in-place, during the current frame, while the previous one is on screen. This way the previous front buffer can be mapped as a texture (on Xbox 360) and used for interpolation directly," he explains.

"In terms of latency there is something interesting going on. I said that there is no extra latency, which is true. But if you think about it, latency is actually reduced because we get the new visual result 16.6 ms earlier. You see the result of your actions earlier."

Comments (70) Latest comment 1 year ago

Comments threads automatically close after 30 days, but please feel free to continue chatting on the forum!

  • phAge #1 1 year ago

    Tl;dr
    Edited by 1 at 28/08/10 @ 10:44
  • Ryboy #2 1 year ago

  • w00t #3 1 year ago

    tl;dr = too long; didn't read

    Interesting article :)
  • ResidentKnievel #4 1 year ago

    It's worth a read, PhAge, it's pretty impressive stuff.
    Edited by 2 at 28/08/10 @ 10:51
  • phAge #5 1 year ago

    Yeah, I'm just joshing - I did read it (the major points anyway). Seems almost like... magic! :)

    Didn't understand all of it, but be interesting to see if MS loosen up on their technical directives (or whatever) in the face this new tech.
  • Aimless #6 1 year ago

    I think these sort of "hacks" show why console development is a good thing for games technology as a whole. Without having standardised, ageing hardware to work with I imagine developers would be far more content to just wait for horsepower to improve rather than wringing the most out of existing technology in ingenious ways.

    Necessity is the mother of invention, as they say.
  • rodpad #7 1 year ago

    I've always thought this technique might be used one day for games but was concerned it would produce artifacts or a higher input delay.

    Very interesting and hopefully will be applied to at least all racing games in the future. That being said I've grown quite used to 30fps in certain genres now. It adds a certain "movie" quality to the game. Not to say 60fps isn't superior, which of course it is.
    Edited by 1 at 28/08/10 @ 11:24
  • cianchristopher #8 1 year ago

    Never mind the 60fps guys, just fix the screen tearing and the aliasing in the sequel.

    Oh, and improved gameplay and level design wouldn't go amiss, either.
  • Shinetop #9 1 year ago

    Just imagine what kind of amazing visuals we could get if games only need to render 15 frames per second and still get smooth 60fps performace. This'd instantly lengthen console lifetimes by several years. Microsoft would be crazy if they didn't revise their rules to allow this.

    Amazing. This is like the time when LucasArts somehow made Rebel Assault playable on a (by then alredy sort of weak) 386.
    Edited by 4 at 29/08/10 @ 00:59
  • Badassbab #10 1 year ago

    I've said it before....everyone go out and buy 100hz tvs. Mine is a 1080p 100hz and when I play 30fps games on it with the 100hz setting on full (make sure you do this) it looks more like 60fps. I swear by it.There are some downsides such as when the frame rate drops below 30fps it's more obvious and also sometimes there are weird artifacts (on my LG Trumotion it does anyway).
    Edited by 1 at 28/08/10 @ 11:54
  • Darksjeik #11 1 year ago

    This news brings tears of joy to my eyes. Well not really but still it's fantastic news and imo as much of an improvement as going from SD to HD. A 60 fps framerate drastically improves imagequality!
  • IneptPercy #12 1 year ago

    How about just this time letting us with pc's run at 60fps at we aren't hardware limited?

    Still an interesting read.
  • Shinetop #13 1 year ago

    @badassbab: The 100hz setting on TVs is fine for games but looks horrible when watching movies. I can't be bothered to constantly switch those settings around.
    Edited by 1 at 28/08/10 @ 11:16
  • Gambit1977 #14 1 year ago

    Good read that, well written :)
  • rodpad #15 1 year ago

    It'd be interesting if this could be hardcoded into PC graphics drivers, especially as they render 3 frames ahead by default to begin with.
  • Rack #16 1 year ago

    This completely blew my mind, I mean the interpolation thing is clever, but it somehow reduces latency by pulling frames from the future? I can just about see how it can be done but it's amazing if it actually works that way.
  • raion #17 1 year ago

    This is indeed highly exciting. But, what sort of power do you need to pull this off? You know, I was thinking... could drastically improve the visual quality on handhelds as well, could it?
  • disappointed #18 1 year ago

    The potential here is tremendous. It sounds like static elements could be rendered at 15FPS or even less, allowing them to use extremely high quality visual effects, while the main character is rendered at a higher frame rate. You can imagine what this would mean for all manner of games. Extraordinary.
  • vrinek502 #19 1 year ago

    They are using the 3D animation data to extract the motion vectors and produce an interframe (a P-frame in MPEG-speak). I am guessing it is entirely possible to build an MPEG4 rendering engine using this technique, which is something that OnLive would kill for.
  • AphoticCosmos #20 1 year ago

    So in layman's terms - speedy thing go in, speedier thing comes out?

    :D
  • jaydeluxe #21 1 year ago

    Very interesting. Very ingenious. Maybe a stupid question from me but why the fixation on 30 and 60 fps apart from the historical link to NTSC tvs? Or is that all there is to it. Would a 50 fps game give a wee bit more time to render the frames but still be noticeably smoother than 30 (or 25) fps and with less screen tear?
  • DAN.E.B #22 1 year ago

    ......most impressive!
  • Badassbab #23 1 year ago

    Jaydeluxe-

    Most TV's nowadays display 60hz so hence 30-60.
  • Retroid #24 1 year ago

    Very impressive stuff!

    MS & Sony would be insane not to support some version of this natively in the future in their SDKs, this concept alone could help make the envisioned longer lifespans of existing hardware more feasible.
  • woodnotes #25 1 year ago

    "I've said it before....everyone go out and buy 100hz tvs. Mine is a 1080p 100hz and when I play 30fps games on it with the 100hz setting on full (make sure you do this) it looks more like 60fps."

    Yes, but it also significantly increases input lag, making games like FPS's almost unplayable if you're sensitive to it.

    Also, doing this in software will provide far more consistency and reliability across the board. I just wonder why it has taken so long for someone to do this.
  • Amblin #26 1 year ago

    This is basically image intergation. I'm surprised it wasn't used earlier to be honest. It's basically what Onlive uses as far as I understoood their tech. Awesome hack to improve games and frame rates.

    +1 for sharing too, hopefully there will be more collaboration on tools like this as the industry matures. It seems that we may be headed to a future where increased cross pollination of ideas like this will make the work of creating games far less intensive in terms of creating engines, renderers etc etc.
  • Badassbab #27 1 year ago

    How does it increase input lag?
  • Lord_Gremlin #28 1 year ago

    Finally a good reason to buy it on PS3.
  • cak #29 1 year ago

    Impressive. Most impressive.
  • CaptainQuint #30 1 year ago

    So in theory, Treyarch could keep using the same graphics engine they've inherited from IW and use this new technique to boost CoD to 120fps?! Sweeeeeet!!!

    /piss take
  • ChesterPTR #31 1 year ago

    Wow, this stuff is amazing. Is this a Holy Graill to every game 60fps?
  • photoboy #32 1 year ago

    I've always wondered why developers haven't implemented this. Ever since I saw my brother's Samsung using MotionPlus to make 30fps games look a lot like 60fps I've been desperate to buy a TV with the tech built in. It's not perfect on games as I think they're optimised for 24fps movies so there's an occasional stutter, but even so it makes stuff look fantastic. You can tell I'm more a gamer than a film buff, as they generally seem to hate how interpolation makes movies look like they were filmed on video and I'm obsessed with framerate! :)

    It's interesting that this can be achieved in software, I had assumed the reason no-one had tried it was because it wasn't feasible on today's hardware. If I were Sony or MS I would be looking to include motion interpolation as a feature in hardware on my next console's GPU. Imagine the advantage of being able to present games seemingly running at 60fps while your competition can only manage the same level of detail at 30fps! If it's done on the GPU it might even be possible to remove rendering artefacts as the hardware would have access to the textures and models of the scene.

    It's interesting that this isn't possible on the Xbox without bypassing the DirectX layer. I guess MS are really serious about backwards compatibility on their next system. By requiring all hardware calls via standard DX, games could work on their next console with only a minimal amount of hardware support...
    Edited by 1 at 28/08/10 @ 17:37
  • Geordiemp #33 1 year ago

    Even lucas arts getting into SPU's and fancier engines on 360

    Maybe make some devs like rockstar to wake up
  • StooMonster #34 1 year ago

    @Badassbab

    Because it will take your display a number of frames, commonly five, to work out the vectors needed to calculate the interpolation.

    Personally I turn all that interpolation stuff off because for gaming it adds input lag, and for everything it smears the picture in my opinion (especially films).

    This technique that Digital Foundry has covered is interesting though as the genius is already knowing the vectors for motion, what a genius bit of creative problem solving. I hope that we see this technique in other games soon.
  • bdc #35 1 year ago

    Google Chrome says the Rapidshare download link of the HD video leads to a Malicious Software website, just a fyi
  • DoctorFouad #36 1 year ago

    incredible if this works properly !
  • hesido #37 1 year ago

    Awesome stuff, I had been wondering if frame rate upscaling, prevalent already on high end TV sets, could be applied for games, and I'm really stoked that they got it to work.. Great..

    BTW, most Philips sets do frame interpolation but adds MASSIVE latency, but my brothers Samsung copes with it really fast and it is applicable for games.

    But native implementation of this using render buffers is awesome, and will bring 60fps awesomeness to everybody!
  • vizzini #38 1 year ago

    hesido: Awesome stuff, I had been wondering if frame rate upscaling, prevalent already on high end TV sets, could be applied for games, and I'm really stoked that they got it to work.. Great..

    BTW, most Philips sets do frame interpolation but adds MASSIVE latency, but my brothers Samsung copes with it really fast and it is applicable for games.

    But native implementation of this using render buffers is awesome, and will bring 60fps awesomeness to everybody!


    The difference with MotionFlow is that the TV is taking a 25FPS SD or 60FPS HD source picture and creating multiple sub fields/frames to physically output a picture at 100Hz-600Hz; that the brain can further interpolate.

    The Siggraph prototype demo described in this article will still only be generating 30 sub frames per second (or less on 360) that are displayed on a legacy SD TV or Top-end HD screen (25hz-600hz).
  • orangpelupa #39 1 year ago

    after reading about the "rules" on xbox 360 using directx api. and "no rules" on PS3.

    so.. Microsoft want to make sure the Xbox 720 (whatever) will have backward compatibility on 360.
    Sony PS4 maybe not so compatible with ps3 game

    also,
    Xbox become easier to develop thanks to the DirectX API, but it make HARD to "code to the metal" because the DirectX TRC.
    PS3 hard to develop because no standarized / dictated API from sony, but it can be coded "to the metal" because the developer is free to do anything.

    uh.... this will make xbox 360 exclusive game hard to use xbox full potential....

    wow im become OOT, sorry
  • hesido #40 1 year ago

    @vizzini: Thanks for the info. I'm aware there will be differences but I meant this frame interpolation techniques as a whole.
  • TheJuriel #41 1 year ago

    This is a damn interesting and hopeful article. I like the cut of its jib.
  • edhe #42 1 year ago

    Nice, hope ms optimize things before the ps3's "flexibility" actually bears fruit.
  • flanker22 #43 1 year ago

    wonder if its possible to make this work with a variable framerate and whenever there are dropped frames shove these repurposed frames in instead. this would mean all games would essentially be locked at 30/60fps no screen tearing
    Edited by 1 at 29/08/10 @ 00:50
  • EggyDeth #44 1 year ago

    The claims of reduced latency are clearly mistaken. You may see the frame 16.6ms earlier than 33ms after the whole previous frame, but the interpolated frame was initiated 33ms before it is first seen. So the most you can say is that latency is unchanged, you see an interpolated version containing half the new frame 33ms after it was initiated, whereas in normal rendering you see the entire frame 33ms after it was initiated. Simples.
  • JensonJet #45 1 year ago

    "It is fair to say that in a lot of cases, during pre-production, studios try to see what it would take to make a 60FPS game. Then, they get something that doesn't look very pretty when running at 60, realising that all the art has to be produced very carefully as well as level and game design."

    That says it all... the reason most games don't run at 60 frames a second is because the industry is full of incompetent or lazy programmers. Thankfully the likes of Infinity Ward, id software, Turn 10 and Polyphony have the skills to show us how games can run on consoles.
  • TheJuriel #46 1 year ago

    "the reason most games don't run at 60 frames a second is because the industry is full of incompetent or lazy programmers"

    Hah... Wow, you really think this? You cannot have all the graphical gizmos you want and 60 FPS with our current consoles. That some companies make their games run at 60 FPS and they still look good, just means they designed it with the limitations in mind and made a compromise between looking good and looking smooth.
  • xentar #47 1 year ago

    I really wonder what this can do for 3D gaming. I know many EG readers do ot have 3D TV (I dont own one but tested many already as part of my job) and I love the idea (hate the current execution in terms of game and movie quality) but combining well designed 3D games with head tracking... oh sweet lord we could peek around a corner in 3D shooters!
  • jaydeluxe #48 1 year ago

    Badassbab - Most TV's nowadays display 60hz so hence 30-60.

    Yeah but they also can display 50Hz. Unless Yank tellies only work at 30/60? Ours seem to do 25/30/50/60 before adding interpolation or other tricks.

    There's got to be a good reason for the 30/60 thing. It's not like every developer has overlooked 50Hz by mistake. Probably rubbish yank tellies to blame, I think. Unless anyone know better?

  • Ywap #49 1 year ago

    Very impressive!

    30 fps with blur is torture and anything that could possible cure this disease would be a blessing.
  • Badassbab #50 1 year ago

    Jaydeluxe,

    It could be as you say a lot of TVs in the NTSC world (Namely Japan and the US) don't support 25-50hz but with the onset of HDTV I don't think developers care for inferior framerate PAL standard 25-50hz who's advantage over NTSC was higher resolution (576 vs 480).
  • StooMonster #51 1 year ago

    @ jaydeluxe: yep, historically US models only handled 60Hz; these days they might also do 24Hz (for Blu-ray). But even many current US models do not handle input 50Hz signals.

    On a nerdy sidebar, this is why I avoid British drama on Blu-ray; e.g. Life On Mars. Although the content is shot at 25p and transmitted at 50Hz, when it's mastered on Blu-ray the FPS is slowed down to 24p; the reason being that despite Blu-ray format handling 1080p25 perfectly well, the discs might not work on American displays so it isn't used and we get temporal artefacts instead. :(

    Computers monitors are minimum of 60Hz too.

    Over here in Europe, since the late-1980s I've always made sure my televisions could handle 60Hz -- used to import consoles, as 60Hz gameplay much smoother and faster than 50Hz. But it's only with the advent of flat-panels that 60Hz has become common place.
  • StooMonster #52 1 year ago

    hesido: most Philips sets do frame interpolation but adds MASSIVE latency, but my brothers Samsung copes with it really fast and it is applicable for games

    You either use more frames to calculate vectors for better picture quality interpolation, or fewer frames for lower quality interpolation.
  • hesido #53 1 year ago

    @Stoomonster: Philips' version is indeed higher quality.. Less artefacts, interpolation of bigger movements, and support for 1080p (Brother's samsung don't do it in 1080p.)
  • hesido #54 1 year ago

  • orangpelupa #55 1 year ago

    ^^ responsiveness requirement will differ from game to game. For shooter, i think responsiveness is a must too. But in the reality, many people have no problem with Killzone2 "lag".

    but for game like this, seems responsiveness can have wider toleration.

    sorry my english
  • Miths #56 1 year ago

    "And half as responsive."

    Though it may not be ideal from a gamer's perspective, I imagine many TV manufacturers concern themselves with improving image quality for TV broadcasts and movies before games, and obviously lag doesn't matter in the slightest with the two former - and you can still usually turn off all the extra image processing for gaming.
  • funkateer #57 1 year ago

    Impressive technology, but I don't buy that it reduces lag at all.
    I think it reduces lag half of the time, but actually increases lag in the frames in between, so on average the lag is the same as a regular 30fps game.
    I mean, at the end of the day the game still runs at 30fps, no matter what smart interpolation techniques you apply.
  • hesido #58 1 year ago

    @orange, @miths:
    Notmyrealname implied it can be used for 15fps games to work at 30fps, thereby providing even more for additional detail, but responsiveness of 15fps games is not good at all (I don't mind the responsiveness of a 30fps game).. But yeah, why not use it for cut-scenes etc etc..

    The powerpoint even talks about rendering different portions of the game at different fps (e.g. background could be rendered at 15fps, upscaled to 60, while dynamic objects could be rendered at 30fps, again upscaled to 60fps).. This tech clearly is a breakthrough, I can't understand why it doesn't seem to get the credit it deserves!
    Edited by 1 at 29/08/10 @ 19:27
  • Shinetop #59 1 year ago

    Like they say in the article, the responsiveness increases too, since you see your character react earlier. 15fps games running at 30fps would feel like a game running at 30fps in terms of responsiveness.
  • Badassbab #60 1 year ago

    Urgh! After some research have discovered it's best to play video games in tv setting set to 'game mode' which reduces lag to a minimum. Unfortunately this means from my point of view inferior picture quality. I like bright and cool colours, high contrast and 100hz but my tv game mode makes everything look bland. Kinda like quincux AA. Also just read if TV set to 100hz on a PAL TV (which is basically all UK TVs) and the console is set to 60hz then the tv has to first downscale to PAL 50hz and then upscale to 100hz. Great! So to reduce lag I should set console to 50hz or take off 100hz. Or buy an NTSC tv at 120hz.
  • uzivatel #61 1 year ago

    I thought Capcom needed this kind of resources to build new multiplatform engine from ground up.

    Anyway, hope it looks better in motion.
  • StooMonster #62 1 year ago

    Miths: I imagine many TV manufacturers concern themselves with improving image quality for TV broadcasts and movies before games, and obviously lag doesn't matter in the slightest with the two former

    Video processing lag means that display has to delay audio, otherwise there's lip sync errors; not a problem if you tele is one with built in speakers, but if you're using a projector or dedicated audio equipment then this can be a huge problem (and why many high-end amps have 'audio delay' as a feature).

    Badassbab: Also just read if TV set to 100hz on a PAL TV (which is basically all UK TVs) and the console is set to 60hz then the tv has to first downscale to PAL 50hz and then upscale to 100hz.

    Some might do that, but others will simply display 60Hz at 120Hz ... the 100Hz is only 'marketing' rather than a hardware restriction. I know for a fact that my "100Hz" displays ups 60Hz to 120Hz because I've run judder-test patterns on them to see (sad video geek that I am).

    Edit: close tags. :$
    Edited by 1 at 29/08/10 @ 21:16
  • Lusterpurge #63 1 year ago

    I honestly can't tell the difference between 30 and 60 fps, especially if they weren't right next to each other in the video. I guess I'm lucky in that I don't ever have to fret about it.
  • vizzini #64 1 year ago

    Personally I hope this technique doesn't become widespread, as it only seems like a good idea, if they've already eek out every frame-per-second in optimisation first.

    I fear it might just increase the number of developers who don't properly budget for geometry and fill-rate to set the visual fidelity of their games for a desired frame rate at the design stage.

    A game with Uncharted 2's/Zelda Twilight princess gameplay and graphics could justifiably add this technique and it would still be a win-win situation for customers, as the action still suites 30fps.

    The 3D action platform genre on the other hand; really has no excuse for sub 45fps rendering, as the game genre demands high frame-rates at the design stage, so that the games are smooth enough to be playable.

    This is certainly a contradiction I have with Assassin's creed 2, as I really enjoyed the game and brush over the frame rate issues that caused me to fail and retry many assignments. But even when AC2 ran at a stable 30fps I still wished it had the motion fidelity of a Mario Galaxy/Sunshine/64. Nintendo normally wouldn't dream of releasing a 3D action platformer that chugged, even if that involved dialling down a level's graphics.

    I have only played the previous Force Unleashed demo, so I'm not really sure if this game was/is truly a 3D action platformer that needs a higher frame-rate(for input feedback), hopefully Eurogamer will cover that issue in the review.
  • tazket #65 1 year ago

    amazing!

    wondering if slow-paced game like avg and rpg could do 15/30 to achieve an even better image quanlity?
  • rumblesushi #66 1 year ago

    Proper 60fps games are almost unreachable?

    I like Bayonetta's visuals significantly more than this game's, and that runs at a true, rock solid 60fps.

    It's an interesting hack for sure, but one point that is completely neglected is that the point of 60fps isn't just visual eye candy, the silky smoothness that it feeds to our eyes, but actually the response time.

    60fps just feels and IS so much more responsive than 30fps. Which is the main reason that any proper fighting game runs at 60fps, a fighting running at 30fps feels so much less precise.

    Response time is probably one of the reasons that Forza 3 runs at 60fps too.

    I like my games to run at 60fps for the response times and precision they offer, I prefer the feel of them to 30fps games, not just the look.
  • rumblesushi #67 1 year ago

    So I guess it's certainly something interesting, as a possible more efficient replacement to motion blur, but it's a bit gimmicky, and I don't think you should be able to call a game 60fps using a "framerate upscaler".

    Just like you shouldn't/wouldn't call a game HD if if was rendered internally at 640 by 360, upscaled to 1280 by 720.
  • Obiwanshinobi #68 1 year ago

    I want real 60 fps from my games for the sake of responsiveness. This sounds just like a precious little more than motion blur.
  • chaywa #69 1 year ago

    I do hope that this genius isn't fired as part of the giant LucasArts restructuring at the moment. Twas a fascinating read and some truly impressive tech to create such a brilliant solution
  • Badassbab #70 1 year ago

    Ratchet and Clank Future: A Crack in Time-

    Sub HD but 60FPS and still looks beautiful.