3/12-4/2: Shop and Art Integration
I’ve had a lot of progress over the past three weeks. Here are my updates:
Art & Animation Integration (8 hours)
Much of my three weeks were spent on art and animation integration. Art made a lot of progress over the past few weeks, but so many things were not integrated, so programming volunteered to help. The art and animation integration I worked on includes:
Integrate the Player Dash Animation. The player dash animation was tricky because they didn’t use the preexisting skeletons (because the dash animation involves the player turning into a squid), so I had to create a new sprite on the player and ensure that it properly turns itself on and off.
Integrated the animations of the lunging and thrusting enemies. This wasn’t too bad, as the animation graph was fairly simple to create.
Integrated the animations of the first boss (the Starfish). This was significantly more challenging than integrating the animations of a single enemy because the boss’s logic is more complex. While an enemy may only have a single attack, the first boss had multiple attacks, each with their own windup and cooldown animations. It took a lot of time to get the graph to be correct.
Integrated the animations of the final boss. This was complicated but in a different way. The final boss is the demon, who summons the previous two bosses. As a result, the final boss needs to play the animations of the first two bosses, which would properly enable and disable the sprites.
Integrated the art for several level design elements, including the arrow traps, bridges, and crushing traps. These were easy to integrate, but very hard to keep polished (and there are still issues).
The lunging enemy animator
The FInal Boss Animator
Main Menu (8 hours)
I spent much of the first week of this devlog (in addition to art integration) working on the main menu. There were several tasks for the main menu, and they were:
Ensuring that the buttons are displayed correctly depending on whether the player has save data. If the player has previously played the game, the main menu should give the option of “New Game” or “Continue”. If this is the player’s first time playing, then the player should have just see the “Play” button. This wasn’t too bad of a feature to create.
Creating the Audio settings menu. This involved going into WWise to setup volume buses, and then integrate them with the new sliders. Creating a bus in WWise is not difficult by itself, but the bigger challenge was hooking the volume buses and parameters up to actual sound effects. I had to a lot of digging to ensure everything was hooked up.
Creating the controls settings menu. This required me to create the controller remapping (and key rebinding) feature. This was fairly challenging, particularly because the designers wanted the movement controls (W, A, S, and D) to be rebindable. It took me quite a bit of time to get a single button rebindable (Unity’s API is not well documented), and getting multiple keys for a single action to be rebindable was even harder. I also needed a system to display icons for buttons that aren’t keys, including the mouse buttons and controller buttons. I was able to get something working eventually.
Integrating the credits into the main menu. This wasn’t too bad, because the WolverineSoft General Library has a script that does credits for us. Figuring out how it worked took a bit of time though.
The volume busses in WWise
Shop Preview (4 hours)
The final feature of this sprint was the Shop Preview. The UI designers wanted items in the shop to be previewable, so players can get an accurate representation of the items. This required me to make a new prefab in the levels with a player animator (but not a player controller, because that is a singleton), and have that play animations. There were several issues stemming from the fact that the shop always has a timescale of 0, so I had to do several hacks to get the animations to play the way I wanted them to. The most complex was the reflect ability, which required me to shoot a bullet, manually making it move, play the sword swipe, and make it reverse direction when the bullet hits the sword.
Repository Management (7 hours)
I spent a lot of my time on maintaining the repository, which involves merging pull requests, fixing Merge Conflicts, and hotfixing the build when needed. I merged in 165 pull requests during these three weeks (audio not included, as Gibby does most of that). An additional 15 were merged by in our future programming lead, Allie. This is probably the most amount of pull requests for any three-week period in the history of WolverineSoft, and includes the largest number of pull requests in any single semester project (only 80 away from beating the record for any WolverineSoft project).
This large amount of pull requests was challenging on its own, but the amount of merge conflicts I needed to solve were even harder. There were 29 merge conflicts to solve. Some were fairly easy (only involved a single value being changed), but others were more complicated, as they involved changes to tilemaps. I tried my best to merge everything losslessly, but not all of it was able to get in, and some people had to redo their work.