Merge pull request #7 from mjrthemes/master

Fixed redefining function "seed" to variable
pull/17/head
Michael Davies 2016-06-20 10:55:55 +10:00 zatwierdzone przez GitHub
commit d2e587e31e
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -729,8 +729,8 @@ if __name__ == "__main__":
if generate_single_spaceship:
# Reset the scene, generate a single spaceship and focus on it
reset_scene()
seed = '' # add anything here to generate the same spaceship
obj = generate_spaceship(seed)
customseed = '' # add anything here to generate the same spaceship
obj = generate_spaceship(customseed)
# View the selected object in all views
for area in bpy.context.screen.areas: