Hi all!
How to fill an array with numbers that increases exponentially from a fixed number (e.g. 500) to any bigger number (e.g. 1000000000) with possibility to adjust the settings (I mean step or rate)?
Try this:
For 0 to 10 (or whatever the size of the array is): Array -> Set at X -> X: loopindex, Value: 500^loopindex
If you want to change how fast it increases, change it to 500^(increaseRate*loopindex)
Develop games in your browser. Powerful, performant & highly capable.
500^(increaseRate*loopindex)
Well, this increases numbers crazyfast. I ended up with round(500 * 3 * loopindex)
round(500 * 3 * loopindex)
Thank you usbtypec!