-
Changing random time
Possibly no solution, but i’m going to chuck it out there.
I want to randomly scale my text, but I don’t want it to just be every 1 second, 2 seconds etc. The below works fine if I want it to change every second.
seed = Math.floor(time/1);
seedRandom(seed,true);
s = random(100,150);
[s,s]Is there a way to randomly change this bit?
seed = Math.floor(time/random).
So that when it’s reach 1 lets say, it changes to 0.5, then when it reaches 0.5 it changes to 0.75 (these numbers would be random between set integers obviously)