Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hi Geoff.  Nice tool, I'm enjoying some discovery sessions with it.  Couple of requests:


1. The A modulo B node always comues up as A multiply B instead.  Bug? I was trying to explore some digital root probability - can't get anywhere without a working Modulo, I think.

2. Can you add a general loop function so we can do non-pool stuff?  Not sure exactly how you'd indicate which nodes are to be repeated though...

1. Yup - just checked and it is bugged. It's been corrected and will be in the next release (hopefully this week or early next).

2. I'm having difficulty envisioning what you want to do. Can you give an example?

Thanks Geoff.   I was actually planning to use a general loop for calculation of digital root.  I got intrigued by one of the entries in Buttonshy's latest 18-card game submission contest.

do {X = INT(A/10) + A%10} while X > 9

So it would take in an integer and output an integer? That wouldn't be too hard to do.

Well... It would take the integer and the condition and would somehow have to link to the operations that get repeated.

And do...while is different to while...do, you might want to implement both.

Apologies for coming at this as a programmer used to working with single values - I think the tools is meant more as mathematical operations on sets.  I have never really learned that.