Can i for example create a spawner with random timer i want from 0.1 to 1 second? with all the valors in between like 0.2 0.3 0.4 0.5 and so on..
Comments
tenrdrmerMember, Sous Chef, Senior Sous-ChefPosts: 9,934
The random function itself will only return integers. no decimals. So if you use random(0,0.4) it will always kick out a 0. Now Something you can try but i'm not sure if it will work is (random(1,10)/10) and that should return a value of 0.1 through 1.0 but thats just a guess I have not tried it myself.
Comments