Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

CryptidDev

17
Posts
1
Topics
2
Followers
A member registered Nov 24, 2016 · View creator page →

Recent community posts

Game Title/URL: Thaw https://itch.io/jam/my-first-game-jam-winter-2020/rate/564624

Pitch/Information: Find and melt 5 snowmen as a fireball trying to bring on the spring

I'd like feedback on: Art, game design, anything really

Very cute, and it's fun to knock things around

Good game, love the baba is you style look

Very cute and funny, I love smear

The music is catchy and the game is fun, all it's missing is the rad cheeto from the devlogs :)

Very cool,  impressed you made this in just 2 weeks!

Absolutely adorable, I love the way the ferret moves and the concept is great

Love the art, great job!

Spooky! the sound effects are very good

UPDATE

Made start and end screens



Also made icons for the executable.

Right now the game is effectively "finished", I can continue adding chunks to the map but I can effectively export and submit it whenever.

I've had a great experience with this jam, I went into it expecting to learn godot and ended up not only doing that but also learning blender as well, something I never expected to be able to do. I've never considered myself an artist and without this jam I don't know if I would ever have taken the leap to try it. I'm thankful for the experience and for everyone's support.

Unless I make any changes that i feel like documenting, see you when the jam ends!

UPDAAAATE

Made 2 more map nodes today, as well as setting up lighting.

Ran into a problem that i thought was caused by having too many tiles but was actually caused by something else, so one node has really big tiles because i thought that would fix it before i found the real issue and i don't feel like changing it back.

The map chunks so far are the starting area, a platforming bit, and an underground bit where you have to find the snowman in a dark area.

For lighting, i turned down the default ambient lighting and added a directional light as the "sun", as well as adding small omnilights to the player and flamethrower because, well, they're made of fire. I briefly considered having the player not cast a shadow because of that, but it ends up looking kinda weird.

Also i messed around trying to make the grass tiles be random shades of green but once i got it working there was a ton of z-fighting so i scrapped it, ah well.

I have an idea for one more map node already (a maze), i'll have to figure out more because i want at least 3 more, probably more than that

See ya next update!

Looking good! Can't wait to play the final product

Update

After some real life mishaps (I got locked out of my apartment...) and distractions (theros drafts on mtg arena) were taken care of, I once again began working on my entry.

And boy, this update is a doozy.

After some... slight camera issues

I have all the gameplay functionality coded!

https://gyazo.com/8d2e07772ffb0da37d4affd968700651

Feast your eyes, fellow jammers! She moves! She breathes fire! She melts snowmen! She thaws the earth so that flowers can bloom!

Not only that, but I also made some quick sound effects for jumping, breathing fire, the snowman melting, and the area thawing.

So what now?

For now, the coding is done and I'm back to map making. Once I've made the map bigger, I'll get to work on coding a victory screen and a start screen.

See you next update!

blender, using this exporter https://github.com/godotengine/godot-blender-exporter

Well i was making another devlog but then accidentally deleted it so the SHORT VERSION is I made the first map node and i'm going to use it to write and test my code before making the other nodes, here are the two versions of it:

(It's not perfectly aligned cuz i made it with the snow enabled, whoops)

Next steps are handling the visibility of the snow/flowers

The flowers are children of a node called "Bloom" that is hidden at the start and will be un-hidden when the snowman is destroyed

The snowy objects are children of a node called "Thawable" which i will disable the snow either through a nested for each loop where i'm getting all the children of "thawable" then all the children of those and disabling certain meshes, or by having each map chunk inherit the trees and ground from different tree/ground scenes and disabling the snow on the one they inherit from which if i'm understanding godot correctly *should* disable it on all these as well.

Glad for all the support so far, see ya next update!

You're making great progress! It's been fun following along on the discord and I can't wait to play the finished game!

Concept

It's cold. Too cold! But you're hot. Super hot.

Flamin' hot.

This is you, and you've just about had it with all this cold nonsense

So why's it so cold anyway? What's that? It's January? An educated guess reader

But a wrong one!

No it's THESE JERKS!

Think about it, you ever see snowmen when there's no snow around? Of course not. You gotta get those guys outta here, and then things can be hot again.

The Rundown

Thaw is a 3rd person 3d Godot game in which you, a little fireball, shoot fire at snowmen to make the world a warmer place. The core gameplay loop is you move through the world looking for snowmen to destroy, sometimes overcoming platforming obstacles to reach them. Once you destroy a snowman, the section of the map they reside in will be thawed, removing the snow from the trees and ground and causing flowers to bloom. 

Goals

  • Make a character that can be moved around a 3d space
  • Make the character able to fire a fireball
  • Make a map for the player to traverse
  • Make destructible snowmen
  • Make destroying the snowmen thaw the area they're in
  • Make a victory scene that displays when you've destroyed every snowman

Even more goals!

  • Make the snowmen throw snowballs at you!
  • Give the player HP and a game over scene when it hits 0
  • Make a title screen
  • Make a loading screen?
  • A pause screen too!

Life goals?

My eventual goal is to make a character action game, and I figure the first step is just getting a character moving around in 3d and giving them an attack and an enemy

Progress

So far I've made models for:

  • Player
  • Fireball Attack
  • Flower
  • Tree
  • Ground Tiles (it's like a hex grid deal)
  • Snowmen
  • Snowball attack (this one might not be in the game who knows)

The trees and ground tiles are made up of multiple meshes in such a way that will hopefully allow me to hide all the "snow" in a particular scene. 

All these models have been imported into Godot as their own scenes and given hitboxes.


The next step

My current next step is to build scenes out of these pieces that will serve as chunks of a map. Each will have one snowman in it, that when destroyed will send a signal to disable all the snow meshes in that map chunk scene. The eventual goal is to import all these map chunk scenes into one main scene and have them slot together to form one cohesive map