Entry 13 - Main Menu Additions
This week I decided to look into adding graphics options to my options menu, as I was quite fatigued with my tilemap roadblock. More below.
Graphics Quality & Resolution Options
A showcase of the new video options I’ve added to my options menu.
First off, I added a drop-down for Graphics quality. This was a simple enough affair as changing the game’s graphics quality is a simple line of code in Unity. The most I had to do was ensure that my drop-down options exactly matched those in Unity’s built-in quality presets (“Very Low”, “Low”, “Medium”, “High”, “Very High” and “Ultra”. these presets can be found in Unity’s Quality settings). Implementing the manipulation of this drop-down with controller input was a simple enough operation too.
Next, I added a drop-down menu for changing the game’s resolution. I have it set up so that an array of resolutions is automatically filled by all of the resolution settings made available by Unity. Each resolution is then iterated through, converted into a string and added as an option to the resolution drop-down. I also have it set so that Unity detects the monitor’s current resolution and sets it accordingly. While you can select a resolution with the controller, unfortunately I can’t scroll the drop-down up or down with the controller at the minute. For now, scrolling with the mouse is necessary. While testing the resolution changes in a built version of the game, an old issue has reared its ugly head:
Despite having my UI settings set as recommended (mentioned in week seven), this issue still plagues me.
I thought that I had set my UI to appear the same way on whatever screen it’s displayed on. This is not the case. I’m stumped as to what I should do. I may need to seek assistance from someone about it.
A Start on Prototype Animations
Aside from the new menu options, this week I made a start on implementing prototype animations for Katt. My plan is to add in animation states for Katt, so that the states will be coded and ready for Will when he creates the animation sprites and adds them in. For now, I’ve created prototype animations sprites by simply recolouring Katt’s idle sprite.
A quick look at the test animations I’ve added in.
That’s about it for this week. Next week I hope to finish off the implementation for Katt’s animation state machine.
‘Til next time!