Hi everyone,
there's a random value created in a Sprite node's script
rng.randomize()
var a_random_number = rng.randf_range(8, 18)
Now a parent wants to grab that value
var the_grabbed_random_value = $Sprite.a_random_number
but this thows the error
Invalid get index 'a_random_number' (on base: 'null instance').
How can I grab such a variable's value from a child node?