Game
Hensen Hopper
4 months ago

Guess who's home from work! I want to explain in more detail the challenge the backdrop idea posed, how I initially had solved it and how I'm solving it NOW.


As I mentioned in my previous post, my initial idea was to take the backdrop script I had initially written to allow me to change the UI backdrop image in the main menu and make it an abstract class that I could write derivatives of for UI image and sprite-based backdrops, and I DID do this.

The only problem, though, was that it was possible for empty space in the scene beyond the backdrop to be visible if the player used an ultra-wide monitor with an aspect ratio greater than 16/9. Perhaps this issue can be better described by demonstration, in the screenshot below, I scaled up the game-view window in the Unity editor to an ultra-wide aspect ratio to show what the result was when I hit "play" (please excuse the unfinished backdrop image)

unity_pqyvngf0ul.png

As you can see, there is empty space outside of the backdrop visible on the screen which not only breaks the immersion but is plainly and simply ugly to look at.

My idea for how to confront this originally was for the sprite-backdrop script to re-scale the backdrop sprite renderer according to the width of the users screen relative to the height. I later thought about this and realized this would have also produced a sub-optimal output in the form of a potentially heavily stretched backdrop image.

I was able to come up with a good solution in time and it turns out I was thinking about it the wrong way. Rather than trying to scale up the backdrop image to fit the screen, it's easier and simply better to enforce a display aspect ratio that works for the game's artwork and scenes.

In my case, I need the aspect ratio of the game to never exceed 16/9 which led to the idea of simply clamping the player's view of the game to a 16x9 resolution, in other words, if the user's screen's width divided by their screen's height is greater than 16 divided by 9, then we must scale the display width of the game down to where it divided by the user's screens height is "equal" to 16/9 (equal is in quotes because I'm dealing with integer division when it comes to screen.width/screen.height so it's rarely truly equal)

To find the width to use, we only need to apply some fairly simple algebra: Let W be the user's screens width and H be the user's screens height. We must find W/H such that W/H = 16/9. Multiply both sides by H and we have W = 16/9 * H.

The screenshot below shows the code I wrote to clamp the users screen's resolution and it's based on the formula I proved above. In the if statement, I cast the screen width/height ratio to a float to make the comparison a bit finer tuned.

code_u8uep84u58.png

I'm sorry for my long infodump but hopefully someone found this helpful and can learn from what I've done here.



0 comments

Loading...

Next up

Finally working on the sprite for the beetle enemy!!! I need to get off my computer and do some stuff right now but I thought the idea of posting a headless (I haven't done the head yet) beetle screenshot was hilarious so I'm doing that first lmao.

It's kinda incredible how much simply changing the text font(s) will, by itself, complete the aesthetic of a game, especially in the menus.

I love TextMesh Pro so much!

Working on getting the itch page for Hensen Hopper set up which means creating a separate cover image for the game on itch (different aspect ratio there). I want to publish that with first beta build of the game so I DO need to get a move on with it.

This week's Fan Art Friday celebrates Baldi's Basics in Education and Learning! Accept the quest in your quest log to get started.

OKAY, here's it ACTUALLY finished! Quite happy with how this turned out, actually! I've drawn this sprite in 3 layers, the wings, the elytra, and the body, which will make animating this thing a lot easier when I get onto doing that.

@MewMarissa is a Jolter to Watch and and a game developer who takes pride in attention to detail and producing quality work! Follow @MewMarissa before the quest ends on April 8 and you'll get Coins!

The new heal-up drop in Hensen Hopper. May not be a cameo of something in one of my earlier games like I may or may not have directly stated I was going to make it in a post I made the other day.

I've gotten the defeat animation for the enemies in this game working! Next thing I need is a good sound to complete the effect. I quite like this animation as-is but I'll probably tweak it post-beta. The first beta should be out by new years day!

Great news! 📢 @Aya_Games has joined Game Jolt!

They're the indie studio behind the haunting & atmospheric horror platformer Ayasa: Shadows of Silence.

Follow the development of Ayasa: Shadows of Silence at https://bit.ly/AYASAGAME

I added an animation and sound effect when the player collects the heal-up drop. In the lore, this flower is going to be Hensen's favorite food which is why the sound effect is a crunch like he's bitten into something.