You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe the func randomize_colors for Galaxy needs to have it's values changed from 6 -> 7. This stopped the crash for me: func randomize_colors(): var seed_colors = _generate_new_colorscheme(7 , randf_range(0.5,0.8), 1.4) var cols = [] for i in 7: var new_col = seed_colors[i].darkened(i/7.0) new_col = new_col.lightened((1.0 - (i/7.0)) * 0.6) cols.append(new_col)
The text was updated successfully, but these errors were encountered:
I believe the func randomize_colors for Galaxy needs to have it's values changed from 6 -> 7. This stopped the crash for me:
func randomize_colors():
var seed_colors = _generate_new_colorscheme(7 , randf_range(0.5,0.8), 1.4)
var cols = []
for i in 7:
var new_col = seed_colors[i].darkened(i/7.0)
new_col = new_col.lightened((1.0 - (i/7.0)) * 0.6)
cols.append(new_col)
The text was updated successfully, but these errors were encountered: