1. The Riftbreaker
  2. News

The Riftbreaker News

The Riftbreaker - Survival mode interactive stream



Hello everyone!

We are very excited to announce that we are going to start streaming in-development builds of The Riftbreaker regularly, starting next week! The first stream is going to take place on Thursday, August 8 at 3 PM CEST at www.mixer.com/exorstudios!

We have finally reached the point in development where we can finally let you see some real, live footage from the game. What we are going to show you is the basis for what we call ‘survival mode’. Our task is going to be building up a base and surviving a set amount of time while fending off waves of monsters trying to get rid of us. You’re going to see some of the new features in action and, best of all, you can take part in the stream!

That’s right! On Thursday we’re going to show off our interactive streaming features for the first time. You will get the chance to help Piotr by giving him resources or canceling attack waves, or to make his life a nightmare! Tornadoes, acid rain, doubling the strength of the attack wave - that is all within your power through the use of our features and the interactive MixPlay interface.

If you have never seen The Riftbreaker in action we have a couple of videos for you to catch up on.

https://www.youtube.com/watch?v=lDuBjKhDhho - the highlights from the event demo we present at various trade shows.

https://www.youtube.com/watch?v=IZH0GhDAdNQ - the VOD of the first Riftbreaker livestream ever.

The streams are going to show off all the new features we introduce into the game on a regular basis. It’s also a chance for you to ask questions and give us direct feedback. We love interacting with the viewers, so all questions and suggestions are welcome!

Mark your calendars. It is going to be awesome.

If you'd like to interact with us on a regular basis and take part in future beta testing of The Riftbreaker later down the road, then we invite you to join our discord server:
www.discord.gg/exorstudios

EXOR Studios

Dissolving and breaking trees in The Riftbreaker

You can see all the stages of the dissolving process in slow motion.

In the last article, we touched on the subject of the system responsible for fire and burning effects in The Riftbreaker. The dissolve effect that turns the vegetation into burnt husks is one of the several that we have implemented, each with a different use case. In this case, whenever a piece of flora catches fire, we start dissolving it by gradually changing the texture from regular to burnt.

Grass + fire = ...?

The first texture you see is what you encounter in-game when the plant is in its normal state. By mixing it with the second texture, we get an imitation of the model being engulfed in flames. As it happens, the vertexes of the plant light up bright orange - simulating smoldering. We also attach some fire effects, chosen on the basis of size. After some time, all that is left is what you see in the third picture - a completely burnt version of what was there before the fire.

The parts of the tree model as they appear in the model editor. Note that all the leaves are separate parts, too!

That is, of course, not the only misfortune that can happen to the poor plants that stand in your way. Mr. Riggs has plenty of weapons that can end their existence, and we are prepared for that. The plant models are cut into a lot of smaller pieces which spawn when their parent model is destroyed. The direction in which the parts will fly after being spawned is affected by the direction of the attack that destroyed the plant to some degree, but there is also an element of randomness to it. Additional particle effects appear to imitate splinters and leaves. After all of these things take place, only a stump is left in the ground.

The parts do not spawn in the same order every time, which adds to the variety.

That’s all we have for you today. Remember to join our Discord server - you can ask us anything at any time and give us your feedback and thoughts. www.discord.gg/exorstudios

Other social media:
www.facebook.com/exorstudios
www.twitter.com/exorstudios
www.mixer.com/exorstudios
www.twitch.tv/exorstudios

Vegetation system in The Riftbreaker


Hi-res: https://gfycat.com/pl/poshanguishedhoneybee

Hi!

There are a lot of things that go into creating a realistic environment. We always want our game worlds to feel as if they were real and there were actual physical forces affecting everything around the player. Today we are going to show you what it takes to achieve such a feeling by taking a look at our vegetation and the systems that affect it. This is a larger topic, so we will divide it into smaller pieces. We highly encourage you to check out all the high-resolution versions of the GIFs, as you'll be able to see all the details more clearly!


HI-res: https://gfycat.com/oldfashionedmildagouti

First of all - the grass. While it might not seem like much, walking around the world filled with tufts of grass certainly beats a simple texture that only tries to imitate it. Our level designers have various models to choose from, but in general, they are divided into categories based on their size. We distinguish between small, medium, large and very large models. The size obviously changes the look and feel of the area the grass is placed in, but the size is relevant also because of the forces that we apply to it - wind, bending, and shockwaves.

Let’s take a look at each of those forces one by one, starting with the wind. Our engine currently allows us to place two kinds of wind forces on the scene - local and global. Local wind only affects objects in a specific radius. An example of such a wind force is a tornado. Here’s an example, where you can clearly see the limit of the tornado’s effect on the grass:


Hi-res: https://gfycat.com/deadbrilliantibizanhound

Global wind, on the other hand, affects all the entities on the scene. It is responsible for all the swaying that occurs naturally, without any outside interference. Regardless of the wind type, it is regulated by a whole lot of parameters, which allow us to simulate the flow of air. Without going into much detail, using a whole set of functions we can get a slightly different wind direction and strength in various points of the map. You can see these represented by vectors on the gifs.


Hi-res: https://gfycat.com/threadbarebiodegradableeuropeanfiresalamander

Shockwaves come into the picture whenever something explodes (and you know how we feel about explosions). Shockwaves come in two flavors as well. The first one is instant. It applies the force to all objects within a radius of the explosion. The amount of force and the radius depend on the size of the explosion. The other type of shockwave is called physical shockwave. It is a separate effect, and occurs after the instant shockwave takes place. It takes the form of a ring that increases in diameter over time, affecting the grass tufts further away from the center of the explosion.


Hi-res: https://gfycat.com/activegregariousairedale

The bending force bends the vegetation away from the source, which can be any entity that has the BendingComponent in its properties. We apply this component to things like the mech, enemies, and bigger projectiles, such as rockets. The strength of the bending force gets progressively weaker with the distance from the source. The example below shows you the vectors of the bending force and the affected sphere.


Hi-res: https://gfycat.com/diligentimprobablebettong

Of course, if we applied wind, bending and, shockwaves together at once we would only get a glitchy mess as a result, as they would clash against each other. Instead of that, whenever game logic gets updated, we take a weighted average of all the forces, giving them a different factor of importance. The result of this operation is then applied to the vegetation. Based on this, plants in The Riftbreaker can exist in 3 states:

Idle - no forces other than the wind affect the entity,
Bending - when a bending force is currently being applied by another object
Recovering - the bending force is no longer being applied and the object is returning to the idle state.

Science time!. In order to achieve the effects of the grass swaying in the wind and its springiness, we need to apply some math. We approximate the restoring force by using this function:


Source: https://www.desmos.com/calculator/qkuac3balu

The bending effect is, in turn, a vertex shader. It manipulates the vertex of the object and bends it according to a parametric square function. The values of bending and restoring vary between the different models, which gives each of them a unique feel.

We wouldn’t be ourselves if we did not give you the opportunity to set something on fire. That is where the FlammableComponent comes into play. Every entity with that component can be set on fire. We can tweak the probability of the object catching fire if it’s currently being affected by a fire source, such as a flamethrower, as well as the time it will burn once it is set ablaze. Every time the game logic is updated, the information is gathered which objects are currently in the range of open fire. Then, we perform a roll for each of those and if the result is positive, the object will catch fire. Some things are almost impossible to set on fire, while others need just a spark to burst out in flames.


Hi-res: https://gfycat.com/viciousfeistyblackwidowspider

Once the entity is on fire, we give it another set of properties - BurningComponent. The affected piece of vegetation becomes the source of fire itself. With this component, we can control the range to which an object can spread the flames. The bigger the entity, the further it can spread the flames. We also control the burning rate, which determines how often an attempt to spread the fire is performed. Apart from the BurningComponent we also apply the proper particle effects and start dissolving the mesh. What is noteworthy - the spread of fire is affected by the wind!

Here's a link to the compilation of all the GIFs used in this article:
https://youtu.be/F4tbyhkHAOg

That’s all we have for you today! Thanks for reading, and if you have any questions, feedback, or suggestions, let us know in the comments or on our Discord! www.discord.gg/exorstudios!

Other social media:
www.facebook.com/exorstudios
www.twitter.com/exorstudios
www.mixer.com/exorstudios
www.twitch.tv/exorstudios

The Riftbreaker’s day night cycle in more detail


Hi-res: https://gfycat.com/similarwellmadearabianwildcat

Hello!

As many of you know, The Riftbreaker runs on the latest version of our game engine, The Schmetterling. The biggest difference between this version and the previous one is the implementation of physically based rendering, also known as PBR. It is a lighting model that tries to replicate the behavior between materials and light as it is in the real world. Making use of this technique opens up a lot of possibilities for us, one of which we are going to talk about today. Let’s take a look at the details behind the day and night cycle in The Riftbreaker.


Hi-res: https://gfycat.com/realisticcarefreeafricanaugurbuzzard

In order to achieve the feeling of the realistic passage of time, we have decided to specify four distinct parts of every day - dawn, day, dusk and night. They are defined by a couple of parameters, such as the color and intensity of light, environment skybox, shadow intensity, fog parameters, wind power, and other weather effects.

A look at our Scene Parameters control panel from the EXOR Level Editor.

Skybox is a set of textures in the form of a cube that tries to emulate your surroundings. What is important to note here is the fact that the skybox does not contain the light source but only the ambient part of the sky. It is a completely separate entity. To emulate sun behavior we use a directional light that is the main source of light for everything you see in The Riftbreaker. Its position and strength can be regulated independently of the skybox. What is important because we could not generate as many skyboxes which will represent every minute of the day. The two elements working together give us realistic lighting and almost infinite possibilities when it comes to setting up our time of day environment. By the way, checkmate, round-Earthers - the world is flat and the Sun goes around it! ;)

One of the skyboxes that was used for X-Morph: Defense.

Another aspect we can tinker with are the fog parameters. We can determine the exact distances at which the fog starts and stops being visible. Apart from that, we can also change the density of the fog. It is very useful for setting the mood of the scene. A delicate morning mist over grasslands feels a lot different than thick fog accompanied by heavy rain. With proper sound effects and wind strength, the feeling of immersion in the game world increases greatly.

Oh my, these mushrooms grow so fast!

On top of that, with time passing, each part of the day is blending with each other depending on what time it is. The sun direction reflects the position of the sun in the sky, and the length of the shadow is accurate. And at the end of that, we are not limited to only one set of parameters - we can create any number of presets and change between them on the fly - the engine blends them with each other to give us a smooth transition.

All weather effects can blend with any given time of day preset.

The fact that we can create multiple presets for each time of day means we can introduce variety into the cycle. Every night an algorithm randomly chooses the presets it is going to use for the following day, making it slightly different from the last one. This way some days are going to be sunnier than the other ones. We also control the weather effects, making the possibilities virtually infinite. Moreover, certain events in the game, such as tornadoes and acid rain, can trigger either local or global changes to the weather that additionally blend with the parameters of the lighting.

The Riftbreaker will feature multiple weather events, such as acid rain.

The last piece to this puzzle is making the night look interesting. It’s an alien planet, after all, and pitch-black won’t cut it. Therefore, we put our affector system to use here. We mentioned it briefly when we talked about bioluminance here. At night, our shaders change the way they behave and giving way for all the emissive lights on plants, stones, and wildlife to shine. Combined with the building lights, base lamps and spotlights mounted on Mr. Riggs and defensive towers, it creates a beautiful, rich atmosphere even in the dark of the night.

Other light sources take over when the Sun is not around.
Hi-res: https://gfycat.com/quarrelsomemelodicblackandtancoonhound

And that is all we have for you today. If you have any questions or feedback, feel free to comment below or chat us up directly at www.discord.gg/exorstudios. Thanks for reading and see you next week!

Other social media:
www.facebook.com/exorstudios
www.twitter.com/exorstudios
www.mixer.com/exorstudios
www.twitch.tv/exorstudios

The voting has concluded!

Hey there!

Exactly one week ago we asked you to participate in the first of many voting events that will shape the future of The Riftbreaker. We presented a couple of Ashley’s outfits and the summaries of the stories they are connected with. Here is the picture again:



The option D won the contest by a wide margin. It is a light recon armor, a very advanced protective suit that grants the user protection and support during dangerous Riftbreaking missions. It looks sick as well, and you seem to appreciate both the style and function! :)

As we promised, we are going to describe the armor in greater detail through a story that will reveal a little more about Ashley’s past. It should appear by the end of the month, but take that with a grain of salt - we’ve got a lot going on right now. ;)

Everyone who voted also automatically entered a giveaway. One of our Discord users - Skylord - won an EXOR swag bag, filled to the brim with our gadgets and a signed copy of X-Morph: Defense Limited Edition for the PS4. Do not worry if you missed it, though! There’s going to be a lot more in the future!



This event is the first that we will carry out as a part of our ‘Community-Driven Design’ philosophy. We want you to feel that you have a real impact on how the game turns out. We are making it for you, after all! You can expect to have many chances to decide the future of The Riftbreaker.

Our Discord server is the best place to leave all the feedback and suggestions for us. Reading messages from the community and discussing ideas is a great source of inspiration and knowledge. We would love to have you there! Visit www.discord.gg/exorstudios

Other social media:
www.facebook.com/exorstudios
www.twitter.com/exorstudios
www.mixer.com/exor_studios
www.twitch.tv/exorstudios