Skip to content

Instantly share code, notes, and snippets.

@zwazel
Last active June 30, 2020 21:40
Show Gist options
  • Save zwazel/9c1b667b6fc253af858a84146203468b to your computer and use it in GitHub Desktop.
Save zwazel/9c1b667b6fc253af858a84146203468b to your computer and use it in GitHub Desktop.
Godot Useful Functions - return random value inside an array
# return random value inside an array
func choose(array):
array.shuffle()
return array.front()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment