Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
A jam submission

Global ScaleView game page

Puzzle game about scaling objects to get to your objective
Submitted by neostanley — 3 hours, 40 minutes before the deadline
Add to collection

Play game

Global Scale's itch.io page

Results

CriteriaRankScore*Raw Score
Enjoyment#50312.2223.143
Creativity#54682.3233.286
Overall#59552.0542.905
Style#67701.6162.286

Ranked from 7 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?
You control a set of objects which scale globally to your control in order to complete puzzles

Development Time

48 hours

(Optional) Please credit all assets you've used
https://assetstore.unity.com/packages/3d/environments/sci-fi/sci-fi-doors-162876
https://assetstore.unity.com/packages/tools/utilities/serialize-interfaces-187505
https://assetstore.unity.com/packages/2d/textures-materials/gridbox-prototype-materials-129127
https://www.flaticon.com
https://nohat.cc/f/round-blue-illustration-blue-texture-mapping-textured-circle-blue-gradient-transparent-background-png-clipart/comhiclipartdwzzh-201910211610.html
https://www.freepik.com

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted (1 edit)

I came to the similar idea (as like as enjoy the concept). As advice, I think you should change player’s position based on object scale. I mean, if a player stands on the edge of a block, when it scales, the player needs to stay on the edge. To achieve this, I ray-casted block under the Player and change the position based on Transform’s basis (Godot terminology). In code:

var origin_offset := global_position - ground_transform_previous.origin
var basis_change := ground_transform_current.basis * ground_transform_previous.basis.inverse()

var player_offset := basis_change * origin_offset - origin_offset
global_position += player_offset

Also, for scaling I use mouse wheel.

Developer

Really good idea, thanks for the suggestions, and thanks for playing! :)

Submitted(+1)

This game has a great deal of promise, but it needs some time to really flesh out the platforming. Right now it is too rough for me to really enjoy.

It would also be really improved with some sound, just a simple loop music playing and maybe a boing for jumping is all it would take.

Developer

Thanks for the feedback and thanks for playing. It does have a lot of work needing, but agree with your points :)