TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How are game remasters made?

2 点作者 forgottenacc57超过 8 年前
Do the devs need to rewrite the game? Or is the source code there and waiting to be compiled again with newly made graphics?<p>Obviously the answer is partly &quot;it depends&quot;, but interested to hear some facts.

1 comment

dijit超过 8 年前
Usually, porting it to an improved version of the engine.<p>When the game is in development the engine is branched and changes happen to accommodate the new game, if you are good about keeping the engine separate from the game then the branch is just to keep things stable, but you&#x27;ll always have to customise it a little.<p>Your engine team keep working on the engine for new games, graphics improve, optimisations for new hardware, lighting, etc;etc;etc;<p>What you need to do is go through all the old content and ensure it has higher resolution bitmaps for all textures, and then port it to the new engine. It sounds simple, but it&#x27;s really not.<p>P.S: I work for ubisoft but I have never been involved with a game remaster, so this is just my perception of how it would be done.