To help personalize content, gather statistics and provide a safer experience, we use cookies.
By clicking or navigating the site, you agree to allow our collection of information through cookies.
Learn more about cookies in our
Cookies Policy and
Privacy Policy.
Thanks, all details in this regard would be welcome. We do have a timed buffer (your estimate was surprisingly on point, it's 150ms), but it's by design, but maybe that design choice was a bad idea. We'll try it out.
You know what, you are right, i currently suck ass at the game so i should wait for longer to give proper feedback. <-that is not sarcasm.
I've gotten this same crash 3 times now. Haven't noticed a trend in what's causing it, seems random on my end. Will edit this post if I figure out how to reproduce it. The only other game I play that I'm aware of being built off Unreal Engine is PUBG which also crashes intermittently similar to this but without any error message popup. Not sure if they're related
windows 10 pro / version 1703 / build 15063.540
r7 1700, 32gb ram
1080ti reference / driver 384.94
Edit: Adding different error messages (with similar behavior) to this post
Mark September 14th on your calendars boys.
It's the date of the next delay.
We've been busy! Work is progressing towards our Alpha milestone, which means getting critical bugs sorted out, putting UI in place, and deciding which content will make the initial cut. Along with this, we're also taking care of some optimization to make sure we get rid of any nasty framerate spikes during gameplay and that we're able to hit stable framerates in battles of various sizes. Being a melee game with a reliance on timing, the input has to be really tight, and there's not much room for framerate dips. Being a graphically intensive game on top of this can make things quite challenging.
We leverage level of detail (LOD) functionality heavily to this end. The simplest of its kind is a reduction in polygons as characters move further away from the screen, like in the example below.
This reduces some load on the GPU, but doesn't do much when the CPU is struggling, so we have to resort to many other tricks. For example, a big culprit are our characters because they are comprised of many different parts, each part requiring their own texture. If you add up all the gloves, arms, shoulders, chests, helmets, coifs, skirts, legs and boots that a character can wear at any time, you end up with a staggering number of parts. These make each character truly unique, but are also quite expensive for the CPU when it has to tell the GPU to draw them. To alleviate this, when characters are far away and when this sleight of hand is not noticeable, we switch to a different construction that is very efficient for the CPU to pass around, and it looks a bit like this:
We're also adding other optimizations on the CPU side of things, and letting players really lower the CPU load. One drastic measure we're taking is that we allow CPU code to run at a lower FPS for content that is further away from the player. This is typically done in games for animation, which ranks among the most expensive, but we generalize this approach and use it across the board. When this setting is cranked to extreme levels, it can have the effect of watching something in the distance in stop motion, but it can help lower-end rigs run the game at a reasonable framerate, and it does wonders for when you have lots of characters on the screen fighting.
However, work continues on other aspects of the game, too. More and more wearable items are being added to the game, check out the character below and see if you can spot some never-before seen gear!
And last, but not least, more map environments. We're trying to make some new, pleasant environments for you to murder each other in. Here's a shot of some more recent work, it's one of the larger maps containing among other things, a fort and a mine. Take a look!