Revert "Merge pull request #40 from Talha345/linux_file_path"

This reverts commit 08af65f1fb, reversing
changes made to 320e37b0f5.
pull/46/head
Torrin Leonard 2021-12-30 22:53:23 -05:00
rodzic 385d80f68a
commit c248e338a1
1 zmienionych plików z 0 dodań i 6 usunięć

Wyświetl plik

@ -32,11 +32,9 @@ modelFileFormat = '' # The file format of the objects you would like to export
# The path to Blend_My_NFTs folder:
save_path_mac = ''
save_path_linux = ''
save_path_windows = r''
# Place the path in the '', e.g: save_path_mac = '/Users/Path/to/Blend_My_NFTs'
# Example mac: /Users/Path/to/Blend_My_NFTs
# Example linux: /Users/Path/to/Blend_My_NFTs
# Example windows: C:\Users\Path\to\Blend_My_NFTs
maxNFTs = 0 # The maximum number of NFTs you want to generate.
@ -144,7 +142,6 @@ checkRarity = False
import platform
mac = 'Darwin'
linux = 'Linux'
windows = 'Windows'
slash = ''
save_path = None
@ -153,9 +150,6 @@ save_path = None
if platform.system() == mac:
save_path = save_path_mac
slash = '/'
elif platform.system() == linux:
save_path = save_path_linux
slash = '/'
elif platform.system() == windows:
save_path = save_path_windows
slash = '\\'