Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Enbiggen

38
Posts
3
Topics
12
Followers
16
Following
A member registered Jun 28, 2018 · View creator page →

Creator of

Recent community posts

Great idea, but no mater what I do my guys still get killed in two shots. I am not sure what I am doing wrong, and why sometimes one of my guys moves way faster or slower.

Yes, I did consider the case of rotating shapes that are "Trapped" below others, but that'd greatly open up the solutions to a puzzle, and likely create many dead-ends (impossible to solve) cases... plus it'd be harder to code in the time I had :)

I ascended :)

How would you improve the game?

You know what to do here.

I just listened to the podcast. Thanks for the feedback.

Spotify link for others: https://open.spotify.com/episode/3TOcZH6MS7pjn9ttNdyrl1?si=IIxG-txASi-ij4U2jeIom...

Lovely sprite work!

Does the zip have the index in the root or have you zipped the folder containing the index file and game?

Game Engine / Programming Language
Phaser 3 / Typescript. It's my first time using it and it involved a lot of googling and frustration but the result is a 1MB file that loads very quickly and runs well in the browser.

Art
Aseperite > Texture Packer

Sounds
Bfxr

A clue as to how to complete the level :)

thanks for the feedback, I completely agree. The original plan was that freezers would fall from the sky and start spawning frost, you would then have to destroy them to win. But time ran out, I may build on it whenever I get some time. 

Game Title/URL: FrostBite
Pitch/Information: Fight back the frost in this mini RTS
I'd like feedback on: What additional defenses you think would work well with this style of TD/RTS. I had plans to add a campfire for AOE and a day/night cycle to give the "enemy" an equivalence of "waves" (colder at night). Also, how much do you think it hurts the game to be "see how long you can survive" vs having  a way to defeat the frost?

Regardless of if you have time to give any feedback, I hope you enjoy the game half as much as I did making it, see you in the next jam!

Very odd, it's set to 1024x760 fixed size, maybe re-extract it? I duno, it's just a bog-standard Unity export

Yes, I planned to add a campfire (AOE around tower for as long as it has fuel) but time was getting tight and I had plans for the weekend (didn't want to miss the deadline)

Ahhh, I see, good idea. Or a keyboard shortcut

you can build many towers and lumberyards and right click to cancel a building if you picked the wrong one. It'd be nice to be able to delete them or turn towers off to manage resources. 

OK, so it turns out this little box was ticked and it wasn't downloadable, i've unticked it :)

GL;HF

Thanks for letting me know, it's downloadable now

Thanks for letting me know, it's downloadable now

Aaaaaaaaaaaaaaand posted: https://itch.io/jam/my-first-game-jam-winter-2020/rate/559868



Showing construction and ammo with models instead of UI

Instead of making levels, or trying to balance the difficulty too much, I've exposed all the settings so you can make your own levels. Next up is to create a "normal" and "pro" preset (essentially 2 hand-picked levels) and maybe a way to save/load settings (copy/paste a string) so people can share levels to compete for a high score

The little guys can now deliver to buildings under construction or needing ammo

They can harvest wood and take it to lumberyards


If their lumberyard is destroyed they go help out at another


And towers now fire on the frost to push it back, requiring ammo to be delivered


Tonight I got basic workers into the game, they can be given a target and have a payload (carrying wood) to drop off or pick up on arrival. They speed up and slow down as they depart/arrive

Here's 100 workers moving to random points

So, this happened:

I have no idea why the trees turn green, 2D, and jump around as the camera moves, but it looks like I/my game somehow broke WebGL exporting

After much head banging and reverting to older versions with no joy, i'm just going to export as a windows executable, unless anyone here has seen anything remotely similar? I had to remove GoTween as that broke on WebGL compile, and after using iTween this happened, but I completely removed iTween and it is still broken

Using a 2D array of bools, buildings mark them as true when placed and check against it when moving to see if they can fit

No stacking 100 towers into a single point in this game ;)

 

Now, do trees block buildings or do buildings knock down trees?

I took a break the last couple of days, but tonight I started work on buildings. As you move them around they follow the height of the terrain and you can click to place them or right click to cancel. I haven't put in any overlap detection with other buildings or trees, but gotta start somewhere :)

Ha, that was just luck, their rotation it's set when the level is generated and they fall forward :) not a bad idea though, I'll add it to my stretch goal list

(1 edit)

I wanted to get building placement done tonight, but ended up with falling trees


Trees are given a random rotation when the level is generated then are tweened to fall forward. I do not know if frost will "kill" trees, but I wanted to get them falling for when they are harvested and code to check if a point on the map is frozen, so put two and two together to test both. If I do keep the "frost kills trees" logic then I'll probably have the frost turn them blue over time before making them fall so you have time to save them, as they are a valuable resource... or maybe they can still be harvested if you push back the frost but they are worth less

(1 edit)
  • I generated a noise map for the terrain, which I use to set the height of each vertex
  • Using the same noise map I texture the terrain blue,green, grey at different height thresholds
  • I modified the frost mesh to also use the same height map, offset slightly so it's just under the ground. As the frost spreads it moves up and pokes through the ground
  • I then used the colors to make the frost spread quickly on water and slower on rock

And a quick change of a seed value generates a new map, causing the frost to spread in a completely different way:

I will spawn the trees you need to build and fuel your defenses on the green, you won't be able to build on the blue, but you'll want to keep your structures on the grey where the frost moves slowest

And if  you want to follow along and see what open ideas/questions I have, you can view my trello here

Yes, vanilla Unity 2019.2.19f1. I will probably use a tween library at some point but that's probably all. 3D modeling will be done in C4D and/or maybe this program i've just discovered called MagicaVoxel that looks fun

(1 edit)

A simple pan/zoom camera controller and I think those 4 white boxes that do nothing count as UI ;)

Replaced the gizmos with a mesh that has 1 vertex per item in the frost array. Height is set by the value in the array and it pokes through a ground plane. In this example I have 2 heat sources, i added the ability to define their size, strength and duration (life), they both "pop" after a few seconds and the frost fills in the holes they made


(1 edit)

By defining a Vector2 array of "heat sources", then taking a 2nd pass at the frost array where I reduce the values based on the distance from these points, I have AOE fire:

Added a quick perlin noise, using the same gizmos to visualize it as I tuned the scale and intensity values:


And then using it to adjust how quickly the frost spreads, looks more interesting for sure:


I want to tackle the unknowns first, and the biggest for me is the spreading of frost

Below is a 100x100 grid of floats with 2 points marked as the source of frost. What you see are spherical gizmos to help visualize what is happening, where the radius of each of the 10,000 spheres is representing the 0 to 1 value in the array at that point in space

I figure I would run this "spread the frost" function followed by the "apply the heat" where fire would basically subtract from it. This is running at 1 update per frame and takes 0.0022s to process, to slow things down I would probably only have it update 10 times a second. As it's a nice 2D array of floats, I can easily use it to determine damage to buildings / freezing of things by just sampling it with X/Y coordinates.

As for how to visualize this in the final game, I am thinking a mesh where each vertex height is the frost intensity and it pokes through a flat ground plane. If that looks janky then maybe some marching cubes or some shader magic (which i've never done before, but how hard can it be? ;) )

And I may use a perlin noise to make it spread in a more organic/interesting way where the value in the 2D perlin noise dictates how quickly frost can spread on it, maybe that will be visible to the player (frost travels at different rates through water, stone, dirt, grass) or it may be hidden

(1 edit)

A small RTS where you fight to push back the frost that slowly envelops your world. Your primary weapon is fire, and to build and fuel the fires you must harvest trees

That's all I have so far, I am thinking that maybe small woodland creatures get stuck in the frost and you must free them or you have to push the frost back to its source and "cap" it. You collect wood and use it to fund the construction and resupply of fires / towers that shoot fire