View Single Post
  #6  
Old 02-11-2016, 05:33 AM
Erikvdb Erikvdb is offline
Member
 
Join Date: May 2013
Posts: 63
Only shuffle once, BEFORE the loop, not INSIDE the loop. Now the list gets constantly shuffled again before every pick

Also not crucial, but a helpful little housekeeping:
- use a for loop to iterate over the list. It's cleaner and easier.
- load your textures beforehand, not inside the loop, to improve performance.
Reply With Quote