Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Ah, I see! Gotcha. Thank you for the explanation. No problem at all. I'll stop trying to use it, haha. 

I'd love to know a little bit more about the physics behind it, do you have a write up or anything? I can see how the gravity/ stability works for example but it would be cool to know about what dictates the chord/ rope breaking force. Do you calculate tension or is it more of an impact force?

Sure! Basically I add up how much all connecting segments wants to move a node. Then as a specific threshold it breaks. :)

Nice, I've got you :D Very inspiring, I'd like to try my hand at something similar. Thanks again, and congrats on the release.

Thanks! Verlet integration is really fun to work with. Very straight forward and the results are always entertaining. :D
Here what I based my original code on -- https://stackoverflow.com/questions/42609279/how-to-simulate-chain-physics-game-...

oh wow, that's invaluable. Thank you do much Johan!