adding comments

removing useless code
pull/34/head
Torrin Leonard 2021-12-09 11:57:05 -05:00
rodzic 2dedbc1829
commit 8f4efb40ca
4 zmienionych plików z 14 dodań i 5 usunięć

Wyświetl plik

@ -1,5 +1,6 @@
# Purpose:
#
# This file goes through all batches, renames, and sorts all nft files to a Complete_Collection folder in Blend_My_NFTs
import bpy
import os
import re
@ -19,10 +20,6 @@ from src import config
importlib.reload(config)
def getNFType():
batchListDirty = os.listdir(config.nft_save_path)
removeList = [".gitignore", ".DS_Store"]
batchList = [x for x in batchListDirty if (x not in removeList)]
images = False
animations = False
models = False
@ -41,6 +38,10 @@ def getNFType():
return images, animations, models, metaData
def renameMetaData():
# refactor name in all meta data files to include new order numbers
return
def reformatBatches():
images, animations, models, metaData = getNFType()

Wyświetl plik

@ -1,3 +1,9 @@
# Purpose:
# This file checks NFTRecord for duplicate NFT DNA and returns any found in the console.
# Note - This file is provided for transparency, it is impossible for duplicates to be made with the current code in
# DNA_Generator.py.
import bpy
import os
import sys

Wyświetl plik

@ -1,3 +1,4 @@
# Purpose:
# This file allows you to preview some calculations/numbers generated when you run main. It allows you to make adjustments
# to the config.py file before running main.py in case there are any issues.

Wyświetl plik

@ -1,3 +1,4 @@
# Purpose:
# This file allows you to test the time it takes to render an image, then calculate how long it will take to render all
# images specified in maxNFTs in config.py.