Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

Fantastic! I really loved it, even though I couldn't solve the last 2 puzzles. Sooo good though, really satisfying and feels like a nice mix of Snakebird and Sokobon. I've been playing a lot of Baba is You so this was a nice little treat

I think what I find the most compelling about the presentation is the movement. The way the wire slips around is so satisfying to look at


(1 edit) (+1)

Thank you - the movement is really quite simple: I’m “animating” all moveable objects every frame with a simple `pos += (target - pos) * 0.1` which has the effect of moving slower the closer the object is to the target position. I find this is more flexible than hard-coded tweening as the target position can move without needing to reset any tweens or anything like that and it just works.

Individual nodes on the wire are their own separate objects whose positions are used to render them as points in Godot’s Line2D primitive. I actually didn’t get it to move how I wanted but it’s a good shortcut; highly recommended!

(+1)

Cool breakdown, thanks. The result here adds a lot of personality