Generates a random value between 0 and high_value, not including high_value. If called on the same frame with the same index, this function will always return the same value (making it replay-safe).
Argument | Type | Description |
---|---|---|
index | :real | Index of the function call, must be between 0 and 200 |
high_value | :real | The high end of the range from which the random number will be selected |
floored | :real | If the number returned should only be a whole number |
Example, called from update.gml:
// creates 5 articles
// and sets their hsp and vsp to random whole numbers between 5 and 10:
for (var i = 0; i < 5; i++) {
var this_article = instance_create( x, y, "obj_article1" );
this_article.hsp = spr_dir * (5 + random_func_2( 2 * i, 6, true ) );
this_article.vsp = -5 - random_func_2( 2 * i + 1, 6, true );
}