Fixed redefining function "seed" to variable

pull/7/head
MajorThemes 2016-06-19 13:26:33 +03:00 zatwierdzone przez GitHub
rodzic bccd6e9723
commit 0f18f2be65
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: