Totally agree about your analysis of how purple is usually read!
"The point I'm getting at is purple terrain doesn't contrast the green in terms of the green being corruption and the purple being healthy."
I think you're spot on about purple vs. green not contrasting each other strongly enough in terms of corruption vs. healthy. I think we rely quite strongly on silhouette and shape to achieve this contrast, and we get away with it barely, but not as easily as I would like.
It's obviously idea if both your color and your silhouette cohere in communicating the object's function and tone. Think we miss a beat a bit there. We have had some feedback from another reliable source saying the green crystals read too much as being part of the world, and not sticking out and being dangerous enough. Which aligns with your points. We're probably going to stick with the current color palette, but emphasize the corruption of the green crystal stuff in other ways (and admittedly, more obtuse). This is a conscious choice based on timelines, unfortunately.
Great thoughts on spookiness! I think almost all players of the game read it as more cute than spooky, although it could be cute in the spooky fashion of Tim Burton, you suggest. I think players searching for further spooky elements will be disappointed! I think we're going to be focusing a lot more on adding cuteness/playfulness to the game, which considering the general exclamations of cuteness when viewing the game, is a good choice.
Your points on spooky vs. cute are super valuable though, I think we are currently trying to hit a sort of minimalist spooky cuteness in the same fashion as a Hotel Transylvania and definitely more of a Cloudy with a Chance of Meatballs.
These aren't actual references we've used up until this point, I'm just retroactively trying to think of the balance we're trying to hit. I think on the spectrum of spooky vs. cute, with Tim Burton being spooky leaning, we're trying to be a bit more cute leaning. I can see now your point, at least currently from the screenshots, how we're not hitting that cute leaning yet! Definitely more spooky leaning. This is something I am hoping to jam pack with going forward.
This is definitely a great insight that I, at least, wasn't hyper aware of, and is something to be aware of going forward. Thanks so much for taking the time to point it out :)
Here’s the process I went through to create a shader to cure / de infect the environment. To simulate the infection pealing off trees, plants, etc.
Why make a shader? Frame by frame animation would be tedious and sprite specific.
The basic theory was to have a the base sprite and an infection texture that’s blended together based on a noise texture mask and a threshold. Here’s where I started. Replace the main texture pixel with secondary texture based on the mask and threshold
- Add the rgb values which would give us a number between 0 and 3 - Multiply by 0.33333 giving a number between 0 - 1, to get the whiteness of the pixel - 0 - black and 1 white - the threshold is between 0 - 1 - thus if the pixel in the mask texture less than the threshold. the background (main) gets replaced with the foreground (infection) texture
but if the foreground texture has holes, you get the holes as well.
Now, I’d like to show the back texture through those holes. So we need to evaluate the alpha channel against some cutoff value and voila we skip the pixels that have an alpha less than the cutoff value.
// check if the sec.a is greater than a cutoff
if((mask.r + mask.g + mask.b) * 0.33333 < _Threshold && sec.a > 0.01)
{
sec.rgb *= sec.a;
return sec;
}
hold up, let’s take a closer look
because of the antialiasing on the secondary texturing. There’s weird artefacts around the edges that become transparent. So, I’ll add a slider for the cutoff value to find just the right
// check if the sec.a is greater than a cutoff
if((mask.r + mask.g + mask.b) * 0.33333 < _Threshold && sec.a > _Alphacutoff)
{
sec.rgb *= sec.a;
return sec;
}
That kinda works and the the minute changes in alpha are taken care of but now you’ve got really hard edges. I decided to blend the two textures instead of picking one or the other. Hence, I don’t need some cutoff value.
Good to go, right. Nope. I thought so too. Then I threw in some of the actual sprites that we’re using for the game and then this happened. :O
Turns out there’s more to the sprite that meets the eye. It’s about how the SpriteRenderer in Unity creates the mesh.
To stop secondary texture going over the obviously transparent part of the sprite. I used the same technique as before and just had a alpha check on the main texture before I do the blending of the two textures. Voila!
@Bensonance Looks really great, the last update I've seen was probably a year ago. I would like to try it once its released. Any chance of ever releasing to Linux?
Yeah it was hard to keep a dev blog updated here, and didn't want to just spew marketing things here, so just didn't update it much :).
It's unlikely it'll come to Linux unless it does really well - unfortunately Linux's sales/bugs ratio is infamously bad. Seeing as we're already doing a console release with our first game, we didn't want to add more stress :)
After an age, we're releasing Semblance on July 24th! for Nintendo Switch, PC, and Mac
As exclusively announced by Polygon, yesterday evening. Didn't know exclusives for indie games were a thing, or if they're even a good idea, but it happened XD.
Congrats on an amazing launch! This has been a long roller coaster to watch, great to see yet one more and very different indie story coming out of SA! :)
Comments
Totally agree about your analysis of how purple is usually read!
"The point I'm getting at is purple terrain doesn't contrast the green in terms of the green being corruption and the purple being healthy."
I think you're spot on about purple vs. green not contrasting each other strongly enough in terms of corruption vs. healthy. I think we rely quite strongly on silhouette and shape to achieve this contrast, and we get away with it barely, but not as easily as I would like.
It's obviously idea if both your color and your silhouette cohere in communicating the object's function and tone. Think we miss a beat a bit there. We have had some feedback from another reliable source saying the green crystals read too much as being part of the world, and not sticking out and being dangerous enough. Which aligns with your points. We're probably going to stick with the current color palette, but emphasize the corruption of the green crystal stuff in other ways (and admittedly, more obtuse). This is a conscious choice based on timelines, unfortunately.
Great thoughts on spookiness! I think almost all players of the game read it as more cute than spooky, although it could be cute in the spooky fashion of Tim Burton, you suggest. I think players searching for further spooky elements will be disappointed! I think we're going to be focusing a lot more on adding cuteness/playfulness to the game, which considering the general exclamations of cuteness when viewing the game, is a good choice.
Your points on spooky vs. cute are super valuable though, I think we are currently trying to hit a sort of minimalist spooky cuteness in the same fashion as a Hotel Transylvania and definitely more of a Cloudy with a Chance of Meatballs.
These aren't actual references we've used up until this point, I'm just retroactively trying to think of the balance we're trying to hit. I think on the spectrum of spooky vs. cute, with Tim Burton being spooky leaning, we're trying to be a bit more cute leaning. I can see now your point, at least currently from the screenshots, how we're not hitting that cute leaning yet! Definitely more spooky leaning. This is something I am hoping to jam pack with going forward.
This is definitely a great insight that I, at least, wasn't hyper aware of, and is something to be aware of going forward. Thanks so much for taking the time to point it out :)
Here’s the process I went through to create a shader to cure / de infect the environment. To simulate the infection pealing off trees, plants, etc.
Why make a shader? Frame by frame animation would be tedious and sprite specific.
The basic theory was to have a the base sprite and an infection texture that’s blended together based on a noise texture mask and a threshold. Here’s where I started. Replace the main texture pixel with secondary texture based on the mask and threshold
How the masking with the noise texture works.
- Add the rgb values which would give us a number between 0 and 3
- Multiply by 0.33333 giving a number between 0 - 1, to get the whiteness of the pixel
- 0 - black and 1 white
- the threshold is between 0 - 1
- thus if the pixel in the mask texture less than the threshold. the background (main) gets replaced with the foreground (infection) texture
but if the foreground texture has holes, you get the holes as well.
Now, I’d like to show the back texture through those holes. So we need to evaluate the alpha channel against some cutoff value and voila we skip the pixels that have an alpha less than the cutoff value.
hold up, let’s take a closer look
because of the antialiasing on the secondary texturing. There’s weird artefacts around the edges that become transparent. So, I’ll add a slider for the cutoff value to find just the right
That kinda works and the the minute changes in alpha are taken care of but now you’ve got really hard edges. I decided to blend the two textures instead of picking one or the other. Hence, I don’t need some cutoff value.
Good to go, right. Nope. I thought so too. Then I threw in some of the actual sprites that we’re using for the game and then this happened. :O
Turns out there’s more to the sprite that meets the eye. It’s about how the SpriteRenderer in Unity creates the mesh.
To stop secondary texture going over the obviously transparent part of the sprite. I used the same technique as before and just had a alpha check on the main texture before I do the blending of the two textures. Voila!
The shader can be used with different textures and masks to give a different feeling. Try it for yourself, here's the code.
Throw me any questions or suggestions. We all learning here. :)
But we're at Stugan now! So far it's great! Trying to do at least a first pass on the game as a whole!
We also went to E3 which was super fun! We got mentioned on IGN, Pixels, Gamespot, Engadget, and Game Informer
Also in the Nindies video
Going big
Been a while!
Been sitting on this news for a while, but we have a publisher, Good Shepherd Entertainment, a new trailer, and a Steam store page!
(It's up on the Publisher's channel too).
Steam store page.
We're gonna be at SXSW, GDC, PAX East, and some random press tours over the next couple months.
Yeah it was hard to keep a dev blog updated here, and didn't want to just spew marketing things here, so just didn't update it much :).
It's unlikely it'll come to Linux unless it does really well - unfortunately Linux's sales/bugs ratio is infamously bad. Seeing as we're already doing a console release with our first game, we didn't want to add more stress :)
As exclusively announced by Polygon, yesterday evening. Didn't know exclusives for indie games were a thing, or if they're even a good idea, but it happened XD.
Here's a new trailer too:
@mgeorgedeveloper Not at launch, nope