You are browsing as a guest. Sign up (or log in) to start making projects!

Stormfall

  • 15 Devlogs
  • 49 Total hours

A 2D metroidvania set in a fallen kingdom, built in Unity with C#.

Open comments for this post

6h 18m 12s logged

I’ve haven’t made too much progress on my project over the last little while because of classes starting :( But I’m finally devlogging some of the changes I’ve made over the last week or so.

First, I refactored the combat system for the possibly the 4rd or 5th time since first starting the project (almost a year ago now!)

This time around, I implemented an upwards and downwards attack, as well as better implementing the lunge attack. I also switched the attack logic to be partly animation-driven rather than coroutine-driven like it was before. Attack damage is now properly synced to the attack animation, and the weird state bugs I was having before are basically gone.

Some parts of the new system still feel a little buggy, but overall I think the attack system is much better now.

The second major thing I did was finishing implementing the pathfinding of one of the first “real” enemies (the crawler guys I already have don’t really count).

The new enemy now tracks the player correctly. If no player is in range, it will pace back and forth and pause occasionally. It has ledge and wall detection. If the player is in attack range, it will attempt to attack the player.

Currently the enemy code architecture isn’t structured very well, but I’m kinda rushing to quickly wrap up this stage of the project so I can ship soon!

Now I just gotta polish the game a bit over the next couple days/weeks and then it should be ready to ship!

0
0
28
Open comments for this post

3h 39m 3s logged

I added the UI interface for player customization.

Currently this screen is only accessible from the pause screen, but in the future I will incorporate it into the gameplay so the player customize the character at specific locations throughout the world.

I also fixed some issues with how the UI menus were structured. I made every screen into a unity Canvas Group. I also fixed some bugs where the player could get stuck in certain menu screens.

Last but not least I added a new upward attack animation for the player, though I still need to implement the functionality.

0
0
134
Open comments for this post

3h 51m 33s logged

I started working on character customization mechanics!

Many metroidvanias just use a static character with little to no customization options so I thought this would be a nice way to differentiate my game from other similar games.

Basically for now the player can recolor the knight’s cape, helmet plume, and sword hilt.

The knight sprites were originally colored blue, making it tricky to use simple color adjustment shaders to recolor it. Rather than going back and redrawing tons of sprites, I wrote a shader that detects saturated areas on the original sprites and overlays a new color on top. Overall it works pretty well now, and now I just need to add a menu to select a color scheme.

I also spent like 30 mins working on enemy pathfinding mechanics for a new enemy type!

3
0
82
Super Star

As a prize for your great work, look out for a bonus prize in the mail :)

Open comments for this post

2h 18m 27s logged

I finally fixed some problems I was having with the player’s collider catching on seams.

This bug was pretty rare and not too much of an issue. However in certain parts of the map, mainly near any slopes, the slope’s collider has a tiny seam where it joins the rectangular tilemap collider. The old player collider would get stuck on this seam occasionally.

After a lot of messing around with colliders and 2d physics materials, I fixed this issue by changing the player’s collider to a composite collider.

The composite collider contains a capsule collider and a box collider. The rounded edges of the capsule allows the player to walk over top of seams easily, and the box collider makes it so the player doesnt slip off the edges of platforms.

2
0
173
Open comments for this post

2h 2m 16s logged

For the time tracked in this devlog, I mostly worked on environment decoration in the newest room of the game.

I added a really nice looking torch sprite with a fire shader.

I also added various details to the game world, like floating platforms in the background, torches, and ancient ruins.

I also updated some of the level design. I added platforms to make certain areas possible to reach.

1
0
212
Open comments for this post

4h 30m 46s logged

I took a long break from Stardance to work on other projects, but I’m finally back with another devlog for my metroidvania.

I mostly finished the art pass for the latest room of the game.

I also fixed a bunch of unity inspector warnings that I’ve had for a looong time now and just never got around to fixing.

The main warning I fixed were that some of the render textures I used for water reflections and fullscreen shockwaves didn’t have a depth buffer attached. While they did technically work, it wasn’t the ideal way to have the render textures set up. This was a relatively easy fix thankfully.

3
1
325
Open comments for this post

3h 14m 27s logged

I continued working on the art for the 9th and 10th rooms of the game. I also fixed some issues in my custom render feature that I use to render special effects, including a few potential memory leaks.

I also reworked my “safe zone” mechanic that detects where the player should respawn if they fall onto spikes. Now it tracks specific safe respawn locations instead of the old logic, which was to track any zone where the player shouldn’t respawn.

3
0
99
Open comments for this post

2h 28m 25s logged

Continued working on level design. I’ve finished the level design for the entire first area of the game now! I added a room with another lever puzzle that introduces the shortcut mechanics to the player. I also added an area where the player will obtain the shield ability. Now I need to start filling in the art for the new rooms, and create the game’s first boss fight.

1
0
59
Open comments for this post

3h 40m 27s logged

Worked a bit on the art for the new rooms. I also added some new gameplay mechanics, like platforms that fall to a new location after the player hits them. I also fixed another instance where the combat animations desynced from the code logic.

0
0
47
Open comments for this post

3h 37m 12s logged

For the last few hours of work, I’ve been working on level design! I’m very close now to finishing the level design of the first area of the game. I added some generic transversal rooms, a lever puzzle room, and a platforming room with spikes. Next, I’m going to add a room where the player can find the shield, which will grant the parry/block ability.

0
0
38
Open comments for this post

1h 17m 19s logged

Added levers! When the player toggles them, they can do various things like open gates, open shortcuts, and maybe even spawn enemies. In the future, I’m going to use them to build puzzle areas that will hopefully make the level design more standout and unique. I’m really happy with how the animations for the new mechanics turned out, especially the gate’s animations shown in the video.

0
0
38
Open comments for this post

39m 36s logged

This devlog is on the shorter side, but I finally fixed something that I’ve been meaning to fix for a while.

Sometimes when spamming the attack button, the code running the attack logic got desynced from the visual animations, causing weird situations where the animation wouldn’t play for a few seconds, or would transition to the next state way too quickly.

I was scared it would take hours to debug this problem, but it turned out to be super simple. I fixed it by simply making sure the animation’s exit time in the unity animator exactly matches the cooldown window defined in the code.

0
0
30
Open comments for this post

3h 11m 55s logged

Continued refining the stamina mechanics! I mostly finished hooking up the combat system to the stamina system. Attacking and blocking now deplete a set amount of stamina, and a successful, correctly timed block/parry restores a bunch of stamina. The stamina meter also now slowly refills over time, and refills much faster when near a save point. I also made the code and artwork for “stamina flowers” (still need to think of a cool name), which when broken will spawn a stamina orb that flies towards the player and refills a bunch of stamina when picked up. This involved pathfinding logic using trig functions that make the orb fly at the correct angle and velocity towards the player. I plan to use this pathfinding logic for future pickup items as well. Lastly, I added a particle effect that plays when the player’s stamina meter is full, and another effect that plays when it is close to empty. Overall the stamina system feels really polished now, and I feel like the combat is a lot better now with the added stamina mechanics!

0
0
86
Open comments for this post

2h 53m 15s logged

Added a stamina mechanic! Attacking now requires stamina. When stamina is used up, it will slowly refill back to the maximum over time. In the future, I plan to make successfully parrying enemy attacks also refill some stamina. The hardest part of this was creating the visual stamina bar in the UI. I used a shader to offset the sprite’s UV depending on what percentage of stamina the player has remanining. The shader also applies a multiplier to the sprite color’s intensity to make the stamina meter glow more when it is closer to full.

0
0
90
Open comments for this post

5h 16m 56s logged

First devlog on Stardance! You might remember this project from flavortown, and I’m going to keep working on it for stardance.

I’ve added a ton of stuff to the game in the last month, like 3 or 4 new player abilities, new animations, and polishing various things based on feedback I received.

The ~5 hours in this devlog were mostly me trying to set up a system where I can have 2 post processing profiles active at once, but affecting different layers. I used this to create an intense bloom effect that only renders on certain sprites, specifically the spark particles in combat. I finally got it working using render features and render graphs, and I’m super happy with the result.

7
1
3415

Delete project?

Are you sure you want to permanently delete this project? This action cannot be undone.

All devlogs, followers, and associated data will be removed.

Followers

Loading…