Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
A jam submission

Scalable BuildingsView game page

Submitted by Oriol - Rough Skin (@RoughSkinDev) — 1 hour, 15 minutes before the deadline
Add to collection

Play game

Scalable Buildings's itch.io page

Results

CriteriaRankScore*Raw Score
Enjoyment#964.1524.152
Overall#3883.9443.944
Creativity#9243.8033.803
Style#9883.8793.879

Ranked from 66 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

How does your game fit the theme?
In this game you use previously placed buildings to create a bigger building (recursivity) until everything collapses.

Development Time

48 hours

Leave a comment

Log in with itch.io to leave a comment.

Comments

Viewing comments 29 to 10 of 49 · Next page · Previous page · First page · Last page
Submitted(+1)

I looooved it! It was nerve wracking but very fun. I like that it is a very simple idea but very clever and well done 

Submitted(+1)

Wow, amazing entry!!! What an awesome idea and take on the theme! The game is really addictive, and the sound effects are so satisfying. Awesome job!

Submitted(+1)

I feel like a got lucky with a pretty high score! It's so nerve wracking waiting for the building to collapse and see if you scrape through! Simple idea but really fun, good job!

Submitted(+1)

Nice work!

Submitted(+1)

Pretty fun little stacking Tetris game!

Submitted(+1)

I loved this game, it's so fun. Great work!

(+1)

I had a lot of fun playing this! I'm sure there is some kind of strategy I should use but it's fun anyways

Submitted (1 edit) (+1)

Loved the game. Very simple to understand and incredibly addictive. I played until I broke it. This is the moment it froze. I tried to release this massive coupling and double the current number of buildings. The game did not like that.

Submitted(+1)

It was so fun !!! Really enjoyed the game!! The red marker plays very important role, allowing you to make any funny tower you want !! Really nice idea! cheers

Submitted(+4)

Seen a few games like this but this one is definitely my favourite so far. Only noticed in my second run that I was dropping the buildings I'd built already which is a great idea. Only criticism is the drop speed is really slow once you get up high. Attached my high score - no idea how it managed to balance like this but I did drop one more building afterwards!

Submitted

This game is pretty cute. The menu design and simplistic art style are spot on, and seeing another game made with Godot always makes me smile. Thanks for rating our game too!

I found myself wishing for a bit more control in how I interacted with the game. The bar at the top always starts in the same position at the same speed, and I think adding some variation or control could enhance the experience.

The difficulty curve ramps up quickly—I found it getting tough pretty fast. Maybe easing into it more gradually and introducing different shapes could add to the fun. You've clearly put a lot of effort into getting the stacking mechanics to feel good, and I'd love to see that applied to even more varied gameplay elements.

The aesthetics are well-done, with the camera movement and sound design adding to the charm. Really impressive work, especially considering you were a solo-dev on family vacation while developing!

One thing I’m curious about—how did you manage to remember the player's max-height for future sessions? That’s a neat touch!

Developer (1 edit) (+1)

Hello Nicholas, Thank you for your feedback!

For remembering the highscore between sessions I use the basic file system of Godot using "user://savegame.save" as path.

var data = {
    "h" : max_height,
    "b" : max_buildings
}
func save_data(data:Dictionary):
     var save_file = FileAccess.open(SaveFile, FileAccess.WRITE)
     save_file.store_line(JSON.stringify(data))

and then for loading:

func load_data():
    if not FileAccess.file_exists(SaveFile):
        return 
    var save_file = FileAccess.open(SaveFile, FileAccess.READ)
    var dict = JSON.parse_string(save_file.get_line())
    max_buildings = dict["b"]
    max_height = dict["h"]

if you have any more questions feel free to ask!

Submitted(+1)

I appriciate you taking the time to reply :D

Definately going to be using this in my future projects - cool stuff <3

Submitted(+1)

Really good idea. Very well done its quite a lot of fun and it has a very interesting mechanic. It also has very nice art. Great game!

Submitted (1 edit) (+1)

Fun and Interesting concept!

This mechanic is really great as a 48h work. It is concise, but also strategic. 

Submitted(+1)

I liked the idea, I loved the execution. Clear and straightforward. Good work!

Submitted(+1)

really pretty artstyle and stacking buildings is so satisfying

Developer

As a programmer, you don't know how happy it makes your comment. Thank you very much!

Submitted(+1)

Hi! I spent way to much time on this hahaha, but my tower kept falling. Great job!

Submitted

Super cute, very creative idea and really fun, like others said though, it takes a while for the buildings to fall when your score is really high

Developer

Yes, a time speed increase would have been great. Thank you for playing!

Submitted(+1)

Wow, this is very replayable. The audio and camera zoom especially feel polished. The controls are simple too!

I was becoming blown away that my previous structures were being used as whole new structures, it’s really cool.

I think the only room for improvement would be if there’s a button to accelerate the speed of the placer’s horizontal movement.

Developer

I completely agree with you! I would even say a button to accelerate the gameplay in general. Thank you for your feedback!

Submitted (1 edit) (+1)

This game is addicting af.  Love it.  The physics start to chug a bit after about 3k buildings, though.  I'm sitting at 62.5k buildings in another tab right now, and it's taken almost an hour to finally settle, and it's still not settled!!  :) :) :)  This is the last piece before coupling, too.  Waiting on pins and needles to see if it locks in or not.

https://imgur.com/a/gpjRHmB

Developer

I tested with different godot physics settings but yeah, 62.5k buildings are like a lot Xd.
I'm sorry that you have to wait 1h!

Submitted

It's getting longer and longer.  I'm determined now to see how far I can push it before the tower finally falls or the game crashes.   Currently at 234k buildings (26k meters).

Submitted

It finally gave up when it tried to couple 312k buildings together for the next coupling.  :)  Kudos for it going this far.  I'm impressed.  I added the screenshot to the link above.

Submitted(+1)

Would love to try this game given the comments & screenshots! I kept getting the "WebGL context lost, please reload the page" error... Curious if you know what might fix it? 

Developer

I'm so sorry to hear this, a quick google search claims that the error could come from the device. Have you tried using another one or another browser? Also, do other games in Godot webgl have the same error?

Submitted(+1)

I ran into the same error on some other Godot WebGL games too so it might be that! The concept looks really good though so if I can find a PC or anything I'll try to come back and try this! :D

Viewing comments 29 to 10 of 49 · Next page · Previous page · First page · Last page